[
  {
    "path": ".devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"GitHub Actions (TypeScript)\",\n  \"image\": \"mcr.microsoft.com/devcontainers/typescript-node:24\",\n  \"postCreateCommand\": \"npm install\",\n  \"customizations\": {\n    \"codespaces\": {\n      \"openFiles\": [\"README.md\"]\n    },\n    \"vscode\": {\n      \"extensions\": [\n        \"bierner.markdown-preview-github-styles\",\n        \"davidanson.vscode-markdownlint\",\n        \"dbaeumer.vscode-eslint\",\n        \"esbenp.prettier-vscode\",\n        \"github.copilot\",\n        \"github.copilot-chat\",\n        \"github.vscode-github-actions\",\n        \"github.vscode-pull-request-github\",\n        \"me-dutour-mathieu.vscode-github-actions\",\n        \"redhat.vscode-yaml\",\n        \"rvest.vs-code-prettier-eslint\",\n        \"yzhang.markdown-all-in-one\"\n      ],\n      \"settings\": {\n        \"editor.defaultFormatter\": \"esbenp.prettier-vscode\",\n        \"editor.tabSize\": 2,\n        \"editor.formatOnSave\": true,\n        \"markdown.extension.list.indentationSize\": \"adaptive\",\n        \"markdown.extension.italic.indicator\": \"_\",\n        \"markdown.extension.orderedList.marker\": \"one\"\n      }\n    }\n  },\n  \"remoteEnv\": {\n    \"GITHUB_TOKEN\": \"${localEnv:GITHUB_TOKEN}\"\n  },\n  \"features\": {\n    \"ghcr.io/devcontainers/features/github-cli:1\": {},\n    \"ghcr.io/devcontainers-community/npm-features/prettier:1\": {}\n  }\n}\n"
  },
  {
    "path": ".gitattributes",
    "content": "# Force LF everywhere for prettier\n* text=auto eol=lf\n# Ignore diffs in dist as it is generated code\ndist/** -diff linguist-generated=true\n\n*.jpg binary\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: github-actions\n    directory: /\n    schedule:\n      interval: weekly\n    groups:\n      actions-minor:\n        update-types:\n          - minor\n          - patch\n\n  - package-ecosystem: npm\n    directory: /\n    schedule:\n      interval: weekly\n    ignore:\n      - dependency-name: '@types/node'\n        update-types:\n          - 'version-update:semver-major'\n    groups:\n      npm-development:\n        dependency-type: development\n        update-types:\n          - minor\n          - patch\n      npm-production:\n        dependency-type: production\n        update-types:\n          - patch\n"
  },
  {
    "path": ".github/workflows/CI.yml",
    "content": "# This is a basic workflow to help you get started with Actions\n\nname: CI\n\n# Controls when the action will run.\non:\n  # Triggers the workflow on push or pull request events but only for the master branch\n  push:\n    branches: [master]\n  pull_request:\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\npermissions:\n  contents: read\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n  # This workflow contains a single job called \"CI\"\n  CI:\n    # The type of runners that the job will run on\n    strategy:\n      fail-fast: false\n      matrix:\n        os:\n          [\n            windows-2025,\n            windows-2022,\n            ubuntu-24.04,\n            ubuntu-22.04,\n            ubuntu-24.04-arm,\n            ubuntu-22.04-arm\n          ]\n        method: [local, network]\n    runs-on: ${{ matrix.os }}\n\n    # Steps represent a sequence of tasks that will be executed as part of the job\n    steps:\n      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n      - uses: actions/checkout@v4\n\n      - name: Setup Node.js\n        id: setup-node\n        uses: actions/setup-node@v4\n        with:\n          node-version-file: .node-version\n          cache: npm\n\n      - name: Install Dependencies\n        id: npm-ci\n        run: npm ci\n\n      - name: Check Format\n        id: npm-format-check\n        run: npm run format:check\n\n      - name: Lint\n        id: npm-lint\n        run: npm run lint\n\n      - name: Test\n        id: npm-ci-test\n        run: npm run ci-test\n\n      - name: Run the action on this runner with method ${{matrix.method}}\n        uses: ./\n        with:\n          method: ${{matrix.method}}\n          log-file-suffix: '${{matrix.method}}-${{matrix.os}}'\n\n      - name:\n          Run the action on this runner with nvcc and libcublas subpackages\n          (Linux)\n        if: runner.os == 'Linux' && matrix.method == 'network'\n        uses: ./\n        with:\n          method: ${{matrix.method}}\n          sub-packages: '[\"nvcc\"]'\n          non-cuda-sub-packages: '[\"libcublas\"]'\n          log-file-suffix: 'nvcc-libcublas-${{matrix.method}}-${{matrix.os}}'\n\n      - name: Run the action on this runner with nvcc subpackage only (Windows)\n        if: runner.os == 'Windows'\n        id: test-action\n        uses: ./\n        with:\n          method: ${{matrix.method}}\n          sub-packages: '[\"nvcc\"]'\n          log-file-suffix: 'nvcc-${{matrix.method}}-${{matrix.os}}'\n\n      - name: Print output cuda version\n        run: echo \"${{ steps.test-action.outputs.cuda }}\"\n\n      - name: Print output CUDA_PATH\n        run: echo \"${{ steps.test-action.outputs.CUDA_PATH }}\"\n\n      - name: Test if nvcc is available\n        run: nvcc -V\n\n      - name: List paths (windows)\n        if: runner.os == 'Windows'\n        shell: powershell\n        run: |\n          ls $env:CUDA_PATH\n          ls $env:CUDA_PATH\\bin\n          ls $env:CUDA_PATH\\include\n\n      - name: List paths (linux)\n        if: runner.os == 'Linux'\n        run: |\n          ls $CUDA_PATH\n          ls $CUDA_PATH/bin\n          ls $CUDA_PATH/include\n"
  },
  {
    "path": ".github/workflows/Check-dist.yml",
    "content": "# In TypeScript actions, `dist/` is a special directory. When you reference\n# an action with the `uses:` property, `dist/index.js` is the code that will be\n# run. For this project, the `dist/index.js` file is transpiled from other\n# source files. This workflow ensures the `dist/` directory contains the\n# expected transpiled code.\n#\n# If this workflow is run from a feature branch, it will act as an additional CI\n# check and fail if the checked-in `dist/` directory does not match what is\n# expected from the build.\nname: Check Transpiled JavaScript\n\non:\n  pull_request:\n    branches:\n      - master\n  push:\n    branches:\n      - master\n\npermissions:\n  contents: read\n\njobs:\n  check-dist:\n    name: Check dist/\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout\n        id: checkout\n        uses: actions/checkout@v4\n\n      - name: Setup Node.js\n        id: setup-node\n        uses: actions/setup-node@v4\n        with:\n          node-version-file: .node-version\n          cache: npm\n\n      - name: Install Dependencies\n        id: install\n        run: npm ci\n\n      - name: Build dist/ Directory\n        id: build\n        run: npm run bundle\n\n      # This will fail the workflow if the `dist/` directory is different than\n      # expected.\n      - name: Compare Directories\n        id: diff\n        run: |\n          if [ ! -d dist/ ]; then\n            echo \"Expected dist/ directory does not exist.  See status below:\"\n            ls -la ./\n            exit 1\n          fi\n          if [ \"$(git diff --ignore-space-at-eol --text dist/ | wc -l)\" -gt \"0\" ]; then\n            echo \"Detected uncommitted changes after build. See status below:\"\n            git diff --ignore-space-at-eol --text dist/\n            exit 1\n          fi\n\n      # If `dist/` was different than expected, upload the expected version as a\n      # workflow artifact.\n      - if: ${{ failure() && steps.diff.outcome == 'failure' }}\n        name: Upload Artifact\n        id: upload\n        uses: actions/upload-artifact@v4\n        with:\n          name: dist\n          path: dist/\n"
  },
  {
    "path": ".github/workflows/codeql-analysis.yml",
    "content": "name: CodeQL\n\non:\n  pull_request:\n    branches:\n      - main\n  push:\n    branches:\n      - main\n  schedule:\n    - cron: '31 7 * * 3'\n\npermissions:\n  actions: read\n  checks: write\n  contents: read\n  security-events: write\n\njobs:\n  analyze:\n    name: Analyze\n    runs-on: ubuntu-latest\n\n    strategy:\n      fail-fast: false\n      matrix:\n        language:\n          - TypeScript\n\n    steps:\n      - name: Checkout\n        id: checkout\n        uses: actions/checkout@v4\n\n      - name: Initialize CodeQL\n        id: initialize\n        uses: github/codeql-action/init@v3\n        with:\n          languages: ${{ matrix.language }}\n          source-root: src\n\n      - name: Autobuild\n        id: autobuild\n        uses: github/codeql-action/autobuild@v3\n\n      - name: Perform CodeQL Analysis\n        id: analyze\n        uses: github/codeql-action/analyze@v3\n"
  },
  {
    "path": ".github/workflows/licensed.yml",
    "content": "# This workflow checks the statuses of cached dependencies used in this action\n# with the help of the Licensed tool. If any licenses are invalid or missing,\n# this workflow will fail. See: https://github.com/licensee/licensed\n\nname: Licensed\n\non:\n  # Uncomment the below lines to run this workflow on pull requests and pushes\n  # to the default branch. This is useful for checking licenses before merging\n  # changes into the default branch.\n  pull_request:\n    branches:\n      - master\n  push:\n    branches:\n      - master\n  workflow_dispatch:\n\npermissions:\n  contents: write\n\njobs:\n  licensed:\n    name: Check Licenses\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout\n        id: checkout\n        uses: actions/checkout@v4\n\n      - name: Setup Node.js\n        id: setup-node\n        uses: actions/setup-node@v4\n        with:\n          node-version-file: .node-version\n          cache: npm\n\n      - name: Install Dependencies\n        id: npm-ci\n        run: npm ci\n\n      - name: Setup Ruby\n        id: setup-ruby\n        uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: ruby\n\n      - uses: licensee/setup-licensed@v1.3.2\n        with:\n          version: 4.x\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n\n      # If this is a workflow_dispatch event, update the cached licenses.\n      - if: ${{ github.event_name == 'workflow_dispatch' }}\n        name: Update Licenses\n        id: update-licenses\n        run: licensed cache\n\n      # Then, commit the updated licenses to the repository.\n      - if: ${{ github.event_name == 'workflow_dispatch' }}\n        name: Commit Licenses\n        id: commit-licenses\n        run: |\n          git config --local user.email \"licensed-ci@users.noreply.github.com\"\n          git config --local user.name \"licensed-ci\"\n          git add .\n          git commit -m \"Auto-update license files\"\n          git push\n\n      # Last, check the status of the cached licenses.\n      - name: Check Licenses\n        id: check-licenses\n        run: licensed status\n"
  },
  {
    "path": ".github/workflows/linter.yml",
    "content": "name: Lint Codebase\n\non:\n  pull_request:\n    branches:\n      - main\n  push:\n    branches:\n      - main\n\npermissions:\n  contents: read\n  packages: read\n  statuses: write\n\njobs:\n  lint:\n    name: Lint Codebase\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout\n        id: checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        id: setup-node\n        uses: actions/setup-node@v4\n        with:\n          node-version-file: .node-version\n          cache: npm\n\n      - name: Install Dependencies\n        id: install\n        run: npm ci\n\n      - name: Lint Codebase\n        id: super-linter\n        uses: super-linter/super-linter/slim@v7\n        env:\n          DEFAULT_BRANCH: main\n          FILTER_REGEX_EXCLUDE: dist/**/*\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          LINTER_RULES_PATH: ${{ github.workspace }}\n          VALIDATE_ALL_CODEBASE: true\n          VALIDATE_JAVASCRIPT_ES: false\n          VALIDATE_JAVASCRIPT_STANDARD: false\n          VALIDATE_JSCPD: false\n          VALIDATE_TYPESCRIPT_ES: false\n          VALIDATE_JSON: false\n          VALIDATE_TYPESCRIPT_STANDARD: false\n"
  },
  {
    "path": ".gitignore",
    "content": "# Dependency directory\nnode_modules\n\n# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore\n# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\nlerna-debug.log*\n\n# Diagnostic reports (https://nodejs.org/api/report.html)\nreport.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json\n\n# Runtime data\npids\n*.pid\n*.seed\n*.pid.lock\n\n# Directory for instrumented libs generated by jscoverage/JSCover\nlib-cov\n\n# Coverage directory used by tools like istanbul\ncoverage\n*.lcov\n\n# nyc test coverage\n.nyc_output\n\n# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)\n.grunt\n\n# Bower dependency directory (https://bower.io/)\nbower_components\n\n# node-waf configuration\n.lock-wscript\n\n# Compiled binary addons (https://nodejs.org/api/addons.html)\nbuild/Release\n\n# Dependency directories\njspm_packages/\n\n# TypeScript v1 declaration files\ntypings/\n\n# TypeScript cache\n*.tsbuildinfo\n\n# Optional npm cache directory\n.npm\n\n# Optional eslint cache\n.eslintcache\n\n# Optional REPL history\n.node_repl_history\n\n# Output of 'npm pack'\n*.tgz\n\n# Yarn Integrity file\n.yarn-integrity\n\n# dotenv environment variables file\n.env\n.env.test\n\n# parcel-bundler cache (https://parceljs.org/)\n.cache\n\n# next.js build output\n.next\n\n# nuxt.js build output\n.nuxt\n\n# vuepress build output\n.vuepress/dist\n\n# Serverless directories\n.serverless/\n\n# FuseBox cache\n.fusebox/\n\n# DynamoDB Local files\n.dynamodb/\n\n# OS metadata\n.DS_Store\nThumbs.db\n\n# Ignore built ts files\n__tests__/runner/*\n\n# IDE files\n.idea\n*.code-workspace\n"
  },
  {
    "path": ".licensed.yml",
    "content": "# See: https://github.com/licensee/licensed/blob/main/docs/configuration.md\n\nsources:\n  npm: true\n\nallowed:\n  - apache-2.0\n  - bsd-2-clause\n  - bsd-3-clause\n  - isc\n  - mit\n  - cc0-1.0\n  - other\n  - 0bsd\n  - blueoak-1.0.0\n\nignored:\n  npm:\n    # Used by Rollup.js when building in GitHub Actions\n    - '@rollup/rollup-linux-x64-gnu'\n    - '@bufbuild/protobuf'\n    - 'buffers'\n    - 'chainsaw'\n"
  },
  {
    "path": ".licenses/npm/@actions/artifact.dep.yml",
    "content": "---\nname: \"@actions/artifact\"\nversion: 2.3.2\ntype: npm\nsummary: Actions artifact lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/artifact\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/cache.dep.yml",
    "content": "---\nname: \"@actions/cache\"\nversion: 4.0.3\ntype: npm\nsummary: Actions cache lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/cache\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/core.dep.yml",
    "content": "---\nname: \"@actions/core\"\nversion: 1.11.1\ntype: npm\nsummary: Actions core lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/core\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/exec.dep.yml",
    "content": "---\nname: \"@actions/exec\"\nversion: 1.1.1\ntype: npm\nsummary: Actions exec lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/exec\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/github.dep.yml",
    "content": "---\nname: \"@actions/github\"\nversion: 5.1.1\ntype: npm\nsummary: Actions github lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/github\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/glob-0.1.2.dep.yml",
    "content": "---\nname: \"@actions/glob\"\nversion: 0.1.2\ntype: npm\nsummary: Actions glob lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/glob\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/glob-0.5.0.dep.yml",
    "content": "---\nname: \"@actions/glob\"\nversion: 0.5.0\ntype: npm\nsummary: Actions glob lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/glob\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/http-client.dep.yml",
    "content": "---\nname: \"@actions/http-client\"\nversion: 2.2.3\ntype: npm\nsummary: Actions Http Client\nhomepage: https://github.com/actions/toolkit/tree/main/packages/http-client\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    Actions Http Client for Node.js\n\n    Copyright (c) GitHub, Inc.\n\n    All rights reserved.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and\n    associated documentation files (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n    and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\n    LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n    NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/io.dep.yml",
    "content": "---\nname: \"@actions/io\"\nversion: 1.1.3\ntype: npm\nsummary: Actions io lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/io\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@actions/tool-cache.dep.yml",
    "content": "---\nname: \"@actions/tool-cache\"\nversion: 2.0.2\ntype: npm\nsummary: Actions tool-cache lib\nhomepage: https://github.com/actions/toolkit/tree/main/packages/tool-cache\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |-\n    The MIT License (MIT)\n\n    Copyright 2019 GitHub\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/abort-controller-1.1.0.dep.yml",
    "content": "---\nname: \"@azure/abort-controller\"\nversion: 1.1.0\ntype: npm\nsummary: Microsoft Azure SDK for JavaScript - Aborter\nhomepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/abort-controller/README.md\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2020 Microsoft\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/abort-controller-2.1.2.dep.yml",
    "content": "---\nname: \"@azure/abort-controller\"\nversion: 2.1.2\ntype: npm\nsummary: Microsoft Azure SDK for JavaScript - Aborter\nhomepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/abort-controller/README.md\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2020 Microsoft\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-auth.dep.yml",
    "content": "---\nname: \"@azure/core-auth\"\nversion: 1.9.0\ntype: npm\nsummary: Provides low-level interfaces and helper methods for authentication in Azure\n  SDK\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-auth/README.md\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2020 Microsoft\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-client.dep.yml",
    "content": "---\nname: \"@azure/core-client\"\nversion: 1.9.4\ntype: npm\nsummary: Core library for interfacing with AutoRest generated code\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-client/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) Microsoft Corporation.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-http-compat.dep.yml",
    "content": "---\nname: \"@azure/core-http-compat\"\nversion: 2.3.0\ntype: npm\nsummary: Core HTTP Compatibility Library to bridge the gap between Core V1 & V2 packages.\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-compat/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) Microsoft Corporation.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-lro.dep.yml",
    "content": "---\nname: \"@azure/core-lro\"\nversion: 2.7.2\ntype: npm\nsummary: Isomorphic client library for supporting long-running operations in node.js\n  and browser.\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-lro/README.md\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2020 Microsoft\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-paging.dep.yml",
    "content": "---\nname: \"@azure/core-paging\"\nversion: 1.6.2\ntype: npm\nsummary: Core types for paging async iterable iterators\nhomepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/core-paging/README.md\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2020 Microsoft\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-rest-pipeline.dep.yml",
    "content": "---\nname: \"@azure/core-rest-pipeline\"\nversion: 1.20.0\ntype: npm\nsummary: Isomorphic client library for making HTTP requests in node.js and browser.\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) Microsoft Corporation.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-tracing.dep.yml",
    "content": "---\nname: \"@azure/core-tracing\"\nversion: 1.2.0\ntype: npm\nsummary: Provides low-level interfaces and helper methods for tracing in Azure SDK\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-tracing/README.md\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2020 Microsoft\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-util.dep.yml",
    "content": "---\nname: \"@azure/core-util\"\nversion: 1.12.0\ntype: npm\nsummary: Core library for shared utility methods\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-util/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) Microsoft Corporation.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/core-xml.dep.yml",
    "content": "---\nname: \"@azure/core-xml\"\nversion: 1.4.5\ntype: npm\nsummary: Core library for interacting with XML payloads\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-xml/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) Microsoft Corporation.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/logger.dep.yml",
    "content": "---\nname: \"@azure/logger\"\nversion: 1.2.0\ntype: npm\nsummary: Microsoft Azure SDK for JavaScript - Logger\nhomepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/logger/README.md\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) Microsoft Corporation.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/ms-rest-js.dep.yml",
    "content": "---\nname: \"@azure/ms-rest-js\"\nversion: 2.7.0\ntype: npm\nsummary: Isomorphic client Runtime for Typescript/node.js/browser javascript client\n  libraries generated using AutoRest\nhomepage: https://github.com/Azure/ms-rest-js\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |2\n        MIT License\n\n        Copyright (c) Microsoft Corporation. All rights reserved.\n\n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n\n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n\n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@azure/storage-blob.dep.yml",
    "content": "---\nname: \"@azure/storage-blob\"\nversion: 12.27.0\ntype: npm\nsummary: Microsoft Azure Storage SDK for JavaScript - Blob\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) Microsoft Corporation.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@bufbuild/protoplugin.dep.yml",
    "content": "---\nname: \"@bufbuild/protoplugin\"\nversion: 2.5.1\ntype: npm\nsummary: Helps to create your own Protocol Buffers code generators.\nhomepage:\nlicense: apache-2.0\nlicenses:\n- sources: Auto-generated Apache-2.0 license text\n  text: |2\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"[]\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@fastify/busboy.dep.yml",
    "content": "---\nname: \"@fastify/busboy\"\nversion: 2.1.1\ntype: npm\nsummary: A streaming parser for HTML form data for node.js\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    Copyright Brian White. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@isaacs/cliui.dep.yml",
    "content": "---\nname: \"@isaacs/cliui\"\nversion: 8.0.2\ntype: npm\nsummary: easily create complex multi-column command-line-interfaces\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE.txt\n  text: |\n    Copyright (c) 2015, Contributors\n\n    Permission to use, copy, modify, and/or distribute this software\n    for any purpose with or without fee is hereby granted, provided\n    that the above copyright notice and this permission notice\n    appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n    OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\n    LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\n    OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\n    WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\n    ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/auth-token.dep.yml",
    "content": "---\nname: \"@octokit/auth-token\"\nversion: 2.5.0\ntype: npm\nsummary: GitHub API token authentication for browsers and Node.js\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License\n\n    Copyright (c) 2019 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/core.dep.yml",
    "content": "---\nname: \"@octokit/core\"\nversion: 3.6.0\ntype: npm\nsummary: Extendable client for GitHub's REST & GraphQL APIs\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License\n\n    Copyright (c) 2019 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/endpoint.dep.yml",
    "content": "---\nname: \"@octokit/endpoint\"\nversion: 6.0.12\ntype: npm\nsummary: Turns REST API endpoints into generic request options\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License\n\n    Copyright (c) 2018 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/graphql.dep.yml",
    "content": "---\nname: \"@octokit/graphql\"\nversion: 4.8.0\ntype: npm\nsummary: GitHub GraphQL API client for browsers and Node\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License\n\n    Copyright (c) 2018 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/openapi-types-12.11.0.dep.yml",
    "content": "---\nname: \"@octokit/openapi-types\"\nversion: 12.11.0\ntype: npm\nsummary: Generated TypeScript definitions based on GitHub's OpenAPI spec for api.github.com\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    Copyright 2020 Gregor Martynus\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/openapi-types-24.2.0.dep.yml",
    "content": "---\nname: \"@octokit/openapi-types\"\nversion: 24.2.0\ntype: npm\nsummary: Generated TypeScript definitions based on GitHub's OpenAPI spec for api.github.com\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    Copyright 2020 Gregor Martynus\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/plugin-paginate-rest.dep.yml",
    "content": "---\nname: \"@octokit/plugin-paginate-rest\"\nversion: 2.21.3\ntype: npm\nsummary: Octokit plugin to paginate REST API endpoint responses\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License Copyright (c) 2019 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/plugin-request-log.dep.yml",
    "content": "---\nname: \"@octokit/plugin-request-log\"\nversion: 1.0.4\ntype: npm\nsummary: Log all requests and request errors\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License Copyright (c) 2020 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/plugin-rest-endpoint-methods.dep.yml",
    "content": "---\nname: \"@octokit/plugin-rest-endpoint-methods\"\nversion: 5.16.2\ntype: npm\nsummary: Octokit plugin adding one method for all of api.github.com REST API endpoints\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License Copyright (c) 2019 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/plugin-retry.dep.yml",
    "content": "---\nname: \"@octokit/plugin-retry\"\nversion: 3.0.9\ntype: npm\nsummary: Automatic retry plugin for octokit\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2018 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/request-error-2.1.0.dep.yml",
    "content": "---\nname: \"@octokit/request-error\"\nversion: 2.1.0\ntype: npm\nsummary: Error class for Octokit request errors\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License\n\n    Copyright (c) 2019 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/request-error-5.1.1.dep.yml",
    "content": "---\nname: \"@octokit/request-error\"\nversion: 5.1.1\ntype: npm\nsummary: Error class for Octokit request errors\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License\n\n    Copyright (c) 2019 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/request.dep.yml",
    "content": "---\nname: \"@octokit/request\"\nversion: 5.6.3\ntype: npm\nsummary: Send parameterized requests to GitHub's APIs with sensible defaults in browsers\n  and Node\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License\n\n    Copyright (c) 2018 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/types-13.10.0.dep.yml",
    "content": "---\nname: \"@octokit/types\"\nversion: 13.10.0\ntype: npm\nsummary: Shared TypeScript definitions for Octokit projects\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License Copyright (c) 2019 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@octokit/types-6.41.0.dep.yml",
    "content": "---\nname: \"@octokit/types\"\nversion: 6.41.0\ntype: npm\nsummary: Shared TypeScript definitions for Octokit projects\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License Copyright (c) 2019 Octokit contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: \"[MIT](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@pkgjs/parseargs.dep.yml",
    "content": "---\nname: \"@pkgjs/parseargs\"\nversion: 0.11.0\ntype: npm\nsummary: Polyfill of future proposal for `util.parseArgs()`\nhomepage: https://github.com/pkgjs/parseargs#readme\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |2\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"[]\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Copyright [yyyy] [name of copyright owner]\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@protobuf-ts/plugin.dep.yml",
    "content": "---\nname: \"@protobuf-ts/plugin\"\nversion: 2.11.0\ntype: npm\nsummary: The protocol buffer compiler plugin \"protobuf-ts\" generates TypeScript, gRPC-web,\n  Twirp, and more.\nhomepage: https://github.com/timostamm/protobuf-ts\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE\n  text: |2\n                                    Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@protobuf-ts/protoc.dep.yml",
    "content": "---\nname: \"@protobuf-ts/protoc\"\nversion: 2.11.0\ntype: npm\nsummary: Installs the protocol buffer compiler \"protoc\" for you.\nhomepage: https://github.com/timostamm/protobuf-ts\nlicense: apache-2.0\nlicenses:\n- sources: Auto-generated Apache-2.0 license text\n  text: |2\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"[]\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@protobuf-ts/runtime-rpc.dep.yml",
    "content": "---\nname: \"@protobuf-ts/runtime-rpc\"\nversion: 2.11.0\ntype: npm\nsummary: Runtime library for RPC clients generated by the protoc plugin \"protobuf-ts\"\nhomepage: https://github.com/timostamm/protobuf-ts\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE\n  text: |2\n                                    Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@protobuf-ts/runtime.dep.yml",
    "content": "---\nname: \"@protobuf-ts/runtime\"\nversion: 2.11.0\ntype: npm\nsummary: Runtime library for code generated by the protoc plugin \"protobuf-ts\"\nhomepage: https://github.com/timostamm/protobuf-ts\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |2\n                                    Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@types/semver.dep.yml",
    "content": "---\nname: \"@types/semver\"\nversion: 7.7.0\ntype: npm\nsummary: TypeScript definitions for semver\nhomepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |2\n        MIT License\n\n        Copyright (c) Microsoft Corporation.\n\n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n\n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n\n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@typescript/vfs.dep.yml",
    "content": "---\nname: \"@typescript/vfs\"\nversion: 1.6.1\ntype: npm\nsummary:\nhomepage: https://github.com/microsoft/TypeScript-Website\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: \"The MIT License (MIT)\\nCopyright (c) Microsoft Corporation\\n\\nPermission\n    is hereby granted, free of charge, to any person obtaining a copy of this software\n    and \\nassociated documentation files (the \\\"Software\\\"), to deal in the Software\n    without restriction, \\nincluding without limitation the rights to use, copy, modify,\n    merge, publish, distribute, sublicense, \\nand/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so, \\nsubject to\n    the following conditions:\\n\\nThe above copyright notice and this permission notice\n    shall be included in all copies or substantial \\nportions of the Software.\\n\\nTHE\n    SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\n    INCLUDING BUT \\nNOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR\n    A PARTICULAR PURPOSE AND NONINFRINGEMENT. \\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \\nWHETHER IN AN ACTION\n    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    \\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\\n\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/@typespec/ts-http-runtime.dep.yml",
    "content": "---\nname: \"@typespec/ts-http-runtime\"\nversion: 0.2.2\ntype: npm\nsummary: Isomorphic client library for making HTTP requests in node.js and browser.\nhomepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/ts-http-runtime/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) Microsoft Corporation.\n\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/abort-controller.dep.yml",
    "content": "---\nname: abort-controller\nversion: 3.0.0\ntype: npm\nsummary: An implementation of WHATWG AbortController interface.\nhomepage: https://github.com/mysticatea/abort-controller#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2017 Toru Nagashima\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/agent-base.dep.yml",
    "content": "---\nname: agent-base\nversion: 7.1.3\ntype: npm\nsummary: Turn a function into an `http.Agent` instance\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    (The MIT License)\n\n    Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    'Software'), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/ansi-regex-5.0.1.dep.yml",
    "content": "---\nname: ansi-regex\nversion: 5.0.1\ntype: npm\nsummary: Regular expression for matching ANSI escape codes\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/ansi-regex-6.1.0.dep.yml",
    "content": "---\nname: ansi-regex\nversion: 6.1.0\ntype: npm\nsummary: Regular expression for matching ANSI escape codes\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/ansi-styles-4.3.0.dep.yml",
    "content": "---\nname: ansi-styles\nversion: 4.3.0\ntype: npm\nsummary: ANSI escape codes for styling strings in the terminal\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/ansi-styles-6.2.1.dep.yml",
    "content": "---\nname: ansi-styles\nversion: 6.2.1\ntype: npm\nsummary: ANSI escape codes for styling strings in the terminal\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/archiver-utils.dep.yml",
    "content": "---\nname: archiver-utils\nversion: 5.0.2\ntype: npm\nsummary: utility functions for archiver\nhomepage: https://github.com/archiverjs/archiver-utils#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    Copyright (c) 2015 Chris Talkington.\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation\n    files (the \"Software\"), to deal in the Software without\n    restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the\n    Software is furnished to do so, subject to the following\n    conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/archiver.dep.yml",
    "content": "---\nname: archiver\nversion: 7.0.1\ntype: npm\nsummary: a streaming interface for archive generation\nhomepage: https://github.com/archiverjs/node-archiver\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    Copyright (c) 2012-2014 Chris Talkington, contributors.\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation\n    files (the \"Software\"), to deal in the Software without\n    restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the\n    Software is furnished to do so, subject to the following\n    conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/async.dep.yml",
    "content": "---\nname: async\nversion: 3.2.6\ntype: npm\nsummary: Higher-order functions and common patterns for asynchronous code\nhomepage: https://caolan.github.io/async/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) 2010-2018 Caolan McMahon\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/asynckit.dep.yml",
    "content": "---\nname: asynckit\nversion: 0.4.0\ntype: npm\nsummary: Minimal async jobs utility library, with streams support\nhomepage: https://github.com/alexindigo/asynckit#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2016 Alex Indigo\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n- sources: README.md\n  text: AsyncKit is licensed under the MIT license.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/b4a.dep.yml",
    "content": "---\nname: b4a\nversion: 1.6.7\ntype: npm\nsummary: Bridging the gap between buffers and typed arrays\nhomepage: https://github.com/holepunchto/b4a#readme\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE\n  text: |2\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"[]\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Copyright [yyyy] [name of copyright owner]\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\n- sources: README.md\n  text: Apache 2.0\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/balanced-match.dep.yml",
    "content": "---\nname: balanced-match\nversion: 1.0.2\ntype: npm\nsummary: Match balanced character pairs, like \"{\" and \"}\"\nhomepage: https://github.com/juliangruber/balanced-match\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |\n    (MIT)\n\n    Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of\n    this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to\n    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n    of the Software, and to permit persons to whom the Software is furnished to do\n    so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n- sources: README.md\n  text: |-\n    (MIT)\n\n    Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of\n    this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to\n    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n    of the Software, and to permit persons to whom the Software is furnished to do\n    so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/bare-events.dep.yml",
    "content": "---\nname: bare-events\nversion: 2.5.4\ntype: npm\nsummary: Event emitters for JavaScript\nhomepage: https://github.com/holepunchto/bare-events#readme\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE\n  text: |2\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"[]\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Copyright [yyyy] [name of copyright owner]\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\n- sources: README.md\n  text: Apache-2.0\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/base64-js.dep.yml",
    "content": "---\nname: base64-js\nversion: 1.5.1\ntype: npm\nsummary: Base64 encoding/decoding in pure JS\nhomepage: https://github.com/beatgammit/base64-js\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2014 Jameson Little\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: MIT\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/before-after-hook.dep.yml",
    "content": "---\nname: before-after-hook\nversion: 2.2.3\ntype: npm\nsummary: asynchronous before/error/after hooks for internal functionality\nhomepage:\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE\n  text: |2\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"{}\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Copyright 2018 Gregor Martynus and other contributors.\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\n- sources: README.md\n  text: \"[Apache 2.0](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/binary.dep.yml",
    "content": "---\nname: binary\nversion: 0.3.0\ntype: npm\nsummary: Unpack multibyte binary values from buffers\nhomepage:\nlicense: mit\nlicenses:\n- sources: README.markdown\n  text: MIT\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/bottleneck.dep.yml",
    "content": "---\nname: bottleneck\nversion: 2.19.5\ntype: npm\nsummary: Distributed task scheduler and rate limiter\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2014 Simon Grondin\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of\n    this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to\n    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\n    the Software, and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n    FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n    COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n    IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n    CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/brace-expansion-1.1.11.dep.yml",
    "content": "---\nname: brace-expansion\nversion: 1.1.11\ntype: npm\nsummary: Brace expansion as known from sh/bash\nhomepage: https://github.com/juliangruber/brace-expansion\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n- sources: README.md\n  text: |-\n    (MIT)\n\n    Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of\n    this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to\n    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n    of the Software, and to permit persons to whom the Software is furnished to do\n    so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/brace-expansion-2.0.1.dep.yml",
    "content": "---\nname: brace-expansion\nversion: 2.0.1\ntype: npm\nsummary: Brace expansion as known from sh/bash\nhomepage: https://github.com/juliangruber/brace-expansion\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n- sources: README.md\n  text: |-\n    (MIT)\n\n    Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of\n    this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to\n    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n    of the Software, and to permit persons to whom the Software is furnished to do\n    so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/buffer-crc32.dep.yml",
    "content": "---\nname: buffer-crc32\nversion: 1.0.0\ntype: npm\nsummary: A pure javascript CRC32 algorithm that plays nice with binary data\nhomepage: https://github.com/brianloveswords/buffer-crc32\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License\n\n    Copyright (c) 2013-2024 Brian J. Brennan\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the\n    Software, and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\n    INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\n    PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE\n    FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n    ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: MIT/X11\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/buffer.dep.yml",
    "content": "---\nname: buffer\nversion: 6.0.3\ntype: npm\nsummary: Node.js Buffer API, for the browser\nhomepage: https://github.com/feross/buffer\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) Feross Aboukhadijeh, and other contributors.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org), and other contributors.\n    Originally forked from an MIT-licensed module by Romain Beauxis.\nnotices:\n- sources: AUTHORS.md\n  text: |-\n    # Authors\n\n    #### Ordered by first contribution.\n\n    - Romain Beauxis (toots@rastageeks.org)\n    - Tobias Koppers (tobias.koppers@googlemail.com)\n    - Janus (ysangkok@gmail.com)\n    - Rainer Dreyer (rdrey1@gmail.com)\n    - Tõnis Tiigi (tonistiigi@gmail.com)\n    - James Halliday (mail@substack.net)\n    - Michael Williamson (mike@zwobble.org)\n    - elliottcable (github@elliottcable.name)\n    - rafael (rvalle@livelens.net)\n    - Andrew Kelley (superjoe30@gmail.com)\n    - Andreas Madsen (amwebdk@gmail.com)\n    - Mike Brevoort (mike.brevoort@pearson.com)\n    - Brian White (mscdex@mscdex.net)\n    - Feross Aboukhadijeh (feross@feross.org)\n    - Ruben Verborgh (ruben@verborgh.org)\n    - eliang (eliang.cs@gmail.com)\n    - Jesse Tane (jesse.tane@gmail.com)\n    - Alfonso Boza (alfonso@cloud.com)\n    - Mathias Buus (mathiasbuus@gmail.com)\n    - Devon Govett (devongovett@gmail.com)\n    - Daniel Cousens (github@dcousens.com)\n    - Joseph Dykstra (josephdykstra@gmail.com)\n    - Parsha Pourkhomami (parshap+git@gmail.com)\n    - Damjan Košir (damjan.kosir@gmail.com)\n    - daverayment (dave.rayment@gmail.com)\n    - kawanet (u-suke@kawa.net)\n    - Linus Unnebäck (linus@folkdatorn.se)\n    - Nolan Lawson (nolan.lawson@gmail.com)\n    - Calvin Metcalf (calvin.metcalf@gmail.com)\n    - Koki Takahashi (hakatasiloving@gmail.com)\n    - Guy Bedford (guybedford@gmail.com)\n    - Jan Schär (jscissr@gmail.com)\n    - RaulTsc (tomescu.raul@gmail.com)\n    - Matthieu Monsch (monsch@alum.mit.edu)\n    - Dan Ehrenberg (littledan@chromium.org)\n    - Kirill Fomichev (fanatid@ya.ru)\n    - Yusuke Kawasaki (u-suke@kawa.net)\n    - DC (dcposch@dcpos.ch)\n    - John-David Dalton (john.david.dalton@gmail.com)\n    - adventure-yunfei (adventure030@gmail.com)\n    - Emil Bay (github@tixz.dk)\n    - Sam Sudar (sudar.sam@gmail.com)\n    - Volker Mische (volker.mische@gmail.com)\n    - David Walton (support@geekstocks.com)\n    - Сковорода Никита Андреевич (chalkerx@gmail.com)\n    - greenkeeper[bot] (greenkeeper[bot]@users.noreply.github.com)\n    - ukstv (sergey.ukustov@machinomy.com)\n    - Renée Kooi (renee@kooi.me)\n    - ranbochen (ranbochen@qq.com)\n    - Vladimir Borovik (bobahbdb@gmail.com)\n    - greenkeeper[bot] (23040076+greenkeeper[bot]@users.noreply.github.com)\n    - kumavis (aaron@kumavis.me)\n    - Sergey Ukustov (sergey.ukustov@machinomy.com)\n    - Fei Liu (liu.feiwood@gmail.com)\n    - Blaine Bublitz (blaine.bublitz@gmail.com)\n    - clement (clement@seald.io)\n    - Koushik Dutta (koushd@gmail.com)\n    - Jordan Harband (ljharb@gmail.com)\n    - Niklas Mischkulnig (mischnic@users.noreply.github.com)\n    - Nikolai Vavilov (vvnicholas@gmail.com)\n    - Fedor Nezhivoi (gyzerok@users.noreply.github.com)\n    - shuse2 (shus.toda@gmail.com)\n    - Peter Newman (peternewman@users.noreply.github.com)\n    - mathmakgakpak (44949126+mathmakgakpak@users.noreply.github.com)\n    - jkkang (jkkang@smartauth.kr)\n    - Deklan Webster (deklanw@gmail.com)\n    - Martin Heidegger (martin.heidegger@gmail.com)\n\n    #### Generated by bin/update-authors.sh.\n"
  },
  {
    "path": ".licenses/npm/call-bind-apply-helpers.dep.yml",
    "content": "---\nname: call-bind-apply-helpers\nversion: 1.0.2\ntype: npm\nsummary: Helper functions around Function call/apply/bind, for use in `call-bind`\nhomepage: https://github.com/ljharb/call-bind-apply-helpers#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2024 Jordan Harband\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/color-convert.dep.yml",
    "content": "---\nname: color-convert\nversion: 2.0.1\ntype: npm\nsummary: Plain color conversion functions\nhomepage:\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |+\n    Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    \"Software\"), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n- sources: README.md\n  text: Copyright &copy; 2011-2016, Heather Arthur and Josh Junon. Licensed under\n    the [MIT License](LICENSE).\nnotices: []\n...\n"
  },
  {
    "path": ".licenses/npm/color-name.dep.yml",
    "content": "---\nname: color-name\nversion: 1.1.4\ntype: npm\nsummary: A list of color names and its values\nhomepage: https://github.com/colorjs/color-name\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    The MIT License (MIT)\n    Copyright (c) 2015 Dmitry Ivanov\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/combined-stream.dep.yml",
    "content": "---\nname: combined-stream\nversion: 1.0.8\ntype: npm\nsummary: A stream that emits multiple other streams one after another.\nhomepage: https://github.com/felixge/node-combined-stream\nlicense: mit\nlicenses:\n- sources: License\n  text: |\n    Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: Readme.md\n  text: combined-stream is licensed under the MIT license.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/compress-commons.dep.yml",
    "content": "---\nname: compress-commons\nversion: 6.0.2\ntype: npm\nsummary: a library that defines a common interface for working with archive formats\n  within node\nhomepage: https://github.com/archiverjs/node-compress-commons\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    Copyright (c) 2014 Chris Talkington, contributors.\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation\n    files (the \"Software\"), to deal in the Software without\n    restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the\n    Software is furnished to do so, subject to the following\n    conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/concat-map.dep.yml",
    "content": "---\nname: concat-map\nversion: 0.0.1\ntype: npm\nsummary: concatenative mapdashery\nhomepage:\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    This software is released under the MIT license:\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of\n    this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to\n    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\n    the Software, and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n    FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n    COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n    IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n    CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.markdown\n  text: MIT\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/core-util-is.dep.yml",
    "content": "---\nname: core-util-is\nversion: 1.0.3\ntype: npm\nsummary: The `util.is*` functions introduced in Node v0.12.\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright Node.js contributors. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/crc-32.dep.yml",
    "content": "---\nname: crc-32\nversion: 1.2.2\ntype: npm\nsummary: Pure-JS CRC-32\nhomepage: https://sheetjs.com/\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE\n  text: |2\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"{}\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Copyright (C) 2014-present   SheetJS LLC\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\n- sources: README.md\n  text: |-\n    Please consult the attached LICENSE file for details.  All rights not explicitly\n    granted by the Apache 2.0 license are reserved by the Original Author.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/crc32-stream.dep.yml",
    "content": "---\nname: crc32-stream\nversion: 6.0.0\ntype: npm\nsummary: a streaming CRC32 checksumer\nhomepage: https://github.com/archiverjs/node-crc32-stream\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    Copyright (c) 2014 Chris Talkington, contributors.\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation\n    files (the \"Software\"), to deal in the Software without\n    restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the\n    Software is furnished to do so, subject to the following\n    conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/cross-spawn.dep.yml",
    "content": "---\nname: cross-spawn\nversion: 7.0.6\ntype: npm\nsummary: Cross platform child_process#spawn and child_process#spawnSync\nhomepage: https://github.com/moxystudio/node-cross-spawn\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: Released under the [MIT License](https://www.opensource.org/licenses/mit-license.php).\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/debug.dep.yml",
    "content": "---\nname: debug\nversion: 4.4.1\ntype: npm\nsummary: Lightweight debugging utility for Node.js and the browser\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |+\n    (The MIT License)\n\n    Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>\n    Copyright (c) 2018-2021 Josh Junon\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n    and associated documentation files (the 'Software'), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n    and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial\n    portions of the Software.\n\n    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\n    LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n- sources: README.md\n  text: |-\n    (The MIT License)\n\n    Copyright (c) 2014-2017 TJ Holowaychuk &lt;tj@vision-media.ca&gt;\n    Copyright (c) 2018-2021 Josh Junon\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    'Software'), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/delayed-stream.dep.yml",
    "content": "---\nname: delayed-stream\nversion: 1.0.0\ntype: npm\nsummary: Buffers events from a stream until you are ready to handle them.\nhomepage: https://github.com/felixge/node-delayed-stream\nlicense: mit\nlicenses:\n- sources: License\n  text: |\n    Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: Readme.md\n  text: delayed-stream is licensed under the MIT license.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/deprecation.dep.yml",
    "content": "---\nname: deprecation\nversion: 2.3.1\ntype: npm\nsummary: Log a deprecation message with stack\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) Gregor Martynus and contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n- sources: README.md\n  text: \"[ISC](LICENSE)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/dunder-proto.dep.yml",
    "content": "---\nname: dunder-proto\nversion: 1.0.1\ntype: npm\nsummary: If available, the `Object.prototype.__proto__` accessor and mutator, call-bound\nhomepage: https://github.com/es-shims/dunder-proto#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2024 ECMAScript Shims\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/eastasianwidth.dep.yml",
    "content": "---\nname: eastasianwidth\nversion: 0.2.0\ntype: npm\nsummary: Get East Asian Width from a character.\nhomepage:\nlicense: mit\nlicenses:\n- sources: Auto-generated MIT license text\n  text: |\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/emoji-regex-8.0.0.dep.yml",
    "content": "---\nname: emoji-regex\nversion: 8.0.0\ntype: npm\nsummary: A regular expression to match all Emoji-only symbols as per the Unicode Standard.\nhomepage: https://mths.be/emoji-regex\nlicense: mit\nlicenses:\n- sources: LICENSE-MIT.txt\n  text: |\n    Copyright Mathias Bynens <https://mathiasbynens.be/>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    \"Software\"), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: _emoji-regex_ is available under the [MIT](https://mths.be/mit) license.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/emoji-regex-9.2.2.dep.yml",
    "content": "---\nname: emoji-regex\nversion: 9.2.2\ntype: npm\nsummary: A regular expression to match all Emoji-only symbols as per the Unicode Standard.\nhomepage: https://mths.be/emoji-regex\nlicense: mit\nlicenses:\n- sources: LICENSE-MIT.txt\n  text: |\n    Copyright Mathias Bynens <https://mathiasbynens.be/>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    \"Software\"), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: _emoji-regex_ is available under the [MIT](https://mths.be/mit) license.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/es-define-property.dep.yml",
    "content": "---\nname: es-define-property\nversion: 1.0.1\ntype: npm\nsummary: \"`Object.defineProperty`, but not IE 8's broken one.\"\nhomepage: https://github.com/ljharb/es-define-property#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2024 Jordan Harband\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/es-errors.dep.yml",
    "content": "---\nname: es-errors\nversion: 1.3.0\ntype: npm\nsummary: A simple cache for a few of the JS Error constructors.\nhomepage: https://github.com/ljharb/es-errors#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2024 Jordan Harband\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/es-object-atoms.dep.yml",
    "content": "---\nname: es-object-atoms\nversion: 1.1.1\ntype: npm\nsummary: 'ES Object-related atoms: Object, ToObject, RequireObjectCoercible'\nhomepage: https://github.com/ljharb/es-object-atoms#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2024 Jordan Harband\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/es-set-tostringtag.dep.yml",
    "content": "---\nname: es-set-tostringtag\nversion: 2.1.0\ntype: npm\nsummary: A helper to optimistically set Symbol.toStringTag, when possible.\nhomepage: https://github.com/es-shims/es-set-tostringtag#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2022 ECMAScript Shims\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/event-target-shim.dep.yml",
    "content": "---\nname: event-target-shim\nversion: 5.0.1\ntype: npm\nsummary: An implementation of WHATWG EventTarget interface.\nhomepage: https://github.com/mysticatea/event-target-shim\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |+\n    The MIT License (MIT)\n\n    Copyright (c) 2015 Toru Nagashima\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n\nnotices: []\n...\n"
  },
  {
    "path": ".licenses/npm/events.dep.yml",
    "content": "---\nname: events\nversion: 3.3.0\ntype: npm\nsummary: Node's event emitter for all engines.\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT\n\n    Copyright Joyent, Inc. and other Node contributors.\n\n    Permission is hereby granted, free of charge, to any person obtaining a\n    copy of this software and associated documentation files (the\n    \"Software\"), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to permit\n    persons to whom the Software is furnished to do so, subject to the\n    following conditions:\n\n    The above copyright notice and this permission notice shall be included\n    in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n    NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n    DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n    OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n    USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: Readme.md\n  text: |-\n    [MIT](./LICENSE)\n\n    [node.js docs]: https://nodejs.org/dist/v11.13.0/docs/api/events.html\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/fast-fifo.dep.yml",
    "content": "---\nname: fast-fifo\nversion: 1.3.2\ntype: npm\nsummary: A fast fifo implementation similar to the one powering nextTick in Node.js\n  core\nhomepage: https://github.com/mafintosh/fast-fifo\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2019 Mathias Buus\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: MIT\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/fast-xml-parser.dep.yml",
    "content": "---\nname: fast-xml-parser\nversion: 5.2.3\ntype: npm\nsummary: Validate XML, Parse XML, Build XML without C/C++ based libraries\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2017 Amit Kumar Gupta\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n- sources: README.md\n  text: |-\n    * MIT License\n\n    ![Donate $5](static/img/donation_quote.png)\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/foreground-child.dep.yml",
    "content": "---\nname: foreground-child\nversion: 3.3.1\ntype: npm\nsummary: Run a child as if it's the foreground process. Give it stdio. Exit when it\n  exits.\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) 2015-2023 Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/form-data.dep.yml",
    "content": "---\nname: form-data\nversion: 2.5.3\ntype: npm\nsummary: A library to create readable \"multipart/form-data\" streams. Can be used to\n  submit forms and file uploads to other web applications.\nhomepage:\nlicense: mit\nlicenses:\n- sources: License\n  text: |\n    Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors\n\n     Permission is hereby granted, free of charge, to any person obtaining a copy\n     of this software and associated documentation files (the \"Software\"), to deal\n     in the Software without restriction, including without limitation the rights\n     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n     copies of the Software, and to permit persons to whom the Software is\n     furnished to do so, subject to the following conditions:\n\n     The above copyright notice and this permission notice shall be included in\n     all copies or substantial portions of the Software.\n\n     THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n     THE SOFTWARE.\n- sources: Readme.md\n  text: Form-Data is released under the [MIT](License) license.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/function-bind.dep.yml",
    "content": "---\nname: function-bind\nversion: 1.1.2\ntype: npm\nsummary: Implementation of Function.prototype.bind\nhomepage: https://github.com/Raynos/function-bind\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |+\n    Copyright (c) 2013 Raynos.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n\nnotices: []\n...\n"
  },
  {
    "path": ".licenses/npm/get-intrinsic.dep.yml",
    "content": "---\nname: get-intrinsic\nversion: 1.3.0\ntype: npm\nsummary: Get and robustly cache all JS language-level intrinsics at first require\n  time\nhomepage: https://github.com/ljharb/get-intrinsic#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2020 Jordan Harband\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/get-proto.dep.yml",
    "content": "---\nname: get-proto\nversion: 1.0.1\ntype: npm\nsummary: Robustly get the [[Prototype]] of an object\nhomepage: https://github.com/ljharb/get-proto#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2025 Jordan Harband\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/glob.dep.yml",
    "content": "---\nname: glob\nversion: 10.4.5\ntype: npm\nsummary: the most correct and second fastest glob implementation in JavaScript\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) 2009-2023 Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/gopd.dep.yml",
    "content": "---\nname: gopd\nversion: 1.2.0\ntype: npm\nsummary: \"`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.\"\nhomepage: https://github.com/ljharb/gopd#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2022 Jordan Harband\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/graceful-fs.dep.yml",
    "content": "---\nname: graceful-fs\nversion: 4.2.11\ntype: npm\nsummary: A drop-in replacement for fs, making various improvements.\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/has-symbols.dep.yml",
    "content": "---\nname: has-symbols\nversion: 1.1.0\ntype: npm\nsummary: Determine if the JS environment has Symbol support. Supports spec, or shams.\nhomepage: https://github.com/ljharb/has-symbols#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2016 Jordan Harband\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/has-tostringtag.dep.yml",
    "content": "---\nname: has-tostringtag\nversion: 1.0.2\ntype: npm\nsummary: Determine if the JS environment has `Symbol.toStringTag` support. Supports\n  spec, or shams.\nhomepage: https://github.com/inspect-js/has-tostringtag#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2021 Inspect JS\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/hasown.dep.yml",
    "content": "---\nname: hasown\nversion: 2.0.2\ntype: npm\nsummary: A robust, ES3 compatible, \"has own property\" predicate.\nhomepage: https://github.com/inspect-js/hasOwn#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) Jordan Harband and contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/http-proxy-agent.dep.yml",
    "content": "---\nname: http-proxy-agent\nversion: 7.0.2\ntype: npm\nsummary: An HTTP(s) proxy `http.Agent` implementation for HTTP\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    (The MIT License)\n\n    Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    'Software'), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/https-proxy-agent.dep.yml",
    "content": "---\nname: https-proxy-agent\nversion: 7.0.6\ntype: npm\nsummary: An HTTP(s) proxy `http.Agent` implementation for HTTPS\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    (The MIT License)\n\n    Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    'Software'), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/ieee754.dep.yml",
    "content": "---\nname: ieee754\nversion: 1.2.1\ntype: npm\nsummary: Read/write IEEE754 floating point numbers from/to a Buffer or array-like\n  object\nhomepage:\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright 2008 Fair Oaks Labs, Inc.\n\n    Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n    1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n    2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n    3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\n    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n- sources: README.md\n  text: BSD 3 Clause. Copyright (c) 2008, Fair Oaks Labs, Inc.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/inherits.dep.yml",
    "content": "---\nname: inherits\nversion: 2.0.4\ntype: npm\nsummary: Browser-friendly inheritance fully compatible with standard node.js inherits()\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |+\n    The ISC License\n\n    Copyright (c) Isaac Z. Schlueter\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n    REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\n    FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n    LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n    OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n    PERFORMANCE OF THIS SOFTWARE.\n\nnotices: []\n...\n"
  },
  {
    "path": ".licenses/npm/is-fullwidth-code-point.dep.yml",
    "content": "---\nname: is-fullwidth-code-point\nversion: 3.0.0\ntype: npm\nsummary: Check if the character represented by a given Unicode code point is fullwidth\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: readme.md\n  text: MIT © [Sindre Sorhus](https://sindresorhus.com)\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/is-plain-object.dep.yml",
    "content": "---\nname: is-plain-object\nversion: 5.0.0\ntype: npm\nsummary: Returns true if an object was created by the `Object` constructor, or Object.create(null).\nhomepage: https://github.com/jonschlinkert/is-plain-object\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2014-2017, Jon Schlinkert.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: |-\n    Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert).\n    Released under the [MIT License](LICENSE).\n\n    ***\n\n    _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 28, 2019._\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/is-stream.dep.yml",
    "content": "---\nname: is-stream\nversion: 2.0.1\ntype: npm\nsummary: Check if something is a Node.js stream\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/isarray.dep.yml",
    "content": "---\nname: isarray\nversion: 1.0.0\ntype: npm\nsummary: Array#isArray for older browsers\nhomepage: https://github.com/juliangruber/isarray\nlicense: mit\nlicenses:\n- sources: README.md\n  text: |-\n    (MIT)\n\n    Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of\n    this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to\n    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n    of the Software, and to permit persons to whom the Software is furnished to do\n    so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/isexe.dep.yml",
    "content": "---\nname: isexe\nversion: 2.0.0\ntype: npm\nsummary: Minimal module to check if a file is executable.\nhomepage: https://github.com/isaacs/isexe#readme\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/jackspeak.dep.yml",
    "content": "---\nname: jackspeak\nversion: 3.4.3\ntype: npm\nsummary: A very strict and proper argument parser.\nhomepage:\nlicense: blueoak-1.0.0\nlicenses:\n- sources: LICENSE.md\n  text: |\n    # Blue Oak Model License\n\n    Version 1.0.0\n\n    ## Purpose\n\n    This license gives everyone as much permission to work with\n    this software as possible, while protecting contributors\n    from liability.\n\n    ## Acceptance\n\n    In order to receive this license, you must agree to its\n    rules. The rules of this license are both obligations\n    under that agreement and conditions to your license.\n    You must not do anything with this software that triggers\n    a rule that you cannot or will not follow.\n\n    ## Copyright\n\n    Each contributor licenses you to do everything with this\n    software that would otherwise infringe that contributor's\n    copyright in it.\n\n    ## Notices\n\n    You must ensure that everyone who gets a copy of\n    any part of this software from you, with or without\n    changes, also gets the text of this license or a link to\n    <https://blueoakcouncil.org/license/1.0.0>.\n\n    ## Excuse\n\n    If anyone notifies you in writing that you have not\n    complied with [Notices](#notices), you can keep your\n    license by taking all practical steps to comply within 30\n    days after the notice. If you do not do so, your license\n    ends immediately.\n\n    ## Patent\n\n    Each contributor licenses you to do everything with this\n    software that would otherwise infringe any patent claims\n    they can license or become able to license.\n\n    ## Reliability\n\n    No contributor can revoke this license.\n\n    ## No Liability\n\n    **_As far as the law allows, this software comes as is,\n    without any warranty or condition, and no contributor\n    will be liable to anyone for any damages related to this\n    software or this license, under any kind of legal claim._**\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/jwt-decode.dep.yml",
    "content": "---\nname: jwt-decode\nversion: 3.1.2\ntype: npm\nsummary: Decode JWT tokens, mostly useful for browser applications.\nhomepage: https://github.com/auth0/jwt-decode#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: \"The MIT License (MIT)\\n \\nCopyright (c) 2015 Auth0, Inc. <support@auth0.com>\n    (http://auth0.com)\\n \\nPermission is hereby granted, free of charge, to any person\n    obtaining a copy\\nof this software and associated documentation files (the \\\"Software\\\"),\n    to deal\\nin the Software without restriction, including without limitation the\n    rights\\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\ncopies\n    of the Software, and to permit persons to whom the Software is\\nfurnished to do\n    so, subject to the following conditions:\\n \\nThe above copyright notice and this\n    permission notice shall be included in all\\ncopies or substantial portions of\n    the Software.\\n \\nTHE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY\n    KIND, EXPRESS OR\\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS\n    FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR\n    COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER\n    IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\nSOFTWARE.\\n\"\n- sources: README.md\n  text: |-\n    This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.\n\n    [browserify]: http://browserify.org\n    [webpack]: http://webpack.github.io/\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/lazystream.dep.yml",
    "content": "---\nname: lazystream\nversion: 1.0.1\ntype: npm\nsummary: Open Node Streams on demand.\nhomepage: https://github.com/jpommerening/node-lazystream\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |+\n    Copyright (c) 2013 J. Pommerening, contributors.\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation\n    files (the \"Software\"), to deal in the Software without\n    restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the\n    Software is furnished to do so, subject to the following\n    conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\n\nnotices: []\n...\n"
  },
  {
    "path": ".licenses/npm/lodash.dep.yml",
    "content": "---\nname: lodash\nversion: 4.17.21\ntype: npm\nsummary: Lodash modular utilities.\nhomepage: https://lodash.com/\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright OpenJS Foundation and other contributors <https://openjsf.org/>\n\n    Based on Underscore.js, copyright Jeremy Ashkenas,\n    DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>\n\n    This software consists of voluntary contributions made by many\n    individuals. For exact contribution history, see the revision history\n    available at https://github.com/lodash/lodash\n\n    The following license applies to all parts of this software except as\n    documented below:\n\n    ====\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    \"Software\"), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n    ====\n\n    Copyright and related rights for sample code are waived via CC0. Sample\n    code is defined as all source code displayed within the prose of the\n    documentation.\n\n    CC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n    ====\n\n    Files located in the node_modules and vendor directories are externally\n    maintained libraries used by this software which have their own\n    licenses; we recommend you read them, as their terms may differ from the\n    terms above.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/lru-cache.dep.yml",
    "content": "---\nname: lru-cache\nversion: 10.4.3\ntype: npm\nsummary: A cache object that deletes the least-recently-used items.\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) 2010-2023 Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/math-intrinsics.dep.yml",
    "content": "---\nname: math-intrinsics\nversion: 1.1.0\ntype: npm\nsummary: ES Math-related intrinsics and helpers, robustly cached.\nhomepage: https://github.com/es-shims/math-intrinsics#readme\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2024 ECMAScript Shims\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/mime-db.dep.yml",
    "content": "---\nname: mime-db\nversion: 1.52.0\ntype: npm\nsummary: Media Type Database\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    (The MIT License)\n\n    Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>\n    Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    'Software'), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/mime-types.dep.yml",
    "content": "---\nname: mime-types\nversion: 2.1.35\ntype: npm\nsummary: The ultimate javascript content-type utility.\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    (The MIT License)\n\n    Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>\n    Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    'Software'), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: |-\n    [MIT](LICENSE)\n\n    [ci-image]: https://badgen.net/github/checks/jshttp/mime-types/master?label=ci\n    [ci-url]: https://github.com/jshttp/mime-types/actions/workflows/ci.yml\n    [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-types/master\n    [coveralls-url]: https://coveralls.io/r/jshttp/mime-types?branch=master\n    [node-version-image]: https://badgen.net/npm/node/mime-types\n    [node-version-url]: https://nodejs.org/en/download\n    [npm-downloads-image]: https://badgen.net/npm/dm/mime-types\n    [npm-url]: https://npmjs.org/package/mime-types\n    [npm-version-image]: https://badgen.net/npm/v/mime-types\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/minimatch-3.1.2.dep.yml",
    "content": "---\nname: minimatch\nversion: 3.1.2\ntype: npm\nsummary: a glob matcher in javascript\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/minimatch-5.1.6.dep.yml",
    "content": "---\nname: minimatch\nversion: 5.1.6\ntype: npm\nsummary: a glob matcher in javascript\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/minimatch-9.0.5.dep.yml",
    "content": "---\nname: minimatch\nversion: 9.0.5\ntype: npm\nsummary: a glob matcher in javascript\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/minimist.dep.yml",
    "content": "---\nname: minimist\nversion: 1.2.8\ntype: npm\nsummary: parse argument options\nhomepage: https://github.com/minimistjs/minimist\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    This software is released under the MIT license:\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of\n    this software and associated documentation files (the \"Software\"), to deal in\n    the Software without restriction, including without limitation the rights to\n    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\n    the Software, and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n    FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n    COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n    IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n    CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: |-\n    MIT\n\n    [package-url]: https://npmjs.org/package/minimist\n    [npm-version-svg]: https://versionbadg.es/minimistjs/minimist.svg\n    [npm-badge-png]: https://nodei.co/npm/minimist.png?downloads=true&stars=true\n    [license-image]: https://img.shields.io/npm/l/minimist.svg\n    [license-url]: LICENSE\n    [downloads-image]: https://img.shields.io/npm/dm/minimist.svg\n    [downloads-url]: https://npm-stat.com/charts.html?package=minimist\n    [codecov-image]: https://codecov.io/gh/minimistjs/minimist/branch/main/graphs/badge.svg\n    [codecov-url]: https://app.codecov.io/gh/minimistjs/minimist/\n    [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/minimistjs/minimist\n    [actions-url]: https://github.com/minimistjs/minimist/actions\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/minipass.dep.yml",
    "content": "---\nname: minipass\nversion: 7.1.2\ntype: npm\nsummary: minimal implementation of a PassThrough stream\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/mkdirp.dep.yml",
    "content": "---\nname: mkdirp\nversion: 0.5.6\ntype: npm\nsummary: Recursively mkdir, like `mkdir -p`\nhomepage:\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright 2010 James Halliday (mail@substack.net)\n\n    This project is free software released under the MIT/X11 license:\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: readme.markdown\n  text: MIT\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/ms.dep.yml",
    "content": "---\nname: ms\nversion: 2.1.3\ntype: npm\nsummary: Tiny millisecond conversion utility\nhomepage:\nlicense: mit\nlicenses:\n- sources: license.md\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2020 Vercel, Inc.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/node-fetch.dep.yml",
    "content": "---\nname: node-fetch\nversion: 2.7.0\ntype: npm\nsummary: A light-weight module that brings window.fetch to node.js\nhomepage: https://github.com/bitinn/node-fetch\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |+\n    The MIT License (MIT)\n\n    Copyright (c) 2016 David Frank\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n\n- sources: README.md\n  text: |-\n    MIT\n\n    [npm-image]: https://flat.badgen.net/npm/v/node-fetch\n    [npm-url]: https://www.npmjs.com/package/node-fetch\n    [travis-image]: https://flat.badgen.net/travis/bitinn/node-fetch\n    [travis-url]: https://travis-ci.org/bitinn/node-fetch\n    [codecov-image]: https://flat.badgen.net/codecov/c/github/bitinn/node-fetch/master\n    [codecov-url]: https://codecov.io/gh/bitinn/node-fetch\n    [install-size-image]: https://flat.badgen.net/packagephobia/install/node-fetch\n    [install-size-url]: https://packagephobia.now.sh/result?p=node-fetch\n    [discord-image]: https://img.shields.io/discord/619915844268326952?color=%237289DA&label=Discord&style=flat-square\n    [discord-url]: https://discord.gg/Zxbndcm\n    [opencollective-image]: https://opencollective.com/node-fetch/backers.svg\n    [opencollective-url]: https://opencollective.com/node-fetch\n    [whatwg-fetch]: https://fetch.spec.whatwg.org/\n    [response-init]: https://fetch.spec.whatwg.org/#responseinit\n    [node-readable]: https://nodejs.org/api/stream.html#stream_readable_streams\n    [mdn-headers]: https://developer.mozilla.org/en-US/docs/Web/API/Headers\n    [LIMITS.md]: https://github.com/bitinn/node-fetch/blob/master/LIMITS.md\n    [ERROR-HANDLING.md]: https://github.com/bitinn/node-fetch/blob/master/ERROR-HANDLING.md\n    [UPGRADE-GUIDE.md]: https://github.com/bitinn/node-fetch/blob/master/UPGRADE-GUIDE.md\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/normalize-path.dep.yml",
    "content": "---\nname: normalize-path\nversion: 3.0.0\ntype: npm\nsummary: Normalize slashes in a file path to be posix/unix-like forward slashes. Also\n  condenses repeat slashes to a single slash and removes and trailing slashes, unless\n  disabled.\nhomepage: https://github.com/jonschlinkert/normalize-path\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2014-2018, Jon Schlinkert.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: |-\n    Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).\n    Released under the [MIT License](LICENSE).\n\n    ***\n\n    _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on April 19, 2018._\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/once.dep.yml",
    "content": "---\nname: once\nversion: 1.4.0\ntype: npm\nsummary: Run a function exactly one time\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/package-json-from-dist.dep.yml",
    "content": "---\nname: package-json-from-dist\nversion: 1.0.1\ntype: npm\nsummary: Load the local package.json from either src or dist folder\nhomepage:\nlicense: other\nlicenses:\n- sources: LICENSE.md\n  text: |\n    All packages under `src/` are licensed according to the terms in\n    their respective `LICENSE` or `LICENSE.md` files.\n\n    The remainder of this project is licensed under the Blue Oak\n    Model License, as follows:\n\n    -----\n\n    # Blue Oak Model License\n\n    Version 1.0.0\n\n    ## Purpose\n\n    This license gives everyone as much permission to work with\n    this software as possible, while protecting contributors\n    from liability.\n\n    ## Acceptance\n\n    In order to receive this license, you must agree to its\n    rules.  The rules of this license are both obligations\n    under that agreement and conditions to your license.\n    You must not do anything with this software that triggers\n    a rule that you cannot or will not follow.\n\n    ## Copyright\n\n    Each contributor licenses you to do everything with this\n    software that would otherwise infringe that contributor's\n    copyright in it.\n\n    ## Notices\n\n    You must ensure that everyone who gets a copy of\n    any part of this software from you, with or without\n    changes, also gets the text of this license or a link to\n    <https://blueoakcouncil.org/license/1.0.0>.\n\n    ## Excuse\n\n    If anyone notifies you in writing that you have not\n    complied with [Notices](#notices), you can keep your\n    license by taking all practical steps to comply within 30\n    days after the notice.  If you do not do so, your license\n    ends immediately.\n\n    ## Patent\n\n    Each contributor licenses you to do everything with this\n    software that would otherwise infringe any patent claims\n    they can license or become able to license.\n\n    ## Reliability\n\n    No contributor can revoke this license.\n\n    ## No Liability\n\n    ***As far as the law allows, this software comes as is,\n    without any warranty or condition, and no contributor\n    will be liable to anyone for any damages related to this\n    software or this license, under any kind of legal claim.***\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/path-key.dep.yml",
    "content": "---\nname: path-key\nversion: 3.1.1\ntype: npm\nsummary: Get the PATH environment variable key cross-platform\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/path-scurry.dep.yml",
    "content": "---\nname: path-scurry\nversion: 1.11.1\ntype: npm\nsummary: walk paths fast and efficiently\nhomepage:\nlicense: blueoak-1.0.0\nlicenses:\n- sources: LICENSE.md\n  text: |\n    # Blue Oak Model License\n\n    Version 1.0.0\n\n    ## Purpose\n\n    This license gives everyone as much permission to work with\n    this software as possible, while protecting contributors\n    from liability.\n\n    ## Acceptance\n\n    In order to receive this license, you must agree to its\n    rules.  The rules of this license are both obligations\n    under that agreement and conditions to your license.\n    You must not do anything with this software that triggers\n    a rule that you cannot or will not follow.\n\n    ## Copyright\n\n    Each contributor licenses you to do everything with this\n    software that would otherwise infringe that contributor's\n    copyright in it.\n\n    ## Notices\n\n    You must ensure that everyone who gets a copy of\n    any part of this software from you, with or without\n    changes, also gets the text of this license or a link to\n    <https://blueoakcouncil.org/license/1.0.0>.\n\n    ## Excuse\n\n    If anyone notifies you in writing that you have not\n    complied with [Notices](#notices), you can keep your\n    license by taking all practical steps to comply within 30\n    days after the notice.  If you do not do so, your license\n    ends immediately.\n\n    ## Patent\n\n    Each contributor licenses you to do everything with this\n    software that would otherwise infringe any patent claims\n    they can license or become able to license.\n\n    ## Reliability\n\n    No contributor can revoke this license.\n\n    ## No Liability\n\n    ***As far as the law allows, this software comes as is,\n    without any warranty or condition, and no contributor\n    will be liable to anyone for any damages related to this\n    software or this license, under any kind of legal claim.***\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/process-nextick-args.dep.yml",
    "content": "---\nname: process-nextick-args\nversion: 2.0.1\ntype: npm\nsummary: process.nextTick but always with args\nhomepage: https://github.com/calvinmetcalf/process-nextick-args\nlicense: mit\nlicenses:\n- sources: license.md\n  text: |\n    # Copyright (c) 2015 Calvin Metcalf\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    **THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.**\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/process.dep.yml",
    "content": "---\nname: process\nversion: 0.11.10\ntype: npm\nsummary: process information for node.js and browsers\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    (The MIT License)\n\n    Copyright (c) 2013 Roman Shtylman <shtylman@gmail.com>\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    'Software'), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/readable-stream-2.3.8.dep.yml",
    "content": "---\nname: readable-stream\nversion: 2.3.8\ntype: npm\nsummary: Streams3, a user-land copy of the stream library from Node.js\nhomepage:\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    Node.js is licensed for use as follows:\n\n    \"\"\"\n    Copyright Node.js contributors. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\n    \"\"\"\n\n    This license applies to parts of Node.js originating from the\n    https://github.com/joyent/node repository:\n\n    \"\"\"\n    Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\n    \"\"\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/readable-stream-4.7.0.dep.yml",
    "content": "---\nname: readable-stream\nversion: 4.7.0\ntype: npm\nsummary: Node.js Streams, a user-land copy of the stream library from Node.js\nhomepage: https://github.com/nodejs/readable-stream\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    Node.js is licensed for use as follows:\n\n    \"\"\"\n    Copyright Node.js contributors. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\n    \"\"\"\n\n    This license applies to parts of Node.js originating from the\n    https://github.com/joyent/node repository:\n\n    \"\"\"\n    Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\n    \"\"\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/readdir-glob.dep.yml",
    "content": "---\nname: readdir-glob\nversion: 1.1.3\ntype: npm\nsummary: Recursive fs.readdir with streaming API and glob filtering.\nhomepage: https://github.com/Yqnn/node-readdir-glob\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE\n  text: |2-\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"[]\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Copyright 2020 Yann Armelin\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/safe-buffer-5.1.2.dep.yml",
    "content": "---\nname: safe-buffer\nversion: 5.1.2\ntype: npm\nsummary: Safer Node.js Buffer API\nhomepage: https://github.com/feross/safe-buffer\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) Feross Aboukhadijeh\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org)\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/safe-buffer-5.2.1.dep.yml",
    "content": "---\nname: safe-buffer\nversion: 5.2.1\ntype: npm\nsummary: Safer Node.js Buffer API\nhomepage: https://github.com/feross/safe-buffer\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) Feross Aboukhadijeh\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org)\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/sax.dep.yml",
    "content": "---\nname: sax\nversion: 1.4.1\ntype: npm\nsummary: An evented streaming XML parser in JavaScript\nhomepage:\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) 2010-2024 Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n    ====\n\n    `String.fromCodePoint` by Mathias Bynens used according to terms of MIT\n    License, as follows:\n\n    Copyright (c) 2010-2024 Mathias Bynens <https://mathiasbynens.be/>\n\n        Permission is hereby granted, free of charge, to any person obtaining\n        a copy of this software and associated documentation files (the\n        \"Software\"), to deal in the Software without restriction, including\n        without limitation the rights to use, copy, modify, merge, publish,\n        distribute, sublicense, and/or sell copies of the Software, and to\n        permit persons to whom the Software is furnished to do so, subject to\n        the following conditions:\n\n        The above copyright notice and this permission notice shall be\n        included in all copies or substantial portions of the Software.\n\n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n        EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n        NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n        LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n        OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n        WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/semver-6.3.1.dep.yml",
    "content": "---\nname: semver\nversion: 6.3.1\ntype: npm\nsummary: The semantic version parser used by npm.\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/semver-7.7.2.dep.yml",
    "content": "---\nname: semver\nversion: 7.7.2\ntype: npm\nsummary: The semantic version parser used by npm.\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/shebang-command.dep.yml",
    "content": "---\nname: shebang-command\nversion: 2.0.0\ntype: npm\nsummary: Get the command from a shebang\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/shebang-regex.dep.yml",
    "content": "---\nname: shebang-regex\nversion: 3.0.0\ntype: npm\nsummary: Regular expression for matching a shebang line\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n- sources: readme.md\n  text: MIT © [Sindre Sorhus](https://sindresorhus.com)\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/signal-exit.dep.yml",
    "content": "---\nname: signal-exit\nversion: 4.1.0\ntype: npm\nsummary: when you want to fire an event no matter how a process exits.\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE.txt\n  text: |\n    The ISC License\n\n    Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software\n    for any purpose with or without fee is hereby granted, provided\n    that the above copyright notice and this permission notice\n    appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n    OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\n    LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\n    OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\n    WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\n    ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/streamx.dep.yml",
    "content": "---\nname: streamx\nversion: 2.22.0\ntype: npm\nsummary: An iteration of the Node.js core streams with a series of improvements\nhomepage: https://github.com/mafintosh/streamx\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2019 Mathias Buus\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: MIT\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/string-width-4.2.3.dep.yml",
    "content": "---\nname: string-width\nversion: 4.2.3\ntype: npm\nsummary: Get the visual width of a string - the number of columns required to display\n  it\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/string-width-5.1.2.dep.yml",
    "content": "---\nname: string-width\nversion: 5.1.2\ntype: npm\nsummary: Get the visual width of a string - the number of columns required to display\n  it\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/string-width-cjs.dep.yml",
    "content": "---\nname: string-width-cjs\nversion: 4.2.3\ntype: npm\nsummary: Get the visual width of a string - the number of columns required to display\n  it\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/string_decoder-1.1.1.dep.yml",
    "content": "---\nname: string_decoder\nversion: 1.1.1\ntype: npm\nsummary: The string_decoder module from Node core\nhomepage: https://github.com/nodejs/string_decoder\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |+\n    Node.js is licensed for use as follows:\n\n    \"\"\"\n    Copyright Node.js contributors. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\n    \"\"\"\n\n    This license applies to parts of Node.js originating from the\n    https://github.com/joyent/node repository:\n\n    \"\"\"\n    Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\n    \"\"\"\n\nnotices: []\n...\n"
  },
  {
    "path": ".licenses/npm/string_decoder-1.3.0.dep.yml",
    "content": "---\nname: string_decoder\nversion: 1.3.0\ntype: npm\nsummary: The string_decoder module from Node core\nhomepage: https://github.com/nodejs/string_decoder\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: |+\n    Node.js is licensed for use as follows:\n\n    \"\"\"\n    Copyright Node.js contributors. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\n    \"\"\"\n\n    This license applies to parts of Node.js originating from the\n    https://github.com/joyent/node repository:\n\n    \"\"\"\n    Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\n    \"\"\"\n\nnotices: []\n...\n"
  },
  {
    "path": ".licenses/npm/strip-ansi-6.0.1.dep.yml",
    "content": "---\nname: strip-ansi\nversion: 6.0.1\ntype: npm\nsummary: Strip ANSI escape codes from a string\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/strip-ansi-7.1.0.dep.yml",
    "content": "---\nname: strip-ansi\nversion: 7.1.0\ntype: npm\nsummary: Strip ANSI escape codes from a string\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/strip-ansi-cjs.dep.yml",
    "content": "---\nname: strip-ansi-cjs\nversion: 6.0.1\ntype: npm\nsummary: Strip ANSI escape codes from a string\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/strnum.dep.yml",
    "content": "---\nname: strnum\nversion: 2.1.1\ntype: npm\nsummary: Parse String to Number based on configuration\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) 2021 Natural Intelligence\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/tar-stream.dep.yml",
    "content": "---\nname: tar-stream\nversion: 3.1.7\ntype: npm\nsummary: tar-stream is a streaming tar parser and generator and nothing else. It operates\n  purely using streams which means you can easily extract/parse tarballs without ever\n  hitting the file system.\nhomepage: https://github.com/mafintosh/tar-stream\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    The MIT License (MIT)\n\n    Copyright (c) 2014 Mathias Buus\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: MIT\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/text-decoder.dep.yml",
    "content": "---\nname: text-decoder\nversion: 1.2.3\ntype: npm\nsummary: Streaming text decoder that preserves multibyte Unicode characters\nhomepage: https://github.com/holepunchto/text-decoder#readme\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE\n  text: |2\n                                     Apache License\n                               Version 2.0, January 2004\n                            http://www.apache.org/licenses/\n\n       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n       1. Definitions.\n\n          \"License\" shall mean the terms and conditions for use, reproduction,\n          and distribution as defined by Sections 1 through 9 of this document.\n\n          \"Licensor\" shall mean the copyright owner or entity authorized by\n          the copyright owner that is granting the License.\n\n          \"Legal Entity\" shall mean the union of the acting entity and all\n          other entities that control, are controlled by, or are under common\n          control with that entity. For the purposes of this definition,\n          \"control\" means (i) the power, direct or indirect, to cause the\n          direction or management of such entity, whether by contract or\n          otherwise, or (ii) ownership of fifty percent (50%) or more of the\n          outstanding shares, or (iii) beneficial ownership of such entity.\n\n          \"You\" (or \"Your\") shall mean an individual or Legal Entity\n          exercising permissions granted by this License.\n\n          \"Source\" form shall mean the preferred form for making modifications,\n          including but not limited to software source code, documentation\n          source, and configuration files.\n\n          \"Object\" form shall mean any form resulting from mechanical\n          transformation or translation of a Source form, including but\n          not limited to compiled object code, generated documentation,\n          and conversions to other media types.\n\n          \"Work\" shall mean the work of authorship, whether in Source or\n          Object form, made available under the License, as indicated by a\n          copyright notice that is included in or attached to the work\n          (an example is provided in the Appendix below).\n\n          \"Derivative Works\" shall mean any work, whether in Source or Object\n          form, that is based on (or derived from) the Work and for which the\n          editorial revisions, annotations, elaborations, or other modifications\n          represent, as a whole, an original work of authorship. For the purposes\n          of this License, Derivative Works shall not include works that remain\n          separable from, or merely link (or bind by name) to the interfaces of,\n          the Work and Derivative Works thereof.\n\n          \"Contribution\" shall mean any work of authorship, including\n          the original version of the Work and any modifications or additions\n          to that Work or Derivative Works thereof, that is intentionally\n          submitted to Licensor for inclusion in the Work by the copyright owner\n          or by an individual or Legal Entity authorized to submit on behalf of\n          the copyright owner. For the purposes of this definition, \"submitted\"\n          means any form of electronic, verbal, or written communication sent\n          to the Licensor or its representatives, including but not limited to\n          communication on electronic mailing lists, source code control systems,\n          and issue tracking systems that are managed by, or on behalf of, the\n          Licensor for the purpose of discussing and improving the Work, but\n          excluding communication that is conspicuously marked or otherwise\n          designated in writing by the copyright owner as \"Not a Contribution.\"\n\n          \"Contributor\" shall mean Licensor and any individual or Legal Entity\n          on behalf of whom a Contribution has been received by Licensor and\n          subsequently incorporated within the Work.\n\n       2. Grant of Copyright License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          copyright license to reproduce, prepare Derivative Works of,\n          publicly display, publicly perform, sublicense, and distribute the\n          Work and such Derivative Works in Source or Object form.\n\n       3. Grant of Patent License. Subject to the terms and conditions of\n          this License, each Contributor hereby grants to You a perpetual,\n          worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n          (except as stated in this section) patent license to make, have made,\n          use, offer to sell, sell, import, and otherwise transfer the Work,\n          where such license applies only to those patent claims licensable\n          by such Contributor that are necessarily infringed by their\n          Contribution(s) alone or by combination of their Contribution(s)\n          with the Work to which such Contribution(s) was submitted. If You\n          institute patent litigation against any entity (including a\n          cross-claim or counterclaim in a lawsuit) alleging that the Work\n          or a Contribution incorporated within the Work constitutes direct\n          or contributory patent infringement, then any patent licenses\n          granted to You under this License for that Work shall terminate\n          as of the date such litigation is filed.\n\n       4. Redistribution. You may reproduce and distribute copies of the\n          Work or Derivative Works thereof in any medium, with or without\n          modifications, and in Source or Object form, provided that You\n          meet the following conditions:\n\n          (a) You must give any other recipients of the Work or\n              Derivative Works a copy of this License; and\n\n          (b) You must cause any modified files to carry prominent notices\n              stating that You changed the files; and\n\n          (c) You must retain, in the Source form of any Derivative Works\n              that You distribute, all copyright, patent, trademark, and\n              attribution notices from the Source form of the Work,\n              excluding those notices that do not pertain to any part of\n              the Derivative Works; and\n\n          (d) If the Work includes a \"NOTICE\" text file as part of its\n              distribution, then any Derivative Works that You distribute must\n              include a readable copy of the attribution notices contained\n              within such NOTICE file, excluding those notices that do not\n              pertain to any part of the Derivative Works, in at least one\n              of the following places: within a NOTICE text file distributed\n              as part of the Derivative Works; within the Source form or\n              documentation, if provided along with the Derivative Works; or,\n              within a display generated by the Derivative Works, if and\n              wherever such third-party notices normally appear. The contents\n              of the NOTICE file are for informational purposes only and\n              do not modify the License. You may add Your own attribution\n              notices within Derivative Works that You distribute, alongside\n              or as an addendum to the NOTICE text from the Work, provided\n              that such additional attribution notices cannot be construed\n              as modifying the License.\n\n          You may add Your own copyright statement to Your modifications and\n          may provide additional or different license terms and conditions\n          for use, reproduction, or distribution of Your modifications, or\n          for any such Derivative Works as a whole, provided Your use,\n          reproduction, and distribution of the Work otherwise complies with\n          the conditions stated in this License.\n\n       5. Submission of Contributions. Unless You explicitly state otherwise,\n          any Contribution intentionally submitted for inclusion in the Work\n          by You to the Licensor shall be under the terms and conditions of\n          this License, without any additional terms or conditions.\n          Notwithstanding the above, nothing herein shall supersede or modify\n          the terms of any separate license agreement you may have executed\n          with Licensor regarding such Contributions.\n\n       6. Trademarks. This License does not grant permission to use the trade\n          names, trademarks, service marks, or product names of the Licensor,\n          except as required for reasonable and customary use in describing the\n          origin of the Work and reproducing the content of the NOTICE file.\n\n       7. Disclaimer of Warranty. Unless required by applicable law or\n          agreed to in writing, Licensor provides the Work (and each\n          Contributor provides its Contributions) on an \"AS IS\" BASIS,\n          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n          implied, including, without limitation, any warranties or conditions\n          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n          PARTICULAR PURPOSE. You are solely responsible for determining the\n          appropriateness of using or redistributing the Work and assume any\n          risks associated with Your exercise of permissions under this License.\n\n       8. Limitation of Liability. In no event and under no legal theory,\n          whether in tort (including negligence), contract, or otherwise,\n          unless required by applicable law (such as deliberate and grossly\n          negligent acts) or agreed to in writing, shall any Contributor be\n          liable to You for damages, including any direct, indirect, special,\n          incidental, or consequential damages of any character arising as a\n          result of this License or out of the use or inability to use the\n          Work (including but not limited to damages for loss of goodwill,\n          work stoppage, computer failure or malfunction, or any and all\n          other commercial damages or losses), even if such Contributor\n          has been advised of the possibility of such damages.\n\n       9. Accepting Warranty or Additional Liability. While redistributing\n          the Work or Derivative Works thereof, You may choose to offer,\n          and charge a fee for, acceptance of support, warranty, indemnity,\n          or other liability obligations and/or rights consistent with this\n          License. However, in accepting such obligations, You may act only\n          on Your own behalf and on Your sole responsibility, not on behalf\n          of any other Contributor, and only if You agree to indemnify,\n          defend, and hold each Contributor harmless for any liability\n          incurred by, or claims asserted against, such Contributor by reason\n          of your accepting any such warranty or additional liability.\n\n       END OF TERMS AND CONDITIONS\n\n       APPENDIX: How to apply the Apache License to your work.\n\n          To apply the Apache License to your work, attach the following\n          boilerplate notice, with the fields enclosed by brackets \"[]\"\n          replaced with your own identifying information. (Don't include\n          the brackets!)  The text should be enclosed in the appropriate\n          comment syntax for the file format. We also recommend that a\n          file or class name and description of purpose be included on the\n          same \"printed page\" as the copyright notice for easier\n          identification within third-party archives.\n\n       Copyright [yyyy] [name of copyright owner]\n\n       Licensed under the Apache License, Version 2.0 (the \"License\");\n       you may not use this file except in compliance with the License.\n       You may obtain a copy of the License at\n\n           http://www.apache.org/licenses/LICENSE-2.0\n\n       Unless required by applicable law or agreed to in writing, software\n       distributed under the License is distributed on an \"AS IS\" BASIS,\n       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n       See the License for the specific language governing permissions and\n       limitations under the License.\n- sources: README.md\n  text: Apache-2.0\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/tr46.dep.yml",
    "content": "---\nname: tr46\nversion: 0.0.3\ntype: npm\nsummary: An implementation of the Unicode TR46 spec\nhomepage: https://github.com/Sebmaster/tr46.js#readme\nlicense: mit\nlicenses:\n- sources: Auto-generated MIT license text\n  text: |\n    MIT License\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/traverse.dep.yml",
    "content": "---\nname: traverse\nversion: 0.3.9\ntype: npm\nsummary: Traverse and transform objects by visiting every node on a recursive walk\nhomepage:\nlicense: other\nlicenses:\n- sources: LICENSE\n  text: \"Copyright 2010 James Halliday (mail@substack.net)\\n\\nThis project is free\n    software released under the MIT/X11 license:\\nhttp://www.opensource.org/licenses/mit-license.php\n    \\n\\nCopyright 2010 James Halliday (mail@substack.net)\\n\\nPermission is hereby\n    granted, free of charge, to any person obtaining a copy\\nof this software and\n    associated documentation files (the \\\"Software\\\"), to deal\\nin the Software without\n    restriction, including without limitation the rights\\nto use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell\\ncopies of the Software, and to permit\n    persons to whom the Software is\\nfurnished to do so, subject to the following\n    conditions:\\n\\nThe above copyright notice and this permission notice shall be\n    included in\\nall copies or substantial portions of the Software.\\n\\nTHE SOFTWARE\n    IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\nIMPLIED, INCLUDING\n    BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS FOR A PARTICULAR\n    PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR COPYRIGHT HOLDERS\n    BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION WITH THE SOFTWARE\n    OR THE USE OR OTHER DEALINGS IN\\nTHE SOFTWARE.\\n\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/tslib-1.14.1.dep.yml",
    "content": "---\nname: tslib\nversion: 1.14.1\ntype: npm\nsummary: Runtime library for TypeScript helper functions\nhomepage: https://www.typescriptlang.org/\nlicense: 0bsd\nlicenses:\n- sources: LICENSE.txt\n  text: |-\n    Copyright (c) Microsoft Corporation.\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n    REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n    AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n    LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n    OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n    PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/tslib-2.8.1.dep.yml",
    "content": "---\nname: tslib\nversion: 2.8.1\ntype: npm\nsummary: Runtime library for TypeScript helper functions\nhomepage: https://www.typescriptlang.org/\nlicense: 0bsd\nlicenses:\n- sources: LICENSE.txt\n  text: |-\n    Copyright (c) Microsoft Corporation.\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n    REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n    AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n    LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n    OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n    PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/tunnel.dep.yml",
    "content": "---\nname: tunnel\nversion: 0.0.6\ntype: npm\nsummary: Node HTTP/HTTPS Agents for tunneling proxies\nhomepage: https://github.com/koichik/node-tunnel/\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2012 Koichi Kobayashi\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\n- sources: README.md\n  text: Licensed under the [MIT](https://github.com/koichik/node-tunnel/blob/master/LICENSE)\n    license.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/typescript-3.9.10.dep.yml",
    "content": "---\nname: typescript\nversion: 3.9.10\ntype: npm\nsummary: TypeScript is a language for application scale JavaScript development\nhomepage: https://www.typescriptlang.org/\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE.txt\n  text: \"Apache License\\n\\nVersion 2.0, January 2004\\n\\nhttp://www.apache.org/licenses/\n    \\n\\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\\n\\n1. Definitions.\\n\\n\\\"License\\\"\n    shall mean the terms and conditions for use, reproduction, and distribution as\n    defined by Sections 1 through 9 of this document.\\n\\n\\\"Licensor\\\" shall mean the\n    copyright owner or entity authorized by the copyright owner that is granting the\n    License.\\n\\n\\\"Legal Entity\\\" shall mean the union of the acting entity and all\n    other entities that control, are controlled by, or are under common control with\n    that entity. For the purposes of this definition, \\\"control\\\" means (i) the power,\n    direct or indirect, to cause the direction or management of such entity, whether\n    by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of\n    the outstanding shares, or (iii) beneficial ownership of such entity.\\n\\n\\\"You\\\"\n    (or \\\"Your\\\") shall mean an individual or Legal Entity exercising permissions\n    granted by this License.\\n\\n\\\"Source\\\" form shall mean the preferred form for\n    making modifications, including but not limited to software source code, documentation\n    source, and configuration files.\\n\\n\\\"Object\\\" form shall mean any form resulting\n    from mechanical transformation or translation of a Source form, including but\n    not limited to compiled object code, generated documentation, and conversions\n    to other media types.\\n\\n\\\"Work\\\" shall mean the work of authorship, whether in\n    Source or Object form, made available under the License, as indicated by a copyright\n    notice that is included in or attached to the work (an example is provided in\n    the Appendix below).\\n\\n\\\"Derivative Works\\\" shall mean any work, whether in Source\n    or Object form, that is based on (or derived from) the Work and for which the\n    editorial revisions, annotations, elaborations, or other modifications represent,\n    as a whole, an original work of authorship. For the purposes of this License,\n    Derivative Works shall not include works that remain separable from, or merely\n    link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\\n\\n\\\"Contribution\\\"\n    shall mean any work of authorship, including the original version of the Work\n    and any modifications or additions to that Work or Derivative Works thereof, that\n    is intentionally submitted to Licensor for inclusion in the Work by the copyright\n    owner or by an individual or Legal Entity authorized to submit on behalf of the\n    copyright owner. For the purposes of this definition, \\\"submitted\\\" means any\n    form of electronic, verbal, or written communication sent to the Licensor or its\n    representatives, including but not limited to communication on electronic mailing\n    lists, source code control systems, and issue tracking systems that are managed\n    by, or on behalf of, the Licensor for the purpose of discussing and improving\n    the Work, but excluding communication that is conspicuously marked or otherwise\n    designated in writing by the copyright owner as \\\"Not a Contribution.\\\"\\n\\n\\\"Contributor\\\"\n    shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution\n    has been received by Licensor and subsequently incorporated within the Work.\\n\\n2.\n    Grant of Copyright License. Subject to the terms and conditions of this License,\n    each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,\n    royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works\n    of, publicly display, publicly perform, sublicense, and distribute the Work and\n    such Derivative Works in Source or Object form.\\n\\n3. Grant of Patent License.\n    Subject to the terms and conditions of this License, each Contributor hereby grants\n    to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n    (except as stated in this section) patent license to make, have made, use, offer\n    to sell, sell, import, and otherwise transfer the Work, where such license applies\n    only to those patent claims licensable by such Contributor that are necessarily\n    infringed by their Contribution(s) alone or by combination of their Contribution(s)\n    with the Work to which such Contribution(s) was submitted. If You institute patent\n    litigation against any entity (including a cross-claim or counterclaim in a lawsuit)\n    alleging that the Work or a Contribution incorporated within the Work constitutes\n    direct or contributory patent infringement, then any patent licenses granted to\n    You under this License for that Work shall terminate as of the date such litigation\n    is filed.\\n\\n4. Redistribution. You may reproduce and distribute copies of the\n    Work or Derivative Works thereof in any medium, with or without modifications,\n    and in Source or Object form, provided that You meet the following conditions:\\n\\nYou\n    must give any other recipients of the Work or Derivative Works a copy of this\n    License; and\\n\\nYou must cause any modified files to carry prominent notices stating\n    that You changed the files; and\\n\\nYou must retain, in the Source form of any\n    Derivative Works that You distribute, all copyright, patent, trademark, and attribution\n    notices from the Source form of the Work, excluding those notices that do not\n    pertain to any part of the Derivative Works; and\\n\\nIf the Work includes a \\\"NOTICE\\\"\n    text file as part of its distribution, then any Derivative Works that You distribute\n    must include a readable copy of the attribution notices contained within such\n    NOTICE file, excluding those notices that do not pertain to any part of the Derivative\n    Works, in at least one of the following places: within a NOTICE text file distributed\n    as part of the Derivative Works; within the Source form or documentation, if provided\n    along with the Derivative Works; or, within a display generated by the Derivative\n    Works, if and wherever such third-party notices normally appear. The contents\n    of the NOTICE file are for informational purposes only and do not modify the License.\n    You may add Your own attribution notices within Derivative Works that You distribute,\n    alongside or as an addendum to the NOTICE text from the Work, provided that such\n    additional attribution notices cannot be construed as modifying the License. You\n    may add Your own copyright statement to Your modifications and may provide additional\n    or different license terms and conditions for use, reproduction, or distribution\n    of Your modifications, or for any such Derivative Works as a whole, provided Your\n    use, reproduction, and distribution of the Work otherwise complies with the conditions\n    stated in this License.\\n\\n5. Submission of Contributions. Unless You explicitly\n    state otherwise, any Contribution intentionally submitted for inclusion in the\n    Work by You to the Licensor shall be under the terms and conditions of this License,\n    without any additional terms or conditions. Notwithstanding the above, nothing\n    herein shall supersede or modify the terms of any separate license agreement you\n    may have executed with Licensor regarding such Contributions.\\n\\n6. Trademarks.\n    This License does not grant permission to use the trade names, trademarks, service\n    marks, or product names of the Licensor, except as required for reasonable and\n    customary use in describing the origin of the Work and reproducing the content\n    of the NOTICE file.\\n\\n7. Disclaimer of Warranty. Unless required by applicable\n    law or agreed to in writing, Licensor provides the Work (and each Contributor\n    provides its Contributions) on an \\\"AS IS\\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS\n    OF ANY KIND, either express or implied, including, without limitation, any warranties\n    or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR\n    PURPOSE. You are solely responsible for determining the appropriateness of using\n    or redistributing the Work and assume any risks associated with Your exercise\n    of permissions under this License.\\n\\n8. Limitation of Liability. In no event\n    and under no legal theory, whether in tort (including negligence), contract, or\n    otherwise, unless required by applicable law (such as deliberate and grossly negligent\n    acts) or agreed to in writing, shall any Contributor be liable to You for damages,\n    including any direct, indirect, special, incidental, or consequential damages\n    of any character arising as a result of this License or out of the use or inability\n    to use the Work (including but not limited to damages for loss of goodwill, work\n    stoppage, computer failure or malfunction, or any and all other commercial damages\n    or losses), even if such Contributor has been advised of the possibility of such\n    damages.\\n\\n9. Accepting Warranty or Additional Liability. While redistributing\n    the Work or Derivative Works thereof, You may choose to offer, and charge a fee\n    for, acceptance of support, warranty, indemnity, or other liability obligations\n    and/or rights consistent with this License. However, in accepting such obligations,\n    You may act only on Your own behalf and on Your sole responsibility, not on behalf\n    of any other Contributor, and only if You agree to indemnify, defend, and hold\n    each Contributor harmless for any liability incurred by, or claims asserted against,\n    such Contributor by reason of your accepting any such warranty or additional liability.\\n\\nEND\n    OF TERMS AND CONDITIONS\\n\"\nnotices:\n- sources: AUTHORS.md\n  text: \"TypeScript is authored by:\\r\\n\\r\\n - 0verk1ll\\r\\n - Abubaker Bashir\\r\\n -\n    Adam Freidin\\r\\n - Adam Postma\\r\\n - Adi Dahiya\\r\\n - Aditya Daflapurkar\\r\\n -\n    Adnan Chowdhury\\r\\n - Adrian Leonhard\\r\\n - Adrien Gibrat\\r\\n - Ahmad Farid\\r\\n\n    - Ajay Poshak\\r\\n - Alan Agius\\r\\n - Alan Pierce\\r\\n - Alessandro Vergani\\r\\n\n    - Alex Chugaev\\r\\n - Alex Eagle\\r\\n - Alex Khomchenko\\r\\n - Alex Ryan\\r\\n - Alexander\\r\\n\n    - Alexander Kuvaev\\r\\n - Alexander Rusakov\\r\\n - Alexander Tarasyuk\\r\\n - Ali\n    Sabzevari\\r\\n - Aluan Haddad\\r\\n - amaksimovich2\\r\\n - Anatoly Ressin\\r\\n - Anders\n    Hejlsberg\\r\\n - Anders Kaseorg\\r\\n - Andre Sutherland\\r\\n - Andreas Martin\\r\\n\n    - Andrej Baran\\r\\n - Andrew\\r\\n - Andrew Branch\\r\\n - Andrew Casey\\r\\n - Andrew\n    Faulkner\\r\\n - Andrew Ochsner\\r\\n - Andrew Stegmaier\\r\\n - Andrew Z Allen\\r\\n\n    - Andrey Roenko\\r\\n - Andrii Dieiev\\r\\n - András Parditka\\r\\n - Andy Hanson\\r\\n\n    - Anil Anar\\r\\n - Anix\\r\\n - Anton Khlynovskiy\\r\\n - Anton Tolmachev\\r\\n - Anubha\n    Mathur\\r\\n - AnyhowStep\\r\\n - Armando Aguirre\\r\\n - Arnaud Tournier\\r\\n - Arnav\n    Singh\\r\\n - Arpad Borsos\\r\\n - Artem Tyurin\\r\\n - Arthur Ozga\\r\\n - Asad Saeeduddin\\r\\n\n    - Austin Cummings\\r\\n - Avery Morin\\r\\n - Aziz Khambati\\r\\n - Basarat Ali Syed\\r\\n\n    - @begincalendar\\r\\n - Ben Duffield\\r\\n - Ben Lichtman\\r\\n - Ben Mosher\\r\\n -\n    Benedikt Meurer\\r\\n - Benjamin Bock\\r\\n - Benjamin Lichtman\\r\\n - Benny Neugebauer\\r\\n\n    - BigAru\\r\\n - Bill Ticehurst\\r\\n - Blaine Bublitz\\r\\n - Blake Embrey\\r\\n - @bluelovers\\r\\n\n    - @bootstraponline\\r\\n - Bowden Kelly\\r\\n - Bowden Kenny\\r\\n - Brad Zacher\\r\\n\n    - Brandon Banks\\r\\n - Brandon Bloom\\r\\n - Brandon Slade\\r\\n - Brendan Kenny\\r\\n\n    - Brett Mayen\\r\\n - Brian Terlson\\r\\n - Bryan Forbes\\r\\n - Caitlin Potter\\r\\n\n    - Caleb Sander\\r\\n - Cameron Taggart\\r\\n - @cedvdb\\r\\n - Charles\\r\\n - Charles\n    Pierce\\r\\n - Charly POLY\\r\\n - Chris Bubernak\\r\\n - Chris Patterson\\r\\n - christian\\r\\n\n    - Christophe Vidal\\r\\n - Chuck Jazdzewski\\r\\n - Clay Miller\\r\\n - Colby Russell\\r\\n\n    - Colin Snover\\r\\n - Collins Abitekaniza\\r\\n - Connor Clark\\r\\n - Cotton Hou\\r\\n\n    - csigs\\r\\n - Cyrus Najmabadi\\r\\n - Dafrok Zhang\\r\\n - Dahan Gong\\r\\n - Daiki\n    Nishikawa\\r\\n - Dan Corder\\r\\n - Dan Freeman\\r\\n - Dan Quirk\\r\\n - Dan Rollo\\r\\n\n    - Daniel Gooss\\r\\n - Daniel Imms\\r\\n - Daniel Krom\\r\\n - Daniel Król\\r\\n - Daniel\n    Lehenbauer\\r\\n - Daniel Rosenwasser\\r\\n - David Li\\r\\n - David Sheldrick\\r\\n -\n    David Sherret\\r\\n - David Souther\\r\\n - David Staheli\\r\\n - Denis Nedelyaev\\r\\n\n    - Derek P Sifford\\r\\n - Dhruv Rajvanshi\\r\\n - Dick van den Brink\\r\\n - Diogo Franco\n    (Kovensky)\\r\\n - Dirk Bäumer\\r\\n - Dirk Holtwick\\r\\n - Dmitrijs Minajevs\\r\\n -\n    Dom Chen\\r\\n - Donald Pipowitch\\r\\n - Doug Ilijev\\r\\n - dreamran43@gmail.com\\r\\n\n    - @e-cloud\\r\\n - Ecole Keine\\r\\n - Eddie Jaoude\\r\\n - Edward Thomson\\r\\n - EECOLOR\\r\\n\n    - Eli Barzilay\\r\\n - Elizabeth Dinella\\r\\n - Ely Alamillo\\r\\n - Eric Grube\\r\\n\n    - Eric Tsang\\r\\n - Erik Edrosa\\r\\n - Erik McClenney\\r\\n - Esakki Raj\\r\\n - Ethan\n    Resnick\\r\\n - Ethan Rubio\\r\\n - Eugene Timokhov\\r\\n - Evan Cahill\\r\\n - Evan Martin\\r\\n\n    - Evan Sebastian\\r\\n - ExE Boss\\r\\n - Eyas Sharaiha\\r\\n - Fabian Cook\\r\\n - @falsandtru\\r\\n\n    - Filipe Silva\\r\\n - @flowmemo\\r\\n - Forbes Lindesay\\r\\n - Francois Hendriks\\r\\n\n    - Francois Wouts\\r\\n - Frank Wallis\\r\\n - František Žiacik\\r\\n - Frederico Bittencourt\\r\\n\n    - fullheightcoding\\r\\n - Gabe Moothart\\r\\n - Gabriel Isenberg\\r\\n - Gabriela Araujo\n    Britto\\r\\n - Gabriela Britto\\r\\n - gb714us\\r\\n - Gilad Peleg\\r\\n - Godfrey Chan\\r\\n\n    - Gorka Hernández Estomba\\r\\n - Graeme Wicksted\\r\\n - Guillaume Salles\\r\\n - Guy\n    Bedford\\r\\n - hafiz\\r\\n - Halasi Tamás\\r\\n - Hendrik Liebau\\r\\n - Henry Mercer\\r\\n\n    - Herrington Darkholme\\r\\n - Hoang Pham\\r\\n - Holger Jeromin\\r\\n - Homa Wong\\r\\n\n    - Hye Sung Jung\\r\\n - Iain Monro\\r\\n - @IdeaHunter\\r\\n - Igor Novozhilov\\r\\n -\n    Igor Oleinikov\\r\\n - Ika\\r\\n - iliashkolyar\\r\\n - IllusionMH\\r\\n - Ingvar Stepanyan\\r\\n\n    - Ingvar Stepanyan\\r\\n - Isiah Meadows\\r\\n - ispedals\\r\\n - Ivan Enderlin\\r\\n\n    - Ivo Gabe de Wolff\\r\\n - Iwata Hidetaka\\r\\n - Jack Bates\\r\\n - Jack Williams\\r\\n\n    - Jake Boone\\r\\n - Jakub Korzeniowski\\r\\n - Jakub Młokosiewicz\\r\\n - James Henry\\r\\n\n    - James Keane\\r\\n - James Whitney\\r\\n - Jan Melcher\\r\\n - Jason Freeman\\r\\n -\n    Jason Jarrett\\r\\n - Jason Killian\\r\\n - Jason Ramsay\\r\\n - JBerger\\r\\n - Jean\n    Pierre\\r\\n - Jed Mao\\r\\n - Jeff Wilcox\\r\\n - Jeffrey Morlan\\r\\n - Jesse Schalken\\r\\n\n    - Jesse Trinity\\r\\n - Jing Ma\\r\\n - Jiri Tobisek\\r\\n - Joe Calzaretta\\r\\n - Joe\n    Chung\\r\\n - Joel Day\\r\\n - Joey Watts\\r\\n - Johannes Rieken\\r\\n - John Doe\\r\\n\n    - John Vilk\\r\\n - Jonathan Bond-Caron\\r\\n - Jonathan Park\\r\\n - Jonathan Toland\\r\\n\n    - Jordan Harband\\r\\n - Jordi Oliveras Rovira\\r\\n - Joscha Feth\\r\\n - Joseph Wunderlich\\r\\n\n    - Josh Abernathy\\r\\n - Josh Goldberg\\r\\n - Josh Kalderimis\\r\\n - Josh Soref\\r\\n\n    - Juan Luis Boya García\\r\\n - Julian Williams\\r\\n - Justin Bay\\r\\n - Justin Johansson\\r\\n\n    - jwbay\\r\\n - K. Preißer\\r\\n - Kagami Sascha Rosylight\\r\\n - Kanchalai Tanglertsampan\\r\\n\n    - karthikkp\\r\\n - Kate Miháliková\\r\\n - Keen Yee Liau\\r\\n - Keith Mashinter\\r\\n\n    - Ken Howard\\r\\n - Kenji Imamula\\r\\n - Kerem Kat\\r\\n - Kevin Donnelly\\r\\n - Kevin\n    Gibbons\\r\\n - Kevin Lang\\r\\n - Khải\\r\\n - Kitson Kelly\\r\\n - Klaus Meinhardt\\r\\n\n    - Kris Zyp\\r\\n - Kyle Kelley\\r\\n - Kārlis Gaņģis\\r\\n - laoxiong\\r\\n - Leon Aves\\r\\n\n    - Limon Monte\\r\\n - Lorant Pinter\\r\\n - Lucien Greathouse\\r\\n - Luka Hartwig\\r\\n\n    - Lukas Elmer\\r\\n - M.Yoshimura\\r\\n - Maarten Sijm\\r\\n - Magnus Hiie\\r\\n - Magnus\n    Kulke\\r\\n - Manish Bansal\\r\\n - Manish Giri\\r\\n - Marcus Noble\\r\\n - Marin Marinov\\r\\n\n    - Marius Schulz\\r\\n - Markus Johnsson\\r\\n - Markus Wolf\\r\\n - Martin\\r\\n - Martin\n    Hiller\\r\\n - Martin Johns\\r\\n - Martin Probst\\r\\n - Martin Vseticka\\r\\n - Martyn\n    Janes\\r\\n - Masahiro Wakame\\r\\n - Mateusz Burzyński\\r\\n - Matt Bierner\\r\\n - Matt\n    McCutchen\\r\\n - Matt Mitchell\\r\\n - Matthew Aynalem\\r\\n - Matthew Miller\\r\\n -\n    Mattias Buelens\\r\\n - Max Heiber\\r\\n - Maxwell Paul Brickner\\r\\n - @meyer\\r\\n\n    - Micah Zoltu\\r\\n - @micbou\\r\\n - Michael\\r\\n - Michael Crane\\r\\n - Michael Henderson\\r\\n\n    - Michael Tamm\\r\\n - Michael Tang\\r\\n - Michal Przybys\\r\\n - Mike Busyrev\\r\\n\n    - Mike Morearty\\r\\n - Milosz Piechocki\\r\\n - Mine Starks\\r\\n - Minh Nguyen\\r\\n\n    - Mohamed Hegazy\\r\\n - Mohsen Azimi\\r\\n - Mukesh Prasad\\r\\n - Myles Megyesi\\r\\n\n    - Nathan Day\\r\\n - Nathan Fenner\\r\\n - Nathan Shively-Sanders\\r\\n - Nathan Yee\\r\\n\n    - ncoley\\r\\n - Nicholas Yang\\r\\n - Nicu Micleușanu\\r\\n - @nieltg\\r\\n - Nima Zahedi\\r\\n\n    - Noah Chen\\r\\n - Noel Varanda\\r\\n - Noel Yoo\\r\\n - Noj Vek\\r\\n - nrcoley\\r\\n\n    - Nuno Arruda\\r\\n - Oleg Mihailik\\r\\n - Oleksandr Chekhovskyi\\r\\n - Omer Sheikh\\r\\n\n    - Orta Therox\\r\\n - Orta Therox\\r\\n - Oskar Grunning\\r\\n - Oskar Segersva¨rd\\r\\n\n    - Oussama Ben Brahim\\r\\n - Ozair Patel\\r\\n - Patrick McCartney\\r\\n - Patrick Zhong\\r\\n\n    - Paul Koerbitz\\r\\n - Paul van Brenk\\r\\n - @pcbro\\r\\n - Pedro Maltez\\r\\n - Pete\n    Bacon Darwin\\r\\n - Peter Burns\\r\\n - Peter Šándor\\r\\n - Philip Pesca\\r\\n - Philippe\n    Voinov\\r\\n - Pi Lanningham\\r\\n - Piero Cangianiello\\r\\n - Pierre-Antoine Mills\\r\\n\n    - @piloopin\\r\\n - Pranav Senthilnathan\\r\\n - Prateek Goel\\r\\n - Prateek Nayak\\r\\n\n    - Prayag Verma\\r\\n - Priyantha Lankapura\\r\\n - @progre\\r\\n - Punya Biswal\\r\\n\n    - r7kamura\\r\\n - Rado Kirov\\r\\n - Raj Dosanjh\\r\\n - rChaser53\\r\\n - Reiner Dolp\\r\\n\n    - Remo H. Jansen\\r\\n - @rflorian\\r\\n - Rhys van der Waerden\\r\\n - @rhysd\\r\\n -\n    Ricardo N Feliciano\\r\\n - Richard Karmazín\\r\\n - Richard Knoll\\r\\n - Roger Spratley\\r\\n\n    - Ron Buckton\\r\\n - Rostislav Galimsky\\r\\n - Rowan Wyborn\\r\\n - rpgeeganage\\r\\n\n    - Ruwan Pradeep Geeganage\\r\\n - Ryan Cavanaugh\\r\\n - Ryan Clarke\\r\\n - Ryohei\n    Ikegami\\r\\n - Salisbury, Tom\\r\\n - Sam Bostock\\r\\n - Sam Drugan\\r\\n - Sam El-Husseini\\r\\n\n    - Sam Lanning\\r\\n - Sangmin Lee\\r\\n - Sanket Mishra\\r\\n - Sarangan Rajamanickam\\r\\n\n    - Sasha Joseph\\r\\n - Sean Barag\\r\\n - Sergey Rubanov\\r\\n - Sergey Shandar\\r\\n\n    - Sergey Tychinin\\r\\n - Sergii Bezliudnyi\\r\\n - Sergio Baidon\\r\\n - Sharon Rolel\\r\\n\n    - Sheetal Nandi\\r\\n - Shengping Zhong\\r\\n - Sheon Han\\r\\n - Shyyko Serhiy\\r\\n\n    - Siddharth Singh\\r\\n - sisisin\\r\\n - Slawomir Sadziak\\r\\n - Solal Pirelli\\r\\n\n    - Soo Jae Hwang\\r\\n - Stan Thomas\\r\\n - Stanislav Iliev\\r\\n - Stanislav Sysoev\\r\\n\n    - Stas Vilchik\\r\\n - Stephan Ginthör\\r\\n - Steve Lucco\\r\\n - @styfle\\r\\n - Sudheesh\n    Singanamalla\\r\\n - Suhas\\r\\n - Suhas Deshpande\\r\\n - superkd37\\r\\n - Sébastien\n    Arod\\r\\n - @T18970237136\\r\\n - @t_\\r\\n - Tan Li Hau\\r\\n - Tapan Prakash\\r\\n -\n    Taras Mankovski\\r\\n - Tarik Ozket\\r\\n - Tetsuharu Ohzeki\\r\\n - The Gitter Badger\\r\\n\n    - Thomas den Hollander\\r\\n - Thorsten Ball\\r\\n - Tien Hoanhtien\\r\\n - Tim Lancina\\r\\n\n    - Tim Perry\\r\\n - Tim Schaub\\r\\n - Tim Suchanek\\r\\n - Tim Viiding-Spader\\r\\n -\n    Tingan Ho\\r\\n - Titian Cernicova-Dragomir\\r\\n - tkondo\\r\\n - Todd Thomson\\r\\n\n    - togru\\r\\n - Tom J\\r\\n - Torben Fitschen\\r\\n - Toxyxer\\r\\n - @TravCav\\r\\n - Troy\n    Tae\\r\\n - TruongSinh Tran-Nguyen\\r\\n - Tycho Grouwstra\\r\\n - uhyo\\r\\n - Vadi Taslim\\r\\n\n    - Vakhurin Sergey\\r\\n - Valera Rozuvan\\r\\n - Vilic Vane\\r\\n - Vimal Raghubir\\r\\n\n    - Vladimir Kurchatkin\\r\\n - Vladimir Matveev\\r\\n - Vyacheslav Pukhanov\\r\\n - Wenlu\n    Wang\\r\\n - Wes Souza\\r\\n - Wesley Wigham\\r\\n - William Orr\\r\\n - Wilson Hobbs\\r\\n\n    - xiaofa\\r\\n - xl1\\r\\n - Yacine Hmito\\r\\n - Yang Cao\\r\\n - York Yao\\r\\n - @yortus\\r\\n\n    - Yoshiki Shibukawa\\r\\n - Yuichi Nukiyama\\r\\n - Yuval Greenfield\\r\\n - Yuya Tanaka\\r\\n\n    - Z\\r\\n - Zeeshan Ahmed\\r\\n - Zev Spitz\\r\\n - Zhengbo Li\\r\\n - Zixiang Li\\r\\n\n    - @Zzzen\\r\\n - 阿卡琳\"\n"
  },
  {
    "path": ".licenses/npm/typescript-5.4.5.dep.yml",
    "content": "---\nname: typescript\nversion: 5.4.5\ntype: npm\nsummary: TypeScript is a language for application scale JavaScript development\nhomepage: https://www.typescriptlang.org/\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE.txt\n  text: \"Apache License\\n\\nVersion 2.0, January 2004\\n\\nhttp://www.apache.org/licenses/\n    \\n\\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\\n\\n1. Definitions.\\n\\n\\\"License\\\"\n    shall mean the terms and conditions for use, reproduction, and distribution as\n    defined by Sections 1 through 9 of this document.\\n\\n\\\"Licensor\\\" shall mean the\n    copyright owner or entity authorized by the copyright owner that is granting the\n    License.\\n\\n\\\"Legal Entity\\\" shall mean the union of the acting entity and all\n    other entities that control, are controlled by, or are under common control with\n    that entity. For the purposes of this definition, \\\"control\\\" means (i) the power,\n    direct or indirect, to cause the direction or management of such entity, whether\n    by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of\n    the outstanding shares, or (iii) beneficial ownership of such entity.\\n\\n\\\"You\\\"\n    (or \\\"Your\\\") shall mean an individual or Legal Entity exercising permissions\n    granted by this License.\\n\\n\\\"Source\\\" form shall mean the preferred form for\n    making modifications, including but not limited to software source code, documentation\n    source, and configuration files.\\n\\n\\\"Object\\\" form shall mean any form resulting\n    from mechanical transformation or translation of a Source form, including but\n    not limited to compiled object code, generated documentation, and conversions\n    to other media types.\\n\\n\\\"Work\\\" shall mean the work of authorship, whether in\n    Source or Object form, made available under the License, as indicated by a copyright\n    notice that is included in or attached to the work (an example is provided in\n    the Appendix below).\\n\\n\\\"Derivative Works\\\" shall mean any work, whether in Source\n    or Object form, that is based on (or derived from) the Work and for which the\n    editorial revisions, annotations, elaborations, or other modifications represent,\n    as a whole, an original work of authorship. For the purposes of this License,\n    Derivative Works shall not include works that remain separable from, or merely\n    link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\\n\\n\\\"Contribution\\\"\n    shall mean any work of authorship, including the original version of the Work\n    and any modifications or additions to that Work or Derivative Works thereof, that\n    is intentionally submitted to Licensor for inclusion in the Work by the copyright\n    owner or by an individual or Legal Entity authorized to submit on behalf of the\n    copyright owner. For the purposes of this definition, \\\"submitted\\\" means any\n    form of electronic, verbal, or written communication sent to the Licensor or its\n    representatives, including but not limited to communication on electronic mailing\n    lists, source code control systems, and issue tracking systems that are managed\n    by, or on behalf of, the Licensor for the purpose of discussing and improving\n    the Work, but excluding communication that is conspicuously marked or otherwise\n    designated in writing by the copyright owner as \\\"Not a Contribution.\\\"\\n\\n\\\"Contributor\\\"\n    shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution\n    has been received by Licensor and subsequently incorporated within the Work.\\n\\n2.\n    Grant of Copyright License. Subject to the terms and conditions of this License,\n    each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,\n    royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works\n    of, publicly display, publicly perform, sublicense, and distribute the Work and\n    such Derivative Works in Source or Object form.\\n\\n3. Grant of Patent License.\n    Subject to the terms and conditions of this License, each Contributor hereby grants\n    to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n    (except as stated in this section) patent license to make, have made, use, offer\n    to sell, sell, import, and otherwise transfer the Work, where such license applies\n    only to those patent claims licensable by such Contributor that are necessarily\n    infringed by their Contribution(s) alone or by combination of their Contribution(s)\n    with the Work to which such Contribution(s) was submitted. If You institute patent\n    litigation against any entity (including a cross-claim or counterclaim in a lawsuit)\n    alleging that the Work or a Contribution incorporated within the Work constitutes\n    direct or contributory patent infringement, then any patent licenses granted to\n    You under this License for that Work shall terminate as of the date such litigation\n    is filed.\\n\\n4. Redistribution. You may reproduce and distribute copies of the\n    Work or Derivative Works thereof in any medium, with or without modifications,\n    and in Source or Object form, provided that You meet the following conditions:\\n\\nYou\n    must give any other recipients of the Work or Derivative Works a copy of this\n    License; and\\n\\nYou must cause any modified files to carry prominent notices stating\n    that You changed the files; and\\n\\nYou must retain, in the Source form of any\n    Derivative Works that You distribute, all copyright, patent, trademark, and attribution\n    notices from the Source form of the Work, excluding those notices that do not\n    pertain to any part of the Derivative Works; and\\n\\nIf the Work includes a \\\"NOTICE\\\"\n    text file as part of its distribution, then any Derivative Works that You distribute\n    must include a readable copy of the attribution notices contained within such\n    NOTICE file, excluding those notices that do not pertain to any part of the Derivative\n    Works, in at least one of the following places: within a NOTICE text file distributed\n    as part of the Derivative Works; within the Source form or documentation, if provided\n    along with the Derivative Works; or, within a display generated by the Derivative\n    Works, if and wherever such third-party notices normally appear. The contents\n    of the NOTICE file are for informational purposes only and do not modify the License.\n    You may add Your own attribution notices within Derivative Works that You distribute,\n    alongside or as an addendum to the NOTICE text from the Work, provided that such\n    additional attribution notices cannot be construed as modifying the License. You\n    may add Your own copyright statement to Your modifications and may provide additional\n    or different license terms and conditions for use, reproduction, or distribution\n    of Your modifications, or for any such Derivative Works as a whole, provided Your\n    use, reproduction, and distribution of the Work otherwise complies with the conditions\n    stated in this License.\\n\\n5. Submission of Contributions. Unless You explicitly\n    state otherwise, any Contribution intentionally submitted for inclusion in the\n    Work by You to the Licensor shall be under the terms and conditions of this License,\n    without any additional terms or conditions. Notwithstanding the above, nothing\n    herein shall supersede or modify the terms of any separate license agreement you\n    may have executed with Licensor regarding such Contributions.\\n\\n6. Trademarks.\n    This License does not grant permission to use the trade names, trademarks, service\n    marks, or product names of the Licensor, except as required for reasonable and\n    customary use in describing the origin of the Work and reproducing the content\n    of the NOTICE file.\\n\\n7. Disclaimer of Warranty. Unless required by applicable\n    law or agreed to in writing, Licensor provides the Work (and each Contributor\n    provides its Contributions) on an \\\"AS IS\\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS\n    OF ANY KIND, either express or implied, including, without limitation, any warranties\n    or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR\n    PURPOSE. You are solely responsible for determining the appropriateness of using\n    or redistributing the Work and assume any risks associated with Your exercise\n    of permissions under this License.\\n\\n8. Limitation of Liability. In no event\n    and under no legal theory, whether in tort (including negligence), contract, or\n    otherwise, unless required by applicable law (such as deliberate and grossly negligent\n    acts) or agreed to in writing, shall any Contributor be liable to You for damages,\n    including any direct, indirect, special, incidental, or consequential damages\n    of any character arising as a result of this License or out of the use or inability\n    to use the Work (including but not limited to damages for loss of goodwill, work\n    stoppage, computer failure or malfunction, or any and all other commercial damages\n    or losses), even if such Contributor has been advised of the possibility of such\n    damages.\\n\\n9. Accepting Warranty or Additional Liability. While redistributing\n    the Work or Derivative Works thereof, You may choose to offer, and charge a fee\n    for, acceptance of support, warranty, indemnity, or other liability obligations\n    and/or rights consistent with this License. However, in accepting such obligations,\n    You may act only on Your own behalf and on Your sole responsibility, not on behalf\n    of any other Contributor, and only if You agree to indemnify, defend, and hold\n    each Contributor harmless for any liability incurred by, or claims asserted against,\n    such Contributor by reason of your accepting any such warranty or additional liability.\\n\\nEND\n    OF TERMS AND CONDITIONS\\n\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/typescript-5.8.3.dep.yml",
    "content": "---\nname: typescript\nversion: 5.8.3\ntype: npm\nsummary: TypeScript is a language for application scale JavaScript development\nhomepage: https://www.typescriptlang.org/\nlicense: apache-2.0\nlicenses:\n- sources: LICENSE.txt\n  text: \"Apache License\\n\\nVersion 2.0, January 2004\\n\\nhttp://www.apache.org/licenses/\n    \\n\\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\\n\\n1. Definitions.\\n\\n\\\"License\\\"\n    shall mean the terms and conditions for use, reproduction, and distribution as\n    defined by Sections 1 through 9 of this document.\\n\\n\\\"Licensor\\\" shall mean the\n    copyright owner or entity authorized by the copyright owner that is granting the\n    License.\\n\\n\\\"Legal Entity\\\" shall mean the union of the acting entity and all\n    other entities that control, are controlled by, or are under common control with\n    that entity. For the purposes of this definition, \\\"control\\\" means (i) the power,\n    direct or indirect, to cause the direction or management of such entity, whether\n    by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of\n    the outstanding shares, or (iii) beneficial ownership of such entity.\\n\\n\\\"You\\\"\n    (or \\\"Your\\\") shall mean an individual or Legal Entity exercising permissions\n    granted by this License.\\n\\n\\\"Source\\\" form shall mean the preferred form for\n    making modifications, including but not limited to software source code, documentation\n    source, and configuration files.\\n\\n\\\"Object\\\" form shall mean any form resulting\n    from mechanical transformation or translation of a Source form, including but\n    not limited to compiled object code, generated documentation, and conversions\n    to other media types.\\n\\n\\\"Work\\\" shall mean the work of authorship, whether in\n    Source or Object form, made available under the License, as indicated by a copyright\n    notice that is included in or attached to the work (an example is provided in\n    the Appendix below).\\n\\n\\\"Derivative Works\\\" shall mean any work, whether in Source\n    or Object form, that is based on (or derived from) the Work and for which the\n    editorial revisions, annotations, elaborations, or other modifications represent,\n    as a whole, an original work of authorship. For the purposes of this License,\n    Derivative Works shall not include works that remain separable from, or merely\n    link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\\n\\n\\\"Contribution\\\"\n    shall mean any work of authorship, including the original version of the Work\n    and any modifications or additions to that Work or Derivative Works thereof, that\n    is intentionally submitted to Licensor for inclusion in the Work by the copyright\n    owner or by an individual or Legal Entity authorized to submit on behalf of the\n    copyright owner. For the purposes of this definition, \\\"submitted\\\" means any\n    form of electronic, verbal, or written communication sent to the Licensor or its\n    representatives, including but not limited to communication on electronic mailing\n    lists, source code control systems, and issue tracking systems that are managed\n    by, or on behalf of, the Licensor for the purpose of discussing and improving\n    the Work, but excluding communication that is conspicuously marked or otherwise\n    designated in writing by the copyright owner as \\\"Not a Contribution.\\\"\\n\\n\\\"Contributor\\\"\n    shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution\n    has been received by Licensor and subsequently incorporated within the Work.\\n\\n2.\n    Grant of Copyright License. Subject to the terms and conditions of this License,\n    each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,\n    royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works\n    of, publicly display, publicly perform, sublicense, and distribute the Work and\n    such Derivative Works in Source or Object form.\\n\\n3. Grant of Patent License.\n    Subject to the terms and conditions of this License, each Contributor hereby grants\n    to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n    (except as stated in this section) patent license to make, have made, use, offer\n    to sell, sell, import, and otherwise transfer the Work, where such license applies\n    only to those patent claims licensable by such Contributor that are necessarily\n    infringed by their Contribution(s) alone or by combination of their Contribution(s)\n    with the Work to which such Contribution(s) was submitted. If You institute patent\n    litigation against any entity (including a cross-claim or counterclaim in a lawsuit)\n    alleging that the Work or a Contribution incorporated within the Work constitutes\n    direct or contributory patent infringement, then any patent licenses granted to\n    You under this License for that Work shall terminate as of the date such litigation\n    is filed.\\n\\n4. Redistribution. You may reproduce and distribute copies of the\n    Work or Derivative Works thereof in any medium, with or without modifications,\n    and in Source or Object form, provided that You meet the following conditions:\\n\\nYou\n    must give any other recipients of the Work or Derivative Works a copy of this\n    License; and\\n\\nYou must cause any modified files to carry prominent notices stating\n    that You changed the files; and\\n\\nYou must retain, in the Source form of any\n    Derivative Works that You distribute, all copyright, patent, trademark, and attribution\n    notices from the Source form of the Work, excluding those notices that do not\n    pertain to any part of the Derivative Works; and\\n\\nIf the Work includes a \\\"NOTICE\\\"\n    text file as part of its distribution, then any Derivative Works that You distribute\n    must include a readable copy of the attribution notices contained within such\n    NOTICE file, excluding those notices that do not pertain to any part of the Derivative\n    Works, in at least one of the following places: within a NOTICE text file distributed\n    as part of the Derivative Works; within the Source form or documentation, if provided\n    along with the Derivative Works; or, within a display generated by the Derivative\n    Works, if and wherever such third-party notices normally appear. The contents\n    of the NOTICE file are for informational purposes only and do not modify the License.\n    You may add Your own attribution notices within Derivative Works that You distribute,\n    alongside or as an addendum to the NOTICE text from the Work, provided that such\n    additional attribution notices cannot be construed as modifying the License. You\n    may add Your own copyright statement to Your modifications and may provide additional\n    or different license terms and conditions for use, reproduction, or distribution\n    of Your modifications, or for any such Derivative Works as a whole, provided Your\n    use, reproduction, and distribution of the Work otherwise complies with the conditions\n    stated in this License.\\n\\n5. Submission of Contributions. Unless You explicitly\n    state otherwise, any Contribution intentionally submitted for inclusion in the\n    Work by You to the Licensor shall be under the terms and conditions of this License,\n    without any additional terms or conditions. Notwithstanding the above, nothing\n    herein shall supersede or modify the terms of any separate license agreement you\n    may have executed with Licensor regarding such Contributions.\\n\\n6. Trademarks.\n    This License does not grant permission to use the trade names, trademarks, service\n    marks, or product names of the Licensor, except as required for reasonable and\n    customary use in describing the origin of the Work and reproducing the content\n    of the NOTICE file.\\n\\n7. Disclaimer of Warranty. Unless required by applicable\n    law or agreed to in writing, Licensor provides the Work (and each Contributor\n    provides its Contributions) on an \\\"AS IS\\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS\n    OF ANY KIND, either express or implied, including, without limitation, any warranties\n    or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR\n    PURPOSE. You are solely responsible for determining the appropriateness of using\n    or redistributing the Work and assume any risks associated with Your exercise\n    of permissions under this License.\\n\\n8. Limitation of Liability. In no event\n    and under no legal theory, whether in tort (including negligence), contract, or\n    otherwise, unless required by applicable law (such as deliberate and grossly negligent\n    acts) or agreed to in writing, shall any Contributor be liable to You for damages,\n    including any direct, indirect, special, incidental, or consequential damages\n    of any character arising as a result of this License or out of the use or inability\n    to use the Work (including but not limited to damages for loss of goodwill, work\n    stoppage, computer failure or malfunction, or any and all other commercial damages\n    or losses), even if such Contributor has been advised of the possibility of such\n    damages.\\n\\n9. Accepting Warranty or Additional Liability. While redistributing\n    the Work or Derivative Works thereof, You may choose to offer, and charge a fee\n    for, acceptance of support, warranty, indemnity, or other liability obligations\n    and/or rights consistent with this License. However, in accepting such obligations,\n    You may act only on Your own behalf and on Your sole responsibility, not on behalf\n    of any other Contributor, and only if You agree to indemnify, defend, and hold\n    each Contributor harmless for any liability incurred by, or claims asserted against,\n    such Contributor by reason of your accepting any such warranty or additional liability.\\n\\nEND\n    OF TERMS AND CONDITIONS\\n\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/undici.dep.yml",
    "content": "---\nname: undici\nversion: 5.29.0\ntype: npm\nsummary: An HTTP/1.1 client, written from scratch for Node.js\nhomepage: https://undici.nodejs.org\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    MIT License\n\n    Copyright (c) Matteo Collina and Undici contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n- sources: README.md\n  text: MIT\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/universal-user-agent.dep.yml",
    "content": "---\nname: universal-user-agent\nversion: 6.0.1\ntype: npm\nsummary: Get a user agent string in both browser and node\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE.md\n  text: |\n    # [ISC License](https://spdx.org/licenses/ISC)\n\n    Copyright (c) 2018, Gregor Martynus (https://github.com/gr2m)\n\n    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n- sources: README.md\n  text: \"[ISC](LICENSE.md)\"\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/unzip-stream.dep.yml",
    "content": "---\nname: unzip-stream\nversion: 0.3.4\ntype: npm\nsummary: Process zip files using streaming API\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright (c) 2017 Michal Hruby\n    Copyright (c) 2012 - 2013 Near Infinity Corporation\n\n    Permission is hereby granted, free of charge, to any person obtaining\n    a copy of this software and associated documentation files (the\n    \"Software\"), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to\n    permit persons to whom the Software is furnished to do so, subject to\n    the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/util-deprecate.dep.yml",
    "content": "---\nname: util-deprecate\nversion: 1.0.2\ntype: npm\nsummary: The Node.js `util.deprecate()` function with browser support\nhomepage: https://github.com/TooTallNate/util-deprecate\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    (The MIT License)\n\n    Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation\n    files (the \"Software\"), to deal in the Software without\n    restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the\n    Software is furnished to do so, subject to the following\n    conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\n- sources: README.md\n  text: |-\n    (The MIT License)\n\n    Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation\n    files (the \"Software\"), to deal in the Software without\n    restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the\n    Software is furnished to do so, subject to the following\n    conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/uuid.dep.yml",
    "content": "---\nname: uuid\nversion: 8.3.2\ntype: npm\nsummary: RFC4122 (v1, v4, and v5) UUIDs\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE.md\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2010-2020 Robert Kieffer and other contributors\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/webidl-conversions.dep.yml",
    "content": "---\nname: webidl-conversions\nversion: 3.0.1\ntype: npm\nsummary: Implements the WebIDL algorithms for converting to and from JavaScript values\nhomepage:\nlicense: bsd-2-clause\nlicenses:\n- sources: LICENSE.md\n  text: |\n    # The BSD 2-Clause License\n\n    Copyright (c) 2014, Domenic Denicola\n    All rights reserved.\n\n    Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n    1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n    2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/whatwg-url.dep.yml",
    "content": "---\nname: whatwg-url\nversion: 5.0.0\ntype: npm\nsummary: An implementation of the WHATWG URL Standard's URL API and parsing machinery\nhomepage:\nlicense: mit\nlicenses:\n- sources: LICENSE.txt\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2015–2016 Sebastian Mayr\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/which.dep.yml",
    "content": "---\nname: which\nversion: 2.0.2\ntype: npm\nsummary: Like which(1) unix command. Find the first instance of an executable in the\n  PATH.\nhomepage:\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/wrap-ansi-cjs.dep.yml",
    "content": "---\nname: wrap-ansi-cjs\nversion: 7.0.0\ntype: npm\nsummary: Wordwrap a string with ANSI escape codes\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/wrap-ansi.dep.yml",
    "content": "---\nname: wrap-ansi\nversion: 8.1.0\ntype: npm\nsummary: Wordwrap a string with ANSI escape codes\nhomepage:\nlicense: mit\nlicenses:\n- sources: license\n  text: |\n    MIT License\n\n    Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/wrappy.dep.yml",
    "content": "---\nname: wrappy\nversion: 1.0.2\ntype: npm\nsummary: Callback wrapping utility\nhomepage: https://github.com/npm/wrappy\nlicense: isc\nlicenses:\n- sources: LICENSE\n  text: |\n    The ISC License\n\n    Copyright (c) Isaac Z. Schlueter and Contributors\n\n    Permission to use, copy, modify, and/or distribute this software for any\n    purpose with or without fee is hereby granted, provided that the above\n    copyright notice and this permission notice appear in all copies.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n    IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/xml2js.dep.yml",
    "content": "---\nname: xml2js\nversion: 0.5.0\ntype: npm\nsummary: Simple XML to JavaScript object converter.\nhomepage: https://github.com/Leonidas-from-XIV/node-xml2js\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    Copyright 2010, 2011, 2012, 2013. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to\n    deal in the Software without restriction, including without limitation the\n    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n    sell copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n    IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/xmlbuilder.dep.yml",
    "content": "---\nname: xmlbuilder\nversion: 11.0.1\ntype: npm\nsummary: An XML builder for node.js\nhomepage: http://github.com/oozcitak/xmlbuilder-js\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |\n    The MIT License (MIT)\n\n    Copyright (c) 2013 Ozgur Ozcitak\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in\n    all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n    THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".licenses/npm/zip-stream.dep.yml",
    "content": "---\nname: zip-stream\nversion: 6.0.1\ntype: npm\nsummary: a streaming zip archive generator.\nhomepage: https://github.com/archiverjs/node-zip-stream\nlicense: mit\nlicenses:\n- sources: LICENSE\n  text: |-\n    Copyright (c) 2014 Chris Talkington, contributors.\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation\n    files (the \"Software\"), to deal in the Software without\n    restriction, including without limitation the rights to use,\n    copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the\n    Software is furnished to do so, subject to the following\n    conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\nnotices: []\n"
  },
  {
    "path": ".markdown-lint.yml",
    "content": "# See: https://github.com/DavidAnson/markdownlint\n\n# Unordered list style\nMD004:\n  style: dash\n\n# Disable line length for tables\nMD013:\n  tables: false\n\n# Ordered list item prefix\nMD029:\n  style: one\n\n# Spaces after list markers\nMD030:\n  ul_single: 1\n  ol_single: 1\n  ul_multi: 1\n  ol_multi: 1\n\n# Code block style\nMD046:\n  style: fenced\n"
  },
  {
    "path": ".node-version",
    "content": "24.14.1\n"
  },
  {
    "path": ".prettierignore",
    "content": ".DS_Store\n.licenses/\ndist/\nnode_modules/\ncoverage/\n"
  },
  {
    "path": ".prettierrc.yml",
    "content": "# See: https://prettier.io/docs/en/configuration\n\nprintWidth: 80\ntabWidth: 2\nuseTabs: false\nsemi: false\nsingleQuote: true\nquoteProps: as-needed\njsxSingleQuote: false\ntrailingComma: none\nbracketSpacing: true\nbracketSameLine: true\narrowParens: always\nproseWrap: always\nhtmlWhitespaceSensitivity: css\nendOfLine: lf\n"
  },
  {
    "path": ".vscode/launch.json",
    "content": "{\n  \"version\": \"0.2.0\",\n  \"configurations\": [\n    {\n      \"name\": \"Debug Action\",\n      \"type\": \"node\",\n      \"request\": \"launch\",\n      \"runtimeExecutable\": \"npx\",\n      \"cwd\": \"${workspaceRoot}\",\n      \"args\": [\"@github/local-action\", \".\", \"src/main.ts\", \".env\"],\n      \"console\": \"integratedTerminal\",\n      \"skipFiles\": [\"<node_internals>/**\", \"node_modules/**\"]\n    }\n  ]\n}\n"
  },
  {
    "path": ".yaml-lint.yml",
    "content": "# See: https://yamllint.readthedocs.io/en/stable/\n\nrules:\n  document-end: disable\n  document-start:\n    level: warning\n    present: false\n  line-length:\n    level: warning\n    max: 80\n    allow-non-breakable-words: true\n    allow-non-breakable-inline-mappings: true\nignore:\n  - .licenses/\n"
  },
  {
    "path": "CODEOWNERS",
    "content": "############################################################################\n#                           Repository CODEOWNERS                          #\n# Order is important! The last matching pattern takes the most precedence. #\n############################################################################\n\n# Default owners, unless a later match takes precedence.\n* @Jimver\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\n## Adding new CUDA versions\n\nAll CUDA versions are visible on the\n[NVIDIA CUDA toolkit archive](https://developer.nvidia.com/cuda-toolkit-archive)\n\nWhen adding new versions, the following files should be updated:\n\n- `src/links/linux-links.ts`\n\n  To get the linux link you should get the link for the `runfile (local)`\n  option, the distribution doesn't matter as long as the architecture is\n  `x86_64`, see the image below: ![Linux link copy](images/linux-link.jpg) Copy\n  the link and paste it in a new entry of the `cudaVersionToURL` map:\n  ![Linux link paste](images/linux-link-code.jpg)\n\n- `src/links/windows-links.ts`\n\n  There are two windows links, one for the network installer (online) and one\n  for the local installer (offline):\n\n  The installer links can be copied by selecting the Windows platform, OS\n  version doesn't matter (at the time of writing), and then select either\n  `exe (local)` for the local installer, and `exe (network)` for the online\n  installer. The link can be copied by right clicking the green `Download`\n  button and selecting `Copy Link address`.\n\n  #### Windows - Local installer:\n\n  ![Windows link local copy](images/windows-link-local.jpg)\n\n  Then add a new entry in the `cudaVersionToURL` map with the link copied above:\n  ![Windows link local paste](images/windows-link-local-code.jpg)\n\n  #### Windows - Network installer:\n\n  ![Windows link network copy](images/windows-link-network.jpg)\n\n  Add a new entry in the `cudaVersionToNetworkUrl` map with the link copied in\n  the above: ![Windows link network paste](images/windows-link-network-code.jpg)\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2021 Jim\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# cuda-toolkit\n\nThis action installs the\n[NVIDIA® CUDA® Toolkit](https://developer.nvidia.com/cuda-toolkit) on the\nsystem. It adds the cuda install location as `CUDA_PATH` to `GITHUB_ENV` so you\ncan access the CUDA install location in subsequent steps. `CUDA_PATH/bin` is\nadded to `GITHUB_PATH` so you can use commands such as `nvcc` directly in\nsubsequent steps. Right now both `windows-2019` and `ubuntu-20.04` runners have\nbeen tested to work successfully.\n\n## Inputs\n\n### `cuda`\n\n**Optional** The CUDA version to install. View `src/link/windows-links.ts` and\n`src/link/linux-links.ts` for available versions.\n\nDefault: `'13.2.0'`.\n\n### `sub-packages`\n\n**NOTE: On Linux this only works with the 'network' method\n[view details](#method)**\n\n**Optional** If set, only the specified CUDA subpackages will be installed. Only\ninstalls specified subpackages, must be in the form of a JSON array. For\nexample, if you only want to install nvcc and visual studio integration:\n`'[\"nvcc\", \"visual_studio_integration\"]'` (double quotes required)\n\nDefault: `'[]'`.\n\n### `non-cuda-sub-packages`\n\n**NOTE: This only works on Linux with the 'network' method\n[view details](#method)**\n\n**Optional** If set, only the specified CUDA subpackages will be installed\nwithout prepending the \"cuda-\" prefix. Only installs specified subpackages\nwithout prepending the \"cuda-\" prefix, must be in the form of a JSON array. For\nexample, if you only want to install libcublas and libcufft:\n`'[\"libcublas\", \"libcufft\"]'` (double quotes required)\n\nDefault: `'[]'`.\n\n### `method`\n\n**Optional** Installation method, can be either `'local'` or `'network'`.\n\n- `'local'` downloads the entire installer with all packages and runs that (you\n  can still only install certain packages with `sub-packages` on Windows).\n- `'network'` downloads a smaller executable which only downloads necessary\n  packages which you can define in `sub-packages`.\n\nDefault: `'local'`.\n\n### `linux-local-args`\n\n**Optional** (For Linux and 'local' method only) override arguments for the\nLinux `.run` installer. For example if you don't want samples use\n`'[\"--toolkit\"]'` (double quotes required) See the\n[Nvidia Docs](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#runfile-advanced)\nfor available options. Note that the `--silent` option is already always added\nby the action itself.\n\nDefault: `'[\"--toolkit\", \"--samples\"]'`.\n\n### `log-file-suffix`\n\n**Required with matrix builds**\n\nAdd suffix to the log file name which gets uploaded as an artifact. This **has**\nto be set when running a matrix build. The log file already contains the OS type\n(Linux/Windows) and install method (local/network) but it is not aware of other\nmatrix variables, so add those here.\n\nFor example if you use multiple linux distros:\n\n```\njobs:\n  CI:\n    strategy:\n      matrix:\n        os: [ubuntu-22.04, ubuntu-20.04]\n    runs-on: ${{ matrix.os }}\n    steps:\n    - uses: Jimver/cuda-toolkit@master\n      id: cuda-toolkit\n      with:\n        log-file-suffix: '${{matrix.os}}.txt'\n\n```\n\nDefault: `'log.txt'`\n\n## Outputs\n\n### `cuda`\n\nThe cuda version installed (same as `cuda` from input).\n\n### `CUDA_PATH`\n\nThe path where cuda is installed (same as `CUDA_PATH` in `GITHUB_ENV`).\n\n## Example usage\n\n```yaml\nsteps:\n- uses: Jimver/cuda-toolkit@v0.2.35\n  id: cuda-toolkit\n  with:\n    cuda: '13.2.0'\n\n- run: echo \"Installed cuda version is: ${{steps.cuda-toolkit.outputs.cuda}}\"\n\n- run: echo \"Cuda install location: ${{steps.cuda-toolkit.outputs.CUDA_PATH}}\"\n\n- run: nvcc -V\n```\n"
  },
  {
    "path": "__fixtures__/core.ts",
    "content": "import type * as core from '@actions/core'\nimport { jest } from '@jest/globals'\n\nexport const debug = jest.fn<typeof core.debug>()\nexport const error = jest.fn<typeof core.error>()\nexport const info = jest.fn<typeof core.info>()\nexport const getInput = jest.fn<typeof core.getInput>()\nexport const setOutput = jest.fn<typeof core.setOutput>()\nexport const setFailed = jest.fn<typeof core.setFailed>()\nexport const warning = jest.fn<typeof core.warning>()\n"
  },
  {
    "path": "__fixtures__/wait.ts",
    "content": "import { jest } from '@jest/globals'\n\nexport const wait = jest.fn<typeof import('../src/wait.js').wait>()\n"
  },
  {
    "path": "__tests__/arch.test.ts",
    "content": "import { CPUArch, getArch } from '../src/arch'\nimport os from 'os'\n\ntest.concurrent('Return either x64 or arm64 architecture', async () => {\n  const archString = os.arch()\n  let expected: CPUArch\n  switch (archString) {\n    case 'x64':\n      expected = CPUArch.x86_64\n      break\n    case 'arm64':\n      expected = CPUArch.arm64\n      break\n    default:\n      // eslint-disable-next-line jest/no-conditional-expect\n      await expect(getArch()).rejects.toThrow(\n        `Unsupported architecture: ${archString}`\n      )\n      return\n  }\n\n  const detectedArch = await getArch()\n  expect(detectedArch).toBe(expected)\n})\n"
  },
  {
    "path": "__tests__/fs-utils.test.ts",
    "content": "import fs from 'fs'\nimport os from 'os'\nimport path from 'path'\nimport { getFilesRecursive, filterReadable } from '../src/fs-utils.js'\n\ndescribe('fs-utils', () => {\n  const tmpRoot = path.join(os.tmpdir(), `cuda-toolkit-test-${Date.now()}`)\n\n  beforeAll(async () => {\n    await fs.promises.mkdir(tmpRoot, { recursive: true })\n    // create files and nested directories\n    await fs.promises.mkdir(path.join(tmpRoot, 'subdir'))\n    await fs.promises.writeFile(path.join(tmpRoot, 'a.txt'), 'a')\n    await fs.promises.writeFile(path.join(tmpRoot, 'subdir', 'b.txt'), 'b')\n\n    // create a non-readable file (if platform supports chmod)\n    try {\n      const p = path.join(tmpRoot, 'noaccess.txt')\n      await fs.promises.writeFile(p, 'x')\n      await fs.promises.chmod(p, 0o000)\n    } catch {\n      // ignore chmod failures on platforms that don't support it\n    }\n  })\n\n  afterAll(async () => {\n    try {\n      const p = path.join(tmpRoot, 'noaccess.txt')\n      await fs.promises.chmod(p, 0o644)\n    } catch {\n      // ignore\n    }\n    await fs.promises.rm(tmpRoot, { recursive: true, force: true })\n  })\n\n  test('getFilesRecursive returns all files under directory', async () => {\n    const files = await getFilesRecursive(tmpRoot)\n\n    const normalizedNames = files.map((f) => path.relative(tmpRoot, f)).sort()\n\n    expect(normalizedNames).toEqual(\n      ['a.txt', 'noaccess.txt', path.join('subdir', 'b.txt')].sort()\n    )\n  })\n\n  test('filterReadable filters out non-readable or missing files', async () => {\n    const a = path.join(tmpRoot, 'a.txt')\n    const nosuch = path.join(tmpRoot, 'does-not-exist.txt')\n    const noaccess = path.join(tmpRoot, 'noaccess.txt')\n\n    const result = await filterReadable([a, nosuch, noaccess])\n\n    expect(result).toContain(a)\n    expect(result).not.toContain(nosuch)\n  })\n})\n"
  },
  {
    "path": "__tests__/links/get-links.test.ts",
    "content": "import { LinuxLinks } from '../../src/links/linux-links'\nimport { WindowsLinks } from '../../src/links/windows-links'\nimport { getLinks } from '../../src/links/get-links'\n\ntest.concurrent('getLinks gives a valid ILinks class', async () => {\n  try {\n    const links = await getLinks()\n    expect(\n      links instanceof LinuxLinks || links instanceof WindowsLinks\n    ).toBeTruthy()\n  } catch (error) {\n    throw new Error(`Error getting links: ${error}`)\n    // Other OS\n  }\n})\n\ntest.concurrent('getLinks return same versions in same order', async () => {\n  const linuxLinks = LinuxLinks.Instance.getAvailableLocalCudaVersions()\n  const windowsLinks = WindowsLinks.Instance.getAvailableLocalCudaVersions()\n  const windowsNetworkLinks =\n    WindowsLinks.Instance.getAvailableNetworkCudaVersions()\n\n  expect(linuxLinks.length).toBe(windowsLinks.length)\n  expect(windowsLinks.length).toBe(windowsNetworkLinks.length)\n  expect(linuxLinks).toEqual(windowsLinks)\n  expect(windowsLinks).toEqual(windowsNetworkLinks)\n})\n"
  },
  {
    "path": "__tests__/links/linux-links.test.ts",
    "content": "import { AbstractLinks } from '../../src/links/links'\nimport { LinuxLinks } from '../../src/links/linux-links'\nimport { SemVer } from 'semver'\n\ntest.concurrent('Linux Cuda versions in descending order', async () => {\n  const wLinks: AbstractLinks = LinuxLinks.Instance\n  const versions = wLinks.getAvailableLocalCudaVersions()\n  for (let i = 0; i < versions.length - 1; i++) {\n    const versionA: SemVer = versions[i]\n    const versionB: SemVer = versions[i + 1]\n    expect(versionA.compare(versionB)).toBe(1) // A should be greater than B\n  }\n})\n\ntest.concurrent(\n  'Linux Cuda version to URL map contains valid URLs',\n  async () => {\n    for (const version of LinuxLinks.Instance.getAvailableLocalCudaVersions()) {\n      const url: URL =\n        await LinuxLinks.Instance.getLocalURLFromCudaVersion(version)\n      expect(url).toBeInstanceOf(URL)\n    }\n  }\n)\n\ntest.concurrent('There is at least linux 1 version url pair', async () => {\n  expect(\n    LinuxLinks.Instance.getAvailableLocalCudaVersions().length\n  ).toBeGreaterThanOrEqual(1)\n})\n\ntest.concurrent(\n  'Local Linux links should start with https://developer.(download.)nvidia.com and end with .run',\n  async () => {\n    const versions = LinuxLinks.Instance.getAvailableLocalCudaVersions()\n    const filteredVersions = versions.filter((version) => {\n      return (\n        version.version !== '10.0.130' &&\n        version.version !== '9.2.148' &&\n        version.version !== '8.0.61'\n      )\n    })\n    for (const version of filteredVersions) {\n      const url: URL =\n        await LinuxLinks.Instance.getLocalURLFromCudaVersion(version)\n      expect(url.toString()).toMatch(\n        /^https:\\/\\/developer\\.(download\\.)?nvidia\\.com.+\\.run$/\n      )\n    }\n  }\n)\n"
  },
  {
    "path": "__tests__/links/windows-links.test.ts",
    "content": "import { AbstractLinks } from '../../src/links/links'\nimport { SemVer } from 'semver'\nimport { WindowsLinks } from '../../src/links/windows-links'\n\ntest.concurrent('Windows Cuda versions in descending order', async () => {\n  const wLinks: AbstractLinks = WindowsLinks.Instance\n  const versions = wLinks.getAvailableLocalCudaVersions()\n  for (let i = 0; i < versions.length - 1; i++) {\n    const versionA: SemVer = versions[i]\n    const versionB: SemVer = versions[i + 1]\n    expect(versionA.compare(versionB)).toBe(1) // A should be greater than B\n  }\n})\n\ntest.concurrent(\n  'Windows Cuda version to URL map contains valid URLs',\n  async () => {\n    for (const version of WindowsLinks.Instance.getAvailableLocalCudaVersions()) {\n      const url: URL =\n        await WindowsLinks.Instance.getLocalURLFromCudaVersion(version)\n      expect(url).toBeInstanceOf(URL)\n    }\n  }\n)\n\ntest.concurrent('There is at least windows 1 version url pair', async () => {\n  expect(\n    WindowsLinks.Instance.getAvailableLocalCudaVersions().length\n  ).toBeGreaterThanOrEqual(1)\n})\n\ntest.concurrent(\n  'Windows Cuda network versions in descending order',\n  async () => {\n    const wLinks = WindowsLinks.Instance\n    const versions = wLinks.getAvailableNetworkCudaVersions()\n    for (let i = 0; i < versions.length - 1; i++) {\n      const versionA: SemVer = versions[i]\n      const versionB: SemVer = versions[i + 1]\n      expect(versionA.compare(versionB)).toBe(1) // A should be greater than B\n    }\n  }\n)\n\ntest.concurrent(\n  'Windows network Cuda version to URL map contains valid URLs',\n  async () => {\n    for (const version of WindowsLinks.Instance.getAvailableNetworkCudaVersions()) {\n      const url: URL =\n        WindowsLinks.Instance.getNetworkURLFromCudaVersion(version)\n      expect(url).toBeInstanceOf(URL)\n    }\n  }\n)\n\ntest.concurrent(\n  'There is at least windows network 1 version url pair',\n  async () => {\n    expect(\n      WindowsLinks.Instance.getAvailableNetworkCudaVersions().length\n    ).toBeGreaterThanOrEqual(1)\n  }\n)\n\ntest.concurrent(\n  'Local Windows links should start with https://developer.(.download.)nvidia.com and end with .exe',\n  async () => {\n    const versions = WindowsLinks.Instance.getAvailableLocalCudaVersions()\n    const filteredVersions = versions.filter((version) => {\n      return (\n        version.version !== '10.0.130' &&\n        version.version !== '9.2.148' &&\n        version.version !== '8.0.61'\n      )\n    })\n    for (const version of filteredVersions) {\n      const url: URL =\n        await WindowsLinks.Instance.getLocalURLFromCudaVersion(version)\n      expect(url.toString()).toMatch(\n        /^https:\\/\\/developer\\.(download\\.)?nvidia\\.com.+\\.exe$/\n      )\n    }\n  }\n)\n\ntest.concurrent(\n  'Network Windows links should start with https://developer.(download.)nvidia.com and end with network.exe',\n  async () => {\n    const versions = WindowsLinks.Instance.getAvailableNetworkCudaVersions()\n    const filteredVersions = versions.filter((version) => {\n      return (\n        version.version !== '10.0.130' &&\n        version.version !== '9.2.148' &&\n        version.version !== '8.0.61'\n      )\n    })\n    for (const version of filteredVersions) {\n      const url: URL =\n        WindowsLinks.Instance.getNetworkURLFromCudaVersion(version)\n      expect(url.toString()).toMatch(\n        /^https:\\/\\/developer\\.(download\\.)?nvidia\\.com.+network\\.exe$/\n      )\n    }\n  }\n)\n"
  },
  {
    "path": "__tests__/method.test.ts",
    "content": "import { parseMethod } from '../src/method'\n\ntest.concurrent.each(['local', 'network'])(\n  'Parse %s method',\n  async (methodString) => {\n    const parsed = parseMethod(methodString)\n    expect(parsed).toBe(methodString)\n  }\n)\n\ntest.concurrent('Parse invalid method', async () => {\n  const invalidMethod = 'invalidMethodString'\n  expect(() => parseMethod(invalidMethod)).toThrow(\n    `Invalid method string: ${invalidMethod}`\n  )\n})\n"
  },
  {
    "path": "__tests__/platform.test.ts",
    "content": "import { OSType, getOs, getRelease } from '../src/platform'\nimport os from 'os'\n\ntest.concurrent('Return either windows of linux platform', async () => {\n  const osString = os.platform()\n  let expected: OSType\n  switch (osString) {\n    case 'win32':\n      expected = OSType.windows\n      break\n    case 'linux':\n      expected = OSType.linux\n      break\n    default:\n      // eslint-disable-next-line jest/no-conditional-expect\n      await expect(getOs()).rejects.toThrow(`Unsupported OS: ${osString}`)\n      return\n  }\n  const osPlatform = await getOs()\n  expect(osPlatform).toBe(expected)\n})\n\ntest.concurrent('Return version', async () => {\n  const version = await getRelease()\n  expect(version).toBeDefined()\n})\n"
  },
  {
    "path": "__tests__/version.test.ts",
    "content": "import { Method } from '../src/method'\nimport { SemVer } from 'semver'\nimport { getVersion } from '../src/version'\n\ntest.concurrent.each<Method>(['local', 'network'])(\n  'Successfully parse correct version for method %s',\n  async (method) => {\n    const versionString = '11.2.2'\n    try {\n      const version = await getVersion(versionString, method)\n      expect(version).toBeInstanceOf(SemVer)\n      expect(version.compare(new SemVer(versionString))).toBe(0)\n    } catch (error) {\n      throw new Error(`Error parsing version: ${error}`)\n      // Other OS\n    }\n  }\n)\n\ntest.concurrent.each<Method>(['local', 'network'])(\n  'Expect error to be thrown on invalid version string for method %s',\n  async (method) => {\n    const versionString =\n      'invalid version string that does not conform to semver'\n    await expect(getVersion(versionString, method)).rejects.toThrow(\n      TypeError(`Invalid Version: ${versionString}`)\n    )\n  }\n)\n\ntest.concurrent.each<Method>(['local', 'network'])(\n  'Expect error to be thrown on unavailable version for method %s',\n  async (method) => {\n    const versionString = '0.0.1'\n    try {\n      await expect(getVersion(versionString, method)).rejects.toThrow(\n        `Version not available: ${versionString}`\n      )\n    } catch (error) {\n      throw new Error(`Error checking version availability: ${error}`)\n      // Other OS\n    }\n  }\n)\n"
  },
  {
    "path": "action.yml",
    "content": "name: 'cuda-toolkit'\ndescription: 'Installs NVIDIA CUDA Toolkit and adds it to PATH'\nauthor: 'Jim Verheijde'\ninputs:\n  cuda:\n    description: 'Cuda version'\n    required: false\n    default: '13.2.0'\n  sub-packages:\n    description:\n      'Only installs specified subpackages, must be in the form of a JSON array.\n      For example, if you only want to install nvcc and visual studio\n      integration: [\"nvcc\", \"visual_studio_integration\"] double quotes required!\n      Note that if you want to use this on Linux, ''network'' method MUST be\n      used.'\n    required: false\n    default: '[]'\n  non-cuda-sub-packages:\n    description:\n      'Only installs specified subpackages that do not have the cuda prefix,\n      must be in the form of a JSON array. For example, if you only want to\n      install libcublas and libcufft: [\"libcublas\", \"libcufft\"] double quotes\n      required! Note that this only works with ''network'' method on only on\n      Linux.'\n    required: false\n    default: '[]'\n  method:\n    description:\n      \"Installation method, can be either 'local' or 'network'. 'local'\n      downloads the entire installer with all packages and runs that (you can\n      still only install certain packages with sub-packages on Windows).\n      'network' downloads a smaller executable which only downloads necessary\n      packages which you can define in subPackages\"\n    required: false\n    default: 'local'\n  linux-local-args:\n    description:\n      '(Linux and ''local'' method only) override arguments for the linux .run\n      installer. For example if you don''t want samples use [\"--toolkit\"] double\n      quotes required!'\n    required: false\n    default: '[\"--toolkit\", \"--samples\"]'\n  use-github-cache:\n    description:\n      'Use GitHub cache to cache downloaded installer on GitHub servers'\n    required: false\n    default: 'true'\n  use-local-cache:\n    description:\n      'Use local cache to cache downloaded installer on the local runner'\n    required: false\n    default: 'true'\n  log-file-suffix:\n    description: 'Suffix of log file name in artifact'\n    required: false\n    default: 'log.txt'\noutputs:\n  CUDA_PATH:\n    description: 'Path to CUDA installation'\n  cuda:\n    description: 'Version of CUDA installed'\nruns:\n  using: 'node24'\n  main: dist/index.js\nbranding:\n  icon: box\n  color: green\n"
  },
  {
    "path": "dist/index.js",
    "content": "import * as require$$0$6 from 'os';\nimport require$$0__default from 'os';\nimport require$$0$7, { createHmac } from 'crypto';\nimport * as fs from 'fs';\nimport fs__default from 'fs';\nimport * as require$$1$2 from 'path';\nimport require$$1__default from 'path';\nimport require$$2$3 from 'http';\nimport require$$1$3 from 'https';\nimport require$$0$a from 'net';\nimport require$$1$5 from 'tls';\nimport require$$1$4, { EventEmitter } from 'events';\nimport require$$0$9 from 'assert';\nimport * as require$$0$5 from 'util';\nimport require$$0__default$1 from 'util';\nimport require$$0$b, { Readable as Readable$1 } from 'stream';\nimport require$$0$8 from 'buffer';\nimport require$$8 from 'querystring';\nimport require$$14 from 'stream/web';\nimport require$$0$d, { Transform } from 'node:stream';\nimport require$$1$6, { inspect as inspect$1 } from 'node:util';\nimport require$$0$c from 'node:events';\nimport require$$0$e from 'worker_threads';\nimport require$$2$4 from 'perf_hooks';\nimport require$$5$1 from 'util/types';\nimport require$$4$1 from 'async_hooks';\nimport require$$1$7 from 'console';\nimport Url from 'url';\nimport zlib$1 from 'zlib';\nimport require$$6$1 from 'string_decoder';\nimport require$$0$f from 'diagnostics_channel';\nimport require$$2$5 from 'child_process';\nimport require$$6$2 from 'timers';\nimport { randomUUID as randomUUID$2 } from 'node:crypto';\nimport * as os from 'node:os';\nimport { EOL as EOL$1 } from 'node:os';\nimport * as process$2 from 'node:process';\nimport * as http from 'node:http';\nimport * as https from 'node:https';\nimport * as zlib from 'node:zlib';\nimport require$$1$8 from 'tty';\nimport require$$1$a from 'fs/promises';\nimport require$$0$g from 'constants';\nimport require$$2$7 from 'node:url';\nimport require$$1$9 from 'node:path';\nimport require$$4$2 from 'node:fs';\nimport require$$5$2 from 'node:fs/promises';\nimport require$$2$6 from 'node:string_decoder';\nimport require$$0$h from 'punycode';\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\nfunction getDefaultExportFromCjs (x) {\n\treturn x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;\n}\n\nfunction getAugmentedNamespace(n) {\n  if (Object.prototype.hasOwnProperty.call(n, '__esModule')) return n;\n  var f = n.default;\n\tif (typeof f == \"function\") {\n\t\tvar a = function a () {\n\t\t\tif (this instanceof a) {\n        return Reflect.construct(f, arguments, this.constructor);\n\t\t\t}\n\t\t\treturn f.apply(this, arguments);\n\t\t};\n\t\ta.prototype = f.prototype;\n  } else a = {};\n  Object.defineProperty(a, '__esModule', {value: true});\n\tObject.keys(n).forEach(function (k) {\n\t\tvar d = Object.getOwnPropertyDescriptor(n, k);\n\t\tObject.defineProperty(a, k, d.get ? d : {\n\t\t\tenumerable: true,\n\t\t\tget: function () {\n\t\t\t\treturn n[k];\n\t\t\t}\n\t\t});\n\t});\n\treturn a;\n}\n\nvar core$1 = {};\n\nvar command = {};\n\nvar utils$5 = {};\n\nvar hasRequiredUtils$5;\n\nfunction requireUtils$5 () {\n\tif (hasRequiredUtils$5) return utils$5;\n\thasRequiredUtils$5 = 1;\n\t// We use any as a valid input type\n\t/* eslint-disable @typescript-eslint/no-explicit-any */\n\tObject.defineProperty(utils$5, \"__esModule\", { value: true });\n\tutils$5.toCommandProperties = utils$5.toCommandValue = void 0;\n\t/**\n\t * Sanitizes an input into a string so it can be passed into issueCommand safely\n\t * @param input input to sanitize into a string\n\t */\n\tfunction toCommandValue(input) {\n\t    if (input === null || input === undefined) {\n\t        return '';\n\t    }\n\t    else if (typeof input === 'string' || input instanceof String) {\n\t        return input;\n\t    }\n\t    return JSON.stringify(input);\n\t}\n\tutils$5.toCommandValue = toCommandValue;\n\t/**\n\t *\n\t * @param annotationProperties\n\t * @returns The command properties to send with the actual annotation command\n\t * See IssueCommandProperties: https://github.com/actions/runner/blob/main/src/Runner.Worker/ActionCommandManager.cs#L646\n\t */\n\tfunction toCommandProperties(annotationProperties) {\n\t    if (!Object.keys(annotationProperties).length) {\n\t        return {};\n\t    }\n\t    return {\n\t        title: annotationProperties.title,\n\t        file: annotationProperties.file,\n\t        line: annotationProperties.startLine,\n\t        endLine: annotationProperties.endLine,\n\t        col: annotationProperties.startColumn,\n\t        endColumn: annotationProperties.endColumn\n\t    };\n\t}\n\tutils$5.toCommandProperties = toCommandProperties;\n\t\n\treturn utils$5;\n}\n\nvar hasRequiredCommand;\n\nfunction requireCommand () {\n\tif (hasRequiredCommand) return command;\n\thasRequiredCommand = 1;\n\tvar __createBinding = (command && command.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (command && command.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (command && command.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(command, \"__esModule\", { value: true });\n\tcommand.issue = command.issueCommand = void 0;\n\tconst os = __importStar(require$$0__default);\n\tconst utils_1 = requireUtils$5();\n\t/**\n\t * Commands\n\t *\n\t * Command Format:\n\t *   ::name key=value,key=value::message\n\t *\n\t * Examples:\n\t *   ::warning::This is the message\n\t *   ::set-env name=MY_VAR::some value\n\t */\n\tfunction issueCommand(command, properties, message) {\n\t    const cmd = new Command(command, properties, message);\n\t    process.stdout.write(cmd.toString() + os.EOL);\n\t}\n\tcommand.issueCommand = issueCommand;\n\tfunction issue(name, message = '') {\n\t    issueCommand(name, {}, message);\n\t}\n\tcommand.issue = issue;\n\tconst CMD_STRING = '::';\n\tclass Command {\n\t    constructor(command, properties, message) {\n\t        if (!command) {\n\t            command = 'missing.command';\n\t        }\n\t        this.command = command;\n\t        this.properties = properties;\n\t        this.message = message;\n\t    }\n\t    toString() {\n\t        let cmdStr = CMD_STRING + this.command;\n\t        if (this.properties && Object.keys(this.properties).length > 0) {\n\t            cmdStr += ' ';\n\t            let first = true;\n\t            for (const key in this.properties) {\n\t                if (this.properties.hasOwnProperty(key)) {\n\t                    const val = this.properties[key];\n\t                    if (val) {\n\t                        if (first) {\n\t                            first = false;\n\t                        }\n\t                        else {\n\t                            cmdStr += ',';\n\t                        }\n\t                        cmdStr += `${key}=${escapeProperty(val)}`;\n\t                    }\n\t                }\n\t            }\n\t        }\n\t        cmdStr += `${CMD_STRING}${escapeData(this.message)}`;\n\t        return cmdStr;\n\t    }\n\t}\n\tfunction escapeData(s) {\n\t    return (0, utils_1.toCommandValue)(s)\n\t        .replace(/%/g, '%25')\n\t        .replace(/\\r/g, '%0D')\n\t        .replace(/\\n/g, '%0A');\n\t}\n\tfunction escapeProperty(s) {\n\t    return (0, utils_1.toCommandValue)(s)\n\t        .replace(/%/g, '%25')\n\t        .replace(/\\r/g, '%0D')\n\t        .replace(/\\n/g, '%0A')\n\t        .replace(/:/g, '%3A')\n\t        .replace(/,/g, '%2C');\n\t}\n\t\n\treturn command;\n}\n\nvar fileCommand = {};\n\nvar hasRequiredFileCommand;\n\nfunction requireFileCommand () {\n\tif (hasRequiredFileCommand) return fileCommand;\n\thasRequiredFileCommand = 1;\n\t// For internal use, subject to change.\n\tvar __createBinding = (fileCommand && fileCommand.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (fileCommand && fileCommand.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (fileCommand && fileCommand.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(fileCommand, \"__esModule\", { value: true });\n\tfileCommand.prepareKeyValueMessage = fileCommand.issueFileCommand = void 0;\n\t// We use any as a valid input type\n\t/* eslint-disable @typescript-eslint/no-explicit-any */\n\tconst crypto = __importStar(require$$0$7);\n\tconst fs = __importStar(fs__default);\n\tconst os = __importStar(require$$0__default);\n\tconst utils_1 = requireUtils$5();\n\tfunction issueFileCommand(command, message) {\n\t    const filePath = process.env[`GITHUB_${command}`];\n\t    if (!filePath) {\n\t        throw new Error(`Unable to find environment variable for file command ${command}`);\n\t    }\n\t    if (!fs.existsSync(filePath)) {\n\t        throw new Error(`Missing file at path: ${filePath}`);\n\t    }\n\t    fs.appendFileSync(filePath, `${(0, utils_1.toCommandValue)(message)}${os.EOL}`, {\n\t        encoding: 'utf8'\n\t    });\n\t}\n\tfileCommand.issueFileCommand = issueFileCommand;\n\tfunction prepareKeyValueMessage(key, value) {\n\t    const delimiter = `ghadelimiter_${crypto.randomUUID()}`;\n\t    const convertedValue = (0, utils_1.toCommandValue)(value);\n\t    // These should realistically never happen, but just in case someone finds a\n\t    // way to exploit uuid generation let's not allow keys or values that contain\n\t    // the delimiter.\n\t    if (key.includes(delimiter)) {\n\t        throw new Error(`Unexpected input: name should not contain the delimiter \"${delimiter}\"`);\n\t    }\n\t    if (convertedValue.includes(delimiter)) {\n\t        throw new Error(`Unexpected input: value should not contain the delimiter \"${delimiter}\"`);\n\t    }\n\t    return `${key}<<${delimiter}${os.EOL}${convertedValue}${os.EOL}${delimiter}`;\n\t}\n\tfileCommand.prepareKeyValueMessage = prepareKeyValueMessage;\n\t\n\treturn fileCommand;\n}\n\nvar oidcUtils = {};\n\nvar lib$2 = {};\n\nvar proxy = {};\n\nvar hasRequiredProxy;\n\nfunction requireProxy () {\n\tif (hasRequiredProxy) return proxy;\n\thasRequiredProxy = 1;\n\tObject.defineProperty(proxy, \"__esModule\", { value: true });\n\tproxy.checkBypass = proxy.getProxyUrl = void 0;\n\tfunction getProxyUrl(reqUrl) {\n\t    const usingSsl = reqUrl.protocol === 'https:';\n\t    if (checkBypass(reqUrl)) {\n\t        return undefined;\n\t    }\n\t    const proxyVar = (() => {\n\t        if (usingSsl) {\n\t            return process.env['https_proxy'] || process.env['HTTPS_PROXY'];\n\t        }\n\t        else {\n\t            return process.env['http_proxy'] || process.env['HTTP_PROXY'];\n\t        }\n\t    })();\n\t    if (proxyVar) {\n\t        try {\n\t            return new DecodedURL(proxyVar);\n\t        }\n\t        catch (_a) {\n\t            if (!proxyVar.startsWith('http://') && !proxyVar.startsWith('https://'))\n\t                return new DecodedURL(`http://${proxyVar}`);\n\t        }\n\t    }\n\t    else {\n\t        return undefined;\n\t    }\n\t}\n\tproxy.getProxyUrl = getProxyUrl;\n\tfunction checkBypass(reqUrl) {\n\t    if (!reqUrl.hostname) {\n\t        return false;\n\t    }\n\t    const reqHost = reqUrl.hostname;\n\t    if (isLoopbackAddress(reqHost)) {\n\t        return true;\n\t    }\n\t    const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || '';\n\t    if (!noProxy) {\n\t        return false;\n\t    }\n\t    // Determine the request port\n\t    let reqPort;\n\t    if (reqUrl.port) {\n\t        reqPort = Number(reqUrl.port);\n\t    }\n\t    else if (reqUrl.protocol === 'http:') {\n\t        reqPort = 80;\n\t    }\n\t    else if (reqUrl.protocol === 'https:') {\n\t        reqPort = 443;\n\t    }\n\t    // Format the request hostname and hostname with port\n\t    const upperReqHosts = [reqUrl.hostname.toUpperCase()];\n\t    if (typeof reqPort === 'number') {\n\t        upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`);\n\t    }\n\t    // Compare request host against noproxy\n\t    for (const upperNoProxyItem of noProxy\n\t        .split(',')\n\t        .map(x => x.trim().toUpperCase())\n\t        .filter(x => x)) {\n\t        if (upperNoProxyItem === '*' ||\n\t            upperReqHosts.some(x => x === upperNoProxyItem ||\n\t                x.endsWith(`.${upperNoProxyItem}`) ||\n\t                (upperNoProxyItem.startsWith('.') &&\n\t                    x.endsWith(`${upperNoProxyItem}`)))) {\n\t            return true;\n\t        }\n\t    }\n\t    return false;\n\t}\n\tproxy.checkBypass = checkBypass;\n\tfunction isLoopbackAddress(host) {\n\t    const hostLower = host.toLowerCase();\n\t    return (hostLower === 'localhost' ||\n\t        hostLower.startsWith('127.') ||\n\t        hostLower.startsWith('[::1]') ||\n\t        hostLower.startsWith('[0:0:0:0:0:0:0:1]'));\n\t}\n\tclass DecodedURL extends URL {\n\t    constructor(url, base) {\n\t        super(url, base);\n\t        this._decodedUsername = decodeURIComponent(super.username);\n\t        this._decodedPassword = decodeURIComponent(super.password);\n\t    }\n\t    get username() {\n\t        return this._decodedUsername;\n\t    }\n\t    get password() {\n\t        return this._decodedPassword;\n\t    }\n\t}\n\t\n\treturn proxy;\n}\n\nvar tunnel$1 = {};\n\nvar hasRequiredTunnel$1;\n\nfunction requireTunnel$1 () {\n\tif (hasRequiredTunnel$1) return tunnel$1;\n\thasRequiredTunnel$1 = 1;\n\tvar tls = require$$1$5;\n\tvar http = require$$2$3;\n\tvar https = require$$1$3;\n\tvar events = require$$1$4;\n\tvar util = require$$0__default$1;\n\n\n\ttunnel$1.httpOverHttp = httpOverHttp;\n\ttunnel$1.httpsOverHttp = httpsOverHttp;\n\ttunnel$1.httpOverHttps = httpOverHttps;\n\ttunnel$1.httpsOverHttps = httpsOverHttps;\n\n\n\tfunction httpOverHttp(options) {\n\t  var agent = new TunnelingAgent(options);\n\t  agent.request = http.request;\n\t  return agent;\n\t}\n\n\tfunction httpsOverHttp(options) {\n\t  var agent = new TunnelingAgent(options);\n\t  agent.request = http.request;\n\t  agent.createSocket = createSecureSocket;\n\t  agent.defaultPort = 443;\n\t  return agent;\n\t}\n\n\tfunction httpOverHttps(options) {\n\t  var agent = new TunnelingAgent(options);\n\t  agent.request = https.request;\n\t  return agent;\n\t}\n\n\tfunction httpsOverHttps(options) {\n\t  var agent = new TunnelingAgent(options);\n\t  agent.request = https.request;\n\t  agent.createSocket = createSecureSocket;\n\t  agent.defaultPort = 443;\n\t  return agent;\n\t}\n\n\n\tfunction TunnelingAgent(options) {\n\t  var self = this;\n\t  self.options = options || {};\n\t  self.proxyOptions = self.options.proxy || {};\n\t  self.maxSockets = self.options.maxSockets || http.Agent.defaultMaxSockets;\n\t  self.requests = [];\n\t  self.sockets = [];\n\n\t  self.on('free', function onFree(socket, host, port, localAddress) {\n\t    var options = toOptions(host, port, localAddress);\n\t    for (var i = 0, len = self.requests.length; i < len; ++i) {\n\t      var pending = self.requests[i];\n\t      if (pending.host === options.host && pending.port === options.port) {\n\t        // Detect the request to connect same origin server,\n\t        // reuse the connection.\n\t        self.requests.splice(i, 1);\n\t        pending.request.onSocket(socket);\n\t        return;\n\t      }\n\t    }\n\t    socket.destroy();\n\t    self.removeSocket(socket);\n\t  });\n\t}\n\tutil.inherits(TunnelingAgent, events.EventEmitter);\n\n\tTunnelingAgent.prototype.addRequest = function addRequest(req, host, port, localAddress) {\n\t  var self = this;\n\t  var options = mergeOptions({request: req}, self.options, toOptions(host, port, localAddress));\n\n\t  if (self.sockets.length >= this.maxSockets) {\n\t    // We are over limit so we'll add it to the queue.\n\t    self.requests.push(options);\n\t    return;\n\t  }\n\n\t  // If we are under maxSockets create a new one.\n\t  self.createSocket(options, function(socket) {\n\t    socket.on('free', onFree);\n\t    socket.on('close', onCloseOrRemove);\n\t    socket.on('agentRemove', onCloseOrRemove);\n\t    req.onSocket(socket);\n\n\t    function onFree() {\n\t      self.emit('free', socket, options);\n\t    }\n\n\t    function onCloseOrRemove(err) {\n\t      self.removeSocket(socket);\n\t      socket.removeListener('free', onFree);\n\t      socket.removeListener('close', onCloseOrRemove);\n\t      socket.removeListener('agentRemove', onCloseOrRemove);\n\t    }\n\t  });\n\t};\n\n\tTunnelingAgent.prototype.createSocket = function createSocket(options, cb) {\n\t  var self = this;\n\t  var placeholder = {};\n\t  self.sockets.push(placeholder);\n\n\t  var connectOptions = mergeOptions({}, self.proxyOptions, {\n\t    method: 'CONNECT',\n\t    path: options.host + ':' + options.port,\n\t    agent: false,\n\t    headers: {\n\t      host: options.host + ':' + options.port\n\t    }\n\t  });\n\t  if (options.localAddress) {\n\t    connectOptions.localAddress = options.localAddress;\n\t  }\n\t  if (connectOptions.proxyAuth) {\n\t    connectOptions.headers = connectOptions.headers || {};\n\t    connectOptions.headers['Proxy-Authorization'] = 'Basic ' +\n\t        new Buffer(connectOptions.proxyAuth).toString('base64');\n\t  }\n\n\t  debug('making CONNECT request');\n\t  var connectReq = self.request(connectOptions);\n\t  connectReq.useChunkedEncodingByDefault = false; // for v0.6\n\t  connectReq.once('response', onResponse); // for v0.6\n\t  connectReq.once('upgrade', onUpgrade);   // for v0.6\n\t  connectReq.once('connect', onConnect);   // for v0.7 or later\n\t  connectReq.once('error', onError);\n\t  connectReq.end();\n\n\t  function onResponse(res) {\n\t    // Very hacky. This is necessary to avoid http-parser leaks.\n\t    res.upgrade = true;\n\t  }\n\n\t  function onUpgrade(res, socket, head) {\n\t    // Hacky.\n\t    process.nextTick(function() {\n\t      onConnect(res, socket, head);\n\t    });\n\t  }\n\n\t  function onConnect(res, socket, head) {\n\t    connectReq.removeAllListeners();\n\t    socket.removeAllListeners();\n\n\t    if (res.statusCode !== 200) {\n\t      debug('tunneling socket could not be established, statusCode=%d',\n\t        res.statusCode);\n\t      socket.destroy();\n\t      var error = new Error('tunneling socket could not be established, ' +\n\t        'statusCode=' + res.statusCode);\n\t      error.code = 'ECONNRESET';\n\t      options.request.emit('error', error);\n\t      self.removeSocket(placeholder);\n\t      return;\n\t    }\n\t    if (head.length > 0) {\n\t      debug('got illegal response body from proxy');\n\t      socket.destroy();\n\t      var error = new Error('got illegal response body from proxy');\n\t      error.code = 'ECONNRESET';\n\t      options.request.emit('error', error);\n\t      self.removeSocket(placeholder);\n\t      return;\n\t    }\n\t    debug('tunneling connection has established');\n\t    self.sockets[self.sockets.indexOf(placeholder)] = socket;\n\t    return cb(socket);\n\t  }\n\n\t  function onError(cause) {\n\t    connectReq.removeAllListeners();\n\n\t    debug('tunneling socket could not be established, cause=%s\\n',\n\t          cause.message, cause.stack);\n\t    var error = new Error('tunneling socket could not be established, ' +\n\t                          'cause=' + cause.message);\n\t    error.code = 'ECONNRESET';\n\t    options.request.emit('error', error);\n\t    self.removeSocket(placeholder);\n\t  }\n\t};\n\n\tTunnelingAgent.prototype.removeSocket = function removeSocket(socket) {\n\t  var pos = this.sockets.indexOf(socket);\n\t  if (pos === -1) {\n\t    return;\n\t  }\n\t  this.sockets.splice(pos, 1);\n\n\t  var pending = this.requests.shift();\n\t  if (pending) {\n\t    // If we have pending requests and a socket gets closed a new one\n\t    // needs to be created to take over in the pool for the one that closed.\n\t    this.createSocket(pending, function(socket) {\n\t      pending.request.onSocket(socket);\n\t    });\n\t  }\n\t};\n\n\tfunction createSecureSocket(options, cb) {\n\t  var self = this;\n\t  TunnelingAgent.prototype.createSocket.call(self, options, function(socket) {\n\t    var hostHeader = options.request.getHeader('host');\n\t    var tlsOptions = mergeOptions({}, self.options, {\n\t      socket: socket,\n\t      servername: hostHeader ? hostHeader.replace(/:.*$/, '') : options.host\n\t    });\n\n\t    // 0 is dummy port for v0.6\n\t    var secureSocket = tls.connect(0, tlsOptions);\n\t    self.sockets[self.sockets.indexOf(socket)] = secureSocket;\n\t    cb(secureSocket);\n\t  });\n\t}\n\n\n\tfunction toOptions(host, port, localAddress) {\n\t  if (typeof host === 'string') { // since v0.10\n\t    return {\n\t      host: host,\n\t      port: port,\n\t      localAddress: localAddress\n\t    };\n\t  }\n\t  return host; // for v0.11 or later\n\t}\n\n\tfunction mergeOptions(target) {\n\t  for (var i = 1, len = arguments.length; i < len; ++i) {\n\t    var overrides = arguments[i];\n\t    if (typeof overrides === 'object') {\n\t      var keys = Object.keys(overrides);\n\t      for (var j = 0, keyLen = keys.length; j < keyLen; ++j) {\n\t        var k = keys[j];\n\t        if (overrides[k] !== undefined) {\n\t          target[k] = overrides[k];\n\t        }\n\t      }\n\t    }\n\t  }\n\t  return target;\n\t}\n\n\n\tvar debug;\n\tif (process.env.NODE_DEBUG && /\\btunnel\\b/.test(process.env.NODE_DEBUG)) {\n\t  debug = function() {\n\t    var args = Array.prototype.slice.call(arguments);\n\t    if (typeof args[0] === 'string') {\n\t      args[0] = 'TUNNEL: ' + args[0];\n\t    } else {\n\t      args.unshift('TUNNEL:');\n\t    }\n\t    console.error.apply(console, args);\n\t  };\n\t} else {\n\t  debug = function() {};\n\t}\n\ttunnel$1.debug = debug; // for test\n\treturn tunnel$1;\n}\n\nvar tunnel;\nvar hasRequiredTunnel;\n\nfunction requireTunnel () {\n\tif (hasRequiredTunnel) return tunnel;\n\thasRequiredTunnel = 1;\n\ttunnel = requireTunnel$1();\n\treturn tunnel;\n}\n\nvar undici = {};\n\nvar symbols$4;\nvar hasRequiredSymbols$4;\n\nfunction requireSymbols$4 () {\n\tif (hasRequiredSymbols$4) return symbols$4;\n\thasRequiredSymbols$4 = 1;\n\tsymbols$4 = {\n\t  kClose: Symbol('close'),\n\t  kDestroy: Symbol('destroy'),\n\t  kDispatch: Symbol('dispatch'),\n\t  kUrl: Symbol('url'),\n\t  kWriting: Symbol('writing'),\n\t  kResuming: Symbol('resuming'),\n\t  kQueue: Symbol('queue'),\n\t  kConnect: Symbol('connect'),\n\t  kConnecting: Symbol('connecting'),\n\t  kHeadersList: Symbol('headers list'),\n\t  kKeepAliveDefaultTimeout: Symbol('default keep alive timeout'),\n\t  kKeepAliveMaxTimeout: Symbol('max keep alive timeout'),\n\t  kKeepAliveTimeoutThreshold: Symbol('keep alive timeout threshold'),\n\t  kKeepAliveTimeoutValue: Symbol('keep alive timeout'),\n\t  kKeepAlive: Symbol('keep alive'),\n\t  kHeadersTimeout: Symbol('headers timeout'),\n\t  kBodyTimeout: Symbol('body timeout'),\n\t  kServerName: Symbol('server name'),\n\t  kLocalAddress: Symbol('local address'),\n\t  kHost: Symbol('host'),\n\t  kNoRef: Symbol('no ref'),\n\t  kBodyUsed: Symbol('used'),\n\t  kRunning: Symbol('running'),\n\t  kBlocking: Symbol('blocking'),\n\t  kPending: Symbol('pending'),\n\t  kSize: Symbol('size'),\n\t  kBusy: Symbol('busy'),\n\t  kQueued: Symbol('queued'),\n\t  kFree: Symbol('free'),\n\t  kConnected: Symbol('connected'),\n\t  kClosed: Symbol('closed'),\n\t  kNeedDrain: Symbol('need drain'),\n\t  kReset: Symbol('reset'),\n\t  kDestroyed: Symbol.for('nodejs.stream.destroyed'),\n\t  kMaxHeadersSize: Symbol('max headers size'),\n\t  kRunningIdx: Symbol('running index'),\n\t  kPendingIdx: Symbol('pending index'),\n\t  kError: Symbol('error'),\n\t  kClients: Symbol('clients'),\n\t  kClient: Symbol('client'),\n\t  kParser: Symbol('parser'),\n\t  kOnDestroyed: Symbol('destroy callbacks'),\n\t  kPipelining: Symbol('pipelining'),\n\t  kSocket: Symbol('socket'),\n\t  kHostHeader: Symbol('host header'),\n\t  kConnector: Symbol('connector'),\n\t  kStrictContentLength: Symbol('strict content length'),\n\t  kMaxRedirections: Symbol('maxRedirections'),\n\t  kMaxRequests: Symbol('maxRequestsPerClient'),\n\t  kProxy: Symbol('proxy agent options'),\n\t  kCounter: Symbol('socket request counter'),\n\t  kInterceptors: Symbol('dispatch interceptors'),\n\t  kMaxResponseSize: Symbol('max response size'),\n\t  kHTTP2Session: Symbol('http2Session'),\n\t  kHTTP2SessionState: Symbol('http2Session state'),\n\t  kHTTP2BuildRequest: Symbol('http2 build request'),\n\t  kHTTP1BuildRequest: Symbol('http1 build request'),\n\t  kHTTP2CopyHeaders: Symbol('http2 copy headers'),\n\t  kHTTPConnVersion: Symbol('http connection version'),\n\t  kRetryHandlerDefaultRetry: Symbol('retry agent default retry'),\n\t  kConstruct: Symbol('constructable')\n\t};\n\treturn symbols$4;\n}\n\nvar errors$3;\nvar hasRequiredErrors$3;\n\nfunction requireErrors$3 () {\n\tif (hasRequiredErrors$3) return errors$3;\n\thasRequiredErrors$3 = 1;\n\n\tclass UndiciError extends Error {\n\t  constructor (message) {\n\t    super(message);\n\t    this.name = 'UndiciError';\n\t    this.code = 'UND_ERR';\n\t  }\n\t}\n\n\tclass ConnectTimeoutError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, ConnectTimeoutError);\n\t    this.name = 'ConnectTimeoutError';\n\t    this.message = message || 'Connect Timeout Error';\n\t    this.code = 'UND_ERR_CONNECT_TIMEOUT';\n\t  }\n\t}\n\n\tclass HeadersTimeoutError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, HeadersTimeoutError);\n\t    this.name = 'HeadersTimeoutError';\n\t    this.message = message || 'Headers Timeout Error';\n\t    this.code = 'UND_ERR_HEADERS_TIMEOUT';\n\t  }\n\t}\n\n\tclass HeadersOverflowError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, HeadersOverflowError);\n\t    this.name = 'HeadersOverflowError';\n\t    this.message = message || 'Headers Overflow Error';\n\t    this.code = 'UND_ERR_HEADERS_OVERFLOW';\n\t  }\n\t}\n\n\tclass BodyTimeoutError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, BodyTimeoutError);\n\t    this.name = 'BodyTimeoutError';\n\t    this.message = message || 'Body Timeout Error';\n\t    this.code = 'UND_ERR_BODY_TIMEOUT';\n\t  }\n\t}\n\n\tclass ResponseStatusCodeError extends UndiciError {\n\t  constructor (message, statusCode, headers, body) {\n\t    super(message);\n\t    Error.captureStackTrace(this, ResponseStatusCodeError);\n\t    this.name = 'ResponseStatusCodeError';\n\t    this.message = message || 'Response Status Code Error';\n\t    this.code = 'UND_ERR_RESPONSE_STATUS_CODE';\n\t    this.body = body;\n\t    this.status = statusCode;\n\t    this.statusCode = statusCode;\n\t    this.headers = headers;\n\t  }\n\t}\n\n\tclass InvalidArgumentError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, InvalidArgumentError);\n\t    this.name = 'InvalidArgumentError';\n\t    this.message = message || 'Invalid Argument Error';\n\t    this.code = 'UND_ERR_INVALID_ARG';\n\t  }\n\t}\n\n\tclass InvalidReturnValueError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, InvalidReturnValueError);\n\t    this.name = 'InvalidReturnValueError';\n\t    this.message = message || 'Invalid Return Value Error';\n\t    this.code = 'UND_ERR_INVALID_RETURN_VALUE';\n\t  }\n\t}\n\n\tclass RequestAbortedError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, RequestAbortedError);\n\t    this.name = 'AbortError';\n\t    this.message = message || 'Request aborted';\n\t    this.code = 'UND_ERR_ABORTED';\n\t  }\n\t}\n\n\tclass InformationalError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, InformationalError);\n\t    this.name = 'InformationalError';\n\t    this.message = message || 'Request information';\n\t    this.code = 'UND_ERR_INFO';\n\t  }\n\t}\n\n\tclass RequestContentLengthMismatchError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, RequestContentLengthMismatchError);\n\t    this.name = 'RequestContentLengthMismatchError';\n\t    this.message = message || 'Request body length does not match content-length header';\n\t    this.code = 'UND_ERR_REQ_CONTENT_LENGTH_MISMATCH';\n\t  }\n\t}\n\n\tclass ResponseContentLengthMismatchError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, ResponseContentLengthMismatchError);\n\t    this.name = 'ResponseContentLengthMismatchError';\n\t    this.message = message || 'Response body length does not match content-length header';\n\t    this.code = 'UND_ERR_RES_CONTENT_LENGTH_MISMATCH';\n\t  }\n\t}\n\n\tclass ClientDestroyedError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, ClientDestroyedError);\n\t    this.name = 'ClientDestroyedError';\n\t    this.message = message || 'The client is destroyed';\n\t    this.code = 'UND_ERR_DESTROYED';\n\t  }\n\t}\n\n\tclass ClientClosedError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, ClientClosedError);\n\t    this.name = 'ClientClosedError';\n\t    this.message = message || 'The client is closed';\n\t    this.code = 'UND_ERR_CLOSED';\n\t  }\n\t}\n\n\tclass SocketError extends UndiciError {\n\t  constructor (message, socket) {\n\t    super(message);\n\t    Error.captureStackTrace(this, SocketError);\n\t    this.name = 'SocketError';\n\t    this.message = message || 'Socket error';\n\t    this.code = 'UND_ERR_SOCKET';\n\t    this.socket = socket;\n\t  }\n\t}\n\n\tclass NotSupportedError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, NotSupportedError);\n\t    this.name = 'NotSupportedError';\n\t    this.message = message || 'Not supported error';\n\t    this.code = 'UND_ERR_NOT_SUPPORTED';\n\t  }\n\t}\n\n\tclass BalancedPoolMissingUpstreamError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, NotSupportedError);\n\t    this.name = 'MissingUpstreamError';\n\t    this.message = message || 'No upstream has been added to the BalancedPool';\n\t    this.code = 'UND_ERR_BPL_MISSING_UPSTREAM';\n\t  }\n\t}\n\n\tclass HTTPParserError extends Error {\n\t  constructor (message, code, data) {\n\t    super(message);\n\t    Error.captureStackTrace(this, HTTPParserError);\n\t    this.name = 'HTTPParserError';\n\t    this.code = code ? `HPE_${code}` : undefined;\n\t    this.data = data ? data.toString() : undefined;\n\t  }\n\t}\n\n\tclass ResponseExceededMaxSizeError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, ResponseExceededMaxSizeError);\n\t    this.name = 'ResponseExceededMaxSizeError';\n\t    this.message = message || 'Response content exceeded max size';\n\t    this.code = 'UND_ERR_RES_EXCEEDED_MAX_SIZE';\n\t  }\n\t}\n\n\tclass RequestRetryError extends UndiciError {\n\t  constructor (message, code, { headers, data }) {\n\t    super(message);\n\t    Error.captureStackTrace(this, RequestRetryError);\n\t    this.name = 'RequestRetryError';\n\t    this.message = message || 'Request retry error';\n\t    this.code = 'UND_ERR_REQ_RETRY';\n\t    this.statusCode = code;\n\t    this.data = data;\n\t    this.headers = headers;\n\t  }\n\t}\n\n\terrors$3 = {\n\t  HTTPParserError,\n\t  UndiciError,\n\t  HeadersTimeoutError,\n\t  HeadersOverflowError,\n\t  BodyTimeoutError,\n\t  RequestContentLengthMismatchError,\n\t  ConnectTimeoutError,\n\t  ResponseStatusCodeError,\n\t  InvalidArgumentError,\n\t  InvalidReturnValueError,\n\t  RequestAbortedError,\n\t  ClientDestroyedError,\n\t  ClientClosedError,\n\t  InformationalError,\n\t  SocketError,\n\t  NotSupportedError,\n\t  ResponseContentLengthMismatchError,\n\t  BalancedPoolMissingUpstreamError,\n\t  ResponseExceededMaxSizeError,\n\t  RequestRetryError\n\t};\n\treturn errors$3;\n}\n\nvar constants$8;\nvar hasRequiredConstants$8;\n\nfunction requireConstants$8 () {\n\tif (hasRequiredConstants$8) return constants$8;\n\thasRequiredConstants$8 = 1;\n\n\t/** @type {Record<string, string | undefined>} */\n\tconst headerNameLowerCasedRecord = {};\n\n\t// https://developer.mozilla.org/docs/Web/HTTP/Headers\n\tconst wellknownHeaderNames = [\n\t  'Accept',\n\t  'Accept-Encoding',\n\t  'Accept-Language',\n\t  'Accept-Ranges',\n\t  'Access-Control-Allow-Credentials',\n\t  'Access-Control-Allow-Headers',\n\t  'Access-Control-Allow-Methods',\n\t  'Access-Control-Allow-Origin',\n\t  'Access-Control-Expose-Headers',\n\t  'Access-Control-Max-Age',\n\t  'Access-Control-Request-Headers',\n\t  'Access-Control-Request-Method',\n\t  'Age',\n\t  'Allow',\n\t  'Alt-Svc',\n\t  'Alt-Used',\n\t  'Authorization',\n\t  'Cache-Control',\n\t  'Clear-Site-Data',\n\t  'Connection',\n\t  'Content-Disposition',\n\t  'Content-Encoding',\n\t  'Content-Language',\n\t  'Content-Length',\n\t  'Content-Location',\n\t  'Content-Range',\n\t  'Content-Security-Policy',\n\t  'Content-Security-Policy-Report-Only',\n\t  'Content-Type',\n\t  'Cookie',\n\t  'Cross-Origin-Embedder-Policy',\n\t  'Cross-Origin-Opener-Policy',\n\t  'Cross-Origin-Resource-Policy',\n\t  'Date',\n\t  'Device-Memory',\n\t  'Downlink',\n\t  'ECT',\n\t  'ETag',\n\t  'Expect',\n\t  'Expect-CT',\n\t  'Expires',\n\t  'Forwarded',\n\t  'From',\n\t  'Host',\n\t  'If-Match',\n\t  'If-Modified-Since',\n\t  'If-None-Match',\n\t  'If-Range',\n\t  'If-Unmodified-Since',\n\t  'Keep-Alive',\n\t  'Last-Modified',\n\t  'Link',\n\t  'Location',\n\t  'Max-Forwards',\n\t  'Origin',\n\t  'Permissions-Policy',\n\t  'Pragma',\n\t  'Proxy-Authenticate',\n\t  'Proxy-Authorization',\n\t  'RTT',\n\t  'Range',\n\t  'Referer',\n\t  'Referrer-Policy',\n\t  'Refresh',\n\t  'Retry-After',\n\t  'Sec-WebSocket-Accept',\n\t  'Sec-WebSocket-Extensions',\n\t  'Sec-WebSocket-Key',\n\t  'Sec-WebSocket-Protocol',\n\t  'Sec-WebSocket-Version',\n\t  'Server',\n\t  'Server-Timing',\n\t  'Service-Worker-Allowed',\n\t  'Service-Worker-Navigation-Preload',\n\t  'Set-Cookie',\n\t  'SourceMap',\n\t  'Strict-Transport-Security',\n\t  'Supports-Loading-Mode',\n\t  'TE',\n\t  'Timing-Allow-Origin',\n\t  'Trailer',\n\t  'Transfer-Encoding',\n\t  'Upgrade',\n\t  'Upgrade-Insecure-Requests',\n\t  'User-Agent',\n\t  'Vary',\n\t  'Via',\n\t  'WWW-Authenticate',\n\t  'X-Content-Type-Options',\n\t  'X-DNS-Prefetch-Control',\n\t  'X-Frame-Options',\n\t  'X-Permitted-Cross-Domain-Policies',\n\t  'X-Powered-By',\n\t  'X-Requested-With',\n\t  'X-XSS-Protection'\n\t];\n\n\tfor (let i = 0; i < wellknownHeaderNames.length; ++i) {\n\t  const key = wellknownHeaderNames[i];\n\t  const lowerCasedKey = key.toLowerCase();\n\t  headerNameLowerCasedRecord[key] = headerNameLowerCasedRecord[lowerCasedKey] =\n\t    lowerCasedKey;\n\t}\n\n\t// Note: object prototypes should not be able to be referenced. e.g. `Object#hasOwnProperty`.\n\tObject.setPrototypeOf(headerNameLowerCasedRecord, null);\n\n\tconstants$8 = {\n\t  wellknownHeaderNames,\n\t  headerNameLowerCasedRecord\n\t};\n\treturn constants$8;\n}\n\nvar util$c;\nvar hasRequiredUtil$c;\n\nfunction requireUtil$c () {\n\tif (hasRequiredUtil$c) return util$c;\n\thasRequiredUtil$c = 1;\n\n\tconst assert = require$$0$9;\n\tconst { kDestroyed, kBodyUsed } = requireSymbols$4();\n\tconst { IncomingMessage } = require$$2$3;\n\tconst stream = require$$0$b;\n\tconst net = require$$0$a;\n\tconst { InvalidArgumentError } = requireErrors$3();\n\tconst { Blob } = require$$0$8;\n\tconst nodeUtil = require$$0__default$1;\n\tconst { stringify } = require$$8;\n\tconst { headerNameLowerCasedRecord } = requireConstants$8();\n\n\tconst [nodeMajor, nodeMinor] = process.versions.node.split('.').map(v => Number(v));\n\n\tfunction nop () {}\n\n\tfunction isStream (obj) {\n\t  return obj && typeof obj === 'object' && typeof obj.pipe === 'function' && typeof obj.on === 'function'\n\t}\n\n\t// based on https://github.com/node-fetch/fetch-blob/blob/8ab587d34080de94140b54f07168451e7d0b655e/index.js#L229-L241 (MIT License)\n\tfunction isBlobLike (object) {\n\t  return (Blob && object instanceof Blob) || (\n\t    object &&\n\t    typeof object === 'object' &&\n\t    (typeof object.stream === 'function' ||\n\t      typeof object.arrayBuffer === 'function') &&\n\t    /^(Blob|File)$/.test(object[Symbol.toStringTag])\n\t  )\n\t}\n\n\tfunction buildURL (url, queryParams) {\n\t  if (url.includes('?') || url.includes('#')) {\n\t    throw new Error('Query params cannot be passed when url already contains \"?\" or \"#\".')\n\t  }\n\n\t  const stringified = stringify(queryParams);\n\n\t  if (stringified) {\n\t    url += '?' + stringified;\n\t  }\n\n\t  return url\n\t}\n\n\tfunction parseURL (url) {\n\t  if (typeof url === 'string') {\n\t    url = new URL(url);\n\n\t    if (!/^https?:/.test(url.origin || url.protocol)) {\n\t      throw new InvalidArgumentError('Invalid URL protocol: the URL must start with `http:` or `https:`.')\n\t    }\n\n\t    return url\n\t  }\n\n\t  if (!url || typeof url !== 'object') {\n\t    throw new InvalidArgumentError('Invalid URL: The URL argument must be a non-null object.')\n\t  }\n\n\t  if (!/^https?:/.test(url.origin || url.protocol)) {\n\t    throw new InvalidArgumentError('Invalid URL protocol: the URL must start with `http:` or `https:`.')\n\t  }\n\n\t  if (!(url instanceof URL)) {\n\t    if (url.port != null && url.port !== '' && !Number.isFinite(parseInt(url.port))) {\n\t      throw new InvalidArgumentError('Invalid URL: port must be a valid integer or a string representation of an integer.')\n\t    }\n\n\t    if (url.path != null && typeof url.path !== 'string') {\n\t      throw new InvalidArgumentError('Invalid URL path: the path must be a string or null/undefined.')\n\t    }\n\n\t    if (url.pathname != null && typeof url.pathname !== 'string') {\n\t      throw new InvalidArgumentError('Invalid URL pathname: the pathname must be a string or null/undefined.')\n\t    }\n\n\t    if (url.hostname != null && typeof url.hostname !== 'string') {\n\t      throw new InvalidArgumentError('Invalid URL hostname: the hostname must be a string or null/undefined.')\n\t    }\n\n\t    if (url.origin != null && typeof url.origin !== 'string') {\n\t      throw new InvalidArgumentError('Invalid URL origin: the origin must be a string or null/undefined.')\n\t    }\n\n\t    const port = url.port != null\n\t      ? url.port\n\t      : (url.protocol === 'https:' ? 443 : 80);\n\t    let origin = url.origin != null\n\t      ? url.origin\n\t      : `${url.protocol}//${url.hostname}:${port}`;\n\t    let path = url.path != null\n\t      ? url.path\n\t      : `${url.pathname || ''}${url.search || ''}`;\n\n\t    if (origin.endsWith('/')) {\n\t      origin = origin.substring(0, origin.length - 1);\n\t    }\n\n\t    if (path && !path.startsWith('/')) {\n\t      path = `/${path}`;\n\t    }\n\t    // new URL(path, origin) is unsafe when `path` contains an absolute URL\n\t    // From https://developer.mozilla.org/en-US/docs/Web/API/URL/URL:\n\t    // If first parameter is a relative URL, second param is required, and will be used as the base URL.\n\t    // If first parameter is an absolute URL, a given second param will be ignored.\n\t    url = new URL(origin + path);\n\t  }\n\n\t  return url\n\t}\n\n\tfunction parseOrigin (url) {\n\t  url = parseURL(url);\n\n\t  if (url.pathname !== '/' || url.search || url.hash) {\n\t    throw new InvalidArgumentError('invalid url')\n\t  }\n\n\t  return url\n\t}\n\n\tfunction getHostname (host) {\n\t  if (host[0] === '[') {\n\t    const idx = host.indexOf(']');\n\n\t    assert(idx !== -1);\n\t    return host.substring(1, idx)\n\t  }\n\n\t  const idx = host.indexOf(':');\n\t  if (idx === -1) return host\n\n\t  return host.substring(0, idx)\n\t}\n\n\t// IP addresses are not valid server names per RFC6066\n\t// > Currently, the only server names supported are DNS hostnames\n\tfunction getServerName (host) {\n\t  if (!host) {\n\t    return null\n\t  }\n\n\t  assert.strictEqual(typeof host, 'string');\n\n\t  const servername = getHostname(host);\n\t  if (net.isIP(servername)) {\n\t    return ''\n\t  }\n\n\t  return servername\n\t}\n\n\tfunction deepClone (obj) {\n\t  return JSON.parse(JSON.stringify(obj))\n\t}\n\n\tfunction isAsyncIterable (obj) {\n\t  return !!(obj != null && typeof obj[Symbol.asyncIterator] === 'function')\n\t}\n\n\tfunction isIterable (obj) {\n\t  return !!(obj != null && (typeof obj[Symbol.iterator] === 'function' || typeof obj[Symbol.asyncIterator] === 'function'))\n\t}\n\n\tfunction bodyLength (body) {\n\t  if (body == null) {\n\t    return 0\n\t  } else if (isStream(body)) {\n\t    const state = body._readableState;\n\t    return state && state.objectMode === false && state.ended === true && Number.isFinite(state.length)\n\t      ? state.length\n\t      : null\n\t  } else if (isBlobLike(body)) {\n\t    return body.size != null ? body.size : null\n\t  } else if (isBuffer(body)) {\n\t    return body.byteLength\n\t  }\n\n\t  return null\n\t}\n\n\tfunction isDestroyed (stream) {\n\t  return !stream || !!(stream.destroyed || stream[kDestroyed])\n\t}\n\n\tfunction isReadableAborted (stream) {\n\t  const state = stream && stream._readableState;\n\t  return isDestroyed(stream) && state && !state.endEmitted\n\t}\n\n\tfunction destroy (stream, err) {\n\t  if (stream == null || !isStream(stream) || isDestroyed(stream)) {\n\t    return\n\t  }\n\n\t  if (typeof stream.destroy === 'function') {\n\t    if (Object.getPrototypeOf(stream).constructor === IncomingMessage) {\n\t      // See: https://github.com/nodejs/node/pull/38505/files\n\t      stream.socket = null;\n\t    }\n\n\t    stream.destroy(err);\n\t  } else if (err) {\n\t    process.nextTick((stream, err) => {\n\t      stream.emit('error', err);\n\t    }, stream, err);\n\t  }\n\n\t  if (stream.destroyed !== true) {\n\t    stream[kDestroyed] = true;\n\t  }\n\t}\n\n\tconst KEEPALIVE_TIMEOUT_EXPR = /timeout=(\\d+)/;\n\tfunction parseKeepAliveTimeout (val) {\n\t  const m = val.toString().match(KEEPALIVE_TIMEOUT_EXPR);\n\t  return m ? parseInt(m[1], 10) * 1000 : null\n\t}\n\n\t/**\n\t * Retrieves a header name and returns its lowercase value.\n\t * @param {string | Buffer} value Header name\n\t * @returns {string}\n\t */\n\tfunction headerNameToString (value) {\n\t  return headerNameLowerCasedRecord[value] || value.toLowerCase()\n\t}\n\n\tfunction parseHeaders (headers, obj = {}) {\n\t  // For H2 support\n\t  if (!Array.isArray(headers)) return headers\n\n\t  for (let i = 0; i < headers.length; i += 2) {\n\t    const key = headers[i].toString().toLowerCase();\n\t    let val = obj[key];\n\n\t    if (!val) {\n\t      if (Array.isArray(headers[i + 1])) {\n\t        obj[key] = headers[i + 1].map(x => x.toString('utf8'));\n\t      } else {\n\t        obj[key] = headers[i + 1].toString('utf8');\n\t      }\n\t    } else {\n\t      if (!Array.isArray(val)) {\n\t        val = [val];\n\t        obj[key] = val;\n\t      }\n\t      val.push(headers[i + 1].toString('utf8'));\n\t    }\n\t  }\n\n\t  // See https://github.com/nodejs/node/pull/46528\n\t  if ('content-length' in obj && 'content-disposition' in obj) {\n\t    obj['content-disposition'] = Buffer.from(obj['content-disposition']).toString('latin1');\n\t  }\n\n\t  return obj\n\t}\n\n\tfunction parseRawHeaders (headers) {\n\t  const ret = [];\n\t  let hasContentLength = false;\n\t  let contentDispositionIdx = -1;\n\n\t  for (let n = 0; n < headers.length; n += 2) {\n\t    const key = headers[n + 0].toString();\n\t    const val = headers[n + 1].toString('utf8');\n\n\t    if (key.length === 14 && (key === 'content-length' || key.toLowerCase() === 'content-length')) {\n\t      ret.push(key, val);\n\t      hasContentLength = true;\n\t    } else if (key.length === 19 && (key === 'content-disposition' || key.toLowerCase() === 'content-disposition')) {\n\t      contentDispositionIdx = ret.push(key, val) - 1;\n\t    } else {\n\t      ret.push(key, val);\n\t    }\n\t  }\n\n\t  // See https://github.com/nodejs/node/pull/46528\n\t  if (hasContentLength && contentDispositionIdx !== -1) {\n\t    ret[contentDispositionIdx] = Buffer.from(ret[contentDispositionIdx]).toString('latin1');\n\t  }\n\n\t  return ret\n\t}\n\n\tfunction isBuffer (buffer) {\n\t  // See, https://github.com/mcollina/undici/pull/319\n\t  return buffer instanceof Uint8Array || Buffer.isBuffer(buffer)\n\t}\n\n\tfunction validateHandler (handler, method, upgrade) {\n\t  if (!handler || typeof handler !== 'object') {\n\t    throw new InvalidArgumentError('handler must be an object')\n\t  }\n\n\t  if (typeof handler.onConnect !== 'function') {\n\t    throw new InvalidArgumentError('invalid onConnect method')\n\t  }\n\n\t  if (typeof handler.onError !== 'function') {\n\t    throw new InvalidArgumentError('invalid onError method')\n\t  }\n\n\t  if (typeof handler.onBodySent !== 'function' && handler.onBodySent !== undefined) {\n\t    throw new InvalidArgumentError('invalid onBodySent method')\n\t  }\n\n\t  if (upgrade || method === 'CONNECT') {\n\t    if (typeof handler.onUpgrade !== 'function') {\n\t      throw new InvalidArgumentError('invalid onUpgrade method')\n\t    }\n\t  } else {\n\t    if (typeof handler.onHeaders !== 'function') {\n\t      throw new InvalidArgumentError('invalid onHeaders method')\n\t    }\n\n\t    if (typeof handler.onData !== 'function') {\n\t      throw new InvalidArgumentError('invalid onData method')\n\t    }\n\n\t    if (typeof handler.onComplete !== 'function') {\n\t      throw new InvalidArgumentError('invalid onComplete method')\n\t    }\n\t  }\n\t}\n\n\t// A body is disturbed if it has been read from and it cannot\n\t// be re-used without losing state or data.\n\tfunction isDisturbed (body) {\n\t  return !!(body && (\n\t    stream.isDisturbed\n\t      ? stream.isDisturbed(body) || body[kBodyUsed] // TODO (fix): Why is body[kBodyUsed] needed?\n\t      : body[kBodyUsed] ||\n\t        body.readableDidRead ||\n\t        (body._readableState && body._readableState.dataEmitted) ||\n\t        isReadableAborted(body)\n\t  ))\n\t}\n\n\tfunction isErrored (body) {\n\t  return !!(body && (\n\t    stream.isErrored\n\t      ? stream.isErrored(body)\n\t      : /state: 'errored'/.test(nodeUtil.inspect(body)\n\t      )))\n\t}\n\n\tfunction isReadable (body) {\n\t  return !!(body && (\n\t    stream.isReadable\n\t      ? stream.isReadable(body)\n\t      : /state: 'readable'/.test(nodeUtil.inspect(body)\n\t      )))\n\t}\n\n\tfunction getSocketInfo (socket) {\n\t  return {\n\t    localAddress: socket.localAddress,\n\t    localPort: socket.localPort,\n\t    remoteAddress: socket.remoteAddress,\n\t    remotePort: socket.remotePort,\n\t    remoteFamily: socket.remoteFamily,\n\t    timeout: socket.timeout,\n\t    bytesWritten: socket.bytesWritten,\n\t    bytesRead: socket.bytesRead\n\t  }\n\t}\n\n\tasync function * convertIterableToBuffer (iterable) {\n\t  for await (const chunk of iterable) {\n\t    yield Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk);\n\t  }\n\t}\n\n\tlet ReadableStream;\n\tfunction ReadableStreamFrom (iterable) {\n\t  if (!ReadableStream) {\n\t    ReadableStream = require$$14.ReadableStream;\n\t  }\n\n\t  if (ReadableStream.from) {\n\t    return ReadableStream.from(convertIterableToBuffer(iterable))\n\t  }\n\n\t  let iterator;\n\t  return new ReadableStream(\n\t    {\n\t      async start () {\n\t        iterator = iterable[Symbol.asyncIterator]();\n\t      },\n\t      async pull (controller) {\n\t        const { done, value } = await iterator.next();\n\t        if (done) {\n\t          queueMicrotask(() => {\n\t            controller.close();\n\t          });\n\t        } else {\n\t          const buf = Buffer.isBuffer(value) ? value : Buffer.from(value);\n\t          controller.enqueue(new Uint8Array(buf));\n\t        }\n\t        return controller.desiredSize > 0\n\t      },\n\t      async cancel (reason) {\n\t        await iterator.return();\n\t      }\n\t    },\n\t    0\n\t  )\n\t}\n\n\t// The chunk should be a FormData instance and contains\n\t// all the required methods.\n\tfunction isFormDataLike (object) {\n\t  return (\n\t    object &&\n\t    typeof object === 'object' &&\n\t    typeof object.append === 'function' &&\n\t    typeof object.delete === 'function' &&\n\t    typeof object.get === 'function' &&\n\t    typeof object.getAll === 'function' &&\n\t    typeof object.has === 'function' &&\n\t    typeof object.set === 'function' &&\n\t    object[Symbol.toStringTag] === 'FormData'\n\t  )\n\t}\n\n\tfunction throwIfAborted (signal) {\n\t  if (!signal) { return }\n\t  if (typeof signal.throwIfAborted === 'function') {\n\t    signal.throwIfAborted();\n\t  } else {\n\t    if (signal.aborted) {\n\t      // DOMException not available < v17.0.0\n\t      const err = new Error('The operation was aborted');\n\t      err.name = 'AbortError';\n\t      throw err\n\t    }\n\t  }\n\t}\n\n\tfunction addAbortListener (signal, listener) {\n\t  if ('addEventListener' in signal) {\n\t    signal.addEventListener('abort', listener, { once: true });\n\t    return () => signal.removeEventListener('abort', listener)\n\t  }\n\t  signal.addListener('abort', listener);\n\t  return () => signal.removeListener('abort', listener)\n\t}\n\n\tconst hasToWellFormed = !!String.prototype.toWellFormed;\n\n\t/**\n\t * @param {string} val\n\t */\n\tfunction toUSVString (val) {\n\t  if (hasToWellFormed) {\n\t    return `${val}`.toWellFormed()\n\t  } else if (nodeUtil.toUSVString) {\n\t    return nodeUtil.toUSVString(val)\n\t  }\n\n\t  return `${val}`\n\t}\n\n\t// Parsed accordingly to RFC 9110\n\t// https://www.rfc-editor.org/rfc/rfc9110#field.content-range\n\tfunction parseRangeHeader (range) {\n\t  if (range == null || range === '') return { start: 0, end: null, size: null }\n\n\t  const m = range ? range.match(/^bytes (\\d+)-(\\d+)\\/(\\d+)?$/) : null;\n\t  return m\n\t    ? {\n\t        start: parseInt(m[1]),\n\t        end: m[2] ? parseInt(m[2]) : null,\n\t        size: m[3] ? parseInt(m[3]) : null\n\t      }\n\t    : null\n\t}\n\n\tconst kEnumerableProperty = Object.create(null);\n\tkEnumerableProperty.enumerable = true;\n\n\tutil$c = {\n\t  kEnumerableProperty,\n\t  nop,\n\t  isDisturbed,\n\t  isErrored,\n\t  isReadable,\n\t  toUSVString,\n\t  isReadableAborted,\n\t  isBlobLike,\n\t  parseOrigin,\n\t  parseURL,\n\t  getServerName,\n\t  isStream,\n\t  isIterable,\n\t  isAsyncIterable,\n\t  isDestroyed,\n\t  headerNameToString,\n\t  parseRawHeaders,\n\t  parseHeaders,\n\t  parseKeepAliveTimeout,\n\t  destroy,\n\t  bodyLength,\n\t  deepClone,\n\t  ReadableStreamFrom,\n\t  isBuffer,\n\t  validateHandler,\n\t  getSocketInfo,\n\t  isFormDataLike,\n\t  buildURL,\n\t  throwIfAborted,\n\t  addAbortListener,\n\t  parseRangeHeader,\n\t  nodeMajor,\n\t  nodeMinor,\n\t  nodeHasAutoSelectFamily: nodeMajor > 18 || (nodeMajor === 18 && nodeMinor >= 13),\n\t  safeHTTPMethods: ['GET', 'HEAD', 'OPTIONS', 'TRACE']\n\t};\n\treturn util$c;\n}\n\nvar timers;\nvar hasRequiredTimers;\n\nfunction requireTimers () {\n\tif (hasRequiredTimers) return timers;\n\thasRequiredTimers = 1;\n\n\tlet fastNow = Date.now();\n\tlet fastNowTimeout;\n\n\tconst fastTimers = [];\n\n\tfunction onTimeout () {\n\t  fastNow = Date.now();\n\n\t  let len = fastTimers.length;\n\t  let idx = 0;\n\t  while (idx < len) {\n\t    const timer = fastTimers[idx];\n\n\t    if (timer.state === 0) {\n\t      timer.state = fastNow + timer.delay;\n\t    } else if (timer.state > 0 && fastNow >= timer.state) {\n\t      timer.state = -1;\n\t      timer.callback(timer.opaque);\n\t    }\n\n\t    if (timer.state === -1) {\n\t      timer.state = -2;\n\t      if (idx !== len - 1) {\n\t        fastTimers[idx] = fastTimers.pop();\n\t      } else {\n\t        fastTimers.pop();\n\t      }\n\t      len -= 1;\n\t    } else {\n\t      idx += 1;\n\t    }\n\t  }\n\n\t  if (fastTimers.length > 0) {\n\t    refreshTimeout();\n\t  }\n\t}\n\n\tfunction refreshTimeout () {\n\t  if (fastNowTimeout && fastNowTimeout.refresh) {\n\t    fastNowTimeout.refresh();\n\t  } else {\n\t    clearTimeout(fastNowTimeout);\n\t    fastNowTimeout = setTimeout(onTimeout, 1e3);\n\t    if (fastNowTimeout.unref) {\n\t      fastNowTimeout.unref();\n\t    }\n\t  }\n\t}\n\n\tclass Timeout {\n\t  constructor (callback, delay, opaque) {\n\t    this.callback = callback;\n\t    this.delay = delay;\n\t    this.opaque = opaque;\n\n\t    //  -2 not in timer list\n\t    //  -1 in timer list but inactive\n\t    //   0 in timer list waiting for time\n\t    // > 0 in timer list waiting for time to expire\n\t    this.state = -2;\n\n\t    this.refresh();\n\t  }\n\n\t  refresh () {\n\t    if (this.state === -2) {\n\t      fastTimers.push(this);\n\t      if (!fastNowTimeout || fastTimers.length === 1) {\n\t        refreshTimeout();\n\t      }\n\t    }\n\n\t    this.state = 0;\n\t  }\n\n\t  clear () {\n\t    this.state = -1;\n\t  }\n\t}\n\n\ttimers = {\n\t  setTimeout (callback, delay, opaque) {\n\t    return delay < 1e3\n\t      ? setTimeout(callback, delay, opaque)\n\t      : new Timeout(callback, delay, opaque)\n\t  },\n\t  clearTimeout (timeout) {\n\t    if (timeout instanceof Timeout) {\n\t      timeout.clear();\n\t    } else {\n\t      clearTimeout(timeout);\n\t    }\n\t  }\n\t};\n\treturn timers;\n}\n\nvar main = {exports: {}};\n\nvar sbmh;\nvar hasRequiredSbmh;\n\nfunction requireSbmh () {\n\tif (hasRequiredSbmh) return sbmh;\n\thasRequiredSbmh = 1;\n\n\t/**\n\t * Copyright Brian White. All rights reserved.\n\t *\n\t * @see https://github.com/mscdex/streamsearch\n\t *\n\t * Permission is hereby granted, free of charge, to any person obtaining a copy\n\t * of this software and associated documentation files (the \"Software\"), to\n\t * deal in the Software without restriction, including without limitation the\n\t * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n\t * sell copies of the Software, and to permit persons to whom the Software is\n\t * furnished to do so, subject to the following conditions:\n\t *\n\t * The above copyright notice and this permission notice shall be included in\n\t * all copies or substantial portions of the Software.\n\t *\n\t * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n\t * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\t * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n\t * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n\t * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n\t * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n\t * IN THE SOFTWARE.\n\t *\n\t * Based heavily on the Streaming Boyer-Moore-Horspool C++ implementation\n\t * by Hongli Lai at: https://github.com/FooBarWidget/boyer-moore-horspool\n\t */\n\tconst EventEmitter = require$$0$c.EventEmitter;\n\tconst inherits = require$$1$6.inherits;\n\n\tfunction SBMH (needle) {\n\t  if (typeof needle === 'string') {\n\t    needle = Buffer.from(needle);\n\t  }\n\n\t  if (!Buffer.isBuffer(needle)) {\n\t    throw new TypeError('The needle has to be a String or a Buffer.')\n\t  }\n\n\t  const needleLength = needle.length;\n\n\t  if (needleLength === 0) {\n\t    throw new Error('The needle cannot be an empty String/Buffer.')\n\t  }\n\n\t  if (needleLength > 256) {\n\t    throw new Error('The needle cannot have a length bigger than 256.')\n\t  }\n\n\t  this.maxMatches = Infinity;\n\t  this.matches = 0;\n\n\t  this._occ = new Array(256)\n\t    .fill(needleLength); // Initialize occurrence table.\n\t  this._lookbehind_size = 0;\n\t  this._needle = needle;\n\t  this._bufpos = 0;\n\n\t  this._lookbehind = Buffer.alloc(needleLength);\n\n\t  // Populate occurrence table with analysis of the needle,\n\t  // ignoring last letter.\n\t  for (var i = 0; i < needleLength - 1; ++i) { // eslint-disable-line no-var\n\t    this._occ[needle[i]] = needleLength - 1 - i;\n\t  }\n\t}\n\tinherits(SBMH, EventEmitter);\n\n\tSBMH.prototype.reset = function () {\n\t  this._lookbehind_size = 0;\n\t  this.matches = 0;\n\t  this._bufpos = 0;\n\t};\n\n\tSBMH.prototype.push = function (chunk, pos) {\n\t  if (!Buffer.isBuffer(chunk)) {\n\t    chunk = Buffer.from(chunk, 'binary');\n\t  }\n\t  const chlen = chunk.length;\n\t  this._bufpos = pos || 0;\n\t  let r;\n\t  while (r !== chlen && this.matches < this.maxMatches) { r = this._sbmh_feed(chunk); }\n\t  return r\n\t};\n\n\tSBMH.prototype._sbmh_feed = function (data) {\n\t  const len = data.length;\n\t  const needle = this._needle;\n\t  const needleLength = needle.length;\n\t  const lastNeedleChar = needle[needleLength - 1];\n\n\t  // Positive: points to a position in `data`\n\t  //           pos == 3 points to data[3]\n\t  // Negative: points to a position in the lookbehind buffer\n\t  //           pos == -2 points to lookbehind[lookbehind_size - 2]\n\t  let pos = -this._lookbehind_size;\n\t  let ch;\n\n\t  if (pos < 0) {\n\t    // Lookbehind buffer is not empty. Perform Boyer-Moore-Horspool\n\t    // search with character lookup code that considers both the\n\t    // lookbehind buffer and the current round's haystack data.\n\t    //\n\t    // Loop until\n\t    //   there is a match.\n\t    // or until\n\t    //   we've moved past the position that requires the\n\t    //   lookbehind buffer. In this case we switch to the\n\t    //   optimized loop.\n\t    // or until\n\t    //   the character to look at lies outside the haystack.\n\t    while (pos < 0 && pos <= len - needleLength) {\n\t      ch = this._sbmh_lookup_char(data, pos + needleLength - 1);\n\n\t      if (\n\t        ch === lastNeedleChar &&\n\t        this._sbmh_memcmp(data, pos, needleLength - 1)\n\t      ) {\n\t        this._lookbehind_size = 0;\n\t        ++this.matches;\n\t        this.emit('info', true);\n\n\t        return (this._bufpos = pos + needleLength)\n\t      }\n\t      pos += this._occ[ch];\n\t    }\n\n\t    // No match.\n\n\t    if (pos < 0) {\n\t      // There's too few data for Boyer-Moore-Horspool to run,\n\t      // so let's use a different algorithm to skip as much as\n\t      // we can.\n\t      // Forward pos until\n\t      //   the trailing part of lookbehind + data\n\t      //   looks like the beginning of the needle\n\t      // or until\n\t      //   pos == 0\n\t      while (pos < 0 && !this._sbmh_memcmp(data, pos, len - pos)) { ++pos; }\n\t    }\n\n\t    if (pos >= 0) {\n\t      // Discard lookbehind buffer.\n\t      this.emit('info', false, this._lookbehind, 0, this._lookbehind_size);\n\t      this._lookbehind_size = 0;\n\t    } else {\n\t      // Cut off part of the lookbehind buffer that has\n\t      // been processed and append the entire haystack\n\t      // into it.\n\t      const bytesToCutOff = this._lookbehind_size + pos;\n\t      if (bytesToCutOff > 0) {\n\t        // The cut off data is guaranteed not to contain the needle.\n\t        this.emit('info', false, this._lookbehind, 0, bytesToCutOff);\n\t      }\n\n\t      this._lookbehind.copy(this._lookbehind, 0, bytesToCutOff,\n\t        this._lookbehind_size - bytesToCutOff);\n\t      this._lookbehind_size -= bytesToCutOff;\n\n\t      data.copy(this._lookbehind, this._lookbehind_size);\n\t      this._lookbehind_size += len;\n\n\t      this._bufpos = len;\n\t      return len\n\t    }\n\t  }\n\n\t  pos += (pos >= 0) * this._bufpos;\n\n\t  // Lookbehind buffer is now empty. We only need to check if the\n\t  // needle is in the haystack.\n\t  if (data.indexOf(needle, pos) !== -1) {\n\t    pos = data.indexOf(needle, pos);\n\t    ++this.matches;\n\t    if (pos > 0) { this.emit('info', true, data, this._bufpos, pos); } else { this.emit('info', true); }\n\n\t    return (this._bufpos = pos + needleLength)\n\t  } else {\n\t    pos = len - needleLength;\n\t  }\n\n\t  // There was no match. If there's trailing haystack data that we cannot\n\t  // match yet using the Boyer-Moore-Horspool algorithm (because the trailing\n\t  // data is less than the needle size) then match using a modified\n\t  // algorithm that starts matching from the beginning instead of the end.\n\t  // Whatever trailing data is left after running this algorithm is added to\n\t  // the lookbehind buffer.\n\t  while (\n\t    pos < len &&\n\t    (\n\t      data[pos] !== needle[0] ||\n\t      (\n\t        (Buffer.compare(\n\t          data.subarray(pos, pos + len - pos),\n\t          needle.subarray(0, len - pos)\n\t        ) !== 0)\n\t      )\n\t    )\n\t  ) {\n\t    ++pos;\n\t  }\n\t  if (pos < len) {\n\t    data.copy(this._lookbehind, 0, pos, pos + (len - pos));\n\t    this._lookbehind_size = len - pos;\n\t  }\n\n\t  // Everything until pos is guaranteed not to contain needle data.\n\t  if (pos > 0) { this.emit('info', false, data, this._bufpos, pos < len ? pos : len); }\n\n\t  this._bufpos = len;\n\t  return len\n\t};\n\n\tSBMH.prototype._sbmh_lookup_char = function (data, pos) {\n\t  return (pos < 0)\n\t    ? this._lookbehind[this._lookbehind_size + pos]\n\t    : data[pos]\n\t};\n\n\tSBMH.prototype._sbmh_memcmp = function (data, pos, len) {\n\t  for (var i = 0; i < len; ++i) { // eslint-disable-line no-var\n\t    if (this._sbmh_lookup_char(data, pos + i) !== this._needle[i]) { return false }\n\t  }\n\t  return true\n\t};\n\n\tsbmh = SBMH;\n\treturn sbmh;\n}\n\nvar PartStream_1;\nvar hasRequiredPartStream;\n\nfunction requirePartStream () {\n\tif (hasRequiredPartStream) return PartStream_1;\n\thasRequiredPartStream = 1;\n\n\tconst inherits = require$$1$6.inherits;\n\tconst ReadableStream = require$$0$d.Readable;\n\n\tfunction PartStream (opts) {\n\t  ReadableStream.call(this, opts);\n\t}\n\tinherits(PartStream, ReadableStream);\n\n\tPartStream.prototype._read = function (n) {};\n\n\tPartStream_1 = PartStream;\n\treturn PartStream_1;\n}\n\nvar getLimit;\nvar hasRequiredGetLimit;\n\nfunction requireGetLimit () {\n\tif (hasRequiredGetLimit) return getLimit;\n\thasRequiredGetLimit = 1;\n\n\tgetLimit = function getLimit (limits, name, defaultLimit) {\n\t  if (\n\t    !limits ||\n\t    limits[name] === undefined ||\n\t    limits[name] === null\n\t  ) { return defaultLimit }\n\n\t  if (\n\t    typeof limits[name] !== 'number' ||\n\t    isNaN(limits[name])\n\t  ) { throw new TypeError('Limit ' + name + ' is not a valid number') }\n\n\t  return limits[name]\n\t};\n\treturn getLimit;\n}\n\nvar HeaderParser_1;\nvar hasRequiredHeaderParser;\n\nfunction requireHeaderParser () {\n\tif (hasRequiredHeaderParser) return HeaderParser_1;\n\thasRequiredHeaderParser = 1;\n\n\tconst EventEmitter = require$$0$c.EventEmitter;\n\tconst inherits = require$$1$6.inherits;\n\tconst getLimit = requireGetLimit();\n\n\tconst StreamSearch = requireSbmh();\n\n\tconst B_DCRLF = Buffer.from('\\r\\n\\r\\n');\n\tconst RE_CRLF = /\\r\\n/g;\n\tconst RE_HDR = /^([^:]+):[ \\t]?([\\x00-\\xFF]+)?$/; // eslint-disable-line no-control-regex\n\n\tfunction HeaderParser (cfg) {\n\t  EventEmitter.call(this);\n\n\t  cfg = cfg || {};\n\t  const self = this;\n\t  this.nread = 0;\n\t  this.maxed = false;\n\t  this.npairs = 0;\n\t  this.maxHeaderPairs = getLimit(cfg, 'maxHeaderPairs', 2000);\n\t  this.maxHeaderSize = getLimit(cfg, 'maxHeaderSize', 80 * 1024);\n\t  this.buffer = '';\n\t  this.header = {};\n\t  this.finished = false;\n\t  this.ss = new StreamSearch(B_DCRLF);\n\t  this.ss.on('info', function (isMatch, data, start, end) {\n\t    if (data && !self.maxed) {\n\t      if (self.nread + end - start >= self.maxHeaderSize) {\n\t        end = self.maxHeaderSize - self.nread + start;\n\t        self.nread = self.maxHeaderSize;\n\t        self.maxed = true;\n\t      } else { self.nread += (end - start); }\n\n\t      self.buffer += data.toString('binary', start, end);\n\t    }\n\t    if (isMatch) { self._finish(); }\n\t  });\n\t}\n\tinherits(HeaderParser, EventEmitter);\n\n\tHeaderParser.prototype.push = function (data) {\n\t  const r = this.ss.push(data);\n\t  if (this.finished) { return r }\n\t};\n\n\tHeaderParser.prototype.reset = function () {\n\t  this.finished = false;\n\t  this.buffer = '';\n\t  this.header = {};\n\t  this.ss.reset();\n\t};\n\n\tHeaderParser.prototype._finish = function () {\n\t  if (this.buffer) { this._parseHeader(); }\n\t  this.ss.matches = this.ss.maxMatches;\n\t  const header = this.header;\n\t  this.header = {};\n\t  this.buffer = '';\n\t  this.finished = true;\n\t  this.nread = this.npairs = 0;\n\t  this.maxed = false;\n\t  this.emit('header', header);\n\t};\n\n\tHeaderParser.prototype._parseHeader = function () {\n\t  if (this.npairs === this.maxHeaderPairs) { return }\n\n\t  const lines = this.buffer.split(RE_CRLF);\n\t  const len = lines.length;\n\t  let m, h;\n\n\t  for (var i = 0; i < len; ++i) { // eslint-disable-line no-var\n\t    if (lines[i].length === 0) { continue }\n\t    if (lines[i][0] === '\\t' || lines[i][0] === ' ') {\n\t      // folded header content\n\t      // RFC2822 says to just remove the CRLF and not the whitespace following\n\t      // it, so we follow the RFC and include the leading whitespace ...\n\t      if (h) {\n\t        this.header[h][this.header[h].length - 1] += lines[i];\n\t        continue\n\t      }\n\t    }\n\n\t    const posColon = lines[i].indexOf(':');\n\t    if (\n\t      posColon === -1 ||\n\t      posColon === 0\n\t    ) {\n\t      return\n\t    }\n\t    m = RE_HDR.exec(lines[i]);\n\t    h = m[1].toLowerCase();\n\t    this.header[h] = this.header[h] || [];\n\t    this.header[h].push((m[2] || ''));\n\t    if (++this.npairs === this.maxHeaderPairs) { break }\n\t  }\n\t};\n\n\tHeaderParser_1 = HeaderParser;\n\treturn HeaderParser_1;\n}\n\nvar Dicer_1;\nvar hasRequiredDicer;\n\nfunction requireDicer () {\n\tif (hasRequiredDicer) return Dicer_1;\n\thasRequiredDicer = 1;\n\n\tconst WritableStream = require$$0$d.Writable;\n\tconst inherits = require$$1$6.inherits;\n\n\tconst StreamSearch = requireSbmh();\n\n\tconst PartStream = requirePartStream();\n\tconst HeaderParser = requireHeaderParser();\n\n\tconst DASH = 45;\n\tconst B_ONEDASH = Buffer.from('-');\n\tconst B_CRLF = Buffer.from('\\r\\n');\n\tconst EMPTY_FN = function () {};\n\n\tfunction Dicer (cfg) {\n\t  if (!(this instanceof Dicer)) { return new Dicer(cfg) }\n\t  WritableStream.call(this, cfg);\n\n\t  if (!cfg || (!cfg.headerFirst && typeof cfg.boundary !== 'string')) { throw new TypeError('Boundary required') }\n\n\t  if (typeof cfg.boundary === 'string') { this.setBoundary(cfg.boundary); } else { this._bparser = undefined; }\n\n\t  this._headerFirst = cfg.headerFirst;\n\n\t  this._dashes = 0;\n\t  this._parts = 0;\n\t  this._finished = false;\n\t  this._realFinish = false;\n\t  this._isPreamble = true;\n\t  this._justMatched = false;\n\t  this._firstWrite = true;\n\t  this._inHeader = true;\n\t  this._part = undefined;\n\t  this._cb = undefined;\n\t  this._ignoreData = false;\n\t  this._partOpts = { highWaterMark: cfg.partHwm };\n\t  this._pause = false;\n\n\t  const self = this;\n\t  this._hparser = new HeaderParser(cfg);\n\t  this._hparser.on('header', function (header) {\n\t    self._inHeader = false;\n\t    self._part.emit('header', header);\n\t  });\n\t}\n\tinherits(Dicer, WritableStream);\n\n\tDicer.prototype.emit = function (ev) {\n\t  if (ev === 'finish' && !this._realFinish) {\n\t    if (!this._finished) {\n\t      const self = this;\n\t      process.nextTick(function () {\n\t        self.emit('error', new Error('Unexpected end of multipart data'));\n\t        if (self._part && !self._ignoreData) {\n\t          const type = (self._isPreamble ? 'Preamble' : 'Part');\n\t          self._part.emit('error', new Error(type + ' terminated early due to unexpected end of multipart data'));\n\t          self._part.push(null);\n\t          process.nextTick(function () {\n\t            self._realFinish = true;\n\t            self.emit('finish');\n\t            self._realFinish = false;\n\t          });\n\t          return\n\t        }\n\t        self._realFinish = true;\n\t        self.emit('finish');\n\t        self._realFinish = false;\n\t      });\n\t    }\n\t  } else { WritableStream.prototype.emit.apply(this, arguments); }\n\t};\n\n\tDicer.prototype._write = function (data, encoding, cb) {\n\t  // ignore unexpected data (e.g. extra trailer data after finished)\n\t  if (!this._hparser && !this._bparser) { return cb() }\n\n\t  if (this._headerFirst && this._isPreamble) {\n\t    if (!this._part) {\n\t      this._part = new PartStream(this._partOpts);\n\t      if (this.listenerCount('preamble') !== 0) { this.emit('preamble', this._part); } else { this._ignore(); }\n\t    }\n\t    const r = this._hparser.push(data);\n\t    if (!this._inHeader && r !== undefined && r < data.length) { data = data.slice(r); } else { return cb() }\n\t  }\n\n\t  // allows for \"easier\" testing\n\t  if (this._firstWrite) {\n\t    this._bparser.push(B_CRLF);\n\t    this._firstWrite = false;\n\t  }\n\n\t  this._bparser.push(data);\n\n\t  if (this._pause) { this._cb = cb; } else { cb(); }\n\t};\n\n\tDicer.prototype.reset = function () {\n\t  this._part = undefined;\n\t  this._bparser = undefined;\n\t  this._hparser = undefined;\n\t};\n\n\tDicer.prototype.setBoundary = function (boundary) {\n\t  const self = this;\n\t  this._bparser = new StreamSearch('\\r\\n--' + boundary);\n\t  this._bparser.on('info', function (isMatch, data, start, end) {\n\t    self._oninfo(isMatch, data, start, end);\n\t  });\n\t};\n\n\tDicer.prototype._ignore = function () {\n\t  if (this._part && !this._ignoreData) {\n\t    this._ignoreData = true;\n\t    this._part.on('error', EMPTY_FN);\n\t    // we must perform some kind of read on the stream even though we are\n\t    // ignoring the data, otherwise node's Readable stream will not emit 'end'\n\t    // after pushing null to the stream\n\t    this._part.resume();\n\t  }\n\t};\n\n\tDicer.prototype._oninfo = function (isMatch, data, start, end) {\n\t  let buf; const self = this; let i = 0; let r; let shouldWriteMore = true;\n\n\t  if (!this._part && this._justMatched && data) {\n\t    while (this._dashes < 2 && (start + i) < end) {\n\t      if (data[start + i] === DASH) {\n\t        ++i;\n\t        ++this._dashes;\n\t      } else {\n\t        if (this._dashes) { buf = B_ONEDASH; }\n\t        this._dashes = 0;\n\t        break\n\t      }\n\t    }\n\t    if (this._dashes === 2) {\n\t      if ((start + i) < end && this.listenerCount('trailer') !== 0) { this.emit('trailer', data.slice(start + i, end)); }\n\t      this.reset();\n\t      this._finished = true;\n\t      // no more parts will be added\n\t      if (self._parts === 0) {\n\t        self._realFinish = true;\n\t        self.emit('finish');\n\t        self._realFinish = false;\n\t      }\n\t    }\n\t    if (this._dashes) { return }\n\t  }\n\t  if (this._justMatched) { this._justMatched = false; }\n\t  if (!this._part) {\n\t    this._part = new PartStream(this._partOpts);\n\t    this._part._read = function (n) {\n\t      self._unpause();\n\t    };\n\t    if (this._isPreamble && this.listenerCount('preamble') !== 0) {\n\t      this.emit('preamble', this._part);\n\t    } else if (this._isPreamble !== true && this.listenerCount('part') !== 0) {\n\t      this.emit('part', this._part);\n\t    } else {\n\t      this._ignore();\n\t    }\n\t    if (!this._isPreamble) { this._inHeader = true; }\n\t  }\n\t  if (data && start < end && !this._ignoreData) {\n\t    if (this._isPreamble || !this._inHeader) {\n\t      if (buf) { shouldWriteMore = this._part.push(buf); }\n\t      shouldWriteMore = this._part.push(data.slice(start, end));\n\t      if (!shouldWriteMore) { this._pause = true; }\n\t    } else if (!this._isPreamble && this._inHeader) {\n\t      if (buf) { this._hparser.push(buf); }\n\t      r = this._hparser.push(data.slice(start, end));\n\t      if (!this._inHeader && r !== undefined && r < end) { this._oninfo(false, data, start + r, end); }\n\t    }\n\t  }\n\t  if (isMatch) {\n\t    this._hparser.reset();\n\t    if (this._isPreamble) { this._isPreamble = false; } else {\n\t      if (start !== end) {\n\t        ++this._parts;\n\t        this._part.on('end', function () {\n\t          if (--self._parts === 0) {\n\t            if (self._finished) {\n\t              self._realFinish = true;\n\t              self.emit('finish');\n\t              self._realFinish = false;\n\t            } else {\n\t              self._unpause();\n\t            }\n\t          }\n\t        });\n\t      }\n\t    }\n\t    this._part.push(null);\n\t    this._part = undefined;\n\t    this._ignoreData = false;\n\t    this._justMatched = true;\n\t    this._dashes = 0;\n\t  }\n\t};\n\n\tDicer.prototype._unpause = function () {\n\t  if (!this._pause) { return }\n\n\t  this._pause = false;\n\t  if (this._cb) {\n\t    const cb = this._cb;\n\t    this._cb = undefined;\n\t    cb();\n\t  }\n\t};\n\n\tDicer_1 = Dicer;\n\treturn Dicer_1;\n}\n\nvar decodeText_1;\nvar hasRequiredDecodeText;\n\nfunction requireDecodeText () {\n\tif (hasRequiredDecodeText) return decodeText_1;\n\thasRequiredDecodeText = 1;\n\n\t// Node has always utf-8\n\tconst utf8Decoder = new TextDecoder('utf-8');\n\tconst textDecoders = new Map([\n\t  ['utf-8', utf8Decoder],\n\t  ['utf8', utf8Decoder]\n\t]);\n\n\tfunction getDecoder (charset) {\n\t  let lc;\n\t  while (true) {\n\t    switch (charset) {\n\t      case 'utf-8':\n\t      case 'utf8':\n\t        return decoders.utf8\n\t      case 'latin1':\n\t      case 'ascii': // TODO: Make these a separate, strict decoder?\n\t      case 'us-ascii':\n\t      case 'iso-8859-1':\n\t      case 'iso8859-1':\n\t      case 'iso88591':\n\t      case 'iso_8859-1':\n\t      case 'windows-1252':\n\t      case 'iso_8859-1:1987':\n\t      case 'cp1252':\n\t      case 'x-cp1252':\n\t        return decoders.latin1\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t        return decoders.utf16le\n\t      case 'base64':\n\t        return decoders.base64\n\t      default:\n\t        if (lc === undefined) {\n\t          lc = true;\n\t          charset = charset.toLowerCase();\n\t          continue\n\t        }\n\t        return decoders.other.bind(charset)\n\t    }\n\t  }\n\t}\n\n\tconst decoders = {\n\t  utf8: (data, sourceEncoding) => {\n\t    if (data.length === 0) {\n\t      return ''\n\t    }\n\t    if (typeof data === 'string') {\n\t      data = Buffer.from(data, sourceEncoding);\n\t    }\n\t    return data.utf8Slice(0, data.length)\n\t  },\n\n\t  latin1: (data, sourceEncoding) => {\n\t    if (data.length === 0) {\n\t      return ''\n\t    }\n\t    if (typeof data === 'string') {\n\t      return data\n\t    }\n\t    return data.latin1Slice(0, data.length)\n\t  },\n\n\t  utf16le: (data, sourceEncoding) => {\n\t    if (data.length === 0) {\n\t      return ''\n\t    }\n\t    if (typeof data === 'string') {\n\t      data = Buffer.from(data, sourceEncoding);\n\t    }\n\t    return data.ucs2Slice(0, data.length)\n\t  },\n\n\t  base64: (data, sourceEncoding) => {\n\t    if (data.length === 0) {\n\t      return ''\n\t    }\n\t    if (typeof data === 'string') {\n\t      data = Buffer.from(data, sourceEncoding);\n\t    }\n\t    return data.base64Slice(0, data.length)\n\t  },\n\n\t  other: (data, sourceEncoding) => {\n\t    if (data.length === 0) {\n\t      return ''\n\t    }\n\t    if (typeof data === 'string') {\n\t      data = Buffer.from(data, sourceEncoding);\n\t    }\n\n\t    if (textDecoders.has(this.toString())) {\n\t      try {\n\t        return textDecoders.get(this).decode(data)\n\t      } catch {}\n\t    }\n\t    return typeof data === 'string'\n\t      ? data\n\t      : data.toString()\n\t  }\n\t};\n\n\tfunction decodeText (text, sourceEncoding, destEncoding) {\n\t  if (text) {\n\t    return getDecoder(destEncoding)(text, sourceEncoding)\n\t  }\n\t  return text\n\t}\n\n\tdecodeText_1 = decodeText;\n\treturn decodeText_1;\n}\n\n/* eslint-disable object-property-newline */\n\nvar parseParams_1;\nvar hasRequiredParseParams;\n\nfunction requireParseParams () {\n\tif (hasRequiredParseParams) return parseParams_1;\n\thasRequiredParseParams = 1;\n\n\tconst decodeText = requireDecodeText();\n\n\tconst RE_ENCODED = /%[a-fA-F0-9][a-fA-F0-9]/g;\n\n\tconst EncodedLookup = {\n\t  '%00': '\\x00', '%01': '\\x01', '%02': '\\x02', '%03': '\\x03', '%04': '\\x04',\n\t  '%05': '\\x05', '%06': '\\x06', '%07': '\\x07', '%08': '\\x08', '%09': '\\x09',\n\t  '%0a': '\\x0a', '%0A': '\\x0a', '%0b': '\\x0b', '%0B': '\\x0b', '%0c': '\\x0c',\n\t  '%0C': '\\x0c', '%0d': '\\x0d', '%0D': '\\x0d', '%0e': '\\x0e', '%0E': '\\x0e',\n\t  '%0f': '\\x0f', '%0F': '\\x0f', '%10': '\\x10', '%11': '\\x11', '%12': '\\x12',\n\t  '%13': '\\x13', '%14': '\\x14', '%15': '\\x15', '%16': '\\x16', '%17': '\\x17',\n\t  '%18': '\\x18', '%19': '\\x19', '%1a': '\\x1a', '%1A': '\\x1a', '%1b': '\\x1b',\n\t  '%1B': '\\x1b', '%1c': '\\x1c', '%1C': '\\x1c', '%1d': '\\x1d', '%1D': '\\x1d',\n\t  '%1e': '\\x1e', '%1E': '\\x1e', '%1f': '\\x1f', '%1F': '\\x1f', '%20': '\\x20',\n\t  '%21': '\\x21', '%22': '\\x22', '%23': '\\x23', '%24': '\\x24', '%25': '\\x25',\n\t  '%26': '\\x26', '%27': '\\x27', '%28': '\\x28', '%29': '\\x29', '%2a': '\\x2a',\n\t  '%2A': '\\x2a', '%2b': '\\x2b', '%2B': '\\x2b', '%2c': '\\x2c', '%2C': '\\x2c',\n\t  '%2d': '\\x2d', '%2D': '\\x2d', '%2e': '\\x2e', '%2E': '\\x2e', '%2f': '\\x2f',\n\t  '%2F': '\\x2f', '%30': '\\x30', '%31': '\\x31', '%32': '\\x32', '%33': '\\x33',\n\t  '%34': '\\x34', '%35': '\\x35', '%36': '\\x36', '%37': '\\x37', '%38': '\\x38',\n\t  '%39': '\\x39', '%3a': '\\x3a', '%3A': '\\x3a', '%3b': '\\x3b', '%3B': '\\x3b',\n\t  '%3c': '\\x3c', '%3C': '\\x3c', '%3d': '\\x3d', '%3D': '\\x3d', '%3e': '\\x3e',\n\t  '%3E': '\\x3e', '%3f': '\\x3f', '%3F': '\\x3f', '%40': '\\x40', '%41': '\\x41',\n\t  '%42': '\\x42', '%43': '\\x43', '%44': '\\x44', '%45': '\\x45', '%46': '\\x46',\n\t  '%47': '\\x47', '%48': '\\x48', '%49': '\\x49', '%4a': '\\x4a', '%4A': '\\x4a',\n\t  '%4b': '\\x4b', '%4B': '\\x4b', '%4c': '\\x4c', '%4C': '\\x4c', '%4d': '\\x4d',\n\t  '%4D': '\\x4d', '%4e': '\\x4e', '%4E': '\\x4e', '%4f': '\\x4f', '%4F': '\\x4f',\n\t  '%50': '\\x50', '%51': '\\x51', '%52': '\\x52', '%53': '\\x53', '%54': '\\x54',\n\t  '%55': '\\x55', '%56': '\\x56', '%57': '\\x57', '%58': '\\x58', '%59': '\\x59',\n\t  '%5a': '\\x5a', '%5A': '\\x5a', '%5b': '\\x5b', '%5B': '\\x5b', '%5c': '\\x5c',\n\t  '%5C': '\\x5c', '%5d': '\\x5d', '%5D': '\\x5d', '%5e': '\\x5e', '%5E': '\\x5e',\n\t  '%5f': '\\x5f', '%5F': '\\x5f', '%60': '\\x60', '%61': '\\x61', '%62': '\\x62',\n\t  '%63': '\\x63', '%64': '\\x64', '%65': '\\x65', '%66': '\\x66', '%67': '\\x67',\n\t  '%68': '\\x68', '%69': '\\x69', '%6a': '\\x6a', '%6A': '\\x6a', '%6b': '\\x6b',\n\t  '%6B': '\\x6b', '%6c': '\\x6c', '%6C': '\\x6c', '%6d': '\\x6d', '%6D': '\\x6d',\n\t  '%6e': '\\x6e', '%6E': '\\x6e', '%6f': '\\x6f', '%6F': '\\x6f', '%70': '\\x70',\n\t  '%71': '\\x71', '%72': '\\x72', '%73': '\\x73', '%74': '\\x74', '%75': '\\x75',\n\t  '%76': '\\x76', '%77': '\\x77', '%78': '\\x78', '%79': '\\x79', '%7a': '\\x7a',\n\t  '%7A': '\\x7a', '%7b': '\\x7b', '%7B': '\\x7b', '%7c': '\\x7c', '%7C': '\\x7c',\n\t  '%7d': '\\x7d', '%7D': '\\x7d', '%7e': '\\x7e', '%7E': '\\x7e', '%7f': '\\x7f',\n\t  '%7F': '\\x7f', '%80': '\\x80', '%81': '\\x81', '%82': '\\x82', '%83': '\\x83',\n\t  '%84': '\\x84', '%85': '\\x85', '%86': '\\x86', '%87': '\\x87', '%88': '\\x88',\n\t  '%89': '\\x89', '%8a': '\\x8a', '%8A': '\\x8a', '%8b': '\\x8b', '%8B': '\\x8b',\n\t  '%8c': '\\x8c', '%8C': '\\x8c', '%8d': '\\x8d', '%8D': '\\x8d', '%8e': '\\x8e',\n\t  '%8E': '\\x8e', '%8f': '\\x8f', '%8F': '\\x8f', '%90': '\\x90', '%91': '\\x91',\n\t  '%92': '\\x92', '%93': '\\x93', '%94': '\\x94', '%95': '\\x95', '%96': '\\x96',\n\t  '%97': '\\x97', '%98': '\\x98', '%99': '\\x99', '%9a': '\\x9a', '%9A': '\\x9a',\n\t  '%9b': '\\x9b', '%9B': '\\x9b', '%9c': '\\x9c', '%9C': '\\x9c', '%9d': '\\x9d',\n\t  '%9D': '\\x9d', '%9e': '\\x9e', '%9E': '\\x9e', '%9f': '\\x9f', '%9F': '\\x9f',\n\t  '%a0': '\\xa0', '%A0': '\\xa0', '%a1': '\\xa1', '%A1': '\\xa1', '%a2': '\\xa2',\n\t  '%A2': '\\xa2', '%a3': '\\xa3', '%A3': '\\xa3', '%a4': '\\xa4', '%A4': '\\xa4',\n\t  '%a5': '\\xa5', '%A5': '\\xa5', '%a6': '\\xa6', '%A6': '\\xa6', '%a7': '\\xa7',\n\t  '%A7': '\\xa7', '%a8': '\\xa8', '%A8': '\\xa8', '%a9': '\\xa9', '%A9': '\\xa9',\n\t  '%aa': '\\xaa', '%Aa': '\\xaa', '%aA': '\\xaa', '%AA': '\\xaa', '%ab': '\\xab',\n\t  '%Ab': '\\xab', '%aB': '\\xab', '%AB': '\\xab', '%ac': '\\xac', '%Ac': '\\xac',\n\t  '%aC': '\\xac', '%AC': '\\xac', '%ad': '\\xad', '%Ad': '\\xad', '%aD': '\\xad',\n\t  '%AD': '\\xad', '%ae': '\\xae', '%Ae': '\\xae', '%aE': '\\xae', '%AE': '\\xae',\n\t  '%af': '\\xaf', '%Af': '\\xaf', '%aF': '\\xaf', '%AF': '\\xaf', '%b0': '\\xb0',\n\t  '%B0': '\\xb0', '%b1': '\\xb1', '%B1': '\\xb1', '%b2': '\\xb2', '%B2': '\\xb2',\n\t  '%b3': '\\xb3', '%B3': '\\xb3', '%b4': '\\xb4', '%B4': '\\xb4', '%b5': '\\xb5',\n\t  '%B5': '\\xb5', '%b6': '\\xb6', '%B6': '\\xb6', '%b7': '\\xb7', '%B7': '\\xb7',\n\t  '%b8': '\\xb8', '%B8': '\\xb8', '%b9': '\\xb9', '%B9': '\\xb9', '%ba': '\\xba',\n\t  '%Ba': '\\xba', '%bA': '\\xba', '%BA': '\\xba', '%bb': '\\xbb', '%Bb': '\\xbb',\n\t  '%bB': '\\xbb', '%BB': '\\xbb', '%bc': '\\xbc', '%Bc': '\\xbc', '%bC': '\\xbc',\n\t  '%BC': '\\xbc', '%bd': '\\xbd', '%Bd': '\\xbd', '%bD': '\\xbd', '%BD': '\\xbd',\n\t  '%be': '\\xbe', '%Be': '\\xbe', '%bE': '\\xbe', '%BE': '\\xbe', '%bf': '\\xbf',\n\t  '%Bf': '\\xbf', '%bF': '\\xbf', '%BF': '\\xbf', '%c0': '\\xc0', '%C0': '\\xc0',\n\t  '%c1': '\\xc1', '%C1': '\\xc1', '%c2': '\\xc2', '%C2': '\\xc2', '%c3': '\\xc3',\n\t  '%C3': '\\xc3', '%c4': '\\xc4', '%C4': '\\xc4', '%c5': '\\xc5', '%C5': '\\xc5',\n\t  '%c6': '\\xc6', '%C6': '\\xc6', '%c7': '\\xc7', '%C7': '\\xc7', '%c8': '\\xc8',\n\t  '%C8': '\\xc8', '%c9': '\\xc9', '%C9': '\\xc9', '%ca': '\\xca', '%Ca': '\\xca',\n\t  '%cA': '\\xca', '%CA': '\\xca', '%cb': '\\xcb', '%Cb': '\\xcb', '%cB': '\\xcb',\n\t  '%CB': '\\xcb', '%cc': '\\xcc', '%Cc': '\\xcc', '%cC': '\\xcc', '%CC': '\\xcc',\n\t  '%cd': '\\xcd', '%Cd': '\\xcd', '%cD': '\\xcd', '%CD': '\\xcd', '%ce': '\\xce',\n\t  '%Ce': '\\xce', '%cE': '\\xce', '%CE': '\\xce', '%cf': '\\xcf', '%Cf': '\\xcf',\n\t  '%cF': '\\xcf', '%CF': '\\xcf', '%d0': '\\xd0', '%D0': '\\xd0', '%d1': '\\xd1',\n\t  '%D1': '\\xd1', '%d2': '\\xd2', '%D2': '\\xd2', '%d3': '\\xd3', '%D3': '\\xd3',\n\t  '%d4': '\\xd4', '%D4': '\\xd4', '%d5': '\\xd5', '%D5': '\\xd5', '%d6': '\\xd6',\n\t  '%D6': '\\xd6', '%d7': '\\xd7', '%D7': '\\xd7', '%d8': '\\xd8', '%D8': '\\xd8',\n\t  '%d9': '\\xd9', '%D9': '\\xd9', '%da': '\\xda', '%Da': '\\xda', '%dA': '\\xda',\n\t  '%DA': '\\xda', '%db': '\\xdb', '%Db': '\\xdb', '%dB': '\\xdb', '%DB': '\\xdb',\n\t  '%dc': '\\xdc', '%Dc': '\\xdc', '%dC': '\\xdc', '%DC': '\\xdc', '%dd': '\\xdd',\n\t  '%Dd': '\\xdd', '%dD': '\\xdd', '%DD': '\\xdd', '%de': '\\xde', '%De': '\\xde',\n\t  '%dE': '\\xde', '%DE': '\\xde', '%df': '\\xdf', '%Df': '\\xdf', '%dF': '\\xdf',\n\t  '%DF': '\\xdf', '%e0': '\\xe0', '%E0': '\\xe0', '%e1': '\\xe1', '%E1': '\\xe1',\n\t  '%e2': '\\xe2', '%E2': '\\xe2', '%e3': '\\xe3', '%E3': '\\xe3', '%e4': '\\xe4',\n\t  '%E4': '\\xe4', '%e5': '\\xe5', '%E5': '\\xe5', '%e6': '\\xe6', '%E6': '\\xe6',\n\t  '%e7': '\\xe7', '%E7': '\\xe7', '%e8': '\\xe8', '%E8': '\\xe8', '%e9': '\\xe9',\n\t  '%E9': '\\xe9', '%ea': '\\xea', '%Ea': '\\xea', '%eA': '\\xea', '%EA': '\\xea',\n\t  '%eb': '\\xeb', '%Eb': '\\xeb', '%eB': '\\xeb', '%EB': '\\xeb', '%ec': '\\xec',\n\t  '%Ec': '\\xec', '%eC': '\\xec', '%EC': '\\xec', '%ed': '\\xed', '%Ed': '\\xed',\n\t  '%eD': '\\xed', '%ED': '\\xed', '%ee': '\\xee', '%Ee': '\\xee', '%eE': '\\xee',\n\t  '%EE': '\\xee', '%ef': '\\xef', '%Ef': '\\xef', '%eF': '\\xef', '%EF': '\\xef',\n\t  '%f0': '\\xf0', '%F0': '\\xf0', '%f1': '\\xf1', '%F1': '\\xf1', '%f2': '\\xf2',\n\t  '%F2': '\\xf2', '%f3': '\\xf3', '%F3': '\\xf3', '%f4': '\\xf4', '%F4': '\\xf4',\n\t  '%f5': '\\xf5', '%F5': '\\xf5', '%f6': '\\xf6', '%F6': '\\xf6', '%f7': '\\xf7',\n\t  '%F7': '\\xf7', '%f8': '\\xf8', '%F8': '\\xf8', '%f9': '\\xf9', '%F9': '\\xf9',\n\t  '%fa': '\\xfa', '%Fa': '\\xfa', '%fA': '\\xfa', '%FA': '\\xfa', '%fb': '\\xfb',\n\t  '%Fb': '\\xfb', '%fB': '\\xfb', '%FB': '\\xfb', '%fc': '\\xfc', '%Fc': '\\xfc',\n\t  '%fC': '\\xfc', '%FC': '\\xfc', '%fd': '\\xfd', '%Fd': '\\xfd', '%fD': '\\xfd',\n\t  '%FD': '\\xfd', '%fe': '\\xfe', '%Fe': '\\xfe', '%fE': '\\xfe', '%FE': '\\xfe',\n\t  '%ff': '\\xff', '%Ff': '\\xff', '%fF': '\\xff', '%FF': '\\xff'\n\t};\n\n\tfunction encodedReplacer (match) {\n\t  return EncodedLookup[match]\n\t}\n\n\tconst STATE_KEY = 0;\n\tconst STATE_VALUE = 1;\n\tconst STATE_CHARSET = 2;\n\tconst STATE_LANG = 3;\n\n\tfunction parseParams (str) {\n\t  const res = [];\n\t  let state = STATE_KEY;\n\t  let charset = '';\n\t  let inquote = false;\n\t  let escaping = false;\n\t  let p = 0;\n\t  let tmp = '';\n\t  const len = str.length;\n\n\t  for (var i = 0; i < len; ++i) { // eslint-disable-line no-var\n\t    const char = str[i];\n\t    if (char === '\\\\' && inquote) {\n\t      if (escaping) { escaping = false; } else {\n\t        escaping = true;\n\t        continue\n\t      }\n\t    } else if (char === '\"') {\n\t      if (!escaping) {\n\t        if (inquote) {\n\t          inquote = false;\n\t          state = STATE_KEY;\n\t        } else { inquote = true; }\n\t        continue\n\t      } else { escaping = false; }\n\t    } else {\n\t      if (escaping && inquote) { tmp += '\\\\'; }\n\t      escaping = false;\n\t      if ((state === STATE_CHARSET || state === STATE_LANG) && char === \"'\") {\n\t        if (state === STATE_CHARSET) {\n\t          state = STATE_LANG;\n\t          charset = tmp.substring(1);\n\t        } else { state = STATE_VALUE; }\n\t        tmp = '';\n\t        continue\n\t      } else if (state === STATE_KEY &&\n\t        (char === '*' || char === '=') &&\n\t        res.length) {\n\t        state = char === '*'\n\t          ? STATE_CHARSET\n\t          : STATE_VALUE;\n\t        res[p] = [tmp, undefined];\n\t        tmp = '';\n\t        continue\n\t      } else if (!inquote && char === ';') {\n\t        state = STATE_KEY;\n\t        if (charset) {\n\t          if (tmp.length) {\n\t            tmp = decodeText(tmp.replace(RE_ENCODED, encodedReplacer),\n\t              'binary',\n\t              charset);\n\t          }\n\t          charset = '';\n\t        } else if (tmp.length) {\n\t          tmp = decodeText(tmp, 'binary', 'utf8');\n\t        }\n\t        if (res[p] === undefined) { res[p] = tmp; } else { res[p][1] = tmp; }\n\t        tmp = '';\n\t        ++p;\n\t        continue\n\t      } else if (!inquote && (char === ' ' || char === '\\t')) { continue }\n\t    }\n\t    tmp += char;\n\t  }\n\t  if (charset && tmp.length) {\n\t    tmp = decodeText(tmp.replace(RE_ENCODED, encodedReplacer),\n\t      'binary',\n\t      charset);\n\t  } else if (tmp) {\n\t    tmp = decodeText(tmp, 'binary', 'utf8');\n\t  }\n\n\t  if (res[p] === undefined) {\n\t    if (tmp) { res[p] = tmp; }\n\t  } else { res[p][1] = tmp; }\n\n\t  return res\n\t}\n\n\tparseParams_1 = parseParams;\n\treturn parseParams_1;\n}\n\nvar basename;\nvar hasRequiredBasename;\n\nfunction requireBasename () {\n\tif (hasRequiredBasename) return basename;\n\thasRequiredBasename = 1;\n\n\tbasename = function basename (path) {\n\t  if (typeof path !== 'string') { return '' }\n\t  for (var i = path.length - 1; i >= 0; --i) { // eslint-disable-line no-var\n\t    switch (path.charCodeAt(i)) {\n\t      case 0x2F: // '/'\n\t      case 0x5C: // '\\'\n\t        path = path.slice(i + 1);\n\t        return (path === '..' || path === '.' ? '' : path)\n\t    }\n\t  }\n\t  return (path === '..' || path === '.' ? '' : path)\n\t};\n\treturn basename;\n}\n\nvar multipart;\nvar hasRequiredMultipart;\n\nfunction requireMultipart () {\n\tif (hasRequiredMultipart) return multipart;\n\thasRequiredMultipart = 1;\n\n\t// TODO:\n\t//  * support 1 nested multipart level\n\t//    (see second multipart example here:\n\t//     http://www.w3.org/TR/html401/interact/forms.html#didx-multipartform-data)\n\t//  * support limits.fieldNameSize\n\t//     -- this will require modifications to utils.parseParams\n\n\tconst { Readable } = require$$0$d;\n\tconst { inherits } = require$$1$6;\n\n\tconst Dicer = requireDicer();\n\n\tconst parseParams = requireParseParams();\n\tconst decodeText = requireDecodeText();\n\tconst basename = requireBasename();\n\tconst getLimit = requireGetLimit();\n\n\tconst RE_BOUNDARY = /^boundary$/i;\n\tconst RE_FIELD = /^form-data$/i;\n\tconst RE_CHARSET = /^charset$/i;\n\tconst RE_FILENAME = /^filename$/i;\n\tconst RE_NAME = /^name$/i;\n\n\tMultipart.detect = /^multipart\\/form-data/i;\n\tfunction Multipart (boy, cfg) {\n\t  let i;\n\t  let len;\n\t  const self = this;\n\t  let boundary;\n\t  const limits = cfg.limits;\n\t  const isPartAFile = cfg.isPartAFile || ((fieldName, contentType, fileName) => (contentType === 'application/octet-stream' || fileName !== undefined));\n\t  const parsedConType = cfg.parsedConType || [];\n\t  const defCharset = cfg.defCharset || 'utf8';\n\t  const preservePath = cfg.preservePath;\n\t  const fileOpts = { highWaterMark: cfg.fileHwm };\n\n\t  for (i = 0, len = parsedConType.length; i < len; ++i) {\n\t    if (Array.isArray(parsedConType[i]) &&\n\t      RE_BOUNDARY.test(parsedConType[i][0])) {\n\t      boundary = parsedConType[i][1];\n\t      break\n\t    }\n\t  }\n\n\t  function checkFinished () {\n\t    if (nends === 0 && finished && !boy._done) {\n\t      finished = false;\n\t      self.end();\n\t    }\n\t  }\n\n\t  if (typeof boundary !== 'string') { throw new Error('Multipart: Boundary not found') }\n\n\t  const fieldSizeLimit = getLimit(limits, 'fieldSize', 1 * 1024 * 1024);\n\t  const fileSizeLimit = getLimit(limits, 'fileSize', Infinity);\n\t  const filesLimit = getLimit(limits, 'files', Infinity);\n\t  const fieldsLimit = getLimit(limits, 'fields', Infinity);\n\t  const partsLimit = getLimit(limits, 'parts', Infinity);\n\t  const headerPairsLimit = getLimit(limits, 'headerPairs', 2000);\n\t  const headerSizeLimit = getLimit(limits, 'headerSize', 80 * 1024);\n\n\t  let nfiles = 0;\n\t  let nfields = 0;\n\t  let nends = 0;\n\t  let curFile;\n\t  let curField;\n\t  let finished = false;\n\n\t  this._needDrain = false;\n\t  this._pause = false;\n\t  this._cb = undefined;\n\t  this._nparts = 0;\n\t  this._boy = boy;\n\n\t  const parserCfg = {\n\t    boundary,\n\t    maxHeaderPairs: headerPairsLimit,\n\t    maxHeaderSize: headerSizeLimit,\n\t    partHwm: fileOpts.highWaterMark,\n\t    highWaterMark: cfg.highWaterMark\n\t  };\n\n\t  this.parser = new Dicer(parserCfg);\n\t  this.parser.on('drain', function () {\n\t    self._needDrain = false;\n\t    if (self._cb && !self._pause) {\n\t      const cb = self._cb;\n\t      self._cb = undefined;\n\t      cb();\n\t    }\n\t  }).on('part', function onPart (part) {\n\t    if (++self._nparts > partsLimit) {\n\t      self.parser.removeListener('part', onPart);\n\t      self.parser.on('part', skipPart);\n\t      boy.hitPartsLimit = true;\n\t      boy.emit('partsLimit');\n\t      return skipPart(part)\n\t    }\n\n\t    // hack because streams2 _always_ doesn't emit 'end' until nextTick, so let\n\t    // us emit 'end' early since we know the part has ended if we are already\n\t    // seeing the next part\n\t    if (curField) {\n\t      const field = curField;\n\t      field.emit('end');\n\t      field.removeAllListeners('end');\n\t    }\n\n\t    part.on('header', function (header) {\n\t      let contype;\n\t      let fieldname;\n\t      let parsed;\n\t      let charset;\n\t      let encoding;\n\t      let filename;\n\t      let nsize = 0;\n\n\t      if (header['content-type']) {\n\t        parsed = parseParams(header['content-type'][0]);\n\t        if (parsed[0]) {\n\t          contype = parsed[0].toLowerCase();\n\t          for (i = 0, len = parsed.length; i < len; ++i) {\n\t            if (RE_CHARSET.test(parsed[i][0])) {\n\t              charset = parsed[i][1].toLowerCase();\n\t              break\n\t            }\n\t          }\n\t        }\n\t      }\n\n\t      if (contype === undefined) { contype = 'text/plain'; }\n\t      if (charset === undefined) { charset = defCharset; }\n\n\t      if (header['content-disposition']) {\n\t        parsed = parseParams(header['content-disposition'][0]);\n\t        if (!RE_FIELD.test(parsed[0])) { return skipPart(part) }\n\t        for (i = 0, len = parsed.length; i < len; ++i) {\n\t          if (RE_NAME.test(parsed[i][0])) {\n\t            fieldname = parsed[i][1];\n\t          } else if (RE_FILENAME.test(parsed[i][0])) {\n\t            filename = parsed[i][1];\n\t            if (!preservePath) { filename = basename(filename); }\n\t          }\n\t        }\n\t      } else { return skipPart(part) }\n\n\t      if (header['content-transfer-encoding']) { encoding = header['content-transfer-encoding'][0].toLowerCase(); } else { encoding = '7bit'; }\n\n\t      let onData,\n\t        onEnd;\n\n\t      if (isPartAFile(fieldname, contype, filename)) {\n\t        // file/binary field\n\t        if (nfiles === filesLimit) {\n\t          if (!boy.hitFilesLimit) {\n\t            boy.hitFilesLimit = true;\n\t            boy.emit('filesLimit');\n\t          }\n\t          return skipPart(part)\n\t        }\n\n\t        ++nfiles;\n\n\t        if (boy.listenerCount('file') === 0) {\n\t          self.parser._ignore();\n\t          return\n\t        }\n\n\t        ++nends;\n\t        const file = new FileStream(fileOpts);\n\t        curFile = file;\n\t        file.on('end', function () {\n\t          --nends;\n\t          self._pause = false;\n\t          checkFinished();\n\t          if (self._cb && !self._needDrain) {\n\t            const cb = self._cb;\n\t            self._cb = undefined;\n\t            cb();\n\t          }\n\t        });\n\t        file._read = function (n) {\n\t          if (!self._pause) { return }\n\t          self._pause = false;\n\t          if (self._cb && !self._needDrain) {\n\t            const cb = self._cb;\n\t            self._cb = undefined;\n\t            cb();\n\t          }\n\t        };\n\t        boy.emit('file', fieldname, file, filename, encoding, contype);\n\n\t        onData = function (data) {\n\t          if ((nsize += data.length) > fileSizeLimit) {\n\t            const extralen = fileSizeLimit - nsize + data.length;\n\t            if (extralen > 0) { file.push(data.slice(0, extralen)); }\n\t            file.truncated = true;\n\t            file.bytesRead = fileSizeLimit;\n\t            part.removeAllListeners('data');\n\t            file.emit('limit');\n\t            return\n\t          } else if (!file.push(data)) { self._pause = true; }\n\n\t          file.bytesRead = nsize;\n\t        };\n\n\t        onEnd = function () {\n\t          curFile = undefined;\n\t          file.push(null);\n\t        };\n\t      } else {\n\t        // non-file field\n\t        if (nfields === fieldsLimit) {\n\t          if (!boy.hitFieldsLimit) {\n\t            boy.hitFieldsLimit = true;\n\t            boy.emit('fieldsLimit');\n\t          }\n\t          return skipPart(part)\n\t        }\n\n\t        ++nfields;\n\t        ++nends;\n\t        let buffer = '';\n\t        let truncated = false;\n\t        curField = part;\n\n\t        onData = function (data) {\n\t          if ((nsize += data.length) > fieldSizeLimit) {\n\t            const extralen = (fieldSizeLimit - (nsize - data.length));\n\t            buffer += data.toString('binary', 0, extralen);\n\t            truncated = true;\n\t            part.removeAllListeners('data');\n\t          } else { buffer += data.toString('binary'); }\n\t        };\n\n\t        onEnd = function () {\n\t          curField = undefined;\n\t          if (buffer.length) { buffer = decodeText(buffer, 'binary', charset); }\n\t          boy.emit('field', fieldname, buffer, false, truncated, encoding, contype);\n\t          --nends;\n\t          checkFinished();\n\t        };\n\t      }\n\n\t      /* As of node@2efe4ab761666 (v0.10.29+/v0.11.14+), busboy had become\n\t         broken. Streams2/streams3 is a huge black box of confusion, but\n\t         somehow overriding the sync state seems to fix things again (and still\n\t         seems to work for previous node versions).\n\t      */\n\t      part._readableState.sync = false;\n\n\t      part.on('data', onData);\n\t      part.on('end', onEnd);\n\t    }).on('error', function (err) {\n\t      if (curFile) { curFile.emit('error', err); }\n\t    });\n\t  }).on('error', function (err) {\n\t    boy.emit('error', err);\n\t  }).on('finish', function () {\n\t    finished = true;\n\t    checkFinished();\n\t  });\n\t}\n\n\tMultipart.prototype.write = function (chunk, cb) {\n\t  const r = this.parser.write(chunk);\n\t  if (r && !this._pause) {\n\t    cb();\n\t  } else {\n\t    this._needDrain = !r;\n\t    this._cb = cb;\n\t  }\n\t};\n\n\tMultipart.prototype.end = function () {\n\t  const self = this;\n\n\t  if (self.parser.writable) {\n\t    self.parser.end();\n\t  } else if (!self._boy._done) {\n\t    process.nextTick(function () {\n\t      self._boy._done = true;\n\t      self._boy.emit('finish');\n\t    });\n\t  }\n\t};\n\n\tfunction skipPart (part) {\n\t  part.resume();\n\t}\n\n\tfunction FileStream (opts) {\n\t  Readable.call(this, opts);\n\n\t  this.bytesRead = 0;\n\n\t  this.truncated = false;\n\t}\n\n\tinherits(FileStream, Readable);\n\n\tFileStream.prototype._read = function (n) {};\n\n\tmultipart = Multipart;\n\treturn multipart;\n}\n\nvar Decoder_1;\nvar hasRequiredDecoder;\n\nfunction requireDecoder () {\n\tif (hasRequiredDecoder) return Decoder_1;\n\thasRequiredDecoder = 1;\n\n\tconst RE_PLUS = /\\+/g;\n\n\tconst HEX = [\n\t  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0,\n\t  0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t  0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n\t];\n\n\tfunction Decoder () {\n\t  this.buffer = undefined;\n\t}\n\tDecoder.prototype.write = function (str) {\n\t  // Replace '+' with ' ' before decoding\n\t  str = str.replace(RE_PLUS, ' ');\n\t  let res = '';\n\t  let i = 0; let p = 0; const len = str.length;\n\t  for (; i < len; ++i) {\n\t    if (this.buffer !== undefined) {\n\t      if (!HEX[str.charCodeAt(i)]) {\n\t        res += '%' + this.buffer;\n\t        this.buffer = undefined;\n\t        --i; // retry character\n\t      } else {\n\t        this.buffer += str[i];\n\t        ++p;\n\t        if (this.buffer.length === 2) {\n\t          res += String.fromCharCode(parseInt(this.buffer, 16));\n\t          this.buffer = undefined;\n\t        }\n\t      }\n\t    } else if (str[i] === '%') {\n\t      if (i > p) {\n\t        res += str.substring(p, i);\n\t        p = i;\n\t      }\n\t      this.buffer = '';\n\t      ++p;\n\t    }\n\t  }\n\t  if (p < len && this.buffer === undefined) { res += str.substring(p); }\n\t  return res\n\t};\n\tDecoder.prototype.reset = function () {\n\t  this.buffer = undefined;\n\t};\n\n\tDecoder_1 = Decoder;\n\treturn Decoder_1;\n}\n\nvar urlencoded;\nvar hasRequiredUrlencoded;\n\nfunction requireUrlencoded () {\n\tif (hasRequiredUrlencoded) return urlencoded;\n\thasRequiredUrlencoded = 1;\n\n\tconst Decoder = requireDecoder();\n\tconst decodeText = requireDecodeText();\n\tconst getLimit = requireGetLimit();\n\n\tconst RE_CHARSET = /^charset$/i;\n\n\tUrlEncoded.detect = /^application\\/x-www-form-urlencoded/i;\n\tfunction UrlEncoded (boy, cfg) {\n\t  const limits = cfg.limits;\n\t  const parsedConType = cfg.parsedConType;\n\t  this.boy = boy;\n\n\t  this.fieldSizeLimit = getLimit(limits, 'fieldSize', 1 * 1024 * 1024);\n\t  this.fieldNameSizeLimit = getLimit(limits, 'fieldNameSize', 100);\n\t  this.fieldsLimit = getLimit(limits, 'fields', Infinity);\n\n\t  let charset;\n\t  for (var i = 0, len = parsedConType.length; i < len; ++i) { // eslint-disable-line no-var\n\t    if (Array.isArray(parsedConType[i]) &&\n\t        RE_CHARSET.test(parsedConType[i][0])) {\n\t      charset = parsedConType[i][1].toLowerCase();\n\t      break\n\t    }\n\t  }\n\n\t  if (charset === undefined) { charset = cfg.defCharset || 'utf8'; }\n\n\t  this.decoder = new Decoder();\n\t  this.charset = charset;\n\t  this._fields = 0;\n\t  this._state = 'key';\n\t  this._checkingBytes = true;\n\t  this._bytesKey = 0;\n\t  this._bytesVal = 0;\n\t  this._key = '';\n\t  this._val = '';\n\t  this._keyTrunc = false;\n\t  this._valTrunc = false;\n\t  this._hitLimit = false;\n\t}\n\n\tUrlEncoded.prototype.write = function (data, cb) {\n\t  if (this._fields === this.fieldsLimit) {\n\t    if (!this.boy.hitFieldsLimit) {\n\t      this.boy.hitFieldsLimit = true;\n\t      this.boy.emit('fieldsLimit');\n\t    }\n\t    return cb()\n\t  }\n\n\t  let idxeq; let idxamp; let i; let p = 0; const len = data.length;\n\n\t  while (p < len) {\n\t    if (this._state === 'key') {\n\t      idxeq = idxamp = undefined;\n\t      for (i = p; i < len; ++i) {\n\t        if (!this._checkingBytes) { ++p; }\n\t        if (data[i] === 0x3D/* = */) {\n\t          idxeq = i;\n\t          break\n\t        } else if (data[i] === 0x26/* & */) {\n\t          idxamp = i;\n\t          break\n\t        }\n\t        if (this._checkingBytes && this._bytesKey === this.fieldNameSizeLimit) {\n\t          this._hitLimit = true;\n\t          break\n\t        } else if (this._checkingBytes) { ++this._bytesKey; }\n\t      }\n\n\t      if (idxeq !== undefined) {\n\t        // key with assignment\n\t        if (idxeq > p) { this._key += this.decoder.write(data.toString('binary', p, idxeq)); }\n\t        this._state = 'val';\n\n\t        this._hitLimit = false;\n\t        this._checkingBytes = true;\n\t        this._val = '';\n\t        this._bytesVal = 0;\n\t        this._valTrunc = false;\n\t        this.decoder.reset();\n\n\t        p = idxeq + 1;\n\t      } else if (idxamp !== undefined) {\n\t        // key with no assignment\n\t        ++this._fields;\n\t        let key; const keyTrunc = this._keyTrunc;\n\t        if (idxamp > p) { key = (this._key += this.decoder.write(data.toString('binary', p, idxamp))); } else { key = this._key; }\n\n\t        this._hitLimit = false;\n\t        this._checkingBytes = true;\n\t        this._key = '';\n\t        this._bytesKey = 0;\n\t        this._keyTrunc = false;\n\t        this.decoder.reset();\n\n\t        if (key.length) {\n\t          this.boy.emit('field', decodeText(key, 'binary', this.charset),\n\t            '',\n\t            keyTrunc,\n\t            false);\n\t        }\n\n\t        p = idxamp + 1;\n\t        if (this._fields === this.fieldsLimit) { return cb() }\n\t      } else if (this._hitLimit) {\n\t        // we may not have hit the actual limit if there are encoded bytes...\n\t        if (i > p) { this._key += this.decoder.write(data.toString('binary', p, i)); }\n\t        p = i;\n\t        if ((this._bytesKey = this._key.length) === this.fieldNameSizeLimit) {\n\t          // yep, we actually did hit the limit\n\t          this._checkingBytes = false;\n\t          this._keyTrunc = true;\n\t        }\n\t      } else {\n\t        if (p < len) { this._key += this.decoder.write(data.toString('binary', p)); }\n\t        p = len;\n\t      }\n\t    } else {\n\t      idxamp = undefined;\n\t      for (i = p; i < len; ++i) {\n\t        if (!this._checkingBytes) { ++p; }\n\t        if (data[i] === 0x26/* & */) {\n\t          idxamp = i;\n\t          break\n\t        }\n\t        if (this._checkingBytes && this._bytesVal === this.fieldSizeLimit) {\n\t          this._hitLimit = true;\n\t          break\n\t        } else if (this._checkingBytes) { ++this._bytesVal; }\n\t      }\n\n\t      if (idxamp !== undefined) {\n\t        ++this._fields;\n\t        if (idxamp > p) { this._val += this.decoder.write(data.toString('binary', p, idxamp)); }\n\t        this.boy.emit('field', decodeText(this._key, 'binary', this.charset),\n\t          decodeText(this._val, 'binary', this.charset),\n\t          this._keyTrunc,\n\t          this._valTrunc);\n\t        this._state = 'key';\n\n\t        this._hitLimit = false;\n\t        this._checkingBytes = true;\n\t        this._key = '';\n\t        this._bytesKey = 0;\n\t        this._keyTrunc = false;\n\t        this.decoder.reset();\n\n\t        p = idxamp + 1;\n\t        if (this._fields === this.fieldsLimit) { return cb() }\n\t      } else if (this._hitLimit) {\n\t        // we may not have hit the actual limit if there are encoded bytes...\n\t        if (i > p) { this._val += this.decoder.write(data.toString('binary', p, i)); }\n\t        p = i;\n\t        if ((this._val === '' && this.fieldSizeLimit === 0) ||\n\t            (this._bytesVal = this._val.length) === this.fieldSizeLimit) {\n\t          // yep, we actually did hit the limit\n\t          this._checkingBytes = false;\n\t          this._valTrunc = true;\n\t        }\n\t      } else {\n\t        if (p < len) { this._val += this.decoder.write(data.toString('binary', p)); }\n\t        p = len;\n\t      }\n\t    }\n\t  }\n\t  cb();\n\t};\n\n\tUrlEncoded.prototype.end = function () {\n\t  if (this.boy._done) { return }\n\n\t  if (this._state === 'key' && this._key.length > 0) {\n\t    this.boy.emit('field', decodeText(this._key, 'binary', this.charset),\n\t      '',\n\t      this._keyTrunc,\n\t      false);\n\t  } else if (this._state === 'val') {\n\t    this.boy.emit('field', decodeText(this._key, 'binary', this.charset),\n\t      decodeText(this._val, 'binary', this.charset),\n\t      this._keyTrunc,\n\t      this._valTrunc);\n\t  }\n\t  this.boy._done = true;\n\t  this.boy.emit('finish');\n\t};\n\n\turlencoded = UrlEncoded;\n\treturn urlencoded;\n}\n\nvar hasRequiredMain;\n\nfunction requireMain () {\n\tif (hasRequiredMain) return main.exports;\n\thasRequiredMain = 1;\n\n\tconst WritableStream = require$$0$d.Writable;\n\tconst { inherits } = require$$1$6;\n\tconst Dicer = requireDicer();\n\n\tconst MultipartParser = requireMultipart();\n\tconst UrlencodedParser = requireUrlencoded();\n\tconst parseParams = requireParseParams();\n\n\tfunction Busboy (opts) {\n\t  if (!(this instanceof Busboy)) { return new Busboy(opts) }\n\n\t  if (typeof opts !== 'object') {\n\t    throw new TypeError('Busboy expected an options-Object.')\n\t  }\n\t  if (typeof opts.headers !== 'object') {\n\t    throw new TypeError('Busboy expected an options-Object with headers-attribute.')\n\t  }\n\t  if (typeof opts.headers['content-type'] !== 'string') {\n\t    throw new TypeError('Missing Content-Type-header.')\n\t  }\n\n\t  const {\n\t    headers,\n\t    ...streamOptions\n\t  } = opts;\n\n\t  this.opts = {\n\t    autoDestroy: false,\n\t    ...streamOptions\n\t  };\n\t  WritableStream.call(this, this.opts);\n\n\t  this._done = false;\n\t  this._parser = this.getParserByHeaders(headers);\n\t  this._finished = false;\n\t}\n\tinherits(Busboy, WritableStream);\n\n\tBusboy.prototype.emit = function (ev) {\n\t  if (ev === 'finish') {\n\t    if (!this._done) {\n\t      this._parser?.end();\n\t      return\n\t    } else if (this._finished) {\n\t      return\n\t    }\n\t    this._finished = true;\n\t  }\n\t  WritableStream.prototype.emit.apply(this, arguments);\n\t};\n\n\tBusboy.prototype.getParserByHeaders = function (headers) {\n\t  const parsed = parseParams(headers['content-type']);\n\n\t  const cfg = {\n\t    defCharset: this.opts.defCharset,\n\t    fileHwm: this.opts.fileHwm,\n\t    headers,\n\t    highWaterMark: this.opts.highWaterMark,\n\t    isPartAFile: this.opts.isPartAFile,\n\t    limits: this.opts.limits,\n\t    parsedConType: parsed,\n\t    preservePath: this.opts.preservePath\n\t  };\n\n\t  if (MultipartParser.detect.test(parsed[0])) {\n\t    return new MultipartParser(this, cfg)\n\t  }\n\t  if (UrlencodedParser.detect.test(parsed[0])) {\n\t    return new UrlencodedParser(this, cfg)\n\t  }\n\t  throw new Error('Unsupported Content-Type.')\n\t};\n\n\tBusboy.prototype._write = function (chunk, encoding, cb) {\n\t  this._parser.write(chunk, cb);\n\t};\n\n\tmain.exports = Busboy;\n\tmain.exports.default = Busboy;\n\tmain.exports.Busboy = Busboy;\n\n\tmain.exports.Dicer = Dicer;\n\treturn main.exports;\n}\n\nvar constants$7;\nvar hasRequiredConstants$7;\n\nfunction requireConstants$7 () {\n\tif (hasRequiredConstants$7) return constants$7;\n\thasRequiredConstants$7 = 1;\n\n\tconst { MessageChannel, receiveMessageOnPort } = require$$0$e;\n\n\tconst corsSafeListedMethods = ['GET', 'HEAD', 'POST'];\n\tconst corsSafeListedMethodsSet = new Set(corsSafeListedMethods);\n\n\tconst nullBodyStatus = [101, 204, 205, 304];\n\n\tconst redirectStatus = [301, 302, 303, 307, 308];\n\tconst redirectStatusSet = new Set(redirectStatus);\n\n\t// https://fetch.spec.whatwg.org/#block-bad-port\n\tconst badPorts = [\n\t  '1', '7', '9', '11', '13', '15', '17', '19', '20', '21', '22', '23', '25', '37', '42', '43', '53', '69', '77', '79',\n\t  '87', '95', '101', '102', '103', '104', '109', '110', '111', '113', '115', '117', '119', '123', '135', '137',\n\t  '139', '143', '161', '179', '389', '427', '465', '512', '513', '514', '515', '526', '530', '531', '532',\n\t  '540', '548', '554', '556', '563', '587', '601', '636', '989', '990', '993', '995', '1719', '1720', '1723',\n\t  '2049', '3659', '4045', '5060', '5061', '6000', '6566', '6665', '6666', '6667', '6668', '6669', '6697',\n\t  '10080'\n\t];\n\n\tconst badPortsSet = new Set(badPorts);\n\n\t// https://w3c.github.io/webappsec-referrer-policy/#referrer-policies\n\tconst referrerPolicy = [\n\t  '',\n\t  'no-referrer',\n\t  'no-referrer-when-downgrade',\n\t  'same-origin',\n\t  'origin',\n\t  'strict-origin',\n\t  'origin-when-cross-origin',\n\t  'strict-origin-when-cross-origin',\n\t  'unsafe-url'\n\t];\n\tconst referrerPolicySet = new Set(referrerPolicy);\n\n\tconst requestRedirect = ['follow', 'manual', 'error'];\n\n\tconst safeMethods = ['GET', 'HEAD', 'OPTIONS', 'TRACE'];\n\tconst safeMethodsSet = new Set(safeMethods);\n\n\tconst requestMode = ['navigate', 'same-origin', 'no-cors', 'cors'];\n\n\tconst requestCredentials = ['omit', 'same-origin', 'include'];\n\n\tconst requestCache = [\n\t  'default',\n\t  'no-store',\n\t  'reload',\n\t  'no-cache',\n\t  'force-cache',\n\t  'only-if-cached'\n\t];\n\n\t// https://fetch.spec.whatwg.org/#request-body-header-name\n\tconst requestBodyHeader = [\n\t  'content-encoding',\n\t  'content-language',\n\t  'content-location',\n\t  'content-type',\n\t  // See https://github.com/nodejs/undici/issues/2021\n\t  // 'Content-Length' is a forbidden header name, which is typically\n\t  // removed in the Headers implementation. However, undici doesn't\n\t  // filter out headers, so we add it here.\n\t  'content-length'\n\t];\n\n\t// https://fetch.spec.whatwg.org/#enumdef-requestduplex\n\tconst requestDuplex = [\n\t  'half'\n\t];\n\n\t// http://fetch.spec.whatwg.org/#forbidden-method\n\tconst forbiddenMethods = ['CONNECT', 'TRACE', 'TRACK'];\n\tconst forbiddenMethodsSet = new Set(forbiddenMethods);\n\n\tconst subresource = [\n\t  'audio',\n\t  'audioworklet',\n\t  'font',\n\t  'image',\n\t  'manifest',\n\t  'paintworklet',\n\t  'script',\n\t  'style',\n\t  'track',\n\t  'video',\n\t  'xslt',\n\t  ''\n\t];\n\tconst subresourceSet = new Set(subresource);\n\n\t/** @type {globalThis['DOMException']} */\n\tconst DOMException = globalThis.DOMException ?? (() => {\n\t  // DOMException was only made a global in Node v17.0.0,\n\t  // but fetch supports >= v16.8.\n\t  try {\n\t    atob('~');\n\t  } catch (err) {\n\t    return Object.getPrototypeOf(err).constructor\n\t  }\n\t})();\n\n\tlet channel;\n\n\t/** @type {globalThis['structuredClone']} */\n\tconst structuredClone =\n\t  globalThis.structuredClone ??\n\t  // https://github.com/nodejs/node/blob/b27ae24dcc4251bad726d9d84baf678d1f707fed/lib/internal/structured_clone.js\n\t  // structuredClone was added in v17.0.0, but fetch supports v16.8\n\t  function structuredClone (value, options = undefined) {\n\t    if (arguments.length === 0) {\n\t      throw new TypeError('missing argument')\n\t    }\n\n\t    if (!channel) {\n\t      channel = new MessageChannel();\n\t    }\n\t    channel.port1.unref();\n\t    channel.port2.unref();\n\t    channel.port1.postMessage(value, options?.transfer);\n\t    return receiveMessageOnPort(channel.port2).message\n\t  };\n\n\tconstants$7 = {\n\t  DOMException,\n\t  structuredClone,\n\t  subresource,\n\t  forbiddenMethods,\n\t  requestBodyHeader,\n\t  referrerPolicy,\n\t  requestRedirect,\n\t  requestMode,\n\t  requestCredentials,\n\t  requestCache,\n\t  redirectStatus,\n\t  corsSafeListedMethods,\n\t  nullBodyStatus,\n\t  safeMethods,\n\t  badPorts,\n\t  requestDuplex,\n\t  subresourceSet,\n\t  badPortsSet,\n\t  redirectStatusSet,\n\t  corsSafeListedMethodsSet,\n\t  safeMethodsSet,\n\t  forbiddenMethodsSet,\n\t  referrerPolicySet\n\t};\n\treturn constants$7;\n}\n\nvar global$2;\nvar hasRequiredGlobal$1;\n\nfunction requireGlobal$1 () {\n\tif (hasRequiredGlobal$1) return global$2;\n\thasRequiredGlobal$1 = 1;\n\n\t// In case of breaking changes, increase the version\n\t// number to avoid conflicts.\n\tconst globalOrigin = Symbol.for('undici.globalOrigin.1');\n\n\tfunction getGlobalOrigin () {\n\t  return globalThis[globalOrigin]\n\t}\n\n\tfunction setGlobalOrigin (newOrigin) {\n\t  if (newOrigin === undefined) {\n\t    Object.defineProperty(globalThis, globalOrigin, {\n\t      value: undefined,\n\t      writable: true,\n\t      enumerable: false,\n\t      configurable: false\n\t    });\n\n\t    return\n\t  }\n\n\t  const parsedURL = new URL(newOrigin);\n\n\t  if (parsedURL.protocol !== 'http:' && parsedURL.protocol !== 'https:') {\n\t    throw new TypeError(`Only http & https urls are allowed, received ${parsedURL.protocol}`)\n\t  }\n\n\t  Object.defineProperty(globalThis, globalOrigin, {\n\t    value: parsedURL,\n\t    writable: true,\n\t    enumerable: false,\n\t    configurable: false\n\t  });\n\t}\n\n\tglobal$2 = {\n\t  getGlobalOrigin,\n\t  setGlobalOrigin\n\t};\n\treturn global$2;\n}\n\nvar util$b;\nvar hasRequiredUtil$b;\n\nfunction requireUtil$b () {\n\tif (hasRequiredUtil$b) return util$b;\n\thasRequiredUtil$b = 1;\n\n\tconst { redirectStatusSet, referrerPolicySet: referrerPolicyTokens, badPortsSet } = requireConstants$7();\n\tconst { getGlobalOrigin } = requireGlobal$1();\n\tconst { performance } = require$$2$4;\n\tconst { isBlobLike, toUSVString, ReadableStreamFrom } = requireUtil$c();\n\tconst assert = require$$0$9;\n\tconst { isUint8Array } = require$$5$1;\n\n\tlet supportedHashes = [];\n\n\t// https://nodejs.org/api/crypto.html#determining-if-crypto-support-is-unavailable\n\t/** @type {import('crypto')|undefined} */\n\tlet crypto;\n\n\ttry {\n\t  crypto = require('crypto');\n\t  const possibleRelevantHashes = ['sha256', 'sha384', 'sha512'];\n\t  supportedHashes = crypto.getHashes().filter((hash) => possibleRelevantHashes.includes(hash));\n\t/* c8 ignore next 3 */\n\t} catch {\n\t}\n\n\tfunction responseURL (response) {\n\t  // https://fetch.spec.whatwg.org/#responses\n\t  // A response has an associated URL. It is a pointer to the last URL\n\t  // in response’s URL list and null if response’s URL list is empty.\n\t  const urlList = response.urlList;\n\t  const length = urlList.length;\n\t  return length === 0 ? null : urlList[length - 1].toString()\n\t}\n\n\t// https://fetch.spec.whatwg.org/#concept-response-location-url\n\tfunction responseLocationURL (response, requestFragment) {\n\t  // 1. If response’s status is not a redirect status, then return null.\n\t  if (!redirectStatusSet.has(response.status)) {\n\t    return null\n\t  }\n\n\t  // 2. Let location be the result of extracting header list values given\n\t  // `Location` and response’s header list.\n\t  let location = response.headersList.get('location');\n\n\t  // 3. If location is a header value, then set location to the result of\n\t  //    parsing location with response’s URL.\n\t  if (location !== null && isValidHeaderValue(location)) {\n\t    location = new URL(location, responseURL(response));\n\t  }\n\n\t  // 4. If location is a URL whose fragment is null, then set location’s\n\t  // fragment to requestFragment.\n\t  if (location && !location.hash) {\n\t    location.hash = requestFragment;\n\t  }\n\n\t  // 5. Return location.\n\t  return location\n\t}\n\n\t/** @returns {URL} */\n\tfunction requestCurrentURL (request) {\n\t  return request.urlList[request.urlList.length - 1]\n\t}\n\n\tfunction requestBadPort (request) {\n\t  // 1. Let url be request’s current URL.\n\t  const url = requestCurrentURL(request);\n\n\t  // 2. If url’s scheme is an HTTP(S) scheme and url’s port is a bad port,\n\t  // then return blocked.\n\t  if (urlIsHttpHttpsScheme(url) && badPortsSet.has(url.port)) {\n\t    return 'blocked'\n\t  }\n\n\t  // 3. Return allowed.\n\t  return 'allowed'\n\t}\n\n\tfunction isErrorLike (object) {\n\t  return object instanceof Error || (\n\t    object?.constructor?.name === 'Error' ||\n\t    object?.constructor?.name === 'DOMException'\n\t  )\n\t}\n\n\t// Check whether |statusText| is a ByteString and\n\t// matches the Reason-Phrase token production.\n\t// RFC 2616: https://tools.ietf.org/html/rfc2616\n\t// RFC 7230: https://tools.ietf.org/html/rfc7230\n\t// \"reason-phrase = *( HTAB / SP / VCHAR / obs-text )\"\n\t// https://github.com/chromium/chromium/blob/94.0.4604.1/third_party/blink/renderer/core/fetch/response.cc#L116\n\tfunction isValidReasonPhrase (statusText) {\n\t  for (let i = 0; i < statusText.length; ++i) {\n\t    const c = statusText.charCodeAt(i);\n\t    if (\n\t      !(\n\t        (\n\t          c === 0x09 || // HTAB\n\t          (c >= 0x20 && c <= 0x7e) || // SP / VCHAR\n\t          (c >= 0x80 && c <= 0xff)\n\t        ) // obs-text\n\t      )\n\t    ) {\n\t      return false\n\t    }\n\t  }\n\t  return true\n\t}\n\n\t/**\n\t * @see https://tools.ietf.org/html/rfc7230#section-3.2.6\n\t * @param {number} c\n\t */\n\tfunction isTokenCharCode (c) {\n\t  switch (c) {\n\t    case 0x22:\n\t    case 0x28:\n\t    case 0x29:\n\t    case 0x2c:\n\t    case 0x2f:\n\t    case 0x3a:\n\t    case 0x3b:\n\t    case 0x3c:\n\t    case 0x3d:\n\t    case 0x3e:\n\t    case 0x3f:\n\t    case 0x40:\n\t    case 0x5b:\n\t    case 0x5c:\n\t    case 0x5d:\n\t    case 0x7b:\n\t    case 0x7d:\n\t      // DQUOTE and \"(),/:;<=>?@[\\]{}\"\n\t      return false\n\t    default:\n\t      // VCHAR %x21-7E\n\t      return c >= 0x21 && c <= 0x7e\n\t  }\n\t}\n\n\t/**\n\t * @param {string} characters\n\t */\n\tfunction isValidHTTPToken (characters) {\n\t  if (characters.length === 0) {\n\t    return false\n\t  }\n\t  for (let i = 0; i < characters.length; ++i) {\n\t    if (!isTokenCharCode(characters.charCodeAt(i))) {\n\t      return false\n\t    }\n\t  }\n\t  return true\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#header-name\n\t * @param {string} potentialValue\n\t */\n\tfunction isValidHeaderName (potentialValue) {\n\t  return isValidHTTPToken(potentialValue)\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#header-value\n\t * @param {string} potentialValue\n\t */\n\tfunction isValidHeaderValue (potentialValue) {\n\t  // - Has no leading or trailing HTTP tab or space bytes.\n\t  // - Contains no 0x00 (NUL) or HTTP newline bytes.\n\t  if (\n\t    potentialValue.startsWith('\\t') ||\n\t    potentialValue.startsWith(' ') ||\n\t    potentialValue.endsWith('\\t') ||\n\t    potentialValue.endsWith(' ')\n\t  ) {\n\t    return false\n\t  }\n\n\t  if (\n\t    potentialValue.includes('\\0') ||\n\t    potentialValue.includes('\\r') ||\n\t    potentialValue.includes('\\n')\n\t  ) {\n\t    return false\n\t  }\n\n\t  return true\n\t}\n\n\t// https://w3c.github.io/webappsec-referrer-policy/#set-requests-referrer-policy-on-redirect\n\tfunction setRequestReferrerPolicyOnRedirect (request, actualResponse) {\n\t  //  Given a request request and a response actualResponse, this algorithm\n\t  //  updates request’s referrer policy according to the Referrer-Policy\n\t  //  header (if any) in actualResponse.\n\n\t  // 1. Let policy be the result of executing § 8.1 Parse a referrer policy\n\t  // from a Referrer-Policy header on actualResponse.\n\n\t  // 8.1 Parse a referrer policy from a Referrer-Policy header\n\t  // 1. Let policy-tokens be the result of extracting header list values given `Referrer-Policy` and response’s header list.\n\t  const { headersList } = actualResponse;\n\t  // 2. Let policy be the empty string.\n\t  // 3. For each token in policy-tokens, if token is a referrer policy and token is not the empty string, then set policy to token.\n\t  // 4. Return policy.\n\t  const policyHeader = (headersList.get('referrer-policy') ?? '').split(',');\n\n\t  // Note: As the referrer-policy can contain multiple policies\n\t  // separated by comma, we need to loop through all of them\n\t  // and pick the first valid one.\n\t  // Ref: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy#specify_a_fallback_policy\n\t  let policy = '';\n\t  if (policyHeader.length > 0) {\n\t    // The right-most policy takes precedence.\n\t    // The left-most policy is the fallback.\n\t    for (let i = policyHeader.length; i !== 0; i--) {\n\t      const token = policyHeader[i - 1].trim();\n\t      if (referrerPolicyTokens.has(token)) {\n\t        policy = token;\n\t        break\n\t      }\n\t    }\n\t  }\n\n\t  // 2. If policy is not the empty string, then set request’s referrer policy to policy.\n\t  if (policy !== '') {\n\t    request.referrerPolicy = policy;\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#cross-origin-resource-policy-check\n\tfunction crossOriginResourcePolicyCheck () {\n\t  // TODO\n\t  return 'allowed'\n\t}\n\n\t// https://fetch.spec.whatwg.org/#concept-cors-check\n\tfunction corsCheck () {\n\t  // TODO\n\t  return 'success'\n\t}\n\n\t// https://fetch.spec.whatwg.org/#concept-tao-check\n\tfunction TAOCheck () {\n\t  // TODO\n\t  return 'success'\n\t}\n\n\tfunction appendFetchMetadata (httpRequest) {\n\t  //  https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-dest-header\n\t  //  TODO\n\n\t  //  https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-mode-header\n\n\t  //  1. Assert: r’s url is a potentially trustworthy URL.\n\t  //  TODO\n\n\t  //  2. Let header be a Structured Header whose value is a token.\n\t  let header = null;\n\n\t  //  3. Set header’s value to r’s mode.\n\t  header = httpRequest.mode;\n\n\t  //  4. Set a structured field value `Sec-Fetch-Mode`/header in r’s header list.\n\t  httpRequest.headersList.set('sec-fetch-mode', header);\n\n\t  //  https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-site-header\n\t  //  TODO\n\n\t  //  https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-user-header\n\t  //  TODO\n\t}\n\n\t// https://fetch.spec.whatwg.org/#append-a-request-origin-header\n\tfunction appendRequestOriginHeader (request) {\n\t  // 1. Let serializedOrigin be the result of byte-serializing a request origin with request.\n\t  let serializedOrigin = request.origin;\n\n\t  // 2. If request’s response tainting is \"cors\" or request’s mode is \"websocket\", then append (`Origin`, serializedOrigin) to request’s header list.\n\t  if (request.responseTainting === 'cors' || request.mode === 'websocket') {\n\t    if (serializedOrigin) {\n\t      request.headersList.append('origin', serializedOrigin);\n\t    }\n\n\t  // 3. Otherwise, if request’s method is neither `GET` nor `HEAD`, then:\n\t  } else if (request.method !== 'GET' && request.method !== 'HEAD') {\n\t    // 1. Switch on request’s referrer policy:\n\t    switch (request.referrerPolicy) {\n\t      case 'no-referrer':\n\t        // Set serializedOrigin to `null`.\n\t        serializedOrigin = null;\n\t        break\n\t      case 'no-referrer-when-downgrade':\n\t      case 'strict-origin':\n\t      case 'strict-origin-when-cross-origin':\n\t        // If request’s origin is a tuple origin, its scheme is \"https\", and request’s current URL’s scheme is not \"https\", then set serializedOrigin to `null`.\n\t        if (request.origin && urlHasHttpsScheme(request.origin) && !urlHasHttpsScheme(requestCurrentURL(request))) {\n\t          serializedOrigin = null;\n\t        }\n\t        break\n\t      case 'same-origin':\n\t        // If request’s origin is not same origin with request’s current URL’s origin, then set serializedOrigin to `null`.\n\t        if (!sameOrigin(request, requestCurrentURL(request))) {\n\t          serializedOrigin = null;\n\t        }\n\t        break\n\t        // Do nothing.\n\t    }\n\n\t    if (serializedOrigin) {\n\t      // 2. Append (`Origin`, serializedOrigin) to request’s header list.\n\t      request.headersList.append('origin', serializedOrigin);\n\t    }\n\t  }\n\t}\n\n\tfunction coarsenedSharedCurrentTime (crossOriginIsolatedCapability) {\n\t  // TODO\n\t  return performance.now()\n\t}\n\n\t// https://fetch.spec.whatwg.org/#create-an-opaque-timing-info\n\tfunction createOpaqueTimingInfo (timingInfo) {\n\t  return {\n\t    startTime: timingInfo.startTime ?? 0,\n\t    redirectStartTime: 0,\n\t    redirectEndTime: 0,\n\t    postRedirectStartTime: timingInfo.startTime ?? 0,\n\t    finalServiceWorkerStartTime: 0,\n\t    finalNetworkResponseStartTime: 0,\n\t    finalNetworkRequestStartTime: 0,\n\t    endTime: 0,\n\t    encodedBodySize: 0,\n\t    decodedBodySize: 0,\n\t    finalConnectionTimingInfo: null\n\t  }\n\t}\n\n\t// https://html.spec.whatwg.org/multipage/origin.html#policy-container\n\tfunction makePolicyContainer () {\n\t  // Note: the fetch spec doesn't make use of embedder policy or CSP list\n\t  return {\n\t    referrerPolicy: 'strict-origin-when-cross-origin'\n\t  }\n\t}\n\n\t// https://html.spec.whatwg.org/multipage/origin.html#clone-a-policy-container\n\tfunction clonePolicyContainer (policyContainer) {\n\t  return {\n\t    referrerPolicy: policyContainer.referrerPolicy\n\t  }\n\t}\n\n\t// https://w3c.github.io/webappsec-referrer-policy/#determine-requests-referrer\n\tfunction determineRequestsReferrer (request) {\n\t  // 1. Let policy be request's referrer policy.\n\t  const policy = request.referrerPolicy;\n\n\t  // Note: policy cannot (shouldn't) be null or an empty string.\n\t  assert(policy);\n\n\t  // 2. Let environment be request’s client.\n\n\t  let referrerSource = null;\n\n\t  // 3. Switch on request’s referrer:\n\t  if (request.referrer === 'client') {\n\t    // Note: node isn't a browser and doesn't implement document/iframes,\n\t    // so we bypass this step and replace it with our own.\n\n\t    const globalOrigin = getGlobalOrigin();\n\n\t    if (!globalOrigin || globalOrigin.origin === 'null') {\n\t      return 'no-referrer'\n\t    }\n\n\t    // note: we need to clone it as it's mutated\n\t    referrerSource = new URL(globalOrigin);\n\t  } else if (request.referrer instanceof URL) {\n\t    // Let referrerSource be request’s referrer.\n\t    referrerSource = request.referrer;\n\t  }\n\n\t  // 4. Let request’s referrerURL be the result of stripping referrerSource for\n\t  //    use as a referrer.\n\t  let referrerURL = stripURLForReferrer(referrerSource);\n\n\t  // 5. Let referrerOrigin be the result of stripping referrerSource for use as\n\t  //    a referrer, with the origin-only flag set to true.\n\t  const referrerOrigin = stripURLForReferrer(referrerSource, true);\n\n\t  // 6. If the result of serializing referrerURL is a string whose length is\n\t  //    greater than 4096, set referrerURL to referrerOrigin.\n\t  if (referrerURL.toString().length > 4096) {\n\t    referrerURL = referrerOrigin;\n\t  }\n\n\t  const areSameOrigin = sameOrigin(request, referrerURL);\n\t  const isNonPotentiallyTrustWorthy = isURLPotentiallyTrustworthy(referrerURL) &&\n\t    !isURLPotentiallyTrustworthy(request.url);\n\n\t  // 8. Execute the switch statements corresponding to the value of policy:\n\t  switch (policy) {\n\t    case 'origin': return referrerOrigin != null ? referrerOrigin : stripURLForReferrer(referrerSource, true)\n\t    case 'unsafe-url': return referrerURL\n\t    case 'same-origin':\n\t      return areSameOrigin ? referrerOrigin : 'no-referrer'\n\t    case 'origin-when-cross-origin':\n\t      return areSameOrigin ? referrerURL : referrerOrigin\n\t    case 'strict-origin-when-cross-origin': {\n\t      const currentURL = requestCurrentURL(request);\n\n\t      // 1. If the origin of referrerURL and the origin of request’s current\n\t      //    URL are the same, then return referrerURL.\n\t      if (sameOrigin(referrerURL, currentURL)) {\n\t        return referrerURL\n\t      }\n\n\t      // 2. If referrerURL is a potentially trustworthy URL and request’s\n\t      //    current URL is not a potentially trustworthy URL, then return no\n\t      //    referrer.\n\t      if (isURLPotentiallyTrustworthy(referrerURL) && !isURLPotentiallyTrustworthy(currentURL)) {\n\t        return 'no-referrer'\n\t      }\n\n\t      // 3. Return referrerOrigin.\n\t      return referrerOrigin\n\t    }\n\t    case 'strict-origin': // eslint-disable-line\n\t      /**\n\t         * 1. If referrerURL is a potentially trustworthy URL and\n\t         * request’s current URL is not a potentially trustworthy URL,\n\t         * then return no referrer.\n\t         * 2. Return referrerOrigin\n\t        */\n\t    case 'no-referrer-when-downgrade': // eslint-disable-line\n\t      /**\n\t       * 1. If referrerURL is a potentially trustworthy URL and\n\t       * request’s current URL is not a potentially trustworthy URL,\n\t       * then return no referrer.\n\t       * 2. Return referrerOrigin\n\t      */\n\n\t    default: // eslint-disable-line\n\t      return isNonPotentiallyTrustWorthy ? 'no-referrer' : referrerOrigin\n\t  }\n\t}\n\n\t/**\n\t * @see https://w3c.github.io/webappsec-referrer-policy/#strip-url\n\t * @param {URL} url\n\t * @param {boolean|undefined} originOnly\n\t */\n\tfunction stripURLForReferrer (url, originOnly) {\n\t  // 1. Assert: url is a URL.\n\t  assert(url instanceof URL);\n\n\t  // 2. If url’s scheme is a local scheme, then return no referrer.\n\t  if (url.protocol === 'file:' || url.protocol === 'about:' || url.protocol === 'blank:') {\n\t    return 'no-referrer'\n\t  }\n\n\t  // 3. Set url’s username to the empty string.\n\t  url.username = '';\n\n\t  // 4. Set url’s password to the empty string.\n\t  url.password = '';\n\n\t  // 5. Set url’s fragment to null.\n\t  url.hash = '';\n\n\t  // 6. If the origin-only flag is true, then:\n\t  if (originOnly) {\n\t    // 1. Set url’s path to « the empty string ».\n\t    url.pathname = '';\n\n\t    // 2. Set url’s query to null.\n\t    url.search = '';\n\t  }\n\n\t  // 7. Return url.\n\t  return url\n\t}\n\n\tfunction isURLPotentiallyTrustworthy (url) {\n\t  if (!(url instanceof URL)) {\n\t    return false\n\t  }\n\n\t  // If child of about, return true\n\t  if (url.href === 'about:blank' || url.href === 'about:srcdoc') {\n\t    return true\n\t  }\n\n\t  // If scheme is data, return true\n\t  if (url.protocol === 'data:') return true\n\n\t  // If file, return true\n\t  if (url.protocol === 'file:') return true\n\n\t  return isOriginPotentiallyTrustworthy(url.origin)\n\n\t  function isOriginPotentiallyTrustworthy (origin) {\n\t    // If origin is explicitly null, return false\n\t    if (origin == null || origin === 'null') return false\n\n\t    const originAsURL = new URL(origin);\n\n\t    // If secure, return true\n\t    if (originAsURL.protocol === 'https:' || originAsURL.protocol === 'wss:') {\n\t      return true\n\t    }\n\n\t    // If localhost or variants, return true\n\t    if (/^127(?:\\.[0-9]+){0,2}\\.[0-9]+$|^\\[(?:0*:)*?:?0*1\\]$/.test(originAsURL.hostname) ||\n\t     (originAsURL.hostname === 'localhost' || originAsURL.hostname.includes('localhost.')) ||\n\t     (originAsURL.hostname.endsWith('.localhost'))) {\n\t      return true\n\t    }\n\n\t    // If any other, return false\n\t    return false\n\t  }\n\t}\n\n\t/**\n\t * @see https://w3c.github.io/webappsec-subresource-integrity/#does-response-match-metadatalist\n\t * @param {Uint8Array} bytes\n\t * @param {string} metadataList\n\t */\n\tfunction bytesMatch (bytes, metadataList) {\n\t  // If node is not built with OpenSSL support, we cannot check\n\t  // a request's integrity, so allow it by default (the spec will\n\t  // allow requests if an invalid hash is given, as precedence).\n\t  /* istanbul ignore if: only if node is built with --without-ssl */\n\t  if (crypto === undefined) {\n\t    return true\n\t  }\n\n\t  // 1. Let parsedMetadata be the result of parsing metadataList.\n\t  const parsedMetadata = parseMetadata(metadataList);\n\n\t  // 2. If parsedMetadata is no metadata, return true.\n\t  if (parsedMetadata === 'no metadata') {\n\t    return true\n\t  }\n\n\t  // 3. If response is not eligible for integrity validation, return false.\n\t  // TODO\n\n\t  // 4. If parsedMetadata is the empty set, return true.\n\t  if (parsedMetadata.length === 0) {\n\t    return true\n\t  }\n\n\t  // 5. Let metadata be the result of getting the strongest\n\t  //    metadata from parsedMetadata.\n\t  const strongest = getStrongestMetadata(parsedMetadata);\n\t  const metadata = filterMetadataListByAlgorithm(parsedMetadata, strongest);\n\n\t  // 6. For each item in metadata:\n\t  for (const item of metadata) {\n\t    // 1. Let algorithm be the alg component of item.\n\t    const algorithm = item.algo;\n\n\t    // 2. Let expectedValue be the val component of item.\n\t    const expectedValue = item.hash;\n\n\t    // See https://github.com/web-platform-tests/wpt/commit/e4c5cc7a5e48093220528dfdd1c4012dc3837a0e\n\t    // \"be liberal with padding\". This is annoying, and it's not even in the spec.\n\n\t    // 3. Let actualValue be the result of applying algorithm to bytes.\n\t    let actualValue = crypto.createHash(algorithm).update(bytes).digest('base64');\n\n\t    if (actualValue[actualValue.length - 1] === '=') {\n\t      if (actualValue[actualValue.length - 2] === '=') {\n\t        actualValue = actualValue.slice(0, -2);\n\t      } else {\n\t        actualValue = actualValue.slice(0, -1);\n\t      }\n\t    }\n\n\t    // 4. If actualValue is a case-sensitive match for expectedValue,\n\t    //    return true.\n\t    if (compareBase64Mixed(actualValue, expectedValue)) {\n\t      return true\n\t    }\n\t  }\n\n\t  // 7. Return false.\n\t  return false\n\t}\n\n\t// https://w3c.github.io/webappsec-subresource-integrity/#grammardef-hash-with-options\n\t// https://www.w3.org/TR/CSP2/#source-list-syntax\n\t// https://www.rfc-editor.org/rfc/rfc5234#appendix-B.1\n\tconst parseHashWithOptions = /(?<algo>sha256|sha384|sha512)-((?<hash>[A-Za-z0-9+/]+|[A-Za-z0-9_-]+)={0,2}(?:\\s|$)( +[!-~]*)?)?/i;\n\n\t/**\n\t * @see https://w3c.github.io/webappsec-subresource-integrity/#parse-metadata\n\t * @param {string} metadata\n\t */\n\tfunction parseMetadata (metadata) {\n\t  // 1. Let result be the empty set.\n\t  /** @type {{ algo: string, hash: string }[]} */\n\t  const result = [];\n\n\t  // 2. Let empty be equal to true.\n\t  let empty = true;\n\n\t  // 3. For each token returned by splitting metadata on spaces:\n\t  for (const token of metadata.split(' ')) {\n\t    // 1. Set empty to false.\n\t    empty = false;\n\n\t    // 2. Parse token as a hash-with-options.\n\t    const parsedToken = parseHashWithOptions.exec(token);\n\n\t    // 3. If token does not parse, continue to the next token.\n\t    if (\n\t      parsedToken === null ||\n\t      parsedToken.groups === undefined ||\n\t      parsedToken.groups.algo === undefined\n\t    ) {\n\t      // Note: Chromium blocks the request at this point, but Firefox\n\t      // gives a warning that an invalid integrity was given. The\n\t      // correct behavior is to ignore these, and subsequently not\n\t      // check the integrity of the resource.\n\t      continue\n\t    }\n\n\t    // 4. Let algorithm be the hash-algo component of token.\n\t    const algorithm = parsedToken.groups.algo.toLowerCase();\n\n\t    // 5. If algorithm is a hash function recognized by the user\n\t    //    agent, add the parsed token to result.\n\t    if (supportedHashes.includes(algorithm)) {\n\t      result.push(parsedToken.groups);\n\t    }\n\t  }\n\n\t  // 4. Return no metadata if empty is true, otherwise return result.\n\t  if (empty === true) {\n\t    return 'no metadata'\n\t  }\n\n\t  return result\n\t}\n\n\t/**\n\t * @param {{ algo: 'sha256' | 'sha384' | 'sha512' }[]} metadataList\n\t */\n\tfunction getStrongestMetadata (metadataList) {\n\t  // Let algorithm be the algo component of the first item in metadataList.\n\t  // Can be sha256\n\t  let algorithm = metadataList[0].algo;\n\t  // If the algorithm is sha512, then it is the strongest\n\t  // and we can return immediately\n\t  if (algorithm[3] === '5') {\n\t    return algorithm\n\t  }\n\n\t  for (let i = 1; i < metadataList.length; ++i) {\n\t    const metadata = metadataList[i];\n\t    // If the algorithm is sha512, then it is the strongest\n\t    // and we can break the loop immediately\n\t    if (metadata.algo[3] === '5') {\n\t      algorithm = 'sha512';\n\t      break\n\t    // If the algorithm is sha384, then a potential sha256 or sha384 is ignored\n\t    } else if (algorithm[3] === '3') {\n\t      continue\n\t    // algorithm is sha256, check if algorithm is sha384 and if so, set it as\n\t    // the strongest\n\t    } else if (metadata.algo[3] === '3') {\n\t      algorithm = 'sha384';\n\t    }\n\t  }\n\t  return algorithm\n\t}\n\n\tfunction filterMetadataListByAlgorithm (metadataList, algorithm) {\n\t  if (metadataList.length === 1) {\n\t    return metadataList\n\t  }\n\n\t  let pos = 0;\n\t  for (let i = 0; i < metadataList.length; ++i) {\n\t    if (metadataList[i].algo === algorithm) {\n\t      metadataList[pos++] = metadataList[i];\n\t    }\n\t  }\n\n\t  metadataList.length = pos;\n\n\t  return metadataList\n\t}\n\n\t/**\n\t * Compares two base64 strings, allowing for base64url\n\t * in the second string.\n\t *\n\t* @param {string} actualValue always base64\n\t * @param {string} expectedValue base64 or base64url\n\t * @returns {boolean}\n\t */\n\tfunction compareBase64Mixed (actualValue, expectedValue) {\n\t  if (actualValue.length !== expectedValue.length) {\n\t    return false\n\t  }\n\t  for (let i = 0; i < actualValue.length; ++i) {\n\t    if (actualValue[i] !== expectedValue[i]) {\n\t      if (\n\t        (actualValue[i] === '+' && expectedValue[i] === '-') ||\n\t        (actualValue[i] === '/' && expectedValue[i] === '_')\n\t      ) {\n\t        continue\n\t      }\n\t      return false\n\t    }\n\t  }\n\n\t  return true\n\t}\n\n\t// https://w3c.github.io/webappsec-upgrade-insecure-requests/#upgrade-request\n\tfunction tryUpgradeRequestToAPotentiallyTrustworthyURL (request) {\n\t  // TODO\n\t}\n\n\t/**\n\t * @link {https://html.spec.whatwg.org/multipage/origin.html#same-origin}\n\t * @param {URL} A\n\t * @param {URL} B\n\t */\n\tfunction sameOrigin (A, B) {\n\t  // 1. If A and B are the same opaque origin, then return true.\n\t  if (A.origin === B.origin && A.origin === 'null') {\n\t    return true\n\t  }\n\n\t  // 2. If A and B are both tuple origins and their schemes,\n\t  //    hosts, and port are identical, then return true.\n\t  if (A.protocol === B.protocol && A.hostname === B.hostname && A.port === B.port) {\n\t    return true\n\t  }\n\n\t  // 3. Return false.\n\t  return false\n\t}\n\n\tfunction createDeferredPromise () {\n\t  let res;\n\t  let rej;\n\t  const promise = new Promise((resolve, reject) => {\n\t    res = resolve;\n\t    rej = reject;\n\t  });\n\n\t  return { promise, resolve: res, reject: rej }\n\t}\n\n\tfunction isAborted (fetchParams) {\n\t  return fetchParams.controller.state === 'aborted'\n\t}\n\n\tfunction isCancelled (fetchParams) {\n\t  return fetchParams.controller.state === 'aborted' ||\n\t    fetchParams.controller.state === 'terminated'\n\t}\n\n\tconst normalizeMethodRecord = {\n\t  delete: 'DELETE',\n\t  DELETE: 'DELETE',\n\t  get: 'GET',\n\t  GET: 'GET',\n\t  head: 'HEAD',\n\t  HEAD: 'HEAD',\n\t  options: 'OPTIONS',\n\t  OPTIONS: 'OPTIONS',\n\t  post: 'POST',\n\t  POST: 'POST',\n\t  put: 'PUT',\n\t  PUT: 'PUT'\n\t};\n\n\t// Note: object prototypes should not be able to be referenced. e.g. `Object#hasOwnProperty`.\n\tObject.setPrototypeOf(normalizeMethodRecord, null);\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#concept-method-normalize\n\t * @param {string} method\n\t */\n\tfunction normalizeMethod (method) {\n\t  return normalizeMethodRecord[method.toLowerCase()] ?? method\n\t}\n\n\t// https://infra.spec.whatwg.org/#serialize-a-javascript-value-to-a-json-string\n\tfunction serializeJavascriptValueToJSONString (value) {\n\t  // 1. Let result be ? Call(%JSON.stringify%, undefined, « value »).\n\t  const result = JSON.stringify(value);\n\n\t  // 2. If result is undefined, then throw a TypeError.\n\t  if (result === undefined) {\n\t    throw new TypeError('Value is not JSON serializable')\n\t  }\n\n\t  // 3. Assert: result is a string.\n\t  assert(typeof result === 'string');\n\n\t  // 4. Return result.\n\t  return result\n\t}\n\n\t// https://tc39.es/ecma262/#sec-%25iteratorprototype%25-object\n\tconst esIteratorPrototype = Object.getPrototypeOf(Object.getPrototypeOf([][Symbol.iterator]()));\n\n\t/**\n\t * @see https://webidl.spec.whatwg.org/#dfn-iterator-prototype-object\n\t * @param {() => unknown[]} iterator\n\t * @param {string} name name of the instance\n\t * @param {'key'|'value'|'key+value'} kind\n\t */\n\tfunction makeIterator (iterator, name, kind) {\n\t  const object = {\n\t    index: 0,\n\t    kind,\n\t    target: iterator\n\t  };\n\n\t  const i = {\n\t    next () {\n\t      // 1. Let interface be the interface for which the iterator prototype object exists.\n\n\t      // 2. Let thisValue be the this value.\n\n\t      // 3. Let object be ? ToObject(thisValue).\n\n\t      // 4. If object is a platform object, then perform a security\n\t      //    check, passing:\n\n\t      // 5. If object is not a default iterator object for interface,\n\t      //    then throw a TypeError.\n\t      if (Object.getPrototypeOf(this) !== i) {\n\t        throw new TypeError(\n\t          `'next' called on an object that does not implement interface ${name} Iterator.`\n\t        )\n\t      }\n\n\t      // 6. Let index be object’s index.\n\t      // 7. Let kind be object’s kind.\n\t      // 8. Let values be object’s target's value pairs to iterate over.\n\t      const { index, kind, target } = object;\n\t      const values = target();\n\n\t      // 9. Let len be the length of values.\n\t      const len = values.length;\n\n\t      // 10. If index is greater than or equal to len, then return\n\t      //     CreateIterResultObject(undefined, true).\n\t      if (index >= len) {\n\t        return { value: undefined, done: true }\n\t      }\n\n\t      // 11. Let pair be the entry in values at index index.\n\t      const pair = values[index];\n\n\t      // 12. Set object’s index to index + 1.\n\t      object.index = index + 1;\n\n\t      // 13. Return the iterator result for pair and kind.\n\t      return iteratorResult(pair, kind)\n\t    },\n\t    // The class string of an iterator prototype object for a given interface is the\n\t    // result of concatenating the identifier of the interface and the string \" Iterator\".\n\t    [Symbol.toStringTag]: `${name} Iterator`\n\t  };\n\n\t  // The [[Prototype]] internal slot of an iterator prototype object must be %IteratorPrototype%.\n\t  Object.setPrototypeOf(i, esIteratorPrototype);\n\t  // esIteratorPrototype needs to be the prototype of i\n\t  // which is the prototype of an empty object. Yes, it's confusing.\n\t  return Object.setPrototypeOf({}, i)\n\t}\n\n\t// https://webidl.spec.whatwg.org/#iterator-result\n\tfunction iteratorResult (pair, kind) {\n\t  let result;\n\n\t  // 1. Let result be a value determined by the value of kind:\n\t  switch (kind) {\n\t    case 'key': {\n\t      // 1. Let idlKey be pair’s key.\n\t      // 2. Let key be the result of converting idlKey to an\n\t      //    ECMAScript value.\n\t      // 3. result is key.\n\t      result = pair[0];\n\t      break\n\t    }\n\t    case 'value': {\n\t      // 1. Let idlValue be pair’s value.\n\t      // 2. Let value be the result of converting idlValue to\n\t      //    an ECMAScript value.\n\t      // 3. result is value.\n\t      result = pair[1];\n\t      break\n\t    }\n\t    case 'key+value': {\n\t      // 1. Let idlKey be pair’s key.\n\t      // 2. Let idlValue be pair’s value.\n\t      // 3. Let key be the result of converting idlKey to an\n\t      //    ECMAScript value.\n\t      // 4. Let value be the result of converting idlValue to\n\t      //    an ECMAScript value.\n\t      // 5. Let array be ! ArrayCreate(2).\n\t      // 6. Call ! CreateDataProperty(array, \"0\", key).\n\t      // 7. Call ! CreateDataProperty(array, \"1\", value).\n\t      // 8. result is array.\n\t      result = pair;\n\t      break\n\t    }\n\t  }\n\n\t  // 2. Return CreateIterResultObject(result, false).\n\t  return { value: result, done: false }\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#body-fully-read\n\t */\n\tasync function fullyReadBody (body, processBody, processBodyError) {\n\t  // 1. If taskDestination is null, then set taskDestination to\n\t  //    the result of starting a new parallel queue.\n\n\t  // 2. Let successSteps given a byte sequence bytes be to queue a\n\t  //    fetch task to run processBody given bytes, with taskDestination.\n\t  const successSteps = processBody;\n\n\t  // 3. Let errorSteps be to queue a fetch task to run processBodyError,\n\t  //    with taskDestination.\n\t  const errorSteps = processBodyError;\n\n\t  // 4. Let reader be the result of getting a reader for body’s stream.\n\t  //    If that threw an exception, then run errorSteps with that\n\t  //    exception and return.\n\t  let reader;\n\n\t  try {\n\t    reader = body.stream.getReader();\n\t  } catch (e) {\n\t    errorSteps(e);\n\t    return\n\t  }\n\n\t  // 5. Read all bytes from reader, given successSteps and errorSteps.\n\t  try {\n\t    const result = await readAllBytes(reader);\n\t    successSteps(result);\n\t  } catch (e) {\n\t    errorSteps(e);\n\t  }\n\t}\n\n\t/** @type {ReadableStream} */\n\tlet ReadableStream = globalThis.ReadableStream;\n\n\tfunction isReadableStreamLike (stream) {\n\t  if (!ReadableStream) {\n\t    ReadableStream = require$$14.ReadableStream;\n\t  }\n\n\t  return stream instanceof ReadableStream || (\n\t    stream[Symbol.toStringTag] === 'ReadableStream' &&\n\t    typeof stream.tee === 'function'\n\t  )\n\t}\n\n\tconst MAXIMUM_ARGUMENT_LENGTH = 65535;\n\n\t/**\n\t * @see https://infra.spec.whatwg.org/#isomorphic-decode\n\t * @param {number[]|Uint8Array} input\n\t */\n\tfunction isomorphicDecode (input) {\n\t  // 1. To isomorphic decode a byte sequence input, return a string whose code point\n\t  //    length is equal to input’s length and whose code points have the same values\n\t  //    as the values of input’s bytes, in the same order.\n\n\t  if (input.length < MAXIMUM_ARGUMENT_LENGTH) {\n\t    return String.fromCharCode(...input)\n\t  }\n\n\t  return input.reduce((previous, current) => previous + String.fromCharCode(current), '')\n\t}\n\n\t/**\n\t * @param {ReadableStreamController<Uint8Array>} controller\n\t */\n\tfunction readableStreamClose (controller) {\n\t  try {\n\t    controller.close();\n\t  } catch (err) {\n\t    // TODO: add comment explaining why this error occurs.\n\t    if (!err.message.includes('Controller is already closed')) {\n\t      throw err\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * @see https://infra.spec.whatwg.org/#isomorphic-encode\n\t * @param {string} input\n\t */\n\tfunction isomorphicEncode (input) {\n\t  // 1. Assert: input contains no code points greater than U+00FF.\n\t  for (let i = 0; i < input.length; i++) {\n\t    assert(input.charCodeAt(i) <= 0xFF);\n\t  }\n\n\t  // 2. Return a byte sequence whose length is equal to input’s code\n\t  //    point length and whose bytes have the same values as the\n\t  //    values of input’s code points, in the same order\n\t  return input\n\t}\n\n\t/**\n\t * @see https://streams.spec.whatwg.org/#readablestreamdefaultreader-read-all-bytes\n\t * @see https://streams.spec.whatwg.org/#read-loop\n\t * @param {ReadableStreamDefaultReader} reader\n\t */\n\tasync function readAllBytes (reader) {\n\t  const bytes = [];\n\t  let byteLength = 0;\n\n\t  while (true) {\n\t    const { done, value: chunk } = await reader.read();\n\n\t    if (done) {\n\t      // 1. Call successSteps with bytes.\n\t      return Buffer.concat(bytes, byteLength)\n\t    }\n\n\t    // 1. If chunk is not a Uint8Array object, call failureSteps\n\t    //    with a TypeError and abort these steps.\n\t    if (!isUint8Array(chunk)) {\n\t      throw new TypeError('Received non-Uint8Array chunk')\n\t    }\n\n\t    // 2. Append the bytes represented by chunk to bytes.\n\t    bytes.push(chunk);\n\t    byteLength += chunk.length;\n\n\t    // 3. Read-loop given reader, bytes, successSteps, and failureSteps.\n\t  }\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#is-local\n\t * @param {URL} url\n\t */\n\tfunction urlIsLocal (url) {\n\t  assert('protocol' in url); // ensure it's a url object\n\n\t  const protocol = url.protocol;\n\n\t  return protocol === 'about:' || protocol === 'blob:' || protocol === 'data:'\n\t}\n\n\t/**\n\t * @param {string|URL} url\n\t */\n\tfunction urlHasHttpsScheme (url) {\n\t  if (typeof url === 'string') {\n\t    return url.startsWith('https:')\n\t  }\n\n\t  return url.protocol === 'https:'\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#http-scheme\n\t * @param {URL} url\n\t */\n\tfunction urlIsHttpHttpsScheme (url) {\n\t  assert('protocol' in url); // ensure it's a url object\n\n\t  const protocol = url.protocol;\n\n\t  return protocol === 'http:' || protocol === 'https:'\n\t}\n\n\t/**\n\t * Fetch supports node >= 16.8.0, but Object.hasOwn was added in v16.9.0.\n\t */\n\tconst hasOwn = Object.hasOwn || ((dict, key) => Object.prototype.hasOwnProperty.call(dict, key));\n\n\tutil$b = {\n\t  isAborted,\n\t  isCancelled,\n\t  createDeferredPromise,\n\t  ReadableStreamFrom,\n\t  toUSVString,\n\t  tryUpgradeRequestToAPotentiallyTrustworthyURL,\n\t  coarsenedSharedCurrentTime,\n\t  determineRequestsReferrer,\n\t  makePolicyContainer,\n\t  clonePolicyContainer,\n\t  appendFetchMetadata,\n\t  appendRequestOriginHeader,\n\t  TAOCheck,\n\t  corsCheck,\n\t  crossOriginResourcePolicyCheck,\n\t  createOpaqueTimingInfo,\n\t  setRequestReferrerPolicyOnRedirect,\n\t  isValidHTTPToken,\n\t  requestBadPort,\n\t  requestCurrentURL,\n\t  responseURL,\n\t  responseLocationURL,\n\t  isBlobLike,\n\t  isURLPotentiallyTrustworthy,\n\t  isValidReasonPhrase,\n\t  sameOrigin,\n\t  normalizeMethod,\n\t  serializeJavascriptValueToJSONString,\n\t  makeIterator,\n\t  isValidHeaderName,\n\t  isValidHeaderValue,\n\t  hasOwn,\n\t  isErrorLike,\n\t  fullyReadBody,\n\t  bytesMatch,\n\t  isReadableStreamLike,\n\t  readableStreamClose,\n\t  isomorphicEncode,\n\t  isomorphicDecode,\n\t  urlIsLocal,\n\t  urlHasHttpsScheme,\n\t  urlIsHttpHttpsScheme,\n\t  readAllBytes,\n\t  normalizeMethodRecord,\n\t  parseMetadata\n\t};\n\treturn util$b;\n}\n\nvar symbols$3;\nvar hasRequiredSymbols$3;\n\nfunction requireSymbols$3 () {\n\tif (hasRequiredSymbols$3) return symbols$3;\n\thasRequiredSymbols$3 = 1;\n\n\tsymbols$3 = {\n\t  kUrl: Symbol('url'),\n\t  kHeaders: Symbol('headers'),\n\t  kSignal: Symbol('signal'),\n\t  kState: Symbol('state'),\n\t  kGuard: Symbol('guard'),\n\t  kRealm: Symbol('realm')\n\t};\n\treturn symbols$3;\n}\n\nvar webidl_1;\nvar hasRequiredWebidl;\n\nfunction requireWebidl () {\n\tif (hasRequiredWebidl) return webidl_1;\n\thasRequiredWebidl = 1;\n\n\tconst { types } = require$$0__default$1;\n\tconst { hasOwn, toUSVString } = requireUtil$b();\n\n\t/** @type {import('../../types/webidl').Webidl} */\n\tconst webidl = {};\n\twebidl.converters = {};\n\twebidl.util = {};\n\twebidl.errors = {};\n\n\twebidl.errors.exception = function (message) {\n\t  return new TypeError(`${message.header}: ${message.message}`)\n\t};\n\n\twebidl.errors.conversionFailed = function (context) {\n\t  const plural = context.types.length === 1 ? '' : ' one of';\n\t  const message =\n\t    `${context.argument} could not be converted to` +\n\t    `${plural}: ${context.types.join(', ')}.`;\n\n\t  return webidl.errors.exception({\n\t    header: context.prefix,\n\t    message\n\t  })\n\t};\n\n\twebidl.errors.invalidArgument = function (context) {\n\t  return webidl.errors.exception({\n\t    header: context.prefix,\n\t    message: `\"${context.value}\" is an invalid ${context.type}.`\n\t  })\n\t};\n\n\t// https://webidl.spec.whatwg.org/#implements\n\twebidl.brandCheck = function (V, I, opts = undefined) {\n\t  if (opts?.strict !== false && !(V instanceof I)) {\n\t    throw new TypeError('Illegal invocation')\n\t  } else {\n\t    return V?.[Symbol.toStringTag] === I.prototype[Symbol.toStringTag]\n\t  }\n\t};\n\n\twebidl.argumentLengthCheck = function ({ length }, min, ctx) {\n\t  if (length < min) {\n\t    throw webidl.errors.exception({\n\t      message: `${min} argument${min !== 1 ? 's' : ''} required, ` +\n\t               `but${length ? ' only' : ''} ${length} found.`,\n\t      ...ctx\n\t    })\n\t  }\n\t};\n\n\twebidl.illegalConstructor = function () {\n\t  throw webidl.errors.exception({\n\t    header: 'TypeError',\n\t    message: 'Illegal constructor'\n\t  })\n\t};\n\n\t// https://tc39.es/ecma262/#sec-ecmascript-data-types-and-values\n\twebidl.util.Type = function (V) {\n\t  switch (typeof V) {\n\t    case 'undefined': return 'Undefined'\n\t    case 'boolean': return 'Boolean'\n\t    case 'string': return 'String'\n\t    case 'symbol': return 'Symbol'\n\t    case 'number': return 'Number'\n\t    case 'bigint': return 'BigInt'\n\t    case 'function':\n\t    case 'object': {\n\t      if (V === null) {\n\t        return 'Null'\n\t      }\n\n\t      return 'Object'\n\t    }\n\t  }\n\t};\n\n\t// https://webidl.spec.whatwg.org/#abstract-opdef-converttoint\n\twebidl.util.ConvertToInt = function (V, bitLength, signedness, opts = {}) {\n\t  let upperBound;\n\t  let lowerBound;\n\n\t  // 1. If bitLength is 64, then:\n\t  if (bitLength === 64) {\n\t    // 1. Let upperBound be 2^53 − 1.\n\t    upperBound = Math.pow(2, 53) - 1;\n\n\t    // 2. If signedness is \"unsigned\", then let lowerBound be 0.\n\t    if (signedness === 'unsigned') {\n\t      lowerBound = 0;\n\t    } else {\n\t      // 3. Otherwise let lowerBound be −2^53 + 1.\n\t      lowerBound = Math.pow(-2, 53) + 1;\n\t    }\n\t  } else if (signedness === 'unsigned') {\n\t    // 2. Otherwise, if signedness is \"unsigned\", then:\n\n\t    // 1. Let lowerBound be 0.\n\t    lowerBound = 0;\n\n\t    // 2. Let upperBound be 2^bitLength − 1.\n\t    upperBound = Math.pow(2, bitLength) - 1;\n\t  } else {\n\t    // 3. Otherwise:\n\n\t    // 1. Let lowerBound be -2^bitLength − 1.\n\t    lowerBound = Math.pow(-2, bitLength) - 1;\n\n\t    // 2. Let upperBound be 2^bitLength − 1 − 1.\n\t    upperBound = Math.pow(2, bitLength - 1) - 1;\n\t  }\n\n\t  // 4. Let x be ? ToNumber(V).\n\t  let x = Number(V);\n\n\t  // 5. If x is −0, then set x to +0.\n\t  if (x === 0) {\n\t    x = 0;\n\t  }\n\n\t  // 6. If the conversion is to an IDL type associated\n\t  //    with the [EnforceRange] extended attribute, then:\n\t  if (opts.enforceRange === true) {\n\t    // 1. If x is NaN, +∞, or −∞, then throw a TypeError.\n\t    if (\n\t      Number.isNaN(x) ||\n\t      x === Number.POSITIVE_INFINITY ||\n\t      x === Number.NEGATIVE_INFINITY\n\t    ) {\n\t      throw webidl.errors.exception({\n\t        header: 'Integer conversion',\n\t        message: `Could not convert ${V} to an integer.`\n\t      })\n\t    }\n\n\t    // 2. Set x to IntegerPart(x).\n\t    x = webidl.util.IntegerPart(x);\n\n\t    // 3. If x < lowerBound or x > upperBound, then\n\t    //    throw a TypeError.\n\t    if (x < lowerBound || x > upperBound) {\n\t      throw webidl.errors.exception({\n\t        header: 'Integer conversion',\n\t        message: `Value must be between ${lowerBound}-${upperBound}, got ${x}.`\n\t      })\n\t    }\n\n\t    // 4. Return x.\n\t    return x\n\t  }\n\n\t  // 7. If x is not NaN and the conversion is to an IDL\n\t  //    type associated with the [Clamp] extended\n\t  //    attribute, then:\n\t  if (!Number.isNaN(x) && opts.clamp === true) {\n\t    // 1. Set x to min(max(x, lowerBound), upperBound).\n\t    x = Math.min(Math.max(x, lowerBound), upperBound);\n\n\t    // 2. Round x to the nearest integer, choosing the\n\t    //    even integer if it lies halfway between two,\n\t    //    and choosing +0 rather than −0.\n\t    if (Math.floor(x) % 2 === 0) {\n\t      x = Math.floor(x);\n\t    } else {\n\t      x = Math.ceil(x);\n\t    }\n\n\t    // 3. Return x.\n\t    return x\n\t  }\n\n\t  // 8. If x is NaN, +0, +∞, or −∞, then return +0.\n\t  if (\n\t    Number.isNaN(x) ||\n\t    (x === 0 && Object.is(0, x)) ||\n\t    x === Number.POSITIVE_INFINITY ||\n\t    x === Number.NEGATIVE_INFINITY\n\t  ) {\n\t    return 0\n\t  }\n\n\t  // 9. Set x to IntegerPart(x).\n\t  x = webidl.util.IntegerPart(x);\n\n\t  // 10. Set x to x modulo 2^bitLength.\n\t  x = x % Math.pow(2, bitLength);\n\n\t  // 11. If signedness is \"signed\" and x ≥ 2^bitLength − 1,\n\t  //    then return x − 2^bitLength.\n\t  if (signedness === 'signed' && x >= Math.pow(2, bitLength) - 1) {\n\t    return x - Math.pow(2, bitLength)\n\t  }\n\n\t  // 12. Otherwise, return x.\n\t  return x\n\t};\n\n\t// https://webidl.spec.whatwg.org/#abstract-opdef-integerpart\n\twebidl.util.IntegerPart = function (n) {\n\t  // 1. Let r be floor(abs(n)).\n\t  const r = Math.floor(Math.abs(n));\n\n\t  // 2. If n < 0, then return -1 × r.\n\t  if (n < 0) {\n\t    return -1 * r\n\t  }\n\n\t  // 3. Otherwise, return r.\n\t  return r\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-sequence\n\twebidl.sequenceConverter = function (converter) {\n\t  return (V) => {\n\t    // 1. If Type(V) is not Object, throw a TypeError.\n\t    if (webidl.util.Type(V) !== 'Object') {\n\t      throw webidl.errors.exception({\n\t        header: 'Sequence',\n\t        message: `Value of type ${webidl.util.Type(V)} is not an Object.`\n\t      })\n\t    }\n\n\t    // 2. Let method be ? GetMethod(V, @@iterator).\n\t    /** @type {Generator} */\n\t    const method = V?.[Symbol.iterator]?.();\n\t    const seq = [];\n\n\t    // 3. If method is undefined, throw a TypeError.\n\t    if (\n\t      method === undefined ||\n\t      typeof method.next !== 'function'\n\t    ) {\n\t      throw webidl.errors.exception({\n\t        header: 'Sequence',\n\t        message: 'Object is not an iterator.'\n\t      })\n\t    }\n\n\t    // https://webidl.spec.whatwg.org/#create-sequence-from-iterable\n\t    while (true) {\n\t      const { done, value } = method.next();\n\n\t      if (done) {\n\t        break\n\t      }\n\n\t      seq.push(converter(value));\n\t    }\n\n\t    return seq\n\t  }\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-to-record\n\twebidl.recordConverter = function (keyConverter, valueConverter) {\n\t  return (O) => {\n\t    // 1. If Type(O) is not Object, throw a TypeError.\n\t    if (webidl.util.Type(O) !== 'Object') {\n\t      throw webidl.errors.exception({\n\t        header: 'Record',\n\t        message: `Value of type ${webidl.util.Type(O)} is not an Object.`\n\t      })\n\t    }\n\n\t    // 2. Let result be a new empty instance of record<K, V>.\n\t    const result = {};\n\n\t    if (!types.isProxy(O)) {\n\t      // Object.keys only returns enumerable properties\n\t      const keys = Object.keys(O);\n\n\t      for (const key of keys) {\n\t        // 1. Let typedKey be key converted to an IDL value of type K.\n\t        const typedKey = keyConverter(key);\n\n\t        // 2. Let value be ? Get(O, key).\n\t        // 3. Let typedValue be value converted to an IDL value of type V.\n\t        const typedValue = valueConverter(O[key]);\n\n\t        // 4. Set result[typedKey] to typedValue.\n\t        result[typedKey] = typedValue;\n\t      }\n\n\t      // 5. Return result.\n\t      return result\n\t    }\n\n\t    // 3. Let keys be ? O.[[OwnPropertyKeys]]().\n\t    const keys = Reflect.ownKeys(O);\n\n\t    // 4. For each key of keys.\n\t    for (const key of keys) {\n\t      // 1. Let desc be ? O.[[GetOwnProperty]](key).\n\t      const desc = Reflect.getOwnPropertyDescriptor(O, key);\n\n\t      // 2. If desc is not undefined and desc.[[Enumerable]] is true:\n\t      if (desc?.enumerable) {\n\t        // 1. Let typedKey be key converted to an IDL value of type K.\n\t        const typedKey = keyConverter(key);\n\n\t        // 2. Let value be ? Get(O, key).\n\t        // 3. Let typedValue be value converted to an IDL value of type V.\n\t        const typedValue = valueConverter(O[key]);\n\n\t        // 4. Set result[typedKey] to typedValue.\n\t        result[typedKey] = typedValue;\n\t      }\n\t    }\n\n\t    // 5. Return result.\n\t    return result\n\t  }\n\t};\n\n\twebidl.interfaceConverter = function (i) {\n\t  return (V, opts = {}) => {\n\t    if (opts.strict !== false && !(V instanceof i)) {\n\t      throw webidl.errors.exception({\n\t        header: i.name,\n\t        message: `Expected ${V} to be an instance of ${i.name}.`\n\t      })\n\t    }\n\n\t    return V\n\t  }\n\t};\n\n\twebidl.dictionaryConverter = function (converters) {\n\t  return (dictionary) => {\n\t    const type = webidl.util.Type(dictionary);\n\t    const dict = {};\n\n\t    if (type === 'Null' || type === 'Undefined') {\n\t      return dict\n\t    } else if (type !== 'Object') {\n\t      throw webidl.errors.exception({\n\t        header: 'Dictionary',\n\t        message: `Expected ${dictionary} to be one of: Null, Undefined, Object.`\n\t      })\n\t    }\n\n\t    for (const options of converters) {\n\t      const { key, defaultValue, required, converter } = options;\n\n\t      if (required === true) {\n\t        if (!hasOwn(dictionary, key)) {\n\t          throw webidl.errors.exception({\n\t            header: 'Dictionary',\n\t            message: `Missing required key \"${key}\".`\n\t          })\n\t        }\n\t      }\n\n\t      let value = dictionary[key];\n\t      const hasDefault = hasOwn(options, 'defaultValue');\n\n\t      // Only use defaultValue if value is undefined and\n\t      // a defaultValue options was provided.\n\t      if (hasDefault && value !== null) {\n\t        value = value ?? defaultValue;\n\t      }\n\n\t      // A key can be optional and have no default value.\n\t      // When this happens, do not perform a conversion,\n\t      // and do not assign the key a value.\n\t      if (required || hasDefault || value !== undefined) {\n\t        value = converter(value);\n\n\t        if (\n\t          options.allowedValues &&\n\t          !options.allowedValues.includes(value)\n\t        ) {\n\t          throw webidl.errors.exception({\n\t            header: 'Dictionary',\n\t            message: `${value} is not an accepted type. Expected one of ${options.allowedValues.join(', ')}.`\n\t          })\n\t        }\n\n\t        dict[key] = value;\n\t      }\n\t    }\n\n\t    return dict\n\t  }\n\t};\n\n\twebidl.nullableConverter = function (converter) {\n\t  return (V) => {\n\t    if (V === null) {\n\t      return V\n\t    }\n\n\t    return converter(V)\n\t  }\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-DOMString\n\twebidl.converters.DOMString = function (V, opts = {}) {\n\t  // 1. If V is null and the conversion is to an IDL type\n\t  //    associated with the [LegacyNullToEmptyString]\n\t  //    extended attribute, then return the DOMString value\n\t  //    that represents the empty string.\n\t  if (V === null && opts.legacyNullToEmptyString) {\n\t    return ''\n\t  }\n\n\t  // 2. Let x be ? ToString(V).\n\t  if (typeof V === 'symbol') {\n\t    throw new TypeError('Could not convert argument of type symbol to string.')\n\t  }\n\n\t  // 3. Return the IDL DOMString value that represents the\n\t  //    same sequence of code units as the one the\n\t  //    ECMAScript String value x represents.\n\t  return String(V)\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-ByteString\n\twebidl.converters.ByteString = function (V) {\n\t  // 1. Let x be ? ToString(V).\n\t  // Note: DOMString converter perform ? ToString(V)\n\t  const x = webidl.converters.DOMString(V);\n\n\t  // 2. If the value of any element of x is greater than\n\t  //    255, then throw a TypeError.\n\t  for (let index = 0; index < x.length; index++) {\n\t    if (x.charCodeAt(index) > 255) {\n\t      throw new TypeError(\n\t        'Cannot convert argument to a ByteString because the character at ' +\n\t        `index ${index} has a value of ${x.charCodeAt(index)} which is greater than 255.`\n\t      )\n\t    }\n\t  }\n\n\t  // 3. Return an IDL ByteString value whose length is the\n\t  //    length of x, and where the value of each element is\n\t  //    the value of the corresponding element of x.\n\t  return x\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-USVString\n\twebidl.converters.USVString = toUSVString;\n\n\t// https://webidl.spec.whatwg.org/#es-boolean\n\twebidl.converters.boolean = function (V) {\n\t  // 1. Let x be the result of computing ToBoolean(V).\n\t  const x = Boolean(V);\n\n\t  // 2. Return the IDL boolean value that is the one that represents\n\t  //    the same truth value as the ECMAScript Boolean value x.\n\t  return x\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-any\n\twebidl.converters.any = function (V) {\n\t  return V\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-long-long\n\twebidl.converters['long long'] = function (V) {\n\t  // 1. Let x be ? ConvertToInt(V, 64, \"signed\").\n\t  const x = webidl.util.ConvertToInt(V, 64, 'signed');\n\n\t  // 2. Return the IDL long long value that represents\n\t  //    the same numeric value as x.\n\t  return x\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-unsigned-long-long\n\twebidl.converters['unsigned long long'] = function (V) {\n\t  // 1. Let x be ? ConvertToInt(V, 64, \"unsigned\").\n\t  const x = webidl.util.ConvertToInt(V, 64, 'unsigned');\n\n\t  // 2. Return the IDL unsigned long long value that\n\t  //    represents the same numeric value as x.\n\t  return x\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-unsigned-long\n\twebidl.converters['unsigned long'] = function (V) {\n\t  // 1. Let x be ? ConvertToInt(V, 32, \"unsigned\").\n\t  const x = webidl.util.ConvertToInt(V, 32, 'unsigned');\n\n\t  // 2. Return the IDL unsigned long value that\n\t  //    represents the same numeric value as x.\n\t  return x\n\t};\n\n\t// https://webidl.spec.whatwg.org/#es-unsigned-short\n\twebidl.converters['unsigned short'] = function (V, opts) {\n\t  // 1. Let x be ? ConvertToInt(V, 16, \"unsigned\").\n\t  const x = webidl.util.ConvertToInt(V, 16, 'unsigned', opts);\n\n\t  // 2. Return the IDL unsigned short value that represents\n\t  //    the same numeric value as x.\n\t  return x\n\t};\n\n\t// https://webidl.spec.whatwg.org/#idl-ArrayBuffer\n\twebidl.converters.ArrayBuffer = function (V, opts = {}) {\n\t  // 1. If Type(V) is not Object, or V does not have an\n\t  //    [[ArrayBufferData]] internal slot, then throw a\n\t  //    TypeError.\n\t  // see: https://tc39.es/ecma262/#sec-properties-of-the-arraybuffer-instances\n\t  // see: https://tc39.es/ecma262/#sec-properties-of-the-sharedarraybuffer-instances\n\t  if (\n\t    webidl.util.Type(V) !== 'Object' ||\n\t    !types.isAnyArrayBuffer(V)\n\t  ) {\n\t    throw webidl.errors.conversionFailed({\n\t      prefix: `${V}`,\n\t      argument: `${V}`,\n\t      types: ['ArrayBuffer']\n\t    })\n\t  }\n\n\t  // 2. If the conversion is not to an IDL type associated\n\t  //    with the [AllowShared] extended attribute, and\n\t  //    IsSharedArrayBuffer(V) is true, then throw a\n\t  //    TypeError.\n\t  if (opts.allowShared === false && types.isSharedArrayBuffer(V)) {\n\t    throw webidl.errors.exception({\n\t      header: 'ArrayBuffer',\n\t      message: 'SharedArrayBuffer is not allowed.'\n\t    })\n\t  }\n\n\t  // 3. If the conversion is not to an IDL type associated\n\t  //    with the [AllowResizable] extended attribute, and\n\t  //    IsResizableArrayBuffer(V) is true, then throw a\n\t  //    TypeError.\n\t  // Note: resizable ArrayBuffers are currently a proposal.\n\n\t  // 4. Return the IDL ArrayBuffer value that is a\n\t  //    reference to the same object as V.\n\t  return V\n\t};\n\n\twebidl.converters.TypedArray = function (V, T, opts = {}) {\n\t  // 1. Let T be the IDL type V is being converted to.\n\n\t  // 2. If Type(V) is not Object, or V does not have a\n\t  //    [[TypedArrayName]] internal slot with a value\n\t  //    equal to T’s name, then throw a TypeError.\n\t  if (\n\t    webidl.util.Type(V) !== 'Object' ||\n\t    !types.isTypedArray(V) ||\n\t    V.constructor.name !== T.name\n\t  ) {\n\t    throw webidl.errors.conversionFailed({\n\t      prefix: `${T.name}`,\n\t      argument: `${V}`,\n\t      types: [T.name]\n\t    })\n\t  }\n\n\t  // 3. If the conversion is not to an IDL type associated\n\t  //    with the [AllowShared] extended attribute, and\n\t  //    IsSharedArrayBuffer(V.[[ViewedArrayBuffer]]) is\n\t  //    true, then throw a TypeError.\n\t  if (opts.allowShared === false && types.isSharedArrayBuffer(V.buffer)) {\n\t    throw webidl.errors.exception({\n\t      header: 'ArrayBuffer',\n\t      message: 'SharedArrayBuffer is not allowed.'\n\t    })\n\t  }\n\n\t  // 4. If the conversion is not to an IDL type associated\n\t  //    with the [AllowResizable] extended attribute, and\n\t  //    IsResizableArrayBuffer(V.[[ViewedArrayBuffer]]) is\n\t  //    true, then throw a TypeError.\n\t  // Note: resizable array buffers are currently a proposal\n\n\t  // 5. Return the IDL value of type T that is a reference\n\t  //    to the same object as V.\n\t  return V\n\t};\n\n\twebidl.converters.DataView = function (V, opts = {}) {\n\t  // 1. If Type(V) is not Object, or V does not have a\n\t  //    [[DataView]] internal slot, then throw a TypeError.\n\t  if (webidl.util.Type(V) !== 'Object' || !types.isDataView(V)) {\n\t    throw webidl.errors.exception({\n\t      header: 'DataView',\n\t      message: 'Object is not a DataView.'\n\t    })\n\t  }\n\n\t  // 2. If the conversion is not to an IDL type associated\n\t  //    with the [AllowShared] extended attribute, and\n\t  //    IsSharedArrayBuffer(V.[[ViewedArrayBuffer]]) is true,\n\t  //    then throw a TypeError.\n\t  if (opts.allowShared === false && types.isSharedArrayBuffer(V.buffer)) {\n\t    throw webidl.errors.exception({\n\t      header: 'ArrayBuffer',\n\t      message: 'SharedArrayBuffer is not allowed.'\n\t    })\n\t  }\n\n\t  // 3. If the conversion is not to an IDL type associated\n\t  //    with the [AllowResizable] extended attribute, and\n\t  //    IsResizableArrayBuffer(V.[[ViewedArrayBuffer]]) is\n\t  //    true, then throw a TypeError.\n\t  // Note: resizable ArrayBuffers are currently a proposal\n\n\t  // 4. Return the IDL DataView value that is a reference\n\t  //    to the same object as V.\n\t  return V\n\t};\n\n\t// https://webidl.spec.whatwg.org/#BufferSource\n\twebidl.converters.BufferSource = function (V, opts = {}) {\n\t  if (types.isAnyArrayBuffer(V)) {\n\t    return webidl.converters.ArrayBuffer(V, opts)\n\t  }\n\n\t  if (types.isTypedArray(V)) {\n\t    return webidl.converters.TypedArray(V, V.constructor)\n\t  }\n\n\t  if (types.isDataView(V)) {\n\t    return webidl.converters.DataView(V, opts)\n\t  }\n\n\t  throw new TypeError(`Could not convert ${V} to a BufferSource.`)\n\t};\n\n\twebidl.converters['sequence<ByteString>'] = webidl.sequenceConverter(\n\t  webidl.converters.ByteString\n\t);\n\n\twebidl.converters['sequence<sequence<ByteString>>'] = webidl.sequenceConverter(\n\t  webidl.converters['sequence<ByteString>']\n\t);\n\n\twebidl.converters['record<ByteString, ByteString>'] = webidl.recordConverter(\n\t  webidl.converters.ByteString,\n\t  webidl.converters.ByteString\n\t);\n\n\twebidl_1 = {\n\t  webidl\n\t};\n\treturn webidl_1;\n}\n\nvar dataURL;\nvar hasRequiredDataURL;\n\nfunction requireDataURL () {\n\tif (hasRequiredDataURL) return dataURL;\n\thasRequiredDataURL = 1;\n\tconst assert = require$$0$9;\n\tconst { atob } = require$$0$8;\n\tconst { isomorphicDecode } = requireUtil$b();\n\n\tconst encoder = new TextEncoder();\n\n\t/**\n\t * @see https://mimesniff.spec.whatwg.org/#http-token-code-point\n\t */\n\tconst HTTP_TOKEN_CODEPOINTS = /^[!#$%&'*+-.^_|~A-Za-z0-9]+$/;\n\tconst HTTP_WHITESPACE_REGEX = /(\\u000A|\\u000D|\\u0009|\\u0020)/; // eslint-disable-line\n\t/**\n\t * @see https://mimesniff.spec.whatwg.org/#http-quoted-string-token-code-point\n\t */\n\tconst HTTP_QUOTED_STRING_TOKENS = /[\\u0009|\\u0020-\\u007E|\\u0080-\\u00FF]/; // eslint-disable-line\n\n\t// https://fetch.spec.whatwg.org/#data-url-processor\n\t/** @param {URL} dataURL */\n\tfunction dataURLProcessor (dataURL) {\n\t  // 1. Assert: dataURL’s scheme is \"data\".\n\t  assert(dataURL.protocol === 'data:');\n\n\t  // 2. Let input be the result of running the URL\n\t  // serializer on dataURL with exclude fragment\n\t  // set to true.\n\t  let input = URLSerializer(dataURL, true);\n\n\t  // 3. Remove the leading \"data:\" string from input.\n\t  input = input.slice(5);\n\n\t  // 4. Let position point at the start of input.\n\t  const position = { position: 0 };\n\n\t  // 5. Let mimeType be the result of collecting a\n\t  // sequence of code points that are not equal\n\t  // to U+002C (,), given position.\n\t  let mimeType = collectASequenceOfCodePointsFast(\n\t    ',',\n\t    input,\n\t    position\n\t  );\n\n\t  // 6. Strip leading and trailing ASCII whitespace\n\t  // from mimeType.\n\t  // Undici implementation note: we need to store the\n\t  // length because if the mimetype has spaces removed,\n\t  // the wrong amount will be sliced from the input in\n\t  // step #9\n\t  const mimeTypeLength = mimeType.length;\n\t  mimeType = removeASCIIWhitespace(mimeType, true, true);\n\n\t  // 7. If position is past the end of input, then\n\t  // return failure\n\t  if (position.position >= input.length) {\n\t    return 'failure'\n\t  }\n\n\t  // 8. Advance position by 1.\n\t  position.position++;\n\n\t  // 9. Let encodedBody be the remainder of input.\n\t  const encodedBody = input.slice(mimeTypeLength + 1);\n\n\t  // 10. Let body be the percent-decoding of encodedBody.\n\t  let body = stringPercentDecode(encodedBody);\n\n\t  // 11. If mimeType ends with U+003B (;), followed by\n\t  // zero or more U+0020 SPACE, followed by an ASCII\n\t  // case-insensitive match for \"base64\", then:\n\t  if (/;(\\u0020){0,}base64$/i.test(mimeType)) {\n\t    // 1. Let stringBody be the isomorphic decode of body.\n\t    const stringBody = isomorphicDecode(body);\n\n\t    // 2. Set body to the forgiving-base64 decode of\n\t    // stringBody.\n\t    body = forgivingBase64(stringBody);\n\n\t    // 3. If body is failure, then return failure.\n\t    if (body === 'failure') {\n\t      return 'failure'\n\t    }\n\n\t    // 4. Remove the last 6 code points from mimeType.\n\t    mimeType = mimeType.slice(0, -6);\n\n\t    // 5. Remove trailing U+0020 SPACE code points from mimeType,\n\t    // if any.\n\t    mimeType = mimeType.replace(/(\\u0020)+$/, '');\n\n\t    // 6. Remove the last U+003B (;) code point from mimeType.\n\t    mimeType = mimeType.slice(0, -1);\n\t  }\n\n\t  // 12. If mimeType starts with U+003B (;), then prepend\n\t  // \"text/plain\" to mimeType.\n\t  if (mimeType.startsWith(';')) {\n\t    mimeType = 'text/plain' + mimeType;\n\t  }\n\n\t  // 13. Let mimeTypeRecord be the result of parsing\n\t  // mimeType.\n\t  let mimeTypeRecord = parseMIMEType(mimeType);\n\n\t  // 14. If mimeTypeRecord is failure, then set\n\t  // mimeTypeRecord to text/plain;charset=US-ASCII.\n\t  if (mimeTypeRecord === 'failure') {\n\t    mimeTypeRecord = parseMIMEType('text/plain;charset=US-ASCII');\n\t  }\n\n\t  // 15. Return a new data: URL struct whose MIME\n\t  // type is mimeTypeRecord and body is body.\n\t  // https://fetch.spec.whatwg.org/#data-url-struct\n\t  return { mimeType: mimeTypeRecord, body }\n\t}\n\n\t// https://url.spec.whatwg.org/#concept-url-serializer\n\t/**\n\t * @param {URL} url\n\t * @param {boolean} excludeFragment\n\t */\n\tfunction URLSerializer (url, excludeFragment = false) {\n\t  if (!excludeFragment) {\n\t    return url.href\n\t  }\n\n\t  const href = url.href;\n\t  const hashLength = url.hash.length;\n\n\t  return hashLength === 0 ? href : href.substring(0, href.length - hashLength)\n\t}\n\n\t// https://infra.spec.whatwg.org/#collect-a-sequence-of-code-points\n\t/**\n\t * @param {(char: string) => boolean} condition\n\t * @param {string} input\n\t * @param {{ position: number }} position\n\t */\n\tfunction collectASequenceOfCodePoints (condition, input, position) {\n\t  // 1. Let result be the empty string.\n\t  let result = '';\n\n\t  // 2. While position doesn’t point past the end of input and the\n\t  // code point at position within input meets the condition condition:\n\t  while (position.position < input.length && condition(input[position.position])) {\n\t    // 1. Append that code point to the end of result.\n\t    result += input[position.position];\n\n\t    // 2. Advance position by 1.\n\t    position.position++;\n\t  }\n\n\t  // 3. Return result.\n\t  return result\n\t}\n\n\t/**\n\t * A faster collectASequenceOfCodePoints that only works when comparing a single character.\n\t * @param {string} char\n\t * @param {string} input\n\t * @param {{ position: number }} position\n\t */\n\tfunction collectASequenceOfCodePointsFast (char, input, position) {\n\t  const idx = input.indexOf(char, position.position);\n\t  const start = position.position;\n\n\t  if (idx === -1) {\n\t    position.position = input.length;\n\t    return input.slice(start)\n\t  }\n\n\t  position.position = idx;\n\t  return input.slice(start, position.position)\n\t}\n\n\t// https://url.spec.whatwg.org/#string-percent-decode\n\t/** @param {string} input */\n\tfunction stringPercentDecode (input) {\n\t  // 1. Let bytes be the UTF-8 encoding of input.\n\t  const bytes = encoder.encode(input);\n\n\t  // 2. Return the percent-decoding of bytes.\n\t  return percentDecode(bytes)\n\t}\n\n\t// https://url.spec.whatwg.org/#percent-decode\n\t/** @param {Uint8Array} input */\n\tfunction percentDecode (input) {\n\t  // 1. Let output be an empty byte sequence.\n\t  /** @type {number[]} */\n\t  const output = [];\n\n\t  // 2. For each byte byte in input:\n\t  for (let i = 0; i < input.length; i++) {\n\t    const byte = input[i];\n\n\t    // 1. If byte is not 0x25 (%), then append byte to output.\n\t    if (byte !== 0x25) {\n\t      output.push(byte);\n\n\t    // 2. Otherwise, if byte is 0x25 (%) and the next two bytes\n\t    // after byte in input are not in the ranges\n\t    // 0x30 (0) to 0x39 (9), 0x41 (A) to 0x46 (F),\n\t    // and 0x61 (a) to 0x66 (f), all inclusive, append byte\n\t    // to output.\n\t    } else if (\n\t      byte === 0x25 &&\n\t      !/^[0-9A-Fa-f]{2}$/i.test(String.fromCharCode(input[i + 1], input[i + 2]))\n\t    ) {\n\t      output.push(0x25);\n\n\t    // 3. Otherwise:\n\t    } else {\n\t      // 1. Let bytePoint be the two bytes after byte in input,\n\t      // decoded, and then interpreted as hexadecimal number.\n\t      const nextTwoBytes = String.fromCharCode(input[i + 1], input[i + 2]);\n\t      const bytePoint = Number.parseInt(nextTwoBytes, 16);\n\n\t      // 2. Append a byte whose value is bytePoint to output.\n\t      output.push(bytePoint);\n\n\t      // 3. Skip the next two bytes in input.\n\t      i += 2;\n\t    }\n\t  }\n\n\t  // 3. Return output.\n\t  return Uint8Array.from(output)\n\t}\n\n\t// https://mimesniff.spec.whatwg.org/#parse-a-mime-type\n\t/** @param {string} input */\n\tfunction parseMIMEType (input) {\n\t  // 1. Remove any leading and trailing HTTP whitespace\n\t  // from input.\n\t  input = removeHTTPWhitespace(input, true, true);\n\n\t  // 2. Let position be a position variable for input,\n\t  // initially pointing at the start of input.\n\t  const position = { position: 0 };\n\n\t  // 3. Let type be the result of collecting a sequence\n\t  // of code points that are not U+002F (/) from\n\t  // input, given position.\n\t  const type = collectASequenceOfCodePointsFast(\n\t    '/',\n\t    input,\n\t    position\n\t  );\n\n\t  // 4. If type is the empty string or does not solely\n\t  // contain HTTP token code points, then return failure.\n\t  // https://mimesniff.spec.whatwg.org/#http-token-code-point\n\t  if (type.length === 0 || !HTTP_TOKEN_CODEPOINTS.test(type)) {\n\t    return 'failure'\n\t  }\n\n\t  // 5. If position is past the end of input, then return\n\t  // failure\n\t  if (position.position > input.length) {\n\t    return 'failure'\n\t  }\n\n\t  // 6. Advance position by 1. (This skips past U+002F (/).)\n\t  position.position++;\n\n\t  // 7. Let subtype be the result of collecting a sequence of\n\t  // code points that are not U+003B (;) from input, given\n\t  // position.\n\t  let subtype = collectASequenceOfCodePointsFast(\n\t    ';',\n\t    input,\n\t    position\n\t  );\n\n\t  // 8. Remove any trailing HTTP whitespace from subtype.\n\t  subtype = removeHTTPWhitespace(subtype, false, true);\n\n\t  // 9. If subtype is the empty string or does not solely\n\t  // contain HTTP token code points, then return failure.\n\t  if (subtype.length === 0 || !HTTP_TOKEN_CODEPOINTS.test(subtype)) {\n\t    return 'failure'\n\t  }\n\n\t  const typeLowercase = type.toLowerCase();\n\t  const subtypeLowercase = subtype.toLowerCase();\n\n\t  // 10. Let mimeType be a new MIME type record whose type\n\t  // is type, in ASCII lowercase, and subtype is subtype,\n\t  // in ASCII lowercase.\n\t  // https://mimesniff.spec.whatwg.org/#mime-type\n\t  const mimeType = {\n\t    type: typeLowercase,\n\t    subtype: subtypeLowercase,\n\t    /** @type {Map<string, string>} */\n\t    parameters: new Map(),\n\t    // https://mimesniff.spec.whatwg.org/#mime-type-essence\n\t    essence: `${typeLowercase}/${subtypeLowercase}`\n\t  };\n\n\t  // 11. While position is not past the end of input:\n\t  while (position.position < input.length) {\n\t    // 1. Advance position by 1. (This skips past U+003B (;).)\n\t    position.position++;\n\n\t    // 2. Collect a sequence of code points that are HTTP\n\t    // whitespace from input given position.\n\t    collectASequenceOfCodePoints(\n\t      // https://fetch.spec.whatwg.org/#http-whitespace\n\t      char => HTTP_WHITESPACE_REGEX.test(char),\n\t      input,\n\t      position\n\t    );\n\n\t    // 3. Let parameterName be the result of collecting a\n\t    // sequence of code points that are not U+003B (;)\n\t    // or U+003D (=) from input, given position.\n\t    let parameterName = collectASequenceOfCodePoints(\n\t      (char) => char !== ';' && char !== '=',\n\t      input,\n\t      position\n\t    );\n\n\t    // 4. Set parameterName to parameterName, in ASCII\n\t    // lowercase.\n\t    parameterName = parameterName.toLowerCase();\n\n\t    // 5. If position is not past the end of input, then:\n\t    if (position.position < input.length) {\n\t      // 1. If the code point at position within input is\n\t      // U+003B (;), then continue.\n\t      if (input[position.position] === ';') {\n\t        continue\n\t      }\n\n\t      // 2. Advance position by 1. (This skips past U+003D (=).)\n\t      position.position++;\n\t    }\n\n\t    // 6. If position is past the end of input, then break.\n\t    if (position.position > input.length) {\n\t      break\n\t    }\n\n\t    // 7. Let parameterValue be null.\n\t    let parameterValue = null;\n\n\t    // 8. If the code point at position within input is\n\t    // U+0022 (\"), then:\n\t    if (input[position.position] === '\"') {\n\t      // 1. Set parameterValue to the result of collecting\n\t      // an HTTP quoted string from input, given position\n\t      // and the extract-value flag.\n\t      parameterValue = collectAnHTTPQuotedString(input, position, true);\n\n\t      // 2. Collect a sequence of code points that are not\n\t      // U+003B (;) from input, given position.\n\t      collectASequenceOfCodePointsFast(\n\t        ';',\n\t        input,\n\t        position\n\t      );\n\n\t    // 9. Otherwise:\n\t    } else {\n\t      // 1. Set parameterValue to the result of collecting\n\t      // a sequence of code points that are not U+003B (;)\n\t      // from input, given position.\n\t      parameterValue = collectASequenceOfCodePointsFast(\n\t        ';',\n\t        input,\n\t        position\n\t      );\n\n\t      // 2. Remove any trailing HTTP whitespace from parameterValue.\n\t      parameterValue = removeHTTPWhitespace(parameterValue, false, true);\n\n\t      // 3. If parameterValue is the empty string, then continue.\n\t      if (parameterValue.length === 0) {\n\t        continue\n\t      }\n\t    }\n\n\t    // 10. If all of the following are true\n\t    // - parameterName is not the empty string\n\t    // - parameterName solely contains HTTP token code points\n\t    // - parameterValue solely contains HTTP quoted-string token code points\n\t    // - mimeType’s parameters[parameterName] does not exist\n\t    // then set mimeType’s parameters[parameterName] to parameterValue.\n\t    if (\n\t      parameterName.length !== 0 &&\n\t      HTTP_TOKEN_CODEPOINTS.test(parameterName) &&\n\t      (parameterValue.length === 0 || HTTP_QUOTED_STRING_TOKENS.test(parameterValue)) &&\n\t      !mimeType.parameters.has(parameterName)\n\t    ) {\n\t      mimeType.parameters.set(parameterName, parameterValue);\n\t    }\n\t  }\n\n\t  // 12. Return mimeType.\n\t  return mimeType\n\t}\n\n\t// https://infra.spec.whatwg.org/#forgiving-base64-decode\n\t/** @param {string} data */\n\tfunction forgivingBase64 (data) {\n\t  // 1. Remove all ASCII whitespace from data.\n\t  data = data.replace(/[\\u0009\\u000A\\u000C\\u000D\\u0020]/g, '');  // eslint-disable-line\n\n\t  // 2. If data’s code point length divides by 4 leaving\n\t  // no remainder, then:\n\t  if (data.length % 4 === 0) {\n\t    // 1. If data ends with one or two U+003D (=) code points,\n\t    // then remove them from data.\n\t    data = data.replace(/=?=$/, '');\n\t  }\n\n\t  // 3. If data’s code point length divides by 4 leaving\n\t  // a remainder of 1, then return failure.\n\t  if (data.length % 4 === 1) {\n\t    return 'failure'\n\t  }\n\n\t  // 4. If data contains a code point that is not one of\n\t  //  U+002B (+)\n\t  //  U+002F (/)\n\t  //  ASCII alphanumeric\n\t  // then return failure.\n\t  if (/[^+/0-9A-Za-z]/.test(data)) {\n\t    return 'failure'\n\t  }\n\n\t  const binary = atob(data);\n\t  const bytes = new Uint8Array(binary.length);\n\n\t  for (let byte = 0; byte < binary.length; byte++) {\n\t    bytes[byte] = binary.charCodeAt(byte);\n\t  }\n\n\t  return bytes\n\t}\n\n\t// https://fetch.spec.whatwg.org/#collect-an-http-quoted-string\n\t// tests: https://fetch.spec.whatwg.org/#example-http-quoted-string\n\t/**\n\t * @param {string} input\n\t * @param {{ position: number }} position\n\t * @param {boolean?} extractValue\n\t */\n\tfunction collectAnHTTPQuotedString (input, position, extractValue) {\n\t  // 1. Let positionStart be position.\n\t  const positionStart = position.position;\n\n\t  // 2. Let value be the empty string.\n\t  let value = '';\n\n\t  // 3. Assert: the code point at position within input\n\t  // is U+0022 (\").\n\t  assert(input[position.position] === '\"');\n\n\t  // 4. Advance position by 1.\n\t  position.position++;\n\n\t  // 5. While true:\n\t  while (true) {\n\t    // 1. Append the result of collecting a sequence of code points\n\t    // that are not U+0022 (\") or U+005C (\\) from input, given\n\t    // position, to value.\n\t    value += collectASequenceOfCodePoints(\n\t      (char) => char !== '\"' && char !== '\\\\',\n\t      input,\n\t      position\n\t    );\n\n\t    // 2. If position is past the end of input, then break.\n\t    if (position.position >= input.length) {\n\t      break\n\t    }\n\n\t    // 3. Let quoteOrBackslash be the code point at position within\n\t    // input.\n\t    const quoteOrBackslash = input[position.position];\n\n\t    // 4. Advance position by 1.\n\t    position.position++;\n\n\t    // 5. If quoteOrBackslash is U+005C (\\), then:\n\t    if (quoteOrBackslash === '\\\\') {\n\t      // 1. If position is past the end of input, then append\n\t      // U+005C (\\) to value and break.\n\t      if (position.position >= input.length) {\n\t        value += '\\\\';\n\t        break\n\t      }\n\n\t      // 2. Append the code point at position within input to value.\n\t      value += input[position.position];\n\n\t      // 3. Advance position by 1.\n\t      position.position++;\n\n\t    // 6. Otherwise:\n\t    } else {\n\t      // 1. Assert: quoteOrBackslash is U+0022 (\").\n\t      assert(quoteOrBackslash === '\"');\n\n\t      // 2. Break.\n\t      break\n\t    }\n\t  }\n\n\t  // 6. If the extract-value flag is set, then return value.\n\t  if (extractValue) {\n\t    return value\n\t  }\n\n\t  // 7. Return the code points from positionStart to position,\n\t  // inclusive, within input.\n\t  return input.slice(positionStart, position.position)\n\t}\n\n\t/**\n\t * @see https://mimesniff.spec.whatwg.org/#serialize-a-mime-type\n\t */\n\tfunction serializeAMimeType (mimeType) {\n\t  assert(mimeType !== 'failure');\n\t  const { parameters, essence } = mimeType;\n\n\t  // 1. Let serialization be the concatenation of mimeType’s\n\t  //    type, U+002F (/), and mimeType’s subtype.\n\t  let serialization = essence;\n\n\t  // 2. For each name → value of mimeType’s parameters:\n\t  for (let [name, value] of parameters.entries()) {\n\t    // 1. Append U+003B (;) to serialization.\n\t    serialization += ';';\n\n\t    // 2. Append name to serialization.\n\t    serialization += name;\n\n\t    // 3. Append U+003D (=) to serialization.\n\t    serialization += '=';\n\n\t    // 4. If value does not solely contain HTTP token code\n\t    //    points or value is the empty string, then:\n\t    if (!HTTP_TOKEN_CODEPOINTS.test(value)) {\n\t      // 1. Precede each occurence of U+0022 (\") or\n\t      //    U+005C (\\) in value with U+005C (\\).\n\t      value = value.replace(/(\\\\|\")/g, '\\\\$1');\n\n\t      // 2. Prepend U+0022 (\") to value.\n\t      value = '\"' + value;\n\n\t      // 3. Append U+0022 (\") to value.\n\t      value += '\"';\n\t    }\n\n\t    // 5. Append value to serialization.\n\t    serialization += value;\n\t  }\n\n\t  // 3. Return serialization.\n\t  return serialization\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#http-whitespace\n\t * @param {string} char\n\t */\n\tfunction isHTTPWhiteSpace (char) {\n\t  return char === '\\r' || char === '\\n' || char === '\\t' || char === ' '\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#http-whitespace\n\t * @param {string} str\n\t */\n\tfunction removeHTTPWhitespace (str, leading = true, trailing = true) {\n\t  let lead = 0;\n\t  let trail = str.length - 1;\n\n\t  if (leading) {\n\t    for (; lead < str.length && isHTTPWhiteSpace(str[lead]); lead++);\n\t  }\n\n\t  if (trailing) {\n\t    for (; trail > 0 && isHTTPWhiteSpace(str[trail]); trail--);\n\t  }\n\n\t  return str.slice(lead, trail + 1)\n\t}\n\n\t/**\n\t * @see https://infra.spec.whatwg.org/#ascii-whitespace\n\t * @param {string} char\n\t */\n\tfunction isASCIIWhitespace (char) {\n\t  return char === '\\r' || char === '\\n' || char === '\\t' || char === '\\f' || char === ' '\n\t}\n\n\t/**\n\t * @see https://infra.spec.whatwg.org/#strip-leading-and-trailing-ascii-whitespace\n\t */\n\tfunction removeASCIIWhitespace (str, leading = true, trailing = true) {\n\t  let lead = 0;\n\t  let trail = str.length - 1;\n\n\t  if (leading) {\n\t    for (; lead < str.length && isASCIIWhitespace(str[lead]); lead++);\n\t  }\n\n\t  if (trailing) {\n\t    for (; trail > 0 && isASCIIWhitespace(str[trail]); trail--);\n\t  }\n\n\t  return str.slice(lead, trail + 1)\n\t}\n\n\tdataURL = {\n\t  dataURLProcessor,\n\t  URLSerializer,\n\t  collectASequenceOfCodePoints,\n\t  collectASequenceOfCodePointsFast,\n\t  stringPercentDecode,\n\t  parseMIMEType,\n\t  collectAnHTTPQuotedString,\n\t  serializeAMimeType\n\t};\n\treturn dataURL;\n}\n\nvar file$1;\nvar hasRequiredFile$1;\n\nfunction requireFile$1 () {\n\tif (hasRequiredFile$1) return file$1;\n\thasRequiredFile$1 = 1;\n\n\tconst { Blob, File: NativeFile } = require$$0$8;\n\tconst { types } = require$$0__default$1;\n\tconst { kState } = requireSymbols$3();\n\tconst { isBlobLike } = requireUtil$b();\n\tconst { webidl } = requireWebidl();\n\tconst { parseMIMEType, serializeAMimeType } = requireDataURL();\n\tconst { kEnumerableProperty } = requireUtil$c();\n\tconst encoder = new TextEncoder();\n\n\tclass File extends Blob {\n\t  constructor (fileBits, fileName, options = {}) {\n\t    // The File constructor is invoked with two or three parameters, depending\n\t    // on whether the optional dictionary parameter is used. When the File()\n\t    // constructor is invoked, user agents must run the following steps:\n\t    webidl.argumentLengthCheck(arguments, 2, { header: 'File constructor' });\n\n\t    fileBits = webidl.converters['sequence<BlobPart>'](fileBits);\n\t    fileName = webidl.converters.USVString(fileName);\n\t    options = webidl.converters.FilePropertyBag(options);\n\n\t    // 1. Let bytes be the result of processing blob parts given fileBits and\n\t    // options.\n\t    // Note: Blob handles this for us\n\n\t    // 2. Let n be the fileName argument to the constructor.\n\t    const n = fileName;\n\n\t    // 3. Process FilePropertyBag dictionary argument by running the following\n\t    // substeps:\n\n\t    //    1. If the type member is provided and is not the empty string, let t\n\t    //    be set to the type dictionary member. If t contains any characters\n\t    //    outside the range U+0020 to U+007E, then set t to the empty string\n\t    //    and return from these substeps.\n\t    //    2. Convert every character in t to ASCII lowercase.\n\t    let t = options.type;\n\t    let d;\n\n\t    // eslint-disable-next-line no-labels\n\t    substep: {\n\t      if (t) {\n\t        t = parseMIMEType(t);\n\n\t        if (t === 'failure') {\n\t          t = '';\n\t          // eslint-disable-next-line no-labels\n\t          break substep\n\t        }\n\n\t        t = serializeAMimeType(t).toLowerCase();\n\t      }\n\n\t      //    3. If the lastModified member is provided, let d be set to the\n\t      //    lastModified dictionary member. If it is not provided, set d to the\n\t      //    current date and time represented as the number of milliseconds since\n\t      //    the Unix Epoch (which is the equivalent of Date.now() [ECMA-262]).\n\t      d = options.lastModified;\n\t    }\n\n\t    // 4. Return a new File object F such that:\n\t    // F refers to the bytes byte sequence.\n\t    // F.size is set to the number of total bytes in bytes.\n\t    // F.name is set to n.\n\t    // F.type is set to t.\n\t    // F.lastModified is set to d.\n\n\t    super(processBlobParts(fileBits, options), { type: t });\n\t    this[kState] = {\n\t      name: n,\n\t      lastModified: d,\n\t      type: t\n\t    };\n\t  }\n\n\t  get name () {\n\t    webidl.brandCheck(this, File);\n\n\t    return this[kState].name\n\t  }\n\n\t  get lastModified () {\n\t    webidl.brandCheck(this, File);\n\n\t    return this[kState].lastModified\n\t  }\n\n\t  get type () {\n\t    webidl.brandCheck(this, File);\n\n\t    return this[kState].type\n\t  }\n\t}\n\n\tclass FileLike {\n\t  constructor (blobLike, fileName, options = {}) {\n\t    // TODO: argument idl type check\n\n\t    // The File constructor is invoked with two or three parameters, depending\n\t    // on whether the optional dictionary parameter is used. When the File()\n\t    // constructor is invoked, user agents must run the following steps:\n\n\t    // 1. Let bytes be the result of processing blob parts given fileBits and\n\t    // options.\n\n\t    // 2. Let n be the fileName argument to the constructor.\n\t    const n = fileName;\n\n\t    // 3. Process FilePropertyBag dictionary argument by running the following\n\t    // substeps:\n\n\t    //    1. If the type member is provided and is not the empty string, let t\n\t    //    be set to the type dictionary member. If t contains any characters\n\t    //    outside the range U+0020 to U+007E, then set t to the empty string\n\t    //    and return from these substeps.\n\t    //    TODO\n\t    const t = options.type;\n\n\t    //    2. Convert every character in t to ASCII lowercase.\n\t    //    TODO\n\n\t    //    3. If the lastModified member is provided, let d be set to the\n\t    //    lastModified dictionary member. If it is not provided, set d to the\n\t    //    current date and time represented as the number of milliseconds since\n\t    //    the Unix Epoch (which is the equivalent of Date.now() [ECMA-262]).\n\t    const d = options.lastModified ?? Date.now();\n\n\t    // 4. Return a new File object F such that:\n\t    // F refers to the bytes byte sequence.\n\t    // F.size is set to the number of total bytes in bytes.\n\t    // F.name is set to n.\n\t    // F.type is set to t.\n\t    // F.lastModified is set to d.\n\n\t    this[kState] = {\n\t      blobLike,\n\t      name: n,\n\t      type: t,\n\t      lastModified: d\n\t    };\n\t  }\n\n\t  stream (...args) {\n\t    webidl.brandCheck(this, FileLike);\n\n\t    return this[kState].blobLike.stream(...args)\n\t  }\n\n\t  arrayBuffer (...args) {\n\t    webidl.brandCheck(this, FileLike);\n\n\t    return this[kState].blobLike.arrayBuffer(...args)\n\t  }\n\n\t  slice (...args) {\n\t    webidl.brandCheck(this, FileLike);\n\n\t    return this[kState].blobLike.slice(...args)\n\t  }\n\n\t  text (...args) {\n\t    webidl.brandCheck(this, FileLike);\n\n\t    return this[kState].blobLike.text(...args)\n\t  }\n\n\t  get size () {\n\t    webidl.brandCheck(this, FileLike);\n\n\t    return this[kState].blobLike.size\n\t  }\n\n\t  get type () {\n\t    webidl.brandCheck(this, FileLike);\n\n\t    return this[kState].blobLike.type\n\t  }\n\n\t  get name () {\n\t    webidl.brandCheck(this, FileLike);\n\n\t    return this[kState].name\n\t  }\n\n\t  get lastModified () {\n\t    webidl.brandCheck(this, FileLike);\n\n\t    return this[kState].lastModified\n\t  }\n\n\t  get [Symbol.toStringTag] () {\n\t    return 'File'\n\t  }\n\t}\n\n\tObject.defineProperties(File.prototype, {\n\t  [Symbol.toStringTag]: {\n\t    value: 'File',\n\t    configurable: true\n\t  },\n\t  name: kEnumerableProperty,\n\t  lastModified: kEnumerableProperty\n\t});\n\n\twebidl.converters.Blob = webidl.interfaceConverter(Blob);\n\n\twebidl.converters.BlobPart = function (V, opts) {\n\t  if (webidl.util.Type(V) === 'Object') {\n\t    if (isBlobLike(V)) {\n\t      return webidl.converters.Blob(V, { strict: false })\n\t    }\n\n\t    if (\n\t      ArrayBuffer.isView(V) ||\n\t      types.isAnyArrayBuffer(V)\n\t    ) {\n\t      return webidl.converters.BufferSource(V, opts)\n\t    }\n\t  }\n\n\t  return webidl.converters.USVString(V, opts)\n\t};\n\n\twebidl.converters['sequence<BlobPart>'] = webidl.sequenceConverter(\n\t  webidl.converters.BlobPart\n\t);\n\n\t// https://www.w3.org/TR/FileAPI/#dfn-FilePropertyBag\n\twebidl.converters.FilePropertyBag = webidl.dictionaryConverter([\n\t  {\n\t    key: 'lastModified',\n\t    converter: webidl.converters['long long'],\n\t    get defaultValue () {\n\t      return Date.now()\n\t    }\n\t  },\n\t  {\n\t    key: 'type',\n\t    converter: webidl.converters.DOMString,\n\t    defaultValue: ''\n\t  },\n\t  {\n\t    key: 'endings',\n\t    converter: (value) => {\n\t      value = webidl.converters.DOMString(value);\n\t      value = value.toLowerCase();\n\n\t      if (value !== 'native') {\n\t        value = 'transparent';\n\t      }\n\n\t      return value\n\t    },\n\t    defaultValue: 'transparent'\n\t  }\n\t]);\n\n\t/**\n\t * @see https://www.w3.org/TR/FileAPI/#process-blob-parts\n\t * @param {(NodeJS.TypedArray|Blob|string)[]} parts\n\t * @param {{ type: string, endings: string }} options\n\t */\n\tfunction processBlobParts (parts, options) {\n\t  // 1. Let bytes be an empty sequence of bytes.\n\t  /** @type {NodeJS.TypedArray[]} */\n\t  const bytes = [];\n\n\t  // 2. For each element in parts:\n\t  for (const element of parts) {\n\t    // 1. If element is a USVString, run the following substeps:\n\t    if (typeof element === 'string') {\n\t      // 1. Let s be element.\n\t      let s = element;\n\n\t      // 2. If the endings member of options is \"native\", set s\n\t      //    to the result of converting line endings to native\n\t      //    of element.\n\t      if (options.endings === 'native') {\n\t        s = convertLineEndingsNative(s);\n\t      }\n\n\t      // 3. Append the result of UTF-8 encoding s to bytes.\n\t      bytes.push(encoder.encode(s));\n\t    } else if (\n\t      types.isAnyArrayBuffer(element) ||\n\t      types.isTypedArray(element)\n\t    ) {\n\t      // 2. If element is a BufferSource, get a copy of the\n\t      //    bytes held by the buffer source, and append those\n\t      //    bytes to bytes.\n\t      if (!element.buffer) { // ArrayBuffer\n\t        bytes.push(new Uint8Array(element));\n\t      } else {\n\t        bytes.push(\n\t          new Uint8Array(element.buffer, element.byteOffset, element.byteLength)\n\t        );\n\t      }\n\t    } else if (isBlobLike(element)) {\n\t      // 3. If element is a Blob, append the bytes it represents\n\t      //    to bytes.\n\t      bytes.push(element);\n\t    }\n\t  }\n\n\t  // 3. Return bytes.\n\t  return bytes\n\t}\n\n\t/**\n\t * @see https://www.w3.org/TR/FileAPI/#convert-line-endings-to-native\n\t * @param {string} s\n\t */\n\tfunction convertLineEndingsNative (s) {\n\t  // 1. Let native line ending be be the code point U+000A LF.\n\t  let nativeLineEnding = '\\n';\n\n\t  // 2. If the underlying platform’s conventions are to\n\t  //    represent newlines as a carriage return and line feed\n\t  //    sequence, set native line ending to the code point\n\t  //    U+000D CR followed by the code point U+000A LF.\n\t  if (process.platform === 'win32') {\n\t    nativeLineEnding = '\\r\\n';\n\t  }\n\n\t  return s.replace(/\\r?\\n/g, nativeLineEnding)\n\t}\n\n\t// If this function is moved to ./util.js, some tools (such as\n\t// rollup) will warn about circular dependencies. See:\n\t// https://github.com/nodejs/undici/issues/1629\n\tfunction isFileLike (object) {\n\t  return (\n\t    (NativeFile && object instanceof NativeFile) ||\n\t    object instanceof File || (\n\t      object &&\n\t      (typeof object.stream === 'function' ||\n\t      typeof object.arrayBuffer === 'function') &&\n\t      object[Symbol.toStringTag] === 'File'\n\t    )\n\t  )\n\t}\n\n\tfile$1 = { File, FileLike, isFileLike };\n\treturn file$1;\n}\n\nvar formdata;\nvar hasRequiredFormdata;\n\nfunction requireFormdata () {\n\tif (hasRequiredFormdata) return formdata;\n\thasRequiredFormdata = 1;\n\n\tconst { isBlobLike, toUSVString, makeIterator } = requireUtil$b();\n\tconst { kState } = requireSymbols$3();\n\tconst { File: UndiciFile, FileLike, isFileLike } = requireFile$1();\n\tconst { webidl } = requireWebidl();\n\tconst { Blob, File: NativeFile } = require$$0$8;\n\n\t/** @type {globalThis['File']} */\n\tconst File = NativeFile ?? UndiciFile;\n\n\t// https://xhr.spec.whatwg.org/#formdata\n\tclass FormData {\n\t  constructor (form) {\n\t    if (form !== undefined) {\n\t      throw webidl.errors.conversionFailed({\n\t        prefix: 'FormData constructor',\n\t        argument: 'Argument 1',\n\t        types: ['undefined']\n\t      })\n\t    }\n\n\t    this[kState] = [];\n\t  }\n\n\t  append (name, value, filename = undefined) {\n\t    webidl.brandCheck(this, FormData);\n\n\t    webidl.argumentLengthCheck(arguments, 2, { header: 'FormData.append' });\n\n\t    if (arguments.length === 3 && !isBlobLike(value)) {\n\t      throw new TypeError(\n\t        \"Failed to execute 'append' on 'FormData': parameter 2 is not of type 'Blob'\"\n\t      )\n\t    }\n\n\t    // 1. Let value be value if given; otherwise blobValue.\n\n\t    name = webidl.converters.USVString(name);\n\t    value = isBlobLike(value)\n\t      ? webidl.converters.Blob(value, { strict: false })\n\t      : webidl.converters.USVString(value);\n\t    filename = arguments.length === 3\n\t      ? webidl.converters.USVString(filename)\n\t      : undefined;\n\n\t    // 2. Let entry be the result of creating an entry with\n\t    // name, value, and filename if given.\n\t    const entry = makeEntry(name, value, filename);\n\n\t    // 3. Append entry to this’s entry list.\n\t    this[kState].push(entry);\n\t  }\n\n\t  delete (name) {\n\t    webidl.brandCheck(this, FormData);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FormData.delete' });\n\n\t    name = webidl.converters.USVString(name);\n\n\t    // The delete(name) method steps are to remove all entries whose name\n\t    // is name from this’s entry list.\n\t    this[kState] = this[kState].filter(entry => entry.name !== name);\n\t  }\n\n\t  get (name) {\n\t    webidl.brandCheck(this, FormData);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FormData.get' });\n\n\t    name = webidl.converters.USVString(name);\n\n\t    // 1. If there is no entry whose name is name in this’s entry list,\n\t    // then return null.\n\t    const idx = this[kState].findIndex((entry) => entry.name === name);\n\t    if (idx === -1) {\n\t      return null\n\t    }\n\n\t    // 2. Return the value of the first entry whose name is name from\n\t    // this’s entry list.\n\t    return this[kState][idx].value\n\t  }\n\n\t  getAll (name) {\n\t    webidl.brandCheck(this, FormData);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FormData.getAll' });\n\n\t    name = webidl.converters.USVString(name);\n\n\t    // 1. If there is no entry whose name is name in this’s entry list,\n\t    // then return the empty list.\n\t    // 2. Return the values of all entries whose name is name, in order,\n\t    // from this’s entry list.\n\t    return this[kState]\n\t      .filter((entry) => entry.name === name)\n\t      .map((entry) => entry.value)\n\t  }\n\n\t  has (name) {\n\t    webidl.brandCheck(this, FormData);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FormData.has' });\n\n\t    name = webidl.converters.USVString(name);\n\n\t    // The has(name) method steps are to return true if there is an entry\n\t    // whose name is name in this’s entry list; otherwise false.\n\t    return this[kState].findIndex((entry) => entry.name === name) !== -1\n\t  }\n\n\t  set (name, value, filename = undefined) {\n\t    webidl.brandCheck(this, FormData);\n\n\t    webidl.argumentLengthCheck(arguments, 2, { header: 'FormData.set' });\n\n\t    if (arguments.length === 3 && !isBlobLike(value)) {\n\t      throw new TypeError(\n\t        \"Failed to execute 'set' on 'FormData': parameter 2 is not of type 'Blob'\"\n\t      )\n\t    }\n\n\t    // The set(name, value) and set(name, blobValue, filename) method steps\n\t    // are:\n\n\t    // 1. Let value be value if given; otherwise blobValue.\n\n\t    name = webidl.converters.USVString(name);\n\t    value = isBlobLike(value)\n\t      ? webidl.converters.Blob(value, { strict: false })\n\t      : webidl.converters.USVString(value);\n\t    filename = arguments.length === 3\n\t      ? toUSVString(filename)\n\t      : undefined;\n\n\t    // 2. Let entry be the result of creating an entry with name, value, and\n\t    // filename if given.\n\t    const entry = makeEntry(name, value, filename);\n\n\t    // 3. If there are entries in this’s entry list whose name is name, then\n\t    // replace the first such entry with entry and remove the others.\n\t    const idx = this[kState].findIndex((entry) => entry.name === name);\n\t    if (idx !== -1) {\n\t      this[kState] = [\n\t        ...this[kState].slice(0, idx),\n\t        entry,\n\t        ...this[kState].slice(idx + 1).filter((entry) => entry.name !== name)\n\t      ];\n\t    } else {\n\t      // 4. Otherwise, append entry to this’s entry list.\n\t      this[kState].push(entry);\n\t    }\n\t  }\n\n\t  entries () {\n\t    webidl.brandCheck(this, FormData);\n\n\t    return makeIterator(\n\t      () => this[kState].map(pair => [pair.name, pair.value]),\n\t      'FormData',\n\t      'key+value'\n\t    )\n\t  }\n\n\t  keys () {\n\t    webidl.brandCheck(this, FormData);\n\n\t    return makeIterator(\n\t      () => this[kState].map(pair => [pair.name, pair.value]),\n\t      'FormData',\n\t      'key'\n\t    )\n\t  }\n\n\t  values () {\n\t    webidl.brandCheck(this, FormData);\n\n\t    return makeIterator(\n\t      () => this[kState].map(pair => [pair.name, pair.value]),\n\t      'FormData',\n\t      'value'\n\t    )\n\t  }\n\n\t  /**\n\t   * @param {(value: string, key: string, self: FormData) => void} callbackFn\n\t   * @param {unknown} thisArg\n\t   */\n\t  forEach (callbackFn, thisArg = globalThis) {\n\t    webidl.brandCheck(this, FormData);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FormData.forEach' });\n\n\t    if (typeof callbackFn !== 'function') {\n\t      throw new TypeError(\n\t        \"Failed to execute 'forEach' on 'FormData': parameter 1 is not of type 'Function'.\"\n\t      )\n\t    }\n\n\t    for (const [key, value] of this) {\n\t      callbackFn.apply(thisArg, [value, key, this]);\n\t    }\n\t  }\n\t}\n\n\tFormData.prototype[Symbol.iterator] = FormData.prototype.entries;\n\n\tObject.defineProperties(FormData.prototype, {\n\t  [Symbol.toStringTag]: {\n\t    value: 'FormData',\n\t    configurable: true\n\t  }\n\t});\n\n\t/**\n\t * @see https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#create-an-entry\n\t * @param {string} name\n\t * @param {string|Blob} value\n\t * @param {?string} filename\n\t * @returns\n\t */\n\tfunction makeEntry (name, value, filename) {\n\t  // 1. Set name to the result of converting name into a scalar value string.\n\t  // \"To convert a string into a scalar value string, replace any surrogates\n\t  //  with U+FFFD.\"\n\t  // see: https://nodejs.org/dist/latest-v18.x/docs/api/buffer.html#buftostringencoding-start-end\n\t  name = Buffer.from(name).toString('utf8');\n\n\t  // 2. If value is a string, then set value to the result of converting\n\t  //    value into a scalar value string.\n\t  if (typeof value === 'string') {\n\t    value = Buffer.from(value).toString('utf8');\n\t  } else {\n\t    // 3. Otherwise:\n\n\t    // 1. If value is not a File object, then set value to a new File object,\n\t    //    representing the same bytes, whose name attribute value is \"blob\"\n\t    if (!isFileLike(value)) {\n\t      value = value instanceof Blob\n\t        ? new File([value], 'blob', { type: value.type })\n\t        : new FileLike(value, 'blob', { type: value.type });\n\t    }\n\n\t    // 2. If filename is given, then set value to a new File object,\n\t    //    representing the same bytes, whose name attribute is filename.\n\t    if (filename !== undefined) {\n\t      /** @type {FilePropertyBag} */\n\t      const options = {\n\t        type: value.type,\n\t        lastModified: value.lastModified\n\t      };\n\n\t      value = (NativeFile && value instanceof NativeFile) || value instanceof UndiciFile\n\t        ? new File([value], filename, options)\n\t        : new FileLike(value, filename, options);\n\t    }\n\t  }\n\n\t  // 4. Return an entry whose name is name and whose value is value.\n\t  return { name, value }\n\t}\n\n\tformdata = { FormData };\n\treturn formdata;\n}\n\nvar body$1;\nvar hasRequiredBody;\n\nfunction requireBody () {\n\tif (hasRequiredBody) return body$1;\n\thasRequiredBody = 1;\n\n\tconst Busboy = requireMain();\n\tconst util = requireUtil$c();\n\tconst {\n\t  ReadableStreamFrom,\n\t  isBlobLike,\n\t  isReadableStreamLike,\n\t  readableStreamClose,\n\t  createDeferredPromise,\n\t  fullyReadBody\n\t} = requireUtil$b();\n\tconst { FormData } = requireFormdata();\n\tconst { kState } = requireSymbols$3();\n\tconst { webidl } = requireWebidl();\n\tconst { DOMException, structuredClone } = requireConstants$7();\n\tconst { Blob, File: NativeFile } = require$$0$8;\n\tconst { kBodyUsed } = requireSymbols$4();\n\tconst assert = require$$0$9;\n\tconst { isErrored } = requireUtil$c();\n\tconst { isUint8Array, isArrayBuffer } = require$$5$1;\n\tconst { File: UndiciFile } = requireFile$1();\n\tconst { parseMIMEType, serializeAMimeType } = requireDataURL();\n\n\tlet random;\n\ttry {\n\t  const crypto = require('node:crypto');\n\t  random = (max) => crypto.randomInt(0, max);\n\t} catch {\n\t  random = (max) => Math.floor(Math.random(max));\n\t}\n\n\tlet ReadableStream = globalThis.ReadableStream;\n\n\t/** @type {globalThis['File']} */\n\tconst File = NativeFile ?? UndiciFile;\n\tconst textEncoder = new TextEncoder();\n\tconst textDecoder = new TextDecoder();\n\n\t// https://fetch.spec.whatwg.org/#concept-bodyinit-extract\n\tfunction extractBody (object, keepalive = false) {\n\t  if (!ReadableStream) {\n\t    ReadableStream = require$$14.ReadableStream;\n\t  }\n\n\t  // 1. Let stream be null.\n\t  let stream = null;\n\n\t  // 2. If object is a ReadableStream object, then set stream to object.\n\t  if (object instanceof ReadableStream) {\n\t    stream = object;\n\t  } else if (isBlobLike(object)) {\n\t    // 3. Otherwise, if object is a Blob object, set stream to the\n\t    //    result of running object’s get stream.\n\t    stream = object.stream();\n\t  } else {\n\t    // 4. Otherwise, set stream to a new ReadableStream object, and set\n\t    //    up stream.\n\t    stream = new ReadableStream({\n\t      async pull (controller) {\n\t        controller.enqueue(\n\t          typeof source === 'string' ? textEncoder.encode(source) : source\n\t        );\n\t        queueMicrotask(() => readableStreamClose(controller));\n\t      },\n\t      start () {},\n\t      type: undefined\n\t    });\n\t  }\n\n\t  // 5. Assert: stream is a ReadableStream object.\n\t  assert(isReadableStreamLike(stream));\n\n\t  // 6. Let action be null.\n\t  let action = null;\n\n\t  // 7. Let source be null.\n\t  let source = null;\n\n\t  // 8. Let length be null.\n\t  let length = null;\n\n\t  // 9. Let type be null.\n\t  let type = null;\n\n\t  // 10. Switch on object:\n\t  if (typeof object === 'string') {\n\t    // Set source to the UTF-8 encoding of object.\n\t    // Note: setting source to a Uint8Array here breaks some mocking assumptions.\n\t    source = object;\n\n\t    // Set type to `text/plain;charset=UTF-8`.\n\t    type = 'text/plain;charset=UTF-8';\n\t  } else if (object instanceof URLSearchParams) {\n\t    // URLSearchParams\n\n\t    // spec says to run application/x-www-form-urlencoded on body.list\n\t    // this is implemented in Node.js as apart of an URLSearchParams instance toString method\n\t    // See: https://github.com/nodejs/node/blob/e46c680bf2b211bbd52cf959ca17ee98c7f657f5/lib/internal/url.js#L490\n\t    // and https://github.com/nodejs/node/blob/e46c680bf2b211bbd52cf959ca17ee98c7f657f5/lib/internal/url.js#L1100\n\n\t    // Set source to the result of running the application/x-www-form-urlencoded serializer with object’s list.\n\t    source = object.toString();\n\n\t    // Set type to `application/x-www-form-urlencoded;charset=UTF-8`.\n\t    type = 'application/x-www-form-urlencoded;charset=UTF-8';\n\t  } else if (isArrayBuffer(object)) {\n\t    // BufferSource/ArrayBuffer\n\n\t    // Set source to a copy of the bytes held by object.\n\t    source = new Uint8Array(object.slice());\n\t  } else if (ArrayBuffer.isView(object)) {\n\t    // BufferSource/ArrayBufferView\n\n\t    // Set source to a copy of the bytes held by object.\n\t    source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength));\n\t  } else if (util.isFormDataLike(object)) {\n\t    const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`;\n\t    const prefix = `--${boundary}\\r\\nContent-Disposition: form-data`;\n\n\t    /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */\n\t    const escape = (str) =>\n\t      str.replace(/\\n/g, '%0A').replace(/\\r/g, '%0D').replace(/\"/g, '%22');\n\t    const normalizeLinefeeds = (value) => value.replace(/\\r?\\n|\\r/g, '\\r\\n');\n\n\t    // Set action to this step: run the multipart/form-data\n\t    // encoding algorithm, with object’s entry list and UTF-8.\n\t    // - This ensures that the body is immutable and can't be changed afterwords\n\t    // - That the content-length is calculated in advance.\n\t    // - And that all parts are pre-encoded and ready to be sent.\n\n\t    const blobParts = [];\n\t    const rn = new Uint8Array([13, 10]); // '\\r\\n'\n\t    length = 0;\n\t    let hasUnknownSizeValue = false;\n\n\t    for (const [name, value] of object) {\n\t      if (typeof value === 'string') {\n\t        const chunk = textEncoder.encode(prefix +\n\t          `; name=\"${escape(normalizeLinefeeds(name))}\"` +\n\t          `\\r\\n\\r\\n${normalizeLinefeeds(value)}\\r\\n`);\n\t        blobParts.push(chunk);\n\t        length += chunk.byteLength;\n\t      } else {\n\t        const chunk = textEncoder.encode(`${prefix}; name=\"${escape(normalizeLinefeeds(name))}\"` +\n\t          (value.name ? `; filename=\"${escape(value.name)}\"` : '') + '\\r\\n' +\n\t          `Content-Type: ${\n\t            value.type || 'application/octet-stream'\n\t          }\\r\\n\\r\\n`);\n\t        blobParts.push(chunk, value, rn);\n\t        if (typeof value.size === 'number') {\n\t          length += chunk.byteLength + value.size + rn.byteLength;\n\t        } else {\n\t          hasUnknownSizeValue = true;\n\t        }\n\t      }\n\t    }\n\n\t    const chunk = textEncoder.encode(`--${boundary}--`);\n\t    blobParts.push(chunk);\n\t    length += chunk.byteLength;\n\t    if (hasUnknownSizeValue) {\n\t      length = null;\n\t    }\n\n\t    // Set source to object.\n\t    source = object;\n\n\t    action = async function * () {\n\t      for (const part of blobParts) {\n\t        if (part.stream) {\n\t          yield * part.stream();\n\t        } else {\n\t          yield part;\n\t        }\n\t      }\n\t    };\n\n\t    // Set type to `multipart/form-data; boundary=`,\n\t    // followed by the multipart/form-data boundary string generated\n\t    // by the multipart/form-data encoding algorithm.\n\t    type = 'multipart/form-data; boundary=' + boundary;\n\t  } else if (isBlobLike(object)) {\n\t    // Blob\n\n\t    // Set source to object.\n\t    source = object;\n\n\t    // Set length to object’s size.\n\t    length = object.size;\n\n\t    // If object’s type attribute is not the empty byte sequence, set\n\t    // type to its value.\n\t    if (object.type) {\n\t      type = object.type;\n\t    }\n\t  } else if (typeof object[Symbol.asyncIterator] === 'function') {\n\t    // If keepalive is true, then throw a TypeError.\n\t    if (keepalive) {\n\t      throw new TypeError('keepalive')\n\t    }\n\n\t    // If object is disturbed or locked, then throw a TypeError.\n\t    if (util.isDisturbed(object) || object.locked) {\n\t      throw new TypeError(\n\t        'Response body object should not be disturbed or locked'\n\t      )\n\t    }\n\n\t    stream =\n\t      object instanceof ReadableStream ? object : ReadableStreamFrom(object);\n\t  }\n\n\t  // 11. If source is a byte sequence, then set action to a\n\t  // step that returns source and length to source’s length.\n\t  if (typeof source === 'string' || util.isBuffer(source)) {\n\t    length = Buffer.byteLength(source);\n\t  }\n\n\t  // 12. If action is non-null, then run these steps in in parallel:\n\t  if (action != null) {\n\t    // Run action.\n\t    let iterator;\n\t    stream = new ReadableStream({\n\t      async start () {\n\t        iterator = action(object)[Symbol.asyncIterator]();\n\t      },\n\t      async pull (controller) {\n\t        const { value, done } = await iterator.next();\n\t        if (done) {\n\t          // When running action is done, close stream.\n\t          queueMicrotask(() => {\n\t            controller.close();\n\t          });\n\t        } else {\n\t          // Whenever one or more bytes are available and stream is not errored,\n\t          // enqueue a Uint8Array wrapping an ArrayBuffer containing the available\n\t          // bytes into stream.\n\t          if (!isErrored(stream)) {\n\t            controller.enqueue(new Uint8Array(value));\n\t          }\n\t        }\n\t        return controller.desiredSize > 0\n\t      },\n\t      async cancel (reason) {\n\t        await iterator.return();\n\t      },\n\t      type: undefined\n\t    });\n\t  }\n\n\t  // 13. Let body be a body whose stream is stream, source is source,\n\t  // and length is length.\n\t  const body = { stream, source, length };\n\n\t  // 14. Return (body, type).\n\t  return [body, type]\n\t}\n\n\t// https://fetch.spec.whatwg.org/#bodyinit-safely-extract\n\tfunction safelyExtractBody (object, keepalive = false) {\n\t  if (!ReadableStream) {\n\t    // istanbul ignore next\n\t    ReadableStream = require$$14.ReadableStream;\n\t  }\n\n\t  // To safely extract a body and a `Content-Type` value from\n\t  // a byte sequence or BodyInit object object, run these steps:\n\n\t  // 1. If object is a ReadableStream object, then:\n\t  if (object instanceof ReadableStream) {\n\t    // Assert: object is neither disturbed nor locked.\n\t    // istanbul ignore next\n\t    assert(!util.isDisturbed(object), 'The body has already been consumed.');\n\t    // istanbul ignore next\n\t    assert(!object.locked, 'The stream is locked.');\n\t  }\n\n\t  // 2. Return the results of extracting object.\n\t  return extractBody(object, keepalive)\n\t}\n\n\tfunction cloneBody (body) {\n\t  // To clone a body body, run these steps:\n\n\t  // https://fetch.spec.whatwg.org/#concept-body-clone\n\n\t  // 1. Let « out1, out2 » be the result of teeing body’s stream.\n\t  const [out1, out2] = body.stream.tee();\n\t  const out2Clone = structuredClone(out2, { transfer: [out2] });\n\t  // This, for whatever reasons, unrefs out2Clone which allows\n\t  // the process to exit by itself.\n\t  const [, finalClone] = out2Clone.tee();\n\n\t  // 2. Set body’s stream to out1.\n\t  body.stream = out1;\n\n\t  // 3. Return a body whose stream is out2 and other members are copied from body.\n\t  return {\n\t    stream: finalClone,\n\t    length: body.length,\n\t    source: body.source\n\t  }\n\t}\n\n\tasync function * consumeBody (body) {\n\t  if (body) {\n\t    if (isUint8Array(body)) {\n\t      yield body;\n\t    } else {\n\t      const stream = body.stream;\n\n\t      if (util.isDisturbed(stream)) {\n\t        throw new TypeError('The body has already been consumed.')\n\t      }\n\n\t      if (stream.locked) {\n\t        throw new TypeError('The stream is locked.')\n\t      }\n\n\t      // Compat.\n\t      stream[kBodyUsed] = true;\n\n\t      yield * stream;\n\t    }\n\t  }\n\t}\n\n\tfunction throwIfAborted (state) {\n\t  if (state.aborted) {\n\t    throw new DOMException('The operation was aborted.', 'AbortError')\n\t  }\n\t}\n\n\tfunction bodyMixinMethods (instance) {\n\t  const methods = {\n\t    blob () {\n\t      // The blob() method steps are to return the result of\n\t      // running consume body with this and the following step\n\t      // given a byte sequence bytes: return a Blob whose\n\t      // contents are bytes and whose type attribute is this’s\n\t      // MIME type.\n\t      return specConsumeBody(this, (bytes) => {\n\t        let mimeType = bodyMimeType(this);\n\n\t        if (mimeType === 'failure') {\n\t          mimeType = '';\n\t        } else if (mimeType) {\n\t          mimeType = serializeAMimeType(mimeType);\n\t        }\n\n\t        // Return a Blob whose contents are bytes and type attribute\n\t        // is mimeType.\n\t        return new Blob([bytes], { type: mimeType })\n\t      }, instance)\n\t    },\n\n\t    arrayBuffer () {\n\t      // The arrayBuffer() method steps are to return the result\n\t      // of running consume body with this and the following step\n\t      // given a byte sequence bytes: return a new ArrayBuffer\n\t      // whose contents are bytes.\n\t      return specConsumeBody(this, (bytes) => {\n\t        return new Uint8Array(bytes).buffer\n\t      }, instance)\n\t    },\n\n\t    text () {\n\t      // The text() method steps are to return the result of running\n\t      // consume body with this and UTF-8 decode.\n\t      return specConsumeBody(this, utf8DecodeBytes, instance)\n\t    },\n\n\t    json () {\n\t      // The json() method steps are to return the result of running\n\t      // consume body with this and parse JSON from bytes.\n\t      return specConsumeBody(this, parseJSONFromBytes, instance)\n\t    },\n\n\t    async formData () {\n\t      webidl.brandCheck(this, instance);\n\n\t      throwIfAborted(this[kState]);\n\n\t      const contentType = this.headers.get('Content-Type');\n\n\t      // If mimeType’s essence is \"multipart/form-data\", then:\n\t      if (/multipart\\/form-data/.test(contentType)) {\n\t        const headers = {};\n\t        for (const [key, value] of this.headers) headers[key.toLowerCase()] = value;\n\n\t        const responseFormData = new FormData();\n\n\t        let busboy;\n\n\t        try {\n\t          busboy = new Busboy({\n\t            headers,\n\t            preservePath: true\n\t          });\n\t        } catch (err) {\n\t          throw new DOMException(`${err}`, 'AbortError')\n\t        }\n\n\t        busboy.on('field', (name, value) => {\n\t          responseFormData.append(name, value);\n\t        });\n\t        busboy.on('file', (name, value, filename, encoding, mimeType) => {\n\t          const chunks = [];\n\n\t          if (encoding === 'base64' || encoding.toLowerCase() === 'base64') {\n\t            let base64chunk = '';\n\n\t            value.on('data', (chunk) => {\n\t              base64chunk += chunk.toString().replace(/[\\r\\n]/gm, '');\n\n\t              const end = base64chunk.length - base64chunk.length % 4;\n\t              chunks.push(Buffer.from(base64chunk.slice(0, end), 'base64'));\n\n\t              base64chunk = base64chunk.slice(end);\n\t            });\n\t            value.on('end', () => {\n\t              chunks.push(Buffer.from(base64chunk, 'base64'));\n\t              responseFormData.append(name, new File(chunks, filename, { type: mimeType }));\n\t            });\n\t          } else {\n\t            value.on('data', (chunk) => {\n\t              chunks.push(chunk);\n\t            });\n\t            value.on('end', () => {\n\t              responseFormData.append(name, new File(chunks, filename, { type: mimeType }));\n\t            });\n\t          }\n\t        });\n\n\t        const busboyResolve = new Promise((resolve, reject) => {\n\t          busboy.on('finish', resolve);\n\t          busboy.on('error', (err) => reject(new TypeError(err)));\n\t        });\n\n\t        if (this.body !== null) for await (const chunk of consumeBody(this[kState].body)) busboy.write(chunk);\n\t        busboy.end();\n\t        await busboyResolve;\n\n\t        return responseFormData\n\t      } else if (/application\\/x-www-form-urlencoded/.test(contentType)) {\n\t        // Otherwise, if mimeType’s essence is \"application/x-www-form-urlencoded\", then:\n\n\t        // 1. Let entries be the result of parsing bytes.\n\t        let entries;\n\t        try {\n\t          let text = '';\n\t          // application/x-www-form-urlencoded parser will keep the BOM.\n\t          // https://url.spec.whatwg.org/#concept-urlencoded-parser\n\t          // Note that streaming decoder is stateful and cannot be reused\n\t          const streamingDecoder = new TextDecoder('utf-8', { ignoreBOM: true });\n\n\t          for await (const chunk of consumeBody(this[kState].body)) {\n\t            if (!isUint8Array(chunk)) {\n\t              throw new TypeError('Expected Uint8Array chunk')\n\t            }\n\t            text += streamingDecoder.decode(chunk, { stream: true });\n\t          }\n\t          text += streamingDecoder.decode();\n\t          entries = new URLSearchParams(text);\n\t        } catch (err) {\n\t          // istanbul ignore next: Unclear when new URLSearchParams can fail on a string.\n\t          // 2. If entries is failure, then throw a TypeError.\n\t          throw Object.assign(new TypeError(), { cause: err })\n\t        }\n\n\t        // 3. Return a new FormData object whose entries are entries.\n\t        const formData = new FormData();\n\t        for (const [name, value] of entries) {\n\t          formData.append(name, value);\n\t        }\n\t        return formData\n\t      } else {\n\t        // Wait a tick before checking if the request has been aborted.\n\t        // Otherwise, a TypeError can be thrown when an AbortError should.\n\t        await Promise.resolve();\n\n\t        throwIfAborted(this[kState]);\n\n\t        // Otherwise, throw a TypeError.\n\t        throw webidl.errors.exception({\n\t          header: `${instance.name}.formData`,\n\t          message: 'Could not parse content as FormData.'\n\t        })\n\t      }\n\t    }\n\t  };\n\n\t  return methods\n\t}\n\n\tfunction mixinBody (prototype) {\n\t  Object.assign(prototype.prototype, bodyMixinMethods(prototype));\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#concept-body-consume-body\n\t * @param {Response|Request} object\n\t * @param {(value: unknown) => unknown} convertBytesToJSValue\n\t * @param {Response|Request} instance\n\t */\n\tasync function specConsumeBody (object, convertBytesToJSValue, instance) {\n\t  webidl.brandCheck(object, instance);\n\n\t  throwIfAborted(object[kState]);\n\n\t  // 1. If object is unusable, then return a promise rejected\n\t  //    with a TypeError.\n\t  if (bodyUnusable(object[kState].body)) {\n\t    throw new TypeError('Body is unusable')\n\t  }\n\n\t  // 2. Let promise be a new promise.\n\t  const promise = createDeferredPromise();\n\n\t  // 3. Let errorSteps given error be to reject promise with error.\n\t  const errorSteps = (error) => promise.reject(error);\n\n\t  // 4. Let successSteps given a byte sequence data be to resolve\n\t  //    promise with the result of running convertBytesToJSValue\n\t  //    with data. If that threw an exception, then run errorSteps\n\t  //    with that exception.\n\t  const successSteps = (data) => {\n\t    try {\n\t      promise.resolve(convertBytesToJSValue(data));\n\t    } catch (e) {\n\t      errorSteps(e);\n\t    }\n\t  };\n\n\t  // 5. If object’s body is null, then run successSteps with an\n\t  //    empty byte sequence.\n\t  if (object[kState].body == null) {\n\t    successSteps(new Uint8Array());\n\t    return promise.promise\n\t  }\n\n\t  // 6. Otherwise, fully read object’s body given successSteps,\n\t  //    errorSteps, and object’s relevant global object.\n\t  await fullyReadBody(object[kState].body, successSteps, errorSteps);\n\n\t  // 7. Return promise.\n\t  return promise.promise\n\t}\n\n\t// https://fetch.spec.whatwg.org/#body-unusable\n\tfunction bodyUnusable (body) {\n\t  // An object including the Body interface mixin is\n\t  // said to be unusable if its body is non-null and\n\t  // its body’s stream is disturbed or locked.\n\t  return body != null && (body.stream.locked || util.isDisturbed(body.stream))\n\t}\n\n\t/**\n\t * @see https://encoding.spec.whatwg.org/#utf-8-decode\n\t * @param {Buffer} buffer\n\t */\n\tfunction utf8DecodeBytes (buffer) {\n\t  if (buffer.length === 0) {\n\t    return ''\n\t  }\n\n\t  // 1. Let buffer be the result of peeking three bytes from\n\t  //    ioQueue, converted to a byte sequence.\n\n\t  // 2. If buffer is 0xEF 0xBB 0xBF, then read three\n\t  //    bytes from ioQueue. (Do nothing with those bytes.)\n\t  if (buffer[0] === 0xEF && buffer[1] === 0xBB && buffer[2] === 0xBF) {\n\t    buffer = buffer.subarray(3);\n\t  }\n\n\t  // 3. Process a queue with an instance of UTF-8’s\n\t  //    decoder, ioQueue, output, and \"replacement\".\n\t  const output = textDecoder.decode(buffer);\n\n\t  // 4. Return output.\n\t  return output\n\t}\n\n\t/**\n\t * @see https://infra.spec.whatwg.org/#parse-json-bytes-to-a-javascript-value\n\t * @param {Uint8Array} bytes\n\t */\n\tfunction parseJSONFromBytes (bytes) {\n\t  return JSON.parse(utf8DecodeBytes(bytes))\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#concept-body-mime-type\n\t * @param {import('./response').Response|import('./request').Request} object\n\t */\n\tfunction bodyMimeType (object) {\n\t  const { headersList } = object[kState];\n\t  const contentType = headersList.get('content-type');\n\n\t  if (contentType === null) {\n\t    return 'failure'\n\t  }\n\n\t  return parseMIMEType(contentType)\n\t}\n\n\tbody$1 = {\n\t  extractBody,\n\t  safelyExtractBody,\n\t  cloneBody,\n\t  mixinBody\n\t};\n\treturn body$1;\n}\n\nvar request$2;\nvar hasRequiredRequest$1;\n\nfunction requireRequest$1 () {\n\tif (hasRequiredRequest$1) return request$2;\n\thasRequiredRequest$1 = 1;\n\n\tconst {\n\t  InvalidArgumentError,\n\t  NotSupportedError\n\t} = requireErrors$3();\n\tconst assert = require$$0$9;\n\tconst { kHTTP2BuildRequest, kHTTP2CopyHeaders, kHTTP1BuildRequest } = requireSymbols$4();\n\tconst util = requireUtil$c();\n\n\t// tokenRegExp and headerCharRegex have been lifted from\n\t// https://github.com/nodejs/node/blob/main/lib/_http_common.js\n\n\t/**\n\t * Verifies that the given val is a valid HTTP token\n\t * per the rules defined in RFC 7230\n\t * See https://tools.ietf.org/html/rfc7230#section-3.2.6\n\t */\n\tconst tokenRegExp = /^[\\^_`a-zA-Z\\-0-9!#$%&'*+.|~]+$/;\n\n\t/**\n\t * Matches if val contains an invalid field-vchar\n\t *  field-value    = *( field-content / obs-fold )\n\t *  field-content  = field-vchar [ 1*( SP / HTAB ) field-vchar ]\n\t *  field-vchar    = VCHAR / obs-text\n\t */\n\tconst headerCharRegex = /[^\\t\\x20-\\x7e\\x80-\\xff]/;\n\n\t// Verifies that a given path is valid does not contain control chars \\x00 to \\x20\n\tconst invalidPathRegex = /[^\\u0021-\\u00ff]/;\n\n\tconst kHandler = Symbol('handler');\n\n\tconst channels = {};\n\n\tlet extractBody;\n\n\ttry {\n\t  const diagnosticsChannel = require('diagnostics_channel');\n\t  channels.create = diagnosticsChannel.channel('undici:request:create');\n\t  channels.bodySent = diagnosticsChannel.channel('undici:request:bodySent');\n\t  channels.headers = diagnosticsChannel.channel('undici:request:headers');\n\t  channels.trailers = diagnosticsChannel.channel('undici:request:trailers');\n\t  channels.error = diagnosticsChannel.channel('undici:request:error');\n\t} catch {\n\t  channels.create = { hasSubscribers: false };\n\t  channels.bodySent = { hasSubscribers: false };\n\t  channels.headers = { hasSubscribers: false };\n\t  channels.trailers = { hasSubscribers: false };\n\t  channels.error = { hasSubscribers: false };\n\t}\n\n\tclass Request {\n\t  constructor (origin, {\n\t    path,\n\t    method,\n\t    body,\n\t    headers,\n\t    query,\n\t    idempotent,\n\t    blocking,\n\t    upgrade,\n\t    headersTimeout,\n\t    bodyTimeout,\n\t    reset,\n\t    throwOnError,\n\t    expectContinue\n\t  }, handler) {\n\t    if (typeof path !== 'string') {\n\t      throw new InvalidArgumentError('path must be a string')\n\t    } else if (\n\t      path[0] !== '/' &&\n\t      !(path.startsWith('http://') || path.startsWith('https://')) &&\n\t      method !== 'CONNECT'\n\t    ) {\n\t      throw new InvalidArgumentError('path must be an absolute URL or start with a slash')\n\t    } else if (invalidPathRegex.exec(path) !== null) {\n\t      throw new InvalidArgumentError('invalid request path')\n\t    }\n\n\t    if (typeof method !== 'string') {\n\t      throw new InvalidArgumentError('method must be a string')\n\t    } else if (tokenRegExp.exec(method) === null) {\n\t      throw new InvalidArgumentError('invalid request method')\n\t    }\n\n\t    if (upgrade && typeof upgrade !== 'string') {\n\t      throw new InvalidArgumentError('upgrade must be a string')\n\t    }\n\n\t    if (headersTimeout != null && (!Number.isFinite(headersTimeout) || headersTimeout < 0)) {\n\t      throw new InvalidArgumentError('invalid headersTimeout')\n\t    }\n\n\t    if (bodyTimeout != null && (!Number.isFinite(bodyTimeout) || bodyTimeout < 0)) {\n\t      throw new InvalidArgumentError('invalid bodyTimeout')\n\t    }\n\n\t    if (reset != null && typeof reset !== 'boolean') {\n\t      throw new InvalidArgumentError('invalid reset')\n\t    }\n\n\t    if (expectContinue != null && typeof expectContinue !== 'boolean') {\n\t      throw new InvalidArgumentError('invalid expectContinue')\n\t    }\n\n\t    this.headersTimeout = headersTimeout;\n\n\t    this.bodyTimeout = bodyTimeout;\n\n\t    this.throwOnError = throwOnError === true;\n\n\t    this.method = method;\n\n\t    this.abort = null;\n\n\t    if (body == null) {\n\t      this.body = null;\n\t    } else if (util.isStream(body)) {\n\t      this.body = body;\n\n\t      const rState = this.body._readableState;\n\t      if (!rState || !rState.autoDestroy) {\n\t        this.endHandler = function autoDestroy () {\n\t          util.destroy(this);\n\t        };\n\t        this.body.on('end', this.endHandler);\n\t      }\n\n\t      this.errorHandler = err => {\n\t        if (this.abort) {\n\t          this.abort(err);\n\t        } else {\n\t          this.error = err;\n\t        }\n\t      };\n\t      this.body.on('error', this.errorHandler);\n\t    } else if (util.isBuffer(body)) {\n\t      this.body = body.byteLength ? body : null;\n\t    } else if (ArrayBuffer.isView(body)) {\n\t      this.body = body.buffer.byteLength ? Buffer.from(body.buffer, body.byteOffset, body.byteLength) : null;\n\t    } else if (body instanceof ArrayBuffer) {\n\t      this.body = body.byteLength ? Buffer.from(body) : null;\n\t    } else if (typeof body === 'string') {\n\t      this.body = body.length ? Buffer.from(body) : null;\n\t    } else if (util.isFormDataLike(body) || util.isIterable(body) || util.isBlobLike(body)) {\n\t      this.body = body;\n\t    } else {\n\t      throw new InvalidArgumentError('body must be a string, a Buffer, a Readable stream, an iterable, or an async iterable')\n\t    }\n\n\t    this.completed = false;\n\n\t    this.aborted = false;\n\n\t    this.upgrade = upgrade || null;\n\n\t    this.path = query ? util.buildURL(path, query) : path;\n\n\t    this.origin = origin;\n\n\t    this.idempotent = idempotent == null\n\t      ? method === 'HEAD' || method === 'GET'\n\t      : idempotent;\n\n\t    this.blocking = blocking == null ? false : blocking;\n\n\t    this.reset = reset == null ? null : reset;\n\n\t    this.host = null;\n\n\t    this.contentLength = null;\n\n\t    this.contentType = null;\n\n\t    this.headers = '';\n\n\t    // Only for H2\n\t    this.expectContinue = expectContinue != null ? expectContinue : false;\n\n\t    if (Array.isArray(headers)) {\n\t      if (headers.length % 2 !== 0) {\n\t        throw new InvalidArgumentError('headers array must be even')\n\t      }\n\t      for (let i = 0; i < headers.length; i += 2) {\n\t        processHeader(this, headers[i], headers[i + 1]);\n\t      }\n\t    } else if (headers && typeof headers === 'object') {\n\t      const keys = Object.keys(headers);\n\t      for (let i = 0; i < keys.length; i++) {\n\t        const key = keys[i];\n\t        processHeader(this, key, headers[key]);\n\t      }\n\t    } else if (headers != null) {\n\t      throw new InvalidArgumentError('headers must be an object or an array')\n\t    }\n\n\t    if (util.isFormDataLike(this.body)) {\n\t      if (util.nodeMajor < 16 || (util.nodeMajor === 16 && util.nodeMinor < 8)) {\n\t        throw new InvalidArgumentError('Form-Data bodies are only supported in node v16.8 and newer.')\n\t      }\n\n\t      if (!extractBody) {\n\t        extractBody = requireBody().extractBody;\n\t      }\n\n\t      const [bodyStream, contentType] = extractBody(body);\n\t      if (this.contentType == null) {\n\t        this.contentType = contentType;\n\t        this.headers += `content-type: ${contentType}\\r\\n`;\n\t      }\n\t      this.body = bodyStream.stream;\n\t      this.contentLength = bodyStream.length;\n\t    } else if (util.isBlobLike(body) && this.contentType == null && body.type) {\n\t      this.contentType = body.type;\n\t      this.headers += `content-type: ${body.type}\\r\\n`;\n\t    }\n\n\t    util.validateHandler(handler, method, upgrade);\n\n\t    this.servername = util.getServerName(this.host);\n\n\t    this[kHandler] = handler;\n\n\t    if (channels.create.hasSubscribers) {\n\t      channels.create.publish({ request: this });\n\t    }\n\t  }\n\n\t  onBodySent (chunk) {\n\t    if (this[kHandler].onBodySent) {\n\t      try {\n\t        return this[kHandler].onBodySent(chunk)\n\t      } catch (err) {\n\t        this.abort(err);\n\t      }\n\t    }\n\t  }\n\n\t  onRequestSent () {\n\t    if (channels.bodySent.hasSubscribers) {\n\t      channels.bodySent.publish({ request: this });\n\t    }\n\n\t    if (this[kHandler].onRequestSent) {\n\t      try {\n\t        return this[kHandler].onRequestSent()\n\t      } catch (err) {\n\t        this.abort(err);\n\t      }\n\t    }\n\t  }\n\n\t  onConnect (abort) {\n\t    assert(!this.aborted);\n\t    assert(!this.completed);\n\n\t    if (this.error) {\n\t      abort(this.error);\n\t    } else {\n\t      this.abort = abort;\n\t      return this[kHandler].onConnect(abort)\n\t    }\n\t  }\n\n\t  onHeaders (statusCode, headers, resume, statusText) {\n\t    assert(!this.aborted);\n\t    assert(!this.completed);\n\n\t    if (channels.headers.hasSubscribers) {\n\t      channels.headers.publish({ request: this, response: { statusCode, headers, statusText } });\n\t    }\n\n\t    try {\n\t      return this[kHandler].onHeaders(statusCode, headers, resume, statusText)\n\t    } catch (err) {\n\t      this.abort(err);\n\t    }\n\t  }\n\n\t  onData (chunk) {\n\t    assert(!this.aborted);\n\t    assert(!this.completed);\n\n\t    try {\n\t      return this[kHandler].onData(chunk)\n\t    } catch (err) {\n\t      this.abort(err);\n\t      return false\n\t    }\n\t  }\n\n\t  onUpgrade (statusCode, headers, socket) {\n\t    assert(!this.aborted);\n\t    assert(!this.completed);\n\n\t    return this[kHandler].onUpgrade(statusCode, headers, socket)\n\t  }\n\n\t  onComplete (trailers) {\n\t    this.onFinally();\n\n\t    assert(!this.aborted);\n\n\t    this.completed = true;\n\t    if (channels.trailers.hasSubscribers) {\n\t      channels.trailers.publish({ request: this, trailers });\n\t    }\n\n\t    try {\n\t      return this[kHandler].onComplete(trailers)\n\t    } catch (err) {\n\t      // TODO (fix): This might be a bad idea?\n\t      this.onError(err);\n\t    }\n\t  }\n\n\t  onError (error) {\n\t    this.onFinally();\n\n\t    if (channels.error.hasSubscribers) {\n\t      channels.error.publish({ request: this, error });\n\t    }\n\n\t    if (this.aborted) {\n\t      return\n\t    }\n\t    this.aborted = true;\n\n\t    return this[kHandler].onError(error)\n\t  }\n\n\t  onFinally () {\n\t    if (this.errorHandler) {\n\t      this.body.off('error', this.errorHandler);\n\t      this.errorHandler = null;\n\t    }\n\n\t    if (this.endHandler) {\n\t      this.body.off('end', this.endHandler);\n\t      this.endHandler = null;\n\t    }\n\t  }\n\n\t  // TODO: adjust to support H2\n\t  addHeader (key, value) {\n\t    processHeader(this, key, value);\n\t    return this\n\t  }\n\n\t  static [kHTTP1BuildRequest] (origin, opts, handler) {\n\t    // TODO: Migrate header parsing here, to make Requests\n\t    // HTTP agnostic\n\t    return new Request(origin, opts, handler)\n\t  }\n\n\t  static [kHTTP2BuildRequest] (origin, opts, handler) {\n\t    const headers = opts.headers;\n\t    opts = { ...opts, headers: null };\n\n\t    const request = new Request(origin, opts, handler);\n\n\t    request.headers = {};\n\n\t    if (Array.isArray(headers)) {\n\t      if (headers.length % 2 !== 0) {\n\t        throw new InvalidArgumentError('headers array must be even')\n\t      }\n\t      for (let i = 0; i < headers.length; i += 2) {\n\t        processHeader(request, headers[i], headers[i + 1], true);\n\t      }\n\t    } else if (headers && typeof headers === 'object') {\n\t      const keys = Object.keys(headers);\n\t      for (let i = 0; i < keys.length; i++) {\n\t        const key = keys[i];\n\t        processHeader(request, key, headers[key], true);\n\t      }\n\t    } else if (headers != null) {\n\t      throw new InvalidArgumentError('headers must be an object or an array')\n\t    }\n\n\t    return request\n\t  }\n\n\t  static [kHTTP2CopyHeaders] (raw) {\n\t    const rawHeaders = raw.split('\\r\\n');\n\t    const headers = {};\n\n\t    for (const header of rawHeaders) {\n\t      const [key, value] = header.split(': ');\n\n\t      if (value == null || value.length === 0) continue\n\n\t      if (headers[key]) headers[key] += `,${value}`;\n\t      else headers[key] = value;\n\t    }\n\n\t    return headers\n\t  }\n\t}\n\n\tfunction processHeaderValue (key, val, skipAppend) {\n\t  if (val && typeof val === 'object') {\n\t    throw new InvalidArgumentError(`invalid ${key} header`)\n\t  }\n\n\t  val = val != null ? `${val}` : '';\n\n\t  if (headerCharRegex.exec(val) !== null) {\n\t    throw new InvalidArgumentError(`invalid ${key} header`)\n\t  }\n\n\t  return skipAppend ? val : `${key}: ${val}\\r\\n`\n\t}\n\n\tfunction processHeader (request, key, val, skipAppend = false) {\n\t  if (val && (typeof val === 'object' && !Array.isArray(val))) {\n\t    throw new InvalidArgumentError(`invalid ${key} header`)\n\t  } else if (val === undefined) {\n\t    return\n\t  }\n\n\t  if (\n\t    request.host === null &&\n\t    key.length === 4 &&\n\t    key.toLowerCase() === 'host'\n\t  ) {\n\t    if (headerCharRegex.exec(val) !== null) {\n\t      throw new InvalidArgumentError(`invalid ${key} header`)\n\t    }\n\t    // Consumed by Client\n\t    request.host = val;\n\t  } else if (\n\t    request.contentLength === null &&\n\t    key.length === 14 &&\n\t    key.toLowerCase() === 'content-length'\n\t  ) {\n\t    request.contentLength = parseInt(val, 10);\n\t    if (!Number.isFinite(request.contentLength)) {\n\t      throw new InvalidArgumentError('invalid content-length header')\n\t    }\n\t  } else if (\n\t    request.contentType === null &&\n\t    key.length === 12 &&\n\t    key.toLowerCase() === 'content-type'\n\t  ) {\n\t    request.contentType = val;\n\t    if (skipAppend) request.headers[key] = processHeaderValue(key, val, skipAppend);\n\t    else request.headers += processHeaderValue(key, val);\n\t  } else if (\n\t    key.length === 17 &&\n\t    key.toLowerCase() === 'transfer-encoding'\n\t  ) {\n\t    throw new InvalidArgumentError('invalid transfer-encoding header')\n\t  } else if (\n\t    key.length === 10 &&\n\t    key.toLowerCase() === 'connection'\n\t  ) {\n\t    const value = typeof val === 'string' ? val.toLowerCase() : null;\n\t    if (value !== 'close' && value !== 'keep-alive') {\n\t      throw new InvalidArgumentError('invalid connection header')\n\t    } else if (value === 'close') {\n\t      request.reset = true;\n\t    }\n\t  } else if (\n\t    key.length === 10 &&\n\t    key.toLowerCase() === 'keep-alive'\n\t  ) {\n\t    throw new InvalidArgumentError('invalid keep-alive header')\n\t  } else if (\n\t    key.length === 7 &&\n\t    key.toLowerCase() === 'upgrade'\n\t  ) {\n\t    throw new InvalidArgumentError('invalid upgrade header')\n\t  } else if (\n\t    key.length === 6 &&\n\t    key.toLowerCase() === 'expect'\n\t  ) {\n\t    throw new NotSupportedError('expect header not supported')\n\t  } else if (tokenRegExp.exec(key) === null) {\n\t    throw new InvalidArgumentError('invalid header key')\n\t  } else {\n\t    if (Array.isArray(val)) {\n\t      for (let i = 0; i < val.length; i++) {\n\t        if (skipAppend) {\n\t          if (request.headers[key]) request.headers[key] += `,${processHeaderValue(key, val[i], skipAppend)}`;\n\t          else request.headers[key] = processHeaderValue(key, val[i], skipAppend);\n\t        } else {\n\t          request.headers += processHeaderValue(key, val[i]);\n\t        }\n\t      }\n\t    } else {\n\t      if (skipAppend) request.headers[key] = processHeaderValue(key, val, skipAppend);\n\t      else request.headers += processHeaderValue(key, val);\n\t    }\n\t  }\n\t}\n\n\trequest$2 = Request;\n\treturn request$2;\n}\n\nvar dispatcher;\nvar hasRequiredDispatcher;\n\nfunction requireDispatcher () {\n\tif (hasRequiredDispatcher) return dispatcher;\n\thasRequiredDispatcher = 1;\n\n\tconst EventEmitter = require$$1$4;\n\n\tclass Dispatcher extends EventEmitter {\n\t  dispatch () {\n\t    throw new Error('not implemented')\n\t  }\n\n\t  close () {\n\t    throw new Error('not implemented')\n\t  }\n\n\t  destroy () {\n\t    throw new Error('not implemented')\n\t  }\n\t}\n\n\tdispatcher = Dispatcher;\n\treturn dispatcher;\n}\n\nvar dispatcherBase;\nvar hasRequiredDispatcherBase;\n\nfunction requireDispatcherBase () {\n\tif (hasRequiredDispatcherBase) return dispatcherBase;\n\thasRequiredDispatcherBase = 1;\n\n\tconst Dispatcher = requireDispatcher();\n\tconst {\n\t  ClientDestroyedError,\n\t  ClientClosedError,\n\t  InvalidArgumentError\n\t} = requireErrors$3();\n\tconst { kDestroy, kClose, kDispatch, kInterceptors } = requireSymbols$4();\n\n\tconst kDestroyed = Symbol('destroyed');\n\tconst kClosed = Symbol('closed');\n\tconst kOnDestroyed = Symbol('onDestroyed');\n\tconst kOnClosed = Symbol('onClosed');\n\tconst kInterceptedDispatch = Symbol('Intercepted Dispatch');\n\n\tclass DispatcherBase extends Dispatcher {\n\t  constructor () {\n\t    super();\n\n\t    this[kDestroyed] = false;\n\t    this[kOnDestroyed] = null;\n\t    this[kClosed] = false;\n\t    this[kOnClosed] = [];\n\t  }\n\n\t  get destroyed () {\n\t    return this[kDestroyed]\n\t  }\n\n\t  get closed () {\n\t    return this[kClosed]\n\t  }\n\n\t  get interceptors () {\n\t    return this[kInterceptors]\n\t  }\n\n\t  set interceptors (newInterceptors) {\n\t    if (newInterceptors) {\n\t      for (let i = newInterceptors.length - 1; i >= 0; i--) {\n\t        const interceptor = this[kInterceptors][i];\n\t        if (typeof interceptor !== 'function') {\n\t          throw new InvalidArgumentError('interceptor must be an function')\n\t        }\n\t      }\n\t    }\n\n\t    this[kInterceptors] = newInterceptors;\n\t  }\n\n\t  close (callback) {\n\t    if (callback === undefined) {\n\t      return new Promise((resolve, reject) => {\n\t        this.close((err, data) => {\n\t          return err ? reject(err) : resolve(data)\n\t        });\n\t      })\n\t    }\n\n\t    if (typeof callback !== 'function') {\n\t      throw new InvalidArgumentError('invalid callback')\n\t    }\n\n\t    if (this[kDestroyed]) {\n\t      queueMicrotask(() => callback(new ClientDestroyedError(), null));\n\t      return\n\t    }\n\n\t    if (this[kClosed]) {\n\t      if (this[kOnClosed]) {\n\t        this[kOnClosed].push(callback);\n\t      } else {\n\t        queueMicrotask(() => callback(null, null));\n\t      }\n\t      return\n\t    }\n\n\t    this[kClosed] = true;\n\t    this[kOnClosed].push(callback);\n\n\t    const onClosed = () => {\n\t      const callbacks = this[kOnClosed];\n\t      this[kOnClosed] = null;\n\t      for (let i = 0; i < callbacks.length; i++) {\n\t        callbacks[i](null, null);\n\t      }\n\t    };\n\n\t    // Should not error.\n\t    this[kClose]()\n\t      .then(() => this.destroy())\n\t      .then(() => {\n\t        queueMicrotask(onClosed);\n\t      });\n\t  }\n\n\t  destroy (err, callback) {\n\t    if (typeof err === 'function') {\n\t      callback = err;\n\t      err = null;\n\t    }\n\n\t    if (callback === undefined) {\n\t      return new Promise((resolve, reject) => {\n\t        this.destroy(err, (err, data) => {\n\t          return err ? /* istanbul ignore next: should never error */ reject(err) : resolve(data)\n\t        });\n\t      })\n\t    }\n\n\t    if (typeof callback !== 'function') {\n\t      throw new InvalidArgumentError('invalid callback')\n\t    }\n\n\t    if (this[kDestroyed]) {\n\t      if (this[kOnDestroyed]) {\n\t        this[kOnDestroyed].push(callback);\n\t      } else {\n\t        queueMicrotask(() => callback(null, null));\n\t      }\n\t      return\n\t    }\n\n\t    if (!err) {\n\t      err = new ClientDestroyedError();\n\t    }\n\n\t    this[kDestroyed] = true;\n\t    this[kOnDestroyed] = this[kOnDestroyed] || [];\n\t    this[kOnDestroyed].push(callback);\n\n\t    const onDestroyed = () => {\n\t      const callbacks = this[kOnDestroyed];\n\t      this[kOnDestroyed] = null;\n\t      for (let i = 0; i < callbacks.length; i++) {\n\t        callbacks[i](null, null);\n\t      }\n\t    };\n\n\t    // Should not error.\n\t    this[kDestroy](err).then(() => {\n\t      queueMicrotask(onDestroyed);\n\t    });\n\t  }\n\n\t  [kInterceptedDispatch] (opts, handler) {\n\t    if (!this[kInterceptors] || this[kInterceptors].length === 0) {\n\t      this[kInterceptedDispatch] = this[kDispatch];\n\t      return this[kDispatch](opts, handler)\n\t    }\n\n\t    let dispatch = this[kDispatch].bind(this);\n\t    for (let i = this[kInterceptors].length - 1; i >= 0; i--) {\n\t      dispatch = this[kInterceptors][i](dispatch);\n\t    }\n\t    this[kInterceptedDispatch] = dispatch;\n\t    return dispatch(opts, handler)\n\t  }\n\n\t  dispatch (opts, handler) {\n\t    if (!handler || typeof handler !== 'object') {\n\t      throw new InvalidArgumentError('handler must be an object')\n\t    }\n\n\t    try {\n\t      if (!opts || typeof opts !== 'object') {\n\t        throw new InvalidArgumentError('opts must be an object.')\n\t      }\n\n\t      if (this[kDestroyed] || this[kOnDestroyed]) {\n\t        throw new ClientDestroyedError()\n\t      }\n\n\t      if (this[kClosed]) {\n\t        throw new ClientClosedError()\n\t      }\n\n\t      return this[kInterceptedDispatch](opts, handler)\n\t    } catch (err) {\n\t      if (typeof handler.onError !== 'function') {\n\t        throw new InvalidArgumentError('invalid onError method')\n\t      }\n\n\t      handler.onError(err);\n\n\t      return false\n\t    }\n\t  }\n\t}\n\n\tdispatcherBase = DispatcherBase;\n\treturn dispatcherBase;\n}\n\nvar connect;\nvar hasRequiredConnect;\n\nfunction requireConnect () {\n\tif (hasRequiredConnect) return connect;\n\thasRequiredConnect = 1;\n\n\tconst net = require$$0$a;\n\tconst assert = require$$0$9;\n\tconst util = requireUtil$c();\n\tconst { InvalidArgumentError, ConnectTimeoutError } = requireErrors$3();\n\n\tlet tls; // include tls conditionally since it is not always available\n\n\t// TODO: session re-use does not wait for the first\n\t// connection to resolve the session and might therefore\n\t// resolve the same servername multiple times even when\n\t// re-use is enabled.\n\n\tlet SessionCache;\n\t// FIXME: remove workaround when the Node bug is fixed\n\t// https://github.com/nodejs/node/issues/49344#issuecomment-1741776308\n\tif (commonjsGlobal.FinalizationRegistry && !process.env.NODE_V8_COVERAGE) {\n\t  SessionCache = class WeakSessionCache {\n\t    constructor (maxCachedSessions) {\n\t      this._maxCachedSessions = maxCachedSessions;\n\t      this._sessionCache = new Map();\n\t      this._sessionRegistry = new commonjsGlobal.FinalizationRegistry((key) => {\n\t        if (this._sessionCache.size < this._maxCachedSessions) {\n\t          return\n\t        }\n\n\t        const ref = this._sessionCache.get(key);\n\t        if (ref !== undefined && ref.deref() === undefined) {\n\t          this._sessionCache.delete(key);\n\t        }\n\t      });\n\t    }\n\n\t    get (sessionKey) {\n\t      const ref = this._sessionCache.get(sessionKey);\n\t      return ref ? ref.deref() : null\n\t    }\n\n\t    set (sessionKey, session) {\n\t      if (this._maxCachedSessions === 0) {\n\t        return\n\t      }\n\n\t      this._sessionCache.set(sessionKey, new WeakRef(session));\n\t      this._sessionRegistry.register(session, sessionKey);\n\t    }\n\t  };\n\t} else {\n\t  SessionCache = class SimpleSessionCache {\n\t    constructor (maxCachedSessions) {\n\t      this._maxCachedSessions = maxCachedSessions;\n\t      this._sessionCache = new Map();\n\t    }\n\n\t    get (sessionKey) {\n\t      return this._sessionCache.get(sessionKey)\n\t    }\n\n\t    set (sessionKey, session) {\n\t      if (this._maxCachedSessions === 0) {\n\t        return\n\t      }\n\n\t      if (this._sessionCache.size >= this._maxCachedSessions) {\n\t        // remove the oldest session\n\t        const { value: oldestKey } = this._sessionCache.keys().next();\n\t        this._sessionCache.delete(oldestKey);\n\t      }\n\n\t      this._sessionCache.set(sessionKey, session);\n\t    }\n\t  };\n\t}\n\n\tfunction buildConnector ({ allowH2, maxCachedSessions, socketPath, timeout, ...opts }) {\n\t  if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) {\n\t    throw new InvalidArgumentError('maxCachedSessions must be a positive integer or zero')\n\t  }\n\n\t  const options = { path: socketPath, ...opts };\n\t  const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions);\n\t  timeout = timeout == null ? 10e3 : timeout;\n\t  allowH2 = allowH2 != null ? allowH2 : false;\n\t  return function connect ({ hostname, host, protocol, port, servername, localAddress, httpSocket }, callback) {\n\t    let socket;\n\t    if (protocol === 'https:') {\n\t      if (!tls) {\n\t        tls = require$$1$5;\n\t      }\n\t      servername = servername || options.servername || util.getServerName(host) || null;\n\n\t      const sessionKey = servername || hostname;\n\t      const session = sessionCache.get(sessionKey) || null;\n\n\t      assert(sessionKey);\n\n\t      socket = tls.connect({\n\t        highWaterMark: 16384, // TLS in node can't have bigger HWM anyway...\n\t        ...options,\n\t        servername,\n\t        session,\n\t        localAddress,\n\t        // TODO(HTTP/2): Add support for h2c\n\t        ALPNProtocols: allowH2 ? ['http/1.1', 'h2'] : ['http/1.1'],\n\t        socket: httpSocket, // upgrade socket connection\n\t        port: port || 443,\n\t        host: hostname\n\t      });\n\n\t      socket\n\t        .on('session', function (session) {\n\t          // TODO (fix): Can a session become invalid once established? Don't think so?\n\t          sessionCache.set(sessionKey, session);\n\t        });\n\t    } else {\n\t      assert(!httpSocket, 'httpSocket can only be sent on TLS update');\n\t      socket = net.connect({\n\t        highWaterMark: 64 * 1024, // Same as nodejs fs streams.\n\t        ...options,\n\t        localAddress,\n\t        port: port || 80,\n\t        host: hostname\n\t      });\n\t    }\n\n\t    // Set TCP keep alive options on the socket here instead of in connect() for the case of assigning the socket\n\t    if (options.keepAlive == null || options.keepAlive) {\n\t      const keepAliveInitialDelay = options.keepAliveInitialDelay === undefined ? 60e3 : options.keepAliveInitialDelay;\n\t      socket.setKeepAlive(true, keepAliveInitialDelay);\n\t    }\n\n\t    const cancelTimeout = setupTimeout(() => onConnectTimeout(socket), timeout);\n\n\t    socket\n\t      .setNoDelay(true)\n\t      .once(protocol === 'https:' ? 'secureConnect' : 'connect', function () {\n\t        cancelTimeout();\n\n\t        if (callback) {\n\t          const cb = callback;\n\t          callback = null;\n\t          cb(null, this);\n\t        }\n\t      })\n\t      .on('error', function (err) {\n\t        cancelTimeout();\n\n\t        if (callback) {\n\t          const cb = callback;\n\t          callback = null;\n\t          cb(err);\n\t        }\n\t      });\n\n\t    return socket\n\t  }\n\t}\n\n\tfunction setupTimeout (onConnectTimeout, timeout) {\n\t  if (!timeout) {\n\t    return () => {}\n\t  }\n\n\t  let s1 = null;\n\t  let s2 = null;\n\t  const timeoutId = setTimeout(() => {\n\t    // setImmediate is added to make sure that we priotorise socket error events over timeouts\n\t    s1 = setImmediate(() => {\n\t      if (process.platform === 'win32') {\n\t        // Windows needs an extra setImmediate probably due to implementation differences in the socket logic\n\t        s2 = setImmediate(() => onConnectTimeout());\n\t      } else {\n\t        onConnectTimeout();\n\t      }\n\t    });\n\t  }, timeout);\n\t  return () => {\n\t    clearTimeout(timeoutId);\n\t    clearImmediate(s1);\n\t    clearImmediate(s2);\n\t  }\n\t}\n\n\tfunction onConnectTimeout (socket) {\n\t  util.destroy(socket, new ConnectTimeoutError());\n\t}\n\n\tconnect = buildConnector;\n\treturn connect;\n}\n\nvar constants$6 = {};\n\nvar utils$4 = {};\n\nvar hasRequiredUtils$4;\n\nfunction requireUtils$4 () {\n\tif (hasRequiredUtils$4) return utils$4;\n\thasRequiredUtils$4 = 1;\n\tObject.defineProperty(utils$4, \"__esModule\", { value: true });\n\tutils$4.enumToMap = void 0;\n\tfunction enumToMap(obj) {\n\t    const res = {};\n\t    Object.keys(obj).forEach((key) => {\n\t        const value = obj[key];\n\t        if (typeof value === 'number') {\n\t            res[key] = value;\n\t        }\n\t    });\n\t    return res;\n\t}\n\tutils$4.enumToMap = enumToMap;\n\t\n\treturn utils$4;\n}\n\nvar hasRequiredConstants$6;\n\nfunction requireConstants$6 () {\n\tif (hasRequiredConstants$6) return constants$6;\n\thasRequiredConstants$6 = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.SPECIAL_HEADERS = exports.HEADER_STATE = exports.MINOR = exports.MAJOR = exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS = exports.TOKEN = exports.STRICT_TOKEN = exports.HEX = exports.URL_CHAR = exports.STRICT_URL_CHAR = exports.USERINFO_CHARS = exports.MARK = exports.ALPHANUM = exports.NUM = exports.HEX_MAP = exports.NUM_MAP = exports.ALPHA = exports.FINISH = exports.H_METHOD_MAP = exports.METHOD_MAP = exports.METHODS_RTSP = exports.METHODS_ICE = exports.METHODS_HTTP = exports.METHODS = exports.LENIENT_FLAGS = exports.FLAGS = exports.TYPE = exports.ERROR = void 0;\n\t\tconst utils_1 = requireUtils$4();\n\t\t(function (ERROR) {\n\t\t    ERROR[ERROR[\"OK\"] = 0] = \"OK\";\n\t\t    ERROR[ERROR[\"INTERNAL\"] = 1] = \"INTERNAL\";\n\t\t    ERROR[ERROR[\"STRICT\"] = 2] = \"STRICT\";\n\t\t    ERROR[ERROR[\"LF_EXPECTED\"] = 3] = \"LF_EXPECTED\";\n\t\t    ERROR[ERROR[\"UNEXPECTED_CONTENT_LENGTH\"] = 4] = \"UNEXPECTED_CONTENT_LENGTH\";\n\t\t    ERROR[ERROR[\"CLOSED_CONNECTION\"] = 5] = \"CLOSED_CONNECTION\";\n\t\t    ERROR[ERROR[\"INVALID_METHOD\"] = 6] = \"INVALID_METHOD\";\n\t\t    ERROR[ERROR[\"INVALID_URL\"] = 7] = \"INVALID_URL\";\n\t\t    ERROR[ERROR[\"INVALID_CONSTANT\"] = 8] = \"INVALID_CONSTANT\";\n\t\t    ERROR[ERROR[\"INVALID_VERSION\"] = 9] = \"INVALID_VERSION\";\n\t\t    ERROR[ERROR[\"INVALID_HEADER_TOKEN\"] = 10] = \"INVALID_HEADER_TOKEN\";\n\t\t    ERROR[ERROR[\"INVALID_CONTENT_LENGTH\"] = 11] = \"INVALID_CONTENT_LENGTH\";\n\t\t    ERROR[ERROR[\"INVALID_CHUNK_SIZE\"] = 12] = \"INVALID_CHUNK_SIZE\";\n\t\t    ERROR[ERROR[\"INVALID_STATUS\"] = 13] = \"INVALID_STATUS\";\n\t\t    ERROR[ERROR[\"INVALID_EOF_STATE\"] = 14] = \"INVALID_EOF_STATE\";\n\t\t    ERROR[ERROR[\"INVALID_TRANSFER_ENCODING\"] = 15] = \"INVALID_TRANSFER_ENCODING\";\n\t\t    ERROR[ERROR[\"CB_MESSAGE_BEGIN\"] = 16] = \"CB_MESSAGE_BEGIN\";\n\t\t    ERROR[ERROR[\"CB_HEADERS_COMPLETE\"] = 17] = \"CB_HEADERS_COMPLETE\";\n\t\t    ERROR[ERROR[\"CB_MESSAGE_COMPLETE\"] = 18] = \"CB_MESSAGE_COMPLETE\";\n\t\t    ERROR[ERROR[\"CB_CHUNK_HEADER\"] = 19] = \"CB_CHUNK_HEADER\";\n\t\t    ERROR[ERROR[\"CB_CHUNK_COMPLETE\"] = 20] = \"CB_CHUNK_COMPLETE\";\n\t\t    ERROR[ERROR[\"PAUSED\"] = 21] = \"PAUSED\";\n\t\t    ERROR[ERROR[\"PAUSED_UPGRADE\"] = 22] = \"PAUSED_UPGRADE\";\n\t\t    ERROR[ERROR[\"PAUSED_H2_UPGRADE\"] = 23] = \"PAUSED_H2_UPGRADE\";\n\t\t    ERROR[ERROR[\"USER\"] = 24] = \"USER\";\n\t\t})(exports.ERROR || (exports.ERROR = {}));\n\t\t(function (TYPE) {\n\t\t    TYPE[TYPE[\"BOTH\"] = 0] = \"BOTH\";\n\t\t    TYPE[TYPE[\"REQUEST\"] = 1] = \"REQUEST\";\n\t\t    TYPE[TYPE[\"RESPONSE\"] = 2] = \"RESPONSE\";\n\t\t})(exports.TYPE || (exports.TYPE = {}));\n\t\t(function (FLAGS) {\n\t\t    FLAGS[FLAGS[\"CONNECTION_KEEP_ALIVE\"] = 1] = \"CONNECTION_KEEP_ALIVE\";\n\t\t    FLAGS[FLAGS[\"CONNECTION_CLOSE\"] = 2] = \"CONNECTION_CLOSE\";\n\t\t    FLAGS[FLAGS[\"CONNECTION_UPGRADE\"] = 4] = \"CONNECTION_UPGRADE\";\n\t\t    FLAGS[FLAGS[\"CHUNKED\"] = 8] = \"CHUNKED\";\n\t\t    FLAGS[FLAGS[\"UPGRADE\"] = 16] = \"UPGRADE\";\n\t\t    FLAGS[FLAGS[\"CONTENT_LENGTH\"] = 32] = \"CONTENT_LENGTH\";\n\t\t    FLAGS[FLAGS[\"SKIPBODY\"] = 64] = \"SKIPBODY\";\n\t\t    FLAGS[FLAGS[\"TRAILING\"] = 128] = \"TRAILING\";\n\t\t    // 1 << 8 is unused\n\t\t    FLAGS[FLAGS[\"TRANSFER_ENCODING\"] = 512] = \"TRANSFER_ENCODING\";\n\t\t})(exports.FLAGS || (exports.FLAGS = {}));\n\t\t(function (LENIENT_FLAGS) {\n\t\t    LENIENT_FLAGS[LENIENT_FLAGS[\"HEADERS\"] = 1] = \"HEADERS\";\n\t\t    LENIENT_FLAGS[LENIENT_FLAGS[\"CHUNKED_LENGTH\"] = 2] = \"CHUNKED_LENGTH\";\n\t\t    LENIENT_FLAGS[LENIENT_FLAGS[\"KEEP_ALIVE\"] = 4] = \"KEEP_ALIVE\";\n\t\t})(exports.LENIENT_FLAGS || (exports.LENIENT_FLAGS = {}));\n\t\tvar METHODS;\n\t\t(function (METHODS) {\n\t\t    METHODS[METHODS[\"DELETE\"] = 0] = \"DELETE\";\n\t\t    METHODS[METHODS[\"GET\"] = 1] = \"GET\";\n\t\t    METHODS[METHODS[\"HEAD\"] = 2] = \"HEAD\";\n\t\t    METHODS[METHODS[\"POST\"] = 3] = \"POST\";\n\t\t    METHODS[METHODS[\"PUT\"] = 4] = \"PUT\";\n\t\t    /* pathological */\n\t\t    METHODS[METHODS[\"CONNECT\"] = 5] = \"CONNECT\";\n\t\t    METHODS[METHODS[\"OPTIONS\"] = 6] = \"OPTIONS\";\n\t\t    METHODS[METHODS[\"TRACE\"] = 7] = \"TRACE\";\n\t\t    /* WebDAV */\n\t\t    METHODS[METHODS[\"COPY\"] = 8] = \"COPY\";\n\t\t    METHODS[METHODS[\"LOCK\"] = 9] = \"LOCK\";\n\t\t    METHODS[METHODS[\"MKCOL\"] = 10] = \"MKCOL\";\n\t\t    METHODS[METHODS[\"MOVE\"] = 11] = \"MOVE\";\n\t\t    METHODS[METHODS[\"PROPFIND\"] = 12] = \"PROPFIND\";\n\t\t    METHODS[METHODS[\"PROPPATCH\"] = 13] = \"PROPPATCH\";\n\t\t    METHODS[METHODS[\"SEARCH\"] = 14] = \"SEARCH\";\n\t\t    METHODS[METHODS[\"UNLOCK\"] = 15] = \"UNLOCK\";\n\t\t    METHODS[METHODS[\"BIND\"] = 16] = \"BIND\";\n\t\t    METHODS[METHODS[\"REBIND\"] = 17] = \"REBIND\";\n\t\t    METHODS[METHODS[\"UNBIND\"] = 18] = \"UNBIND\";\n\t\t    METHODS[METHODS[\"ACL\"] = 19] = \"ACL\";\n\t\t    /* subversion */\n\t\t    METHODS[METHODS[\"REPORT\"] = 20] = \"REPORT\";\n\t\t    METHODS[METHODS[\"MKACTIVITY\"] = 21] = \"MKACTIVITY\";\n\t\t    METHODS[METHODS[\"CHECKOUT\"] = 22] = \"CHECKOUT\";\n\t\t    METHODS[METHODS[\"MERGE\"] = 23] = \"MERGE\";\n\t\t    /* upnp */\n\t\t    METHODS[METHODS[\"M-SEARCH\"] = 24] = \"M-SEARCH\";\n\t\t    METHODS[METHODS[\"NOTIFY\"] = 25] = \"NOTIFY\";\n\t\t    METHODS[METHODS[\"SUBSCRIBE\"] = 26] = \"SUBSCRIBE\";\n\t\t    METHODS[METHODS[\"UNSUBSCRIBE\"] = 27] = \"UNSUBSCRIBE\";\n\t\t    /* RFC-5789 */\n\t\t    METHODS[METHODS[\"PATCH\"] = 28] = \"PATCH\";\n\t\t    METHODS[METHODS[\"PURGE\"] = 29] = \"PURGE\";\n\t\t    /* CalDAV */\n\t\t    METHODS[METHODS[\"MKCALENDAR\"] = 30] = \"MKCALENDAR\";\n\t\t    /* RFC-2068, section 19.6.1.2 */\n\t\t    METHODS[METHODS[\"LINK\"] = 31] = \"LINK\";\n\t\t    METHODS[METHODS[\"UNLINK\"] = 32] = \"UNLINK\";\n\t\t    /* icecast */\n\t\t    METHODS[METHODS[\"SOURCE\"] = 33] = \"SOURCE\";\n\t\t    /* RFC-7540, section 11.6 */\n\t\t    METHODS[METHODS[\"PRI\"] = 34] = \"PRI\";\n\t\t    /* RFC-2326 RTSP */\n\t\t    METHODS[METHODS[\"DESCRIBE\"] = 35] = \"DESCRIBE\";\n\t\t    METHODS[METHODS[\"ANNOUNCE\"] = 36] = \"ANNOUNCE\";\n\t\t    METHODS[METHODS[\"SETUP\"] = 37] = \"SETUP\";\n\t\t    METHODS[METHODS[\"PLAY\"] = 38] = \"PLAY\";\n\t\t    METHODS[METHODS[\"PAUSE\"] = 39] = \"PAUSE\";\n\t\t    METHODS[METHODS[\"TEARDOWN\"] = 40] = \"TEARDOWN\";\n\t\t    METHODS[METHODS[\"GET_PARAMETER\"] = 41] = \"GET_PARAMETER\";\n\t\t    METHODS[METHODS[\"SET_PARAMETER\"] = 42] = \"SET_PARAMETER\";\n\t\t    METHODS[METHODS[\"REDIRECT\"] = 43] = \"REDIRECT\";\n\t\t    METHODS[METHODS[\"RECORD\"] = 44] = \"RECORD\";\n\t\t    /* RAOP */\n\t\t    METHODS[METHODS[\"FLUSH\"] = 45] = \"FLUSH\";\n\t\t})(METHODS = exports.METHODS || (exports.METHODS = {}));\n\t\texports.METHODS_HTTP = [\n\t\t    METHODS.DELETE,\n\t\t    METHODS.GET,\n\t\t    METHODS.HEAD,\n\t\t    METHODS.POST,\n\t\t    METHODS.PUT,\n\t\t    METHODS.CONNECT,\n\t\t    METHODS.OPTIONS,\n\t\t    METHODS.TRACE,\n\t\t    METHODS.COPY,\n\t\t    METHODS.LOCK,\n\t\t    METHODS.MKCOL,\n\t\t    METHODS.MOVE,\n\t\t    METHODS.PROPFIND,\n\t\t    METHODS.PROPPATCH,\n\t\t    METHODS.SEARCH,\n\t\t    METHODS.UNLOCK,\n\t\t    METHODS.BIND,\n\t\t    METHODS.REBIND,\n\t\t    METHODS.UNBIND,\n\t\t    METHODS.ACL,\n\t\t    METHODS.REPORT,\n\t\t    METHODS.MKACTIVITY,\n\t\t    METHODS.CHECKOUT,\n\t\t    METHODS.MERGE,\n\t\t    METHODS['M-SEARCH'],\n\t\t    METHODS.NOTIFY,\n\t\t    METHODS.SUBSCRIBE,\n\t\t    METHODS.UNSUBSCRIBE,\n\t\t    METHODS.PATCH,\n\t\t    METHODS.PURGE,\n\t\t    METHODS.MKCALENDAR,\n\t\t    METHODS.LINK,\n\t\t    METHODS.UNLINK,\n\t\t    METHODS.PRI,\n\t\t    // TODO(indutny): should we allow it with HTTP?\n\t\t    METHODS.SOURCE,\n\t\t];\n\t\texports.METHODS_ICE = [\n\t\t    METHODS.SOURCE,\n\t\t];\n\t\texports.METHODS_RTSP = [\n\t\t    METHODS.OPTIONS,\n\t\t    METHODS.DESCRIBE,\n\t\t    METHODS.ANNOUNCE,\n\t\t    METHODS.SETUP,\n\t\t    METHODS.PLAY,\n\t\t    METHODS.PAUSE,\n\t\t    METHODS.TEARDOWN,\n\t\t    METHODS.GET_PARAMETER,\n\t\t    METHODS.SET_PARAMETER,\n\t\t    METHODS.REDIRECT,\n\t\t    METHODS.RECORD,\n\t\t    METHODS.FLUSH,\n\t\t    // For AirPlay\n\t\t    METHODS.GET,\n\t\t    METHODS.POST,\n\t\t];\n\t\texports.METHOD_MAP = utils_1.enumToMap(METHODS);\n\t\texports.H_METHOD_MAP = {};\n\t\tObject.keys(exports.METHOD_MAP).forEach((key) => {\n\t\t    if (/^H/.test(key)) {\n\t\t        exports.H_METHOD_MAP[key] = exports.METHOD_MAP[key];\n\t\t    }\n\t\t});\n\t\t(function (FINISH) {\n\t\t    FINISH[FINISH[\"SAFE\"] = 0] = \"SAFE\";\n\t\t    FINISH[FINISH[\"SAFE_WITH_CB\"] = 1] = \"SAFE_WITH_CB\";\n\t\t    FINISH[FINISH[\"UNSAFE\"] = 2] = \"UNSAFE\";\n\t\t})(exports.FINISH || (exports.FINISH = {}));\n\t\texports.ALPHA = [];\n\t\tfor (let i = 'A'.charCodeAt(0); i <= 'Z'.charCodeAt(0); i++) {\n\t\t    // Upper case\n\t\t    exports.ALPHA.push(String.fromCharCode(i));\n\t\t    // Lower case\n\t\t    exports.ALPHA.push(String.fromCharCode(i + 0x20));\n\t\t}\n\t\texports.NUM_MAP = {\n\t\t    0: 0, 1: 1, 2: 2, 3: 3, 4: 4,\n\t\t    5: 5, 6: 6, 7: 7, 8: 8, 9: 9,\n\t\t};\n\t\texports.HEX_MAP = {\n\t\t    0: 0, 1: 1, 2: 2, 3: 3, 4: 4,\n\t\t    5: 5, 6: 6, 7: 7, 8: 8, 9: 9,\n\t\t    A: 0XA, B: 0XB, C: 0XC, D: 0XD, E: 0XE, F: 0XF,\n\t\t    a: 0xa, b: 0xb, c: 0xc, d: 0xd, e: 0xe, f: 0xf,\n\t\t};\n\t\texports.NUM = [\n\t\t    '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',\n\t\t];\n\t\texports.ALPHANUM = exports.ALPHA.concat(exports.NUM);\n\t\texports.MARK = ['-', '_', '.', '!', '~', '*', '\\'', '(', ')'];\n\t\texports.USERINFO_CHARS = exports.ALPHANUM\n\t\t    .concat(exports.MARK)\n\t\t    .concat(['%', ';', ':', '&', '=', '+', '$', ',']);\n\t\t// TODO(indutny): use RFC\n\t\texports.STRICT_URL_CHAR = [\n\t\t    '!', '\"', '$', '%', '&', '\\'',\n\t\t    '(', ')', '*', '+', ',', '-', '.', '/',\n\t\t    ':', ';', '<', '=', '>',\n\t\t    '@', '[', '\\\\', ']', '^', '_',\n\t\t    '`',\n\t\t    '{', '|', '}', '~',\n\t\t].concat(exports.ALPHANUM);\n\t\texports.URL_CHAR = exports.STRICT_URL_CHAR\n\t\t    .concat(['\\t', '\\f']);\n\t\t// All characters with 0x80 bit set to 1\n\t\tfor (let i = 0x80; i <= 0xff; i++) {\n\t\t    exports.URL_CHAR.push(i);\n\t\t}\n\t\texports.HEX = exports.NUM.concat(['a', 'b', 'c', 'd', 'e', 'f', 'A', 'B', 'C', 'D', 'E', 'F']);\n\t\t/* Tokens as defined by rfc 2616. Also lowercases them.\n\t\t *        token       = 1*<any CHAR except CTLs or separators>\n\t\t *     separators     = \"(\" | \")\" | \"<\" | \">\" | \"@\"\n\t\t *                    | \",\" | \";\" | \":\" | \"\\\" | <\">\n\t\t *                    | \"/\" | \"[\" | \"]\" | \"?\" | \"=\"\n\t\t *                    | \"{\" | \"}\" | SP | HT\n\t\t */\n\t\texports.STRICT_TOKEN = [\n\t\t    '!', '#', '$', '%', '&', '\\'',\n\t\t    '*', '+', '-', '.',\n\t\t    '^', '_', '`',\n\t\t    '|', '~',\n\t\t].concat(exports.ALPHANUM);\n\t\texports.TOKEN = exports.STRICT_TOKEN.concat([' ']);\n\t\t/*\n\t\t * Verify that a char is a valid visible (printable) US-ASCII\n\t\t * character or %x80-FF\n\t\t */\n\t\texports.HEADER_CHARS = ['\\t'];\n\t\tfor (let i = 32; i <= 255; i++) {\n\t\t    if (i !== 127) {\n\t\t        exports.HEADER_CHARS.push(i);\n\t\t    }\n\t\t}\n\t\t// ',' = \\x44\n\t\texports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c) => c !== 44);\n\t\texports.MAJOR = exports.NUM_MAP;\n\t\texports.MINOR = exports.MAJOR;\n\t\tvar HEADER_STATE;\n\t\t(function (HEADER_STATE) {\n\t\t    HEADER_STATE[HEADER_STATE[\"GENERAL\"] = 0] = \"GENERAL\";\n\t\t    HEADER_STATE[HEADER_STATE[\"CONNECTION\"] = 1] = \"CONNECTION\";\n\t\t    HEADER_STATE[HEADER_STATE[\"CONTENT_LENGTH\"] = 2] = \"CONTENT_LENGTH\";\n\t\t    HEADER_STATE[HEADER_STATE[\"TRANSFER_ENCODING\"] = 3] = \"TRANSFER_ENCODING\";\n\t\t    HEADER_STATE[HEADER_STATE[\"UPGRADE\"] = 4] = \"UPGRADE\";\n\t\t    HEADER_STATE[HEADER_STATE[\"CONNECTION_KEEP_ALIVE\"] = 5] = \"CONNECTION_KEEP_ALIVE\";\n\t\t    HEADER_STATE[HEADER_STATE[\"CONNECTION_CLOSE\"] = 6] = \"CONNECTION_CLOSE\";\n\t\t    HEADER_STATE[HEADER_STATE[\"CONNECTION_UPGRADE\"] = 7] = \"CONNECTION_UPGRADE\";\n\t\t    HEADER_STATE[HEADER_STATE[\"TRANSFER_ENCODING_CHUNKED\"] = 8] = \"TRANSFER_ENCODING_CHUNKED\";\n\t\t})(HEADER_STATE = exports.HEADER_STATE || (exports.HEADER_STATE = {}));\n\t\texports.SPECIAL_HEADERS = {\n\t\t    'connection': HEADER_STATE.CONNECTION,\n\t\t    'content-length': HEADER_STATE.CONTENT_LENGTH,\n\t\t    'proxy-connection': HEADER_STATE.CONNECTION,\n\t\t    'transfer-encoding': HEADER_STATE.TRANSFER_ENCODING,\n\t\t    'upgrade': HEADER_STATE.UPGRADE,\n\t\t};\n\t\t\n\t} (constants$6));\n\treturn constants$6;\n}\n\nvar RedirectHandler_1;\nvar hasRequiredRedirectHandler;\n\nfunction requireRedirectHandler () {\n\tif (hasRequiredRedirectHandler) return RedirectHandler_1;\n\thasRequiredRedirectHandler = 1;\n\n\tconst util = requireUtil$c();\n\tconst { kBodyUsed } = requireSymbols$4();\n\tconst assert = require$$0$9;\n\tconst { InvalidArgumentError } = requireErrors$3();\n\tconst EE = require$$1$4;\n\n\tconst redirectableStatusCodes = [300, 301, 302, 303, 307, 308];\n\n\tconst kBody = Symbol('body');\n\n\tclass BodyAsyncIterable {\n\t  constructor (body) {\n\t    this[kBody] = body;\n\t    this[kBodyUsed] = false;\n\t  }\n\n\t  async * [Symbol.asyncIterator] () {\n\t    assert(!this[kBodyUsed], 'disturbed');\n\t    this[kBodyUsed] = true;\n\t    yield * this[kBody];\n\t  }\n\t}\n\n\tclass RedirectHandler {\n\t  constructor (dispatch, maxRedirections, opts, handler) {\n\t    if (maxRedirections != null && (!Number.isInteger(maxRedirections) || maxRedirections < 0)) {\n\t      throw new InvalidArgumentError('maxRedirections must be a positive number')\n\t    }\n\n\t    util.validateHandler(handler, opts.method, opts.upgrade);\n\n\t    this.dispatch = dispatch;\n\t    this.location = null;\n\t    this.abort = null;\n\t    this.opts = { ...opts, maxRedirections: 0 }; // opts must be a copy\n\t    this.maxRedirections = maxRedirections;\n\t    this.handler = handler;\n\t    this.history = [];\n\n\t    if (util.isStream(this.opts.body)) {\n\t      // TODO (fix): Provide some way for the user to cache the file to e.g. /tmp\n\t      // so that it can be dispatched again?\n\t      // TODO (fix): Do we need 100-expect support to provide a way to do this properly?\n\t      if (util.bodyLength(this.opts.body) === 0) {\n\t        this.opts.body\n\t          .on('data', function () {\n\t            assert(false);\n\t          });\n\t      }\n\n\t      if (typeof this.opts.body.readableDidRead !== 'boolean') {\n\t        this.opts.body[kBodyUsed] = false;\n\t        EE.prototype.on.call(this.opts.body, 'data', function () {\n\t          this[kBodyUsed] = true;\n\t        });\n\t      }\n\t    } else if (this.opts.body && typeof this.opts.body.pipeTo === 'function') {\n\t      // TODO (fix): We can't access ReadableStream internal state\n\t      // to determine whether or not it has been disturbed. This is just\n\t      // a workaround.\n\t      this.opts.body = new BodyAsyncIterable(this.opts.body);\n\t    } else if (\n\t      this.opts.body &&\n\t      typeof this.opts.body !== 'string' &&\n\t      !ArrayBuffer.isView(this.opts.body) &&\n\t      util.isIterable(this.opts.body)\n\t    ) {\n\t      // TODO: Should we allow re-using iterable if !this.opts.idempotent\n\t      // or through some other flag?\n\t      this.opts.body = new BodyAsyncIterable(this.opts.body);\n\t    }\n\t  }\n\n\t  onConnect (abort) {\n\t    this.abort = abort;\n\t    this.handler.onConnect(abort, { history: this.history });\n\t  }\n\n\t  onUpgrade (statusCode, headers, socket) {\n\t    this.handler.onUpgrade(statusCode, headers, socket);\n\t  }\n\n\t  onError (error) {\n\t    this.handler.onError(error);\n\t  }\n\n\t  onHeaders (statusCode, headers, resume, statusText) {\n\t    this.location = this.history.length >= this.maxRedirections || util.isDisturbed(this.opts.body)\n\t      ? null\n\t      : parseLocation(statusCode, headers);\n\n\t    if (this.opts.origin) {\n\t      this.history.push(new URL(this.opts.path, this.opts.origin));\n\t    }\n\n\t    if (!this.location) {\n\t      return this.handler.onHeaders(statusCode, headers, resume, statusText)\n\t    }\n\n\t    const { origin, pathname, search } = util.parseURL(new URL(this.location, this.opts.origin && new URL(this.opts.path, this.opts.origin)));\n\t    const path = search ? `${pathname}${search}` : pathname;\n\n\t    // Remove headers referring to the original URL.\n\t    // By default it is Host only, unless it's a 303 (see below), which removes also all Content-* headers.\n\t    // https://tools.ietf.org/html/rfc7231#section-6.4\n\t    this.opts.headers = cleanRequestHeaders(this.opts.headers, statusCode === 303, this.opts.origin !== origin);\n\t    this.opts.path = path;\n\t    this.opts.origin = origin;\n\t    this.opts.maxRedirections = 0;\n\t    this.opts.query = null;\n\n\t    // https://tools.ietf.org/html/rfc7231#section-6.4.4\n\t    // In case of HTTP 303, always replace method to be either HEAD or GET\n\t    if (statusCode === 303 && this.opts.method !== 'HEAD') {\n\t      this.opts.method = 'GET';\n\t      this.opts.body = null;\n\t    }\n\t  }\n\n\t  onData (chunk) {\n\t    if (this.location) ; else {\n\t      return this.handler.onData(chunk)\n\t    }\n\t  }\n\n\t  onComplete (trailers) {\n\t    if (this.location) {\n\t      /*\n\t        https://tools.ietf.org/html/rfc7231#section-6.4\n\n\t        TLDR: undici always ignores 3xx response trailers as they are not expected in case of redirections\n\t        and neither are useful if present.\n\n\t        See comment on onData method above for more detailed informations.\n\t      */\n\n\t      this.location = null;\n\t      this.abort = null;\n\n\t      this.dispatch(this.opts, this);\n\t    } else {\n\t      this.handler.onComplete(trailers);\n\t    }\n\t  }\n\n\t  onBodySent (chunk) {\n\t    if (this.handler.onBodySent) {\n\t      this.handler.onBodySent(chunk);\n\t    }\n\t  }\n\t}\n\n\tfunction parseLocation (statusCode, headers) {\n\t  if (redirectableStatusCodes.indexOf(statusCode) === -1) {\n\t    return null\n\t  }\n\n\t  for (let i = 0; i < headers.length; i += 2) {\n\t    if (headers[i].toString().toLowerCase() === 'location') {\n\t      return headers[i + 1]\n\t    }\n\t  }\n\t}\n\n\t// https://tools.ietf.org/html/rfc7231#section-6.4.4\n\tfunction shouldRemoveHeader (header, removeContent, unknownOrigin) {\n\t  if (header.length === 4) {\n\t    return util.headerNameToString(header) === 'host'\n\t  }\n\t  if (removeContent && util.headerNameToString(header).startsWith('content-')) {\n\t    return true\n\t  }\n\t  if (unknownOrigin && (header.length === 13 || header.length === 6 || header.length === 19)) {\n\t    const name = util.headerNameToString(header);\n\t    return name === 'authorization' || name === 'cookie' || name === 'proxy-authorization'\n\t  }\n\t  return false\n\t}\n\n\t// https://tools.ietf.org/html/rfc7231#section-6.4\n\tfunction cleanRequestHeaders (headers, removeContent, unknownOrigin) {\n\t  const ret = [];\n\t  if (Array.isArray(headers)) {\n\t    for (let i = 0; i < headers.length; i += 2) {\n\t      if (!shouldRemoveHeader(headers[i], removeContent, unknownOrigin)) {\n\t        ret.push(headers[i], headers[i + 1]);\n\t      }\n\t    }\n\t  } else if (headers && typeof headers === 'object') {\n\t    for (const key of Object.keys(headers)) {\n\t      if (!shouldRemoveHeader(key, removeContent, unknownOrigin)) {\n\t        ret.push(key, headers[key]);\n\t      }\n\t    }\n\t  } else {\n\t    assert(headers == null, 'headers must be an object or an array');\n\t  }\n\t  return ret\n\t}\n\n\tRedirectHandler_1 = RedirectHandler;\n\treturn RedirectHandler_1;\n}\n\nvar redirectInterceptor;\nvar hasRequiredRedirectInterceptor;\n\nfunction requireRedirectInterceptor () {\n\tif (hasRequiredRedirectInterceptor) return redirectInterceptor;\n\thasRequiredRedirectInterceptor = 1;\n\n\tconst RedirectHandler = requireRedirectHandler();\n\n\tfunction createRedirectInterceptor ({ maxRedirections: defaultMaxRedirections }) {\n\t  return (dispatch) => {\n\t    return function Intercept (opts, handler) {\n\t      const { maxRedirections = defaultMaxRedirections } = opts;\n\n\t      if (!maxRedirections) {\n\t        return dispatch(opts, handler)\n\t      }\n\n\t      const redirectHandler = new RedirectHandler(dispatch, maxRedirections, opts, handler);\n\t      opts = { ...opts, maxRedirections: 0 }; // Stop sub dispatcher from also redirecting.\n\t      return dispatch(opts, redirectHandler)\n\t    }\n\t  }\n\t}\n\n\tredirectInterceptor = createRedirectInterceptor;\n\treturn redirectInterceptor;\n}\n\nvar llhttpWasm;\nvar hasRequiredLlhttpWasm;\n\nfunction requireLlhttpWasm () {\n\tif (hasRequiredLlhttpWasm) return llhttpWasm;\n\thasRequiredLlhttpWasm = 1;\n\tllhttpWasm = 'AGFzbQEAAAABMAhgAX8Bf2ADf39/AX9gBH9/f38Bf2AAAGADf39/AGABfwBgAn9/AGAGf39/f39/AALLAQgDZW52GHdhc21fb25faGVhZGVyc19jb21wbGV0ZQACA2VudhV3YXNtX29uX21lc3NhZ2VfYmVnaW4AAANlbnYLd2FzbV9vbl91cmwAAQNlbnYOd2FzbV9vbl9zdGF0dXMAAQNlbnYUd2FzbV9vbl9oZWFkZXJfZmllbGQAAQNlbnYUd2FzbV9vbl9oZWFkZXJfdmFsdWUAAQNlbnYMd2FzbV9vbl9ib2R5AAEDZW52GHdhc21fb25fbWVzc2FnZV9jb21wbGV0ZQAAA0ZFAwMEAAAFAAAAAAAABQEFAAUFBQAABgAAAAAGBgYGAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAAABAQcAAAUFAwABBAUBcAESEgUDAQACBggBfwFBgNQECwfRBSIGbWVtb3J5AgALX2luaXRpYWxpemUACRlfX2luZGlyZWN0X2Z1bmN0aW9uX3RhYmxlAQALbGxodHRwX2luaXQAChhsbGh0dHBfc2hvdWxkX2tlZXBfYWxpdmUAQQxsbGh0dHBfYWxsb2MADAZtYWxsb2MARgtsbGh0dHBfZnJlZQANBGZyZWUASA9sbGh0dHBfZ2V0X3R5cGUADhVsbGh0dHBfZ2V0X2h0dHBfbWFqb3IADxVsbGh0dHBfZ2V0X2h0dHBfbWlub3IAEBFsbGh0dHBfZ2V0X21ldGhvZAARFmxsaHR0cF9nZXRfc3RhdHVzX2NvZGUAEhJsbGh0dHBfZ2V0X3VwZ3JhZGUAEwxsbGh0dHBfcmVzZXQAFA5sbGh0dHBfZXhlY3V0ZQAVFGxsaHR0cF9zZXR0aW5nc19pbml0ABYNbGxodHRwX2ZpbmlzaAAXDGxsaHR0cF9wYXVzZQAYDWxsaHR0cF9yZXN1bWUAGRtsbGh0dHBfcmVzdW1lX2FmdGVyX3VwZ3JhZGUAGhBsbGh0dHBfZ2V0X2Vycm5vABsXbGxodHRwX2dldF9lcnJvcl9yZWFzb24AHBdsbGh0dHBfc2V0X2Vycm9yX3JlYXNvbgAdFGxsaHR0cF9nZXRfZXJyb3JfcG9zAB4RbGxodHRwX2Vycm5vX25hbWUAHxJsbGh0dHBfbWV0aG9kX25hbWUAIBJsbGh0dHBfc3RhdHVzX25hbWUAIRpsbGh0dHBfc2V0X2xlbmllbnRfaGVhZGVycwAiIWxsaHR0cF9zZXRfbGVuaWVudF9jaHVua2VkX2xlbmd0aAAjHWxsaHR0cF9zZXRfbGVuaWVudF9rZWVwX2FsaXZlACQkbGxodHRwX3NldF9sZW5pZW50X3RyYW5zZmVyX2VuY29kaW5nACUYbGxodHRwX21lc3NhZ2VfbmVlZHNfZW9mAD8JFwEAQQELEQECAwQFCwYHNTk3MS8tJyspCsLgAkUCAAsIABCIgICAAAsZACAAEMKAgIAAGiAAIAI2AjggACABOgAoCxwAIAAgAC8BMiAALQAuIAAQwYCAgAAQgICAgAALKgEBf0HAABDGgICAACIBEMKAgIAAGiABQYCIgIAANgI4IAEgADoAKCABCwoAIAAQyICAgAALBwAgAC0AKAsHACAALQAqCwcAIAAtACsLBwAgAC0AKQsHACAALwEyCwcAIAAtAC4LRQEEfyAAKAIYIQEgAC0ALSECIAAtACghAyAAKAI4IQQgABDCgICAABogACAENgI4IAAgAzoAKCAAIAI6AC0gACABNgIYCxEAIAAgASABIAJqEMOAgIAACxAAIABBAEHcABDMgICAABoLZwEBf0EAIQECQCAAKAIMDQACQAJAAkACQCAALQAvDgMBAAMCCyAAKAI4IgFFDQAgASgCLCIBRQ0AIAAgARGAgICAAAAiAQ0DC0EADwsQyoCAgAAACyAAQcOWgIAANgIQQQ4hAQsgAQseAAJAIAAoAgwNACAAQdGbgIAANgIQIABBFTYCDAsLFgACQCAAKAIMQRVHDQAgAEEANgIMCwsWAAJAIAAoAgxBFkcNACAAQQA2AgwLCwcAIAAoAgwLBwAgACgCEAsJACAAIAE2AhALBwAgACgCFAsiAAJAIABBJEkNABDKgICAAAALIABBAnRBoLOAgABqKAIACyIAAkAgAEEuSQ0AEMqAgIAAAAsgAEECdEGwtICAAGooAgAL7gsBAX9B66iAgAAhAQJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABBnH9qDvQDY2IAAWFhYWFhYQIDBAVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhBgcICQoLDA0OD2FhYWFhEGFhYWFhYWFhYWFhEWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYRITFBUWFxgZGhthYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2YTc4OTphYWFhYWFhYTthYWE8YWFhYT0+P2FhYWFhYWFhQGFhQWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYUJDREVGR0hJSktMTU5PUFFSU2FhYWFhYWFhVFVWV1hZWlthXF1hYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFeYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhX2BhC0Hhp4CAAA8LQaShgIAADwtBy6yAgAAPC0H+sYCAAA8LQcCkgIAADwtBq6SAgAAPC0GNqICAAA8LQeKmgIAADwtBgLCAgAAPC0G5r4CAAA8LQdekgIAADwtB75+AgAAPC0Hhn4CAAA8LQfqfgIAADwtB8qCAgAAPC0Gor4CAAA8LQa6ygIAADwtBiLCAgAAPC0Hsp4CAAA8LQYKigIAADwtBjp2AgAAPC0HQroCAAA8LQcqjgIAADwtBxbKAgAAPC0HfnICAAA8LQdKcgIAADwtBxKCAgAAPC0HXoICAAA8LQaKfgIAADwtB7a6AgAAPC0GrsICAAA8LQdSlgIAADwtBzK6AgAAPC0H6roCAAA8LQfyrgIAADwtB0rCAgAAPC0HxnYCAAA8LQbuggIAADwtB96uAgAAPC0GQsYCAAA8LQdexgIAADwtBoq2AgAAPC0HUp4CAAA8LQeCrgIAADwtBn6yAgAAPC0HrsYCAAA8LQdWfgIAADwtByrGAgAAPC0HepYCAAA8LQdSegIAADwtB9JyAgAAPC0GnsoCAAA8LQbGdgIAADwtBoJ2AgAAPC0G5sYCAAA8LQbywgIAADwtBkqGAgAAPC0GzpoCAAA8LQemsgIAADwtBrJ6AgAAPC0HUq4CAAA8LQfemgIAADwtBgKaAgAAPC0GwoYCAAA8LQf6egIAADwtBjaOAgAAPC0GJrYCAAA8LQfeigIAADwtBoLGAgAAPC0Gun4CAAA8LQcalgIAADwtB6J6AgAAPC0GTooCAAA8LQcKvgIAADwtBw52AgAAPC0GLrICAAA8LQeGdgIAADwtBja+AgAAPC0HqoYCAAA8LQbStgIAADwtB0q+AgAAPC0HfsoCAAA8LQdKygIAADwtB8LCAgAAPC0GpooCAAA8LQfmjgIAADwtBmZ6AgAAPC0G1rICAAA8LQZuwgIAADwtBkrKAgAAPC0G2q4CAAA8LQcKigIAADwtB+LKAgAAPC0GepYCAAA8LQdCigIAADwtBup6AgAAPC0GBnoCAAA8LEMqAgIAAAAtB1qGAgAAhAQsgAQsWACAAIAAtAC1B/gFxIAFBAEdyOgAtCxkAIAAgAC0ALUH9AXEgAUEAR0EBdHI6AC0LGQAgACAALQAtQfsBcSABQQBHQQJ0cjoALQsZACAAIAAtAC1B9wFxIAFBAEdBA3RyOgAtCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAgAiBEUNACAAIAQRgICAgAAAIQMLIAMLSQECf0EAIQMCQCAAKAI4IgRFDQAgBCgCBCIERQ0AIAAgASACIAFrIAQRgYCAgAAAIgNBf0cNACAAQcaRgIAANgIQQRghAwsgAwsuAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIwIgRFDQAgACAEEYCAgIAAACEDCyADC0kBAn9BACEDAkAgACgCOCIERQ0AIAQoAggiBEUNACAAIAEgAiABayAEEYGAgIAAACIDQX9HDQAgAEH2ioCAADYCEEEYIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCNCIERQ0AIAAgBBGAgICAAAAhAwsgAwtJAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIMIgRFDQAgACABIAIgAWsgBBGBgICAAAAiA0F/Rw0AIABB7ZqAgAA2AhBBGCEDCyADCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAjgiBEUNACAAIAQRgICAgAAAIQMLIAMLSQECf0EAIQMCQCAAKAI4IgRFDQAgBCgCECIERQ0AIAAgASACIAFrIAQRgYCAgAAAIgNBf0cNACAAQZWQgIAANgIQQRghAwsgAwsuAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAI8IgRFDQAgACAEEYCAgIAAACEDCyADC0kBAn9BACEDAkAgACgCOCIERQ0AIAQoAhQiBEUNACAAIAEgAiABayAEEYGAgIAAACIDQX9HDQAgAEGqm4CAADYCEEEYIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCQCIERQ0AIAAgBBGAgICAAAAhAwsgAwtJAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIYIgRFDQAgACABIAIgAWsgBBGBgICAAAAiA0F/Rw0AIABB7ZOAgAA2AhBBGCEDCyADCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAkQiBEUNACAAIAQRgICAgAAAIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCJCIERQ0AIAAgBBGAgICAAAAhAwsgAwsuAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIsIgRFDQAgACAEEYCAgIAAACEDCyADC0kBAn9BACEDAkAgACgCOCIERQ0AIAQoAigiBEUNACAAIAEgAiABayAEEYGAgIAAACIDQX9HDQAgAEH2iICAADYCEEEYIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCUCIERQ0AIAAgBBGAgICAAAAhAwsgAwtJAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIcIgRFDQAgACABIAIgAWsgBBGBgICAAAAiA0F/Rw0AIABBwpmAgAA2AhBBGCEDCyADCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAkgiBEUNACAAIAQRgICAgAAAIQMLIAMLSQECf0EAIQMCQCAAKAI4IgRFDQAgBCgCICIERQ0AIAAgASACIAFrIAQRgYCAgAAAIgNBf0cNACAAQZSUgIAANgIQQRghAwsgAwsuAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAJMIgRFDQAgACAEEYCAgIAAACEDCyADCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAlQiBEUNACAAIAQRgICAgAAAIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCWCIERQ0AIAAgBBGAgICAAAAhAwsgAwtFAQF/AkACQCAALwEwQRRxQRRHDQBBASEDIAAtAChBAUYNASAALwEyQeUARiEDDAELIAAtAClBBUYhAwsgACADOgAuQQAL/gEBA39BASEDAkAgAC8BMCIEQQhxDQAgACkDIEIAUiEDCwJAAkAgAC0ALkUNAEEBIQUgAC0AKUEFRg0BQQEhBSAEQcAAcUUgA3FBAUcNAQtBACEFIARBwABxDQBBAiEFIARB//8DcSIDQQhxDQACQCADQYAEcUUNAAJAIAAtAChBAUcNACAALQAtQQpxDQBBBQ8LQQQPCwJAIANBIHENAAJAIAAtAChBAUYNACAALwEyQf//A3EiAEGcf2pB5ABJDQAgAEHMAUYNACAAQbACRg0AQQQhBSAEQShxRQ0CIANBiARxQYAERg0CC0EADwtBAEEDIAApAyBQGyEFCyAFC2IBAn9BACEBAkAgAC0AKEEBRg0AIAAvATJB//8DcSICQZx/akHkAEkNACACQcwBRg0AIAJBsAJGDQAgAC8BMCIAQcAAcQ0AQQEhASAAQYgEcUGABEYNACAAQShxRSEBCyABC6cBAQN/AkACQAJAIAAtACpFDQAgAC0AK0UNAEEAIQMgAC8BMCIEQQJxRQ0BDAILQQAhAyAALwEwIgRBAXFFDQELQQEhAyAALQAoQQFGDQAgAC8BMkH//wNxIgVBnH9qQeQASQ0AIAVBzAFGDQAgBUGwAkYNACAEQcAAcQ0AQQAhAyAEQYgEcUGABEYNACAEQShxQQBHIQMLIABBADsBMCAAQQA6AC8gAwuZAQECfwJAAkACQCAALQAqRQ0AIAAtACtFDQBBACEBIAAvATAiAkECcUUNAQwCC0EAIQEgAC8BMCICQQFxRQ0BC0EBIQEgAC0AKEEBRg0AIAAvATJB//8DcSIAQZx/akHkAEkNACAAQcwBRg0AIABBsAJGDQAgAkHAAHENAEEAIQEgAkGIBHFBgARGDQAgAkEocUEARyEBCyABC1kAIABBGGpCADcDACAAQgA3AwAgAEE4akIANwMAIABBMGpCADcDACAAQShqQgA3AwAgAEEgakIANwMAIABBEGpCADcDACAAQQhqQgA3AwAgAEHdATYCHEEAC3sBAX8CQCAAKAIMIgMNAAJAIAAoAgRFDQAgACABNgIECwJAIAAgASACEMSAgIAAIgMNACAAKAIMDwsgACADNgIcQQAhAyAAKAIEIgFFDQAgACABIAIgACgCCBGBgICAAAAiAUUNACAAIAI2AhQgACABNgIMIAEhAwsgAwvk8wEDDn8DfgR/I4CAgIAAQRBrIgMkgICAgAAgASEEIAEhBSABIQYgASEHIAEhCCABIQkgASEKIAEhCyABIQwgASENIAEhDiABIQ8CQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgACgCHCIQQX9qDt0B2gEB2QECAwQFBgcICQoLDA0O2AEPENcBERLWARMUFRYXGBkaG+AB3wEcHR7VAR8gISIjJCXUASYnKCkqKyzTAdIBLS7RAdABLzAxMjM0NTY3ODk6Ozw9Pj9AQUJDREVG2wFHSElKzwHOAUvNAUzMAU1OT1BRUlNUVVZXWFlaW1xdXl9gYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXp7fH1+f4ABgQGCAYMBhAGFAYYBhwGIAYkBigGLAYwBjQGOAY8BkAGRAZIBkwGUAZUBlgGXAZgBmQGaAZsBnAGdAZ4BnwGgAaEBogGjAaQBpQGmAacBqAGpAaoBqwGsAa0BrgGvAbABsQGyAbMBtAG1AbYBtwHLAcoBuAHJAbkByAG6AbsBvAG9Ab4BvwHAAcEBwgHDAcQBxQHGAQDcAQtBACEQDMYBC0EOIRAMxQELQQ0hEAzEAQtBDyEQDMMBC0EQIRAMwgELQRMhEAzBAQtBFCEQDMABC0EVIRAMvwELQRYhEAy+AQtBFyEQDL0BC0EYIRAMvAELQRkhEAy7AQtBGiEQDLoBC0EbIRAMuQELQRwhEAy4AQtBCCEQDLcBC0EdIRAMtgELQSAhEAy1AQtBHyEQDLQBC0EHIRAMswELQSEhEAyyAQtBIiEQDLEBC0EeIRAMsAELQSMhEAyvAQtBEiEQDK4BC0ERIRAMrQELQSQhEAysAQtBJSEQDKsBC0EmIRAMqgELQSchEAypAQtBwwEhEAyoAQtBKSEQDKcBC0ErIRAMpgELQSwhEAylAQtBLSEQDKQBC0EuIRAMowELQS8hEAyiAQtBxAEhEAyhAQtBMCEQDKABC0E0IRAMnwELQQwhEAyeAQtBMSEQDJ0BC0EyIRAMnAELQTMhEAybAQtBOSEQDJoBC0E1IRAMmQELQcUBIRAMmAELQQshEAyXAQtBOiEQDJYBC0E2IRAMlQELQQohEAyUAQtBNyEQDJMBC0E4IRAMkgELQTwhEAyRAQtBOyEQDJABC0E9IRAMjwELQQkhEAyOAQtBKCEQDI0BC0E+IRAMjAELQT8hEAyLAQtBwAAhEAyKAQtBwQAhEAyJAQtBwgAhEAyIAQtBwwAhEAyHAQtBxAAhEAyGAQtBxQAhEAyFAQtBxgAhEAyEAQtBKiEQDIMBC0HHACEQDIIBC0HIACEQDIEBC0HJACEQDIABC0HKACEQDH8LQcsAIRAMfgtBzQAhEAx9C0HMACEQDHwLQc4AIRAMewtBzwAhEAx6C0HQACEQDHkLQdEAIRAMeAtB0gAhEAx3C0HTACEQDHYLQdQAIRAMdQtB1gAhEAx0C0HVACEQDHMLQQYhEAxyC0HXACEQDHELQQUhEAxwC0HYACEQDG8LQQQhEAxuC0HZACEQDG0LQdoAIRAMbAtB2wAhEAxrC0HcACEQDGoLQQMhEAxpC0HdACEQDGgLQd4AIRAMZwtB3wAhEAxmC0HhACEQDGULQeAAIRAMZAtB4gAhEAxjC0HjACEQDGILQQIhEAxhC0HkACEQDGALQeUAIRAMXwtB5gAhEAxeC0HnACEQDF0LQegAIRAMXAtB6QAhEAxbC0HqACEQDFoLQesAIRAMWQtB7AAhEAxYC0HtACEQDFcLQe4AIRAMVgtB7wAhEAxVC0HwACEQDFQLQfEAIRAMUwtB8gAhEAxSC0HzACEQDFELQfQAIRAMUAtB9QAhEAxPC0H2ACEQDE4LQfcAIRAMTQtB+AAhEAxMC0H5ACEQDEsLQfoAIRAMSgtB+wAhEAxJC0H8ACEQDEgLQf0AIRAMRwtB/gAhEAxGC0H/ACEQDEULQYABIRAMRAtBgQEhEAxDC0GCASEQDEILQYMBIRAMQQtBhAEhEAxAC0GFASEQDD8LQYYBIRAMPgtBhwEhEAw9C0GIASEQDDwLQYkBIRAMOwtBigEhEAw6C0GLASEQDDkLQYwBIRAMOAtBjQEhEAw3C0GOASEQDDYLQY8BIRAMNQtBkAEhEAw0C0GRASEQDDMLQZIBIRAMMgtBkwEhEAwxC0GUASEQDDALQZUBIRAMLwtBlgEhEAwuC0GXASEQDC0LQZgBIRAMLAtBmQEhEAwrC0GaASEQDCoLQZsBIRAMKQtBnAEhEAwoC0GdASEQDCcLQZ4BIRAMJgtBnwEhEAwlC0GgASEQDCQLQaEBIRAMIwtBogEhEAwiC0GjASEQDCELQaQBIRAMIAtBpQEhEAwfC0GmASEQDB4LQacBIRAMHQtBqAEhEAwcC0GpASEQDBsLQaoBIRAMGgtBqwEhEAwZC0GsASEQDBgLQa0BIRAMFwtBrgEhEAwWC0EBIRAMFQtBrwEhEAwUC0GwASEQDBMLQbEBIRAMEgtBswEhEAwRC0GyASEQDBALQbQBIRAMDwtBtQEhEAwOC0G2ASEQDA0LQbcBIRAMDAtBuAEhEAwLC0G5ASEQDAoLQboBIRAMCQtBuwEhEAwIC0HGASEQDAcLQbwBIRAMBgtBvQEhEAwFC0G+ASEQDAQLQb8BIRAMAwtBwAEhEAwCC0HCASEQDAELQcEBIRALA0ACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCAQDscBAAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxweHyAhIyUoP0BBREVGR0hJSktMTU9QUVJT3gNXWVtcXWBiZWZnaGlqa2xtb3BxcnN0dXZ3eHl6e3x9foABggGFAYYBhwGJAYsBjAGNAY4BjwGQAZEBlAGVAZYBlwGYAZkBmgGbAZwBnQGeAZ8BoAGhAaIBowGkAaUBpgGnAagBqQGqAasBrAGtAa4BrwGwAbEBsgGzAbQBtQG2AbcBuAG5AboBuwG8Ab0BvgG/AcABwQHCAcMBxAHFAcYBxwHIAckBygHLAcwBzQHOAc8B0AHRAdIB0wHUAdUB1gHXAdgB2QHaAdsB3AHdAd4B4AHhAeIB4wHkAeUB5gHnAegB6QHqAesB7AHtAe4B7wHwAfEB8gHzAZkCpAKwAv4C/gILIAEiBCACRw3zAUHdASEQDP8DCyABIhAgAkcN3QFBwwEhEAz+AwsgASIBIAJHDZABQfcAIRAM/QMLIAEiASACRw2GAUHvACEQDPwDCyABIgEgAkcNf0HqACEQDPsDCyABIgEgAkcNe0HoACEQDPoDCyABIgEgAkcNeEHmACEQDPkDCyABIgEgAkcNGkEYIRAM+AMLIAEiASACRw0UQRIhEAz3AwsgASIBIAJHDVlBxQAhEAz2AwsgASIBIAJHDUpBPyEQDPUDCyABIgEgAkcNSEE8IRAM9AMLIAEiASACRw1BQTEhEAzzAwsgAC0ALkEBRg3rAwyHAgsgACABIgEgAhDAgICAAEEBRw3mASAAQgA3AyAM5wELIAAgASIBIAIQtICAgAAiEA3nASABIQEM9QILAkAgASIBIAJHDQBBBiEQDPADCyAAIAFBAWoiASACELuAgIAAIhAN6AEgASEBDDELIABCADcDIEESIRAM1QMLIAEiECACRw0rQR0hEAztAwsCQCABIgEgAkYNACABQQFqIQFBECEQDNQDC0EHIRAM7AMLIABCACAAKQMgIhEgAiABIhBrrSISfSITIBMgEVYbNwMgIBEgElYiFEUN5QFBCCEQDOsDCwJAIAEiASACRg0AIABBiYCAgAA2AgggACABNgIEIAEhAUEUIRAM0gMLQQkhEAzqAwsgASEBIAApAyBQDeQBIAEhAQzyAgsCQCABIgEgAkcNAEELIRAM6QMLIAAgAUEBaiIBIAIQtoCAgAAiEA3lASABIQEM8gILIAAgASIBIAIQuICAgAAiEA3lASABIQEM8gILIAAgASIBIAIQuICAgAAiEA3mASABIQEMDQsgACABIgEgAhC6gICAACIQDecBIAEhAQzwAgsCQCABIgEgAkcNAEEPIRAM5QMLIAEtAAAiEEE7Rg0IIBBBDUcN6AEgAUEBaiEBDO8CCyAAIAEiASACELqAgIAAIhAN6AEgASEBDPICCwNAAkAgAS0AAEHwtYCAAGotAAAiEEEBRg0AIBBBAkcN6wEgACgCBCEQIABBADYCBCAAIBAgAUEBaiIBELmAgIAAIhAN6gEgASEBDPQCCyABQQFqIgEgAkcNAAtBEiEQDOIDCyAAIAEiASACELqAgIAAIhAN6QEgASEBDAoLIAEiASACRw0GQRshEAzgAwsCQCABIgEgAkcNAEEWIRAM4AMLIABBioCAgAA2AgggACABNgIEIAAgASACELiAgIAAIhAN6gEgASEBQSAhEAzGAwsCQCABIgEgAkYNAANAAkAgAS0AAEHwt4CAAGotAAAiEEECRg0AAkAgEEF/ag4E5QHsAQDrAewBCyABQQFqIQFBCCEQDMgDCyABQQFqIgEgAkcNAAtBFSEQDN8DC0EVIRAM3gMLA0ACQCABLQAAQfC5gIAAai0AACIQQQJGDQAgEEF/ag4E3gHsAeAB6wHsAQsgAUEBaiIBIAJHDQALQRghEAzdAwsCQCABIgEgAkYNACAAQYuAgIAANgIIIAAgATYCBCABIQFBByEQDMQDC0EZIRAM3AMLIAFBAWohAQwCCwJAIAEiFCACRw0AQRohEAzbAwsgFCEBAkAgFC0AAEFzag4U3QLuAu4C7gLuAu4C7gLuAu4C7gLuAu4C7gLuAu4C7gLuAu4C7gIA7gILQQAhECAAQQA2AhwgAEGvi4CAADYCECAAQQI2AgwgACAUQQFqNgIUDNoDCwJAIAEtAAAiEEE7Rg0AIBBBDUcN6AEgAUEBaiEBDOUCCyABQQFqIQELQSIhEAy/AwsCQCABIhAgAkcNAEEcIRAM2AMLQgAhESAQIQEgEC0AAEFQag435wHmAQECAwQFBgcIAAAAAAAAAAkKCwwNDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADxAREhMUAAtBHiEQDL0DC0ICIREM5QELQgMhEQzkAQtCBCERDOMBC0IFIREM4gELQgYhEQzhAQtCByERDOABC0IIIREM3wELQgkhEQzeAQtCCiERDN0BC0ILIREM3AELQgwhEQzbAQtCDSERDNoBC0IOIREM2QELQg8hEQzYAQtCCiERDNcBC0ILIREM1gELQgwhEQzVAQtCDSERDNQBC0IOIREM0wELQg8hEQzSAQtCACERAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCAQLQAAQVBqDjflAeQBAAECAwQFBgfmAeYB5gHmAeYB5gHmAQgJCgsMDeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gEODxAREhPmAQtCAiERDOQBC0IDIREM4wELQgQhEQziAQtCBSERDOEBC0IGIREM4AELQgchEQzfAQtCCCERDN4BC0IJIREM3QELQgohEQzcAQtCCyERDNsBC0IMIREM2gELQg0hEQzZAQtCDiERDNgBC0IPIREM1wELQgohEQzWAQtCCyERDNUBC0IMIREM1AELQg0hEQzTAQtCDiERDNIBC0IPIREM0QELIABCACAAKQMgIhEgAiABIhBrrSISfSITIBMgEVYbNwMgIBEgElYiFEUN0gFBHyEQDMADCwJAIAEiASACRg0AIABBiYCAgAA2AgggACABNgIEIAEhAUEkIRAMpwMLQSAhEAy/AwsgACABIhAgAhC+gICAAEF/ag4FtgEAxQIB0QHSAQtBESEQDKQDCyAAQQE6AC8gECEBDLsDCyABIgEgAkcN0gFBJCEQDLsDCyABIg0gAkcNHkHGACEQDLoDCyAAIAEiASACELKAgIAAIhAN1AEgASEBDLUBCyABIhAgAkcNJkHQACEQDLgDCwJAIAEiASACRw0AQSghEAy4AwsgAEEANgIEIABBjICAgAA2AgggACABIAEQsYCAgAAiEA3TASABIQEM2AELAkAgASIQIAJHDQBBKSEQDLcDCyAQLQAAIgFBIEYNFCABQQlHDdMBIBBBAWohAQwVCwJAIAEiASACRg0AIAFBAWohAQwXC0EqIRAMtQMLAkAgASIQIAJHDQBBKyEQDLUDCwJAIBAtAAAiAUEJRg0AIAFBIEcN1QELIAAtACxBCEYN0wEgECEBDJEDCwJAIAEiASACRw0AQSwhEAy0AwsgAS0AAEEKRw3VASABQQFqIQEMyQILIAEiDiACRw3VAUEvIRAMsgMLA0ACQCABLQAAIhBBIEYNAAJAIBBBdmoOBADcAdwBANoBCyABIQEM4AELIAFBAWoiASACRw0AC0ExIRAMsQMLQTIhECABIhQgAkYNsAMgAiAUayAAKAIAIgFqIRUgFCABa0EDaiEWAkADQCAULQAAIhdBIHIgFyAXQb9/akH/AXFBGkkbQf8BcSABQfC7gIAAai0AAEcNAQJAIAFBA0cNAEEGIQEMlgMLIAFBAWohASAUQQFqIhQgAkcNAAsgACAVNgIADLEDCyAAQQA2AgAgFCEBDNkBC0EzIRAgASIUIAJGDa8DIAIgFGsgACgCACIBaiEVIBQgAWtBCGohFgJAA0AgFC0AACIXQSByIBcgF0G/f2pB/wFxQRpJG0H/AXEgAUH0u4CAAGotAABHDQECQCABQQhHDQBBBSEBDJUDCyABQQFqIQEgFEEBaiIUIAJHDQALIAAgFTYCAAywAwsgAEEANgIAIBQhAQzYAQtBNCEQIAEiFCACRg2uAyACIBRrIAAoAgAiAWohFSAUIAFrQQVqIRYCQANAIBQtAAAiF0EgciAXIBdBv39qQf8BcUEaSRtB/wFxIAFB0MKAgABqLQAARw0BAkAgAUEFRw0AQQchAQyUAwsgAUEBaiEBIBRBAWoiFCACRw0ACyAAIBU2AgAMrwMLIABBADYCACAUIQEM1wELAkAgASIBIAJGDQADQAJAIAEtAABBgL6AgABqLQAAIhBBAUYNACAQQQJGDQogASEBDN0BCyABQQFqIgEgAkcNAAtBMCEQDK4DC0EwIRAMrQMLAkAgASIBIAJGDQADQAJAIAEtAAAiEEEgRg0AIBBBdmoOBNkB2gHaAdkB2gELIAFBAWoiASACRw0AC0E4IRAMrQMLQTghEAysAwsDQAJAIAEtAAAiEEEgRg0AIBBBCUcNAwsgAUEBaiIBIAJHDQALQTwhEAyrAwsDQAJAIAEtAAAiEEEgRg0AAkACQCAQQXZqDgTaAQEB2gEACyAQQSxGDdsBCyABIQEMBAsgAUEBaiIBIAJHDQALQT8hEAyqAwsgASEBDNsBC0HAACEQIAEiFCACRg2oAyACIBRrIAAoAgAiAWohFiAUIAFrQQZqIRcCQANAIBQtAABBIHIgAUGAwICAAGotAABHDQEgAUEGRg2OAyABQQFqIQEgFEEBaiIUIAJHDQALIAAgFjYCAAypAwsgAEEANgIAIBQhAQtBNiEQDI4DCwJAIAEiDyACRw0AQcEAIRAMpwMLIABBjICAgAA2AgggACAPNgIEIA8hASAALQAsQX9qDgTNAdUB1wHZAYcDCyABQQFqIQEMzAELAkAgASIBIAJGDQADQAJAIAEtAAAiEEEgciAQIBBBv39qQf8BcUEaSRtB/wFxIhBBCUYNACAQQSBGDQACQAJAAkACQCAQQZ1/ag4TAAMDAwMDAwMBAwMDAwMDAwMDAgMLIAFBAWohAUExIRAMkQMLIAFBAWohAUEyIRAMkAMLIAFBAWohAUEzIRAMjwMLIAEhAQzQAQsgAUEBaiIBIAJHDQALQTUhEAylAwtBNSEQDKQDCwJAIAEiASACRg0AA0ACQCABLQAAQYC8gIAAai0AAEEBRg0AIAEhAQzTAQsgAUEBaiIBIAJHDQALQT0hEAykAwtBPSEQDKMDCyAAIAEiASACELCAgIAAIhAN1gEgASEBDAELIBBBAWohAQtBPCEQDIcDCwJAIAEiASACRw0AQcIAIRAMoAMLAkADQAJAIAEtAABBd2oOGAAC/gL+AoQD/gL+Av4C/gL+Av4C/gL+Av4C/gL+Av4C/gL+Av4C/gL+Av4CAP4CCyABQQFqIgEgAkcNAAtBwgAhEAygAwsgAUEBaiEBIAAtAC1BAXFFDb0BIAEhAQtBLCEQDIUDCyABIgEgAkcN0wFBxAAhEAydAwsDQAJAIAEtAABBkMCAgABqLQAAQQFGDQAgASEBDLcCCyABQQFqIgEgAkcNAAtBxQAhEAycAwsgDS0AACIQQSBGDbMBIBBBOkcNgQMgACgCBCEBIABBADYCBCAAIAEgDRCvgICAACIBDdABIA1BAWohAQyzAgtBxwAhECABIg0gAkYNmgMgAiANayAAKAIAIgFqIRYgDSABa0EFaiEXA0AgDS0AACIUQSByIBQgFEG/f2pB/wFxQRpJG0H/AXEgAUGQwoCAAGotAABHDYADIAFBBUYN9AIgAUEBaiEBIA1BAWoiDSACRw0ACyAAIBY2AgAMmgMLQcgAIRAgASINIAJGDZkDIAIgDWsgACgCACIBaiEWIA0gAWtBCWohFwNAIA0tAAAiFEEgciAUIBRBv39qQf8BcUEaSRtB/wFxIAFBlsKAgABqLQAARw3/AgJAIAFBCUcNAEECIQEM9QILIAFBAWohASANQQFqIg0gAkcNAAsgACAWNgIADJkDCwJAIAEiDSACRw0AQckAIRAMmQMLAkACQCANLQAAIgFBIHIgASABQb9/akH/AXFBGkkbQf8BcUGSf2oOBwCAA4ADgAOAA4ADAYADCyANQQFqIQFBPiEQDIADCyANQQFqIQFBPyEQDP8CC0HKACEQIAEiDSACRg2XAyACIA1rIAAoAgAiAWohFiANIAFrQQFqIRcDQCANLQAAIhRBIHIgFCAUQb9/akH/AXFBGkkbQf8BcSABQaDCgIAAai0AAEcN/QIgAUEBRg3wAiABQQFqIQEgDUEBaiINIAJHDQALIAAgFjYCAAyXAwtBywAhECABIg0gAkYNlgMgAiANayAAKAIAIgFqIRYgDSABa0EOaiEXA0AgDS0AACIUQSByIBQgFEG/f2pB/wFxQRpJG0H/AXEgAUGiwoCAAGotAABHDfwCIAFBDkYN8AIgAUEBaiEBIA1BAWoiDSACRw0ACyAAIBY2AgAMlgMLQcwAIRAgASINIAJGDZUDIAIgDWsgACgCACIBaiEWIA0gAWtBD2ohFwNAIA0tAAAiFEEgciAUIBRBv39qQf8BcUEaSRtB/wFxIAFBwMKAgABqLQAARw37AgJAIAFBD0cNAEEDIQEM8QILIAFBAWohASANQQFqIg0gAkcNAAsgACAWNgIADJUDC0HNACEQIAEiDSACRg2UAyACIA1rIAAoAgAiAWohFiANIAFrQQVqIRcDQCANLQAAIhRBIHIgFCAUQb9/akH/AXFBGkkbQf8BcSABQdDCgIAAai0AAEcN+gICQCABQQVHDQBBBCEBDPACCyABQQFqIQEgDUEBaiINIAJHDQALIAAgFjYCAAyUAwsCQCABIg0gAkcNAEHOACEQDJQDCwJAAkACQAJAIA0tAAAiAUEgciABIAFBv39qQf8BcUEaSRtB/wFxQZ1/ag4TAP0C/QL9Av0C/QL9Av0C/QL9Av0C/QL9AgH9Av0C/QICA/0CCyANQQFqIQFBwQAhEAz9AgsgDUEBaiEBQcIAIRAM/AILIA1BAWohAUHDACEQDPsCCyANQQFqIQFBxAAhEAz6AgsCQCABIgEgAkYNACAAQY2AgIAANgIIIAAgATYCBCABIQFBxQAhEAz6AgtBzwAhEAySAwsgECEBAkACQCAQLQAAQXZqDgQBqAKoAgCoAgsgEEEBaiEBC0EnIRAM+AILAkAgASIBIAJHDQBB0QAhEAyRAwsCQCABLQAAQSBGDQAgASEBDI0BCyABQQFqIQEgAC0ALUEBcUUNxwEgASEBDIwBCyABIhcgAkcNyAFB0gAhEAyPAwtB0wAhECABIhQgAkYNjgMgAiAUayAAKAIAIgFqIRYgFCABa0EBaiEXA0AgFC0AACABQdbCgIAAai0AAEcNzAEgAUEBRg3HASABQQFqIQEgFEEBaiIUIAJHDQALIAAgFjYCAAyOAwsCQCABIgEgAkcNAEHVACEQDI4DCyABLQAAQQpHDcwBIAFBAWohAQzHAQsCQCABIgEgAkcNAEHWACEQDI0DCwJAAkAgAS0AAEF2ag4EAM0BzQEBzQELIAFBAWohAQzHAQsgAUEBaiEBQcoAIRAM8wILIAAgASIBIAIQroCAgAAiEA3LASABIQFBzQAhEAzyAgsgAC0AKUEiRg2FAwymAgsCQCABIgEgAkcNAEHbACEQDIoDC0EAIRRBASEXQQEhFkEAIRACQAJAAkACQAJAAkACQAJAAkAgAS0AAEFQag4K1AHTAQABAgMEBQYI1QELQQIhEAwGC0EDIRAMBQtBBCEQDAQLQQUhEAwDC0EGIRAMAgtBByEQDAELQQghEAtBACEXQQAhFkEAIRQMzAELQQkhEEEBIRRBACEXQQAhFgzLAQsCQCABIgEgAkcNAEHdACEQDIkDCyABLQAAQS5HDcwBIAFBAWohAQymAgsgASIBIAJHDcwBQd8AIRAMhwMLAkAgASIBIAJGDQAgAEGOgICAADYCCCAAIAE2AgQgASEBQdAAIRAM7gILQeAAIRAMhgMLQeEAIRAgASIBIAJGDYUDIAIgAWsgACgCACIUaiEWIAEgFGtBA2ohFwNAIAEtAAAgFEHiwoCAAGotAABHDc0BIBRBA0YNzAEgFEEBaiEUIAFBAWoiASACRw0ACyAAIBY2AgAMhQMLQeIAIRAgASIBIAJGDYQDIAIgAWsgACgCACIUaiEWIAEgFGtBAmohFwNAIAEtAAAgFEHmwoCAAGotAABHDcwBIBRBAkYNzgEgFEEBaiEUIAFBAWoiASACRw0ACyAAIBY2AgAMhAMLQeMAIRAgASIBIAJGDYMDIAIgAWsgACgCACIUaiEWIAEgFGtBA2ohFwNAIAEtAAAgFEHpwoCAAGotAABHDcsBIBRBA0YNzgEgFEEBaiEUIAFBAWoiASACRw0ACyAAIBY2AgAMgwMLAkAgASIBIAJHDQBB5QAhEAyDAwsgACABQQFqIgEgAhCogICAACIQDc0BIAEhAUHWACEQDOkCCwJAIAEiASACRg0AA0ACQCABLQAAIhBBIEYNAAJAAkACQCAQQbh/ag4LAAHPAc8BzwHPAc8BzwHPAc8BAs8BCyABQQFqIQFB0gAhEAztAgsgAUEBaiEBQdMAIRAM7AILIAFBAWohAUHUACEQDOsCCyABQQFqIgEgAkcNAAtB5AAhEAyCAwtB5AAhEAyBAwsDQAJAIAEtAABB8MKAgABqLQAAIhBBAUYNACAQQX5qDgPPAdAB0QHSAQsgAUEBaiIBIAJHDQALQeYAIRAMgAMLAkAgASIBIAJGDQAgAUEBaiEBDAMLQecAIRAM/wILA0ACQCABLQAAQfDEgIAAai0AACIQQQFGDQACQCAQQX5qDgTSAdMB1AEA1QELIAEhAUHXACEQDOcCCyABQQFqIgEgAkcNAAtB6AAhEAz+AgsCQCABIgEgAkcNAEHpACEQDP4CCwJAIAEtAAAiEEF2ag4augHVAdUBvAHVAdUB1QHVAdUB1QHVAdUB1QHVAdUB1QHVAdUB1QHVAdUB1QHKAdUB1QEA0wELIAFBAWohAQtBBiEQDOMCCwNAAkAgAS0AAEHwxoCAAGotAABBAUYNACABIQEMngILIAFBAWoiASACRw0AC0HqACEQDPsCCwJAIAEiASACRg0AIAFBAWohAQwDC0HrACEQDPoCCwJAIAEiASACRw0AQewAIRAM+gILIAFBAWohAQwBCwJAIAEiASACRw0AQe0AIRAM+QILIAFBAWohAQtBBCEQDN4CCwJAIAEiFCACRw0AQe4AIRAM9wILIBQhAQJAAkACQCAULQAAQfDIgIAAai0AAEF/ag4H1AHVAdYBAJwCAQLXAQsgFEEBaiEBDAoLIBRBAWohAQzNAQtBACEQIABBADYCHCAAQZuSgIAANgIQIABBBzYCDCAAIBRBAWo2AhQM9gILAkADQAJAIAEtAABB8MiAgABqLQAAIhBBBEYNAAJAAkAgEEF/ag4H0gHTAdQB2QEABAHZAQsgASEBQdoAIRAM4AILIAFBAWohAUHcACEQDN8CCyABQQFqIgEgAkcNAAtB7wAhEAz2AgsgAUEBaiEBDMsBCwJAIAEiFCACRw0AQfAAIRAM9QILIBQtAABBL0cN1AEgFEEBaiEBDAYLAkAgASIUIAJHDQBB8QAhEAz0AgsCQCAULQAAIgFBL0cNACAUQQFqIQFB3QAhEAzbAgsgAUF2aiIEQRZLDdMBQQEgBHRBiYCAAnFFDdMBDMoCCwJAIAEiASACRg0AIAFBAWohAUHeACEQDNoCC0HyACEQDPICCwJAIAEiFCACRw0AQfQAIRAM8gILIBQhAQJAIBQtAABB8MyAgABqLQAAQX9qDgPJApQCANQBC0HhACEQDNgCCwJAIAEiFCACRg0AA0ACQCAULQAAQfDKgIAAai0AACIBQQNGDQACQCABQX9qDgLLAgDVAQsgFCEBQd8AIRAM2gILIBRBAWoiFCACRw0AC0HzACEQDPECC0HzACEQDPACCwJAIAEiASACRg0AIABBj4CAgAA2AgggACABNgIEIAEhAUHgACEQDNcCC0H1ACEQDO8CCwJAIAEiASACRw0AQfYAIRAM7wILIABBj4CAgAA2AgggACABNgIEIAEhAQtBAyEQDNQCCwNAIAEtAABBIEcNwwIgAUEBaiIBIAJHDQALQfcAIRAM7AILAkAgASIBIAJHDQBB+AAhEAzsAgsgAS0AAEEgRw3OASABQQFqIQEM7wELIAAgASIBIAIQrICAgAAiEA3OASABIQEMjgILAkAgASIEIAJHDQBB+gAhEAzqAgsgBC0AAEHMAEcN0QEgBEEBaiEBQRMhEAzPAQsCQCABIgQgAkcNAEH7ACEQDOkCCyACIARrIAAoAgAiAWohFCAEIAFrQQVqIRADQCAELQAAIAFB8M6AgABqLQAARw3QASABQQVGDc4BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQfsAIRAM6AILAkAgASIEIAJHDQBB/AAhEAzoAgsCQAJAIAQtAABBvX9qDgwA0QHRAdEB0QHRAdEB0QHRAdEB0QEB0QELIARBAWohAUHmACEQDM8CCyAEQQFqIQFB5wAhEAzOAgsCQCABIgQgAkcNAEH9ACEQDOcCCyACIARrIAAoAgAiAWohFCAEIAFrQQJqIRACQANAIAQtAAAgAUHtz4CAAGotAABHDc8BIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEH9ACEQDOcCCyAAQQA2AgAgEEEBaiEBQRAhEAzMAQsCQCABIgQgAkcNAEH+ACEQDOYCCyACIARrIAAoAgAiAWohFCAEIAFrQQVqIRACQANAIAQtAAAgAUH2zoCAAGotAABHDc4BIAFBBUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEH+ACEQDOYCCyAAQQA2AgAgEEEBaiEBQRYhEAzLAQsCQCABIgQgAkcNAEH/ACEQDOUCCyACIARrIAAoAgAiAWohFCAEIAFrQQNqIRACQANAIAQtAAAgAUH8zoCAAGotAABHDc0BIAFBA0YNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEH/ACEQDOUCCyAAQQA2AgAgEEEBaiEBQQUhEAzKAQsCQCABIgQgAkcNAEGAASEQDOQCCyAELQAAQdkARw3LASAEQQFqIQFBCCEQDMkBCwJAIAEiBCACRw0AQYEBIRAM4wILAkACQCAELQAAQbJ/ag4DAMwBAcwBCyAEQQFqIQFB6wAhEAzKAgsgBEEBaiEBQewAIRAMyQILAkAgASIEIAJHDQBBggEhEAziAgsCQAJAIAQtAABBuH9qDggAywHLAcsBywHLAcsBAcsBCyAEQQFqIQFB6gAhEAzJAgsgBEEBaiEBQe0AIRAMyAILAkAgASIEIAJHDQBBgwEhEAzhAgsgAiAEayAAKAIAIgFqIRAgBCABa0ECaiEUAkADQCAELQAAIAFBgM+AgABqLQAARw3JASABQQJGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBA2AgBBgwEhEAzhAgtBACEQIABBADYCACAUQQFqIQEMxgELAkAgASIEIAJHDQBBhAEhEAzgAgsgAiAEayAAKAIAIgFqIRQgBCABa0EEaiEQAkADQCAELQAAIAFBg8+AgABqLQAARw3IASABQQRGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBhAEhEAzgAgsgAEEANgIAIBBBAWohAUEjIRAMxQELAkAgASIEIAJHDQBBhQEhEAzfAgsCQAJAIAQtAABBtH9qDggAyAHIAcgByAHIAcgBAcgBCyAEQQFqIQFB7wAhEAzGAgsgBEEBaiEBQfAAIRAMxQILAkAgASIEIAJHDQBBhgEhEAzeAgsgBC0AAEHFAEcNxQEgBEEBaiEBDIMCCwJAIAEiBCACRw0AQYcBIRAM3QILIAIgBGsgACgCACIBaiEUIAQgAWtBA2ohEAJAA0AgBC0AACABQYjPgIAAai0AAEcNxQEgAUEDRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQYcBIRAM3QILIABBADYCACAQQQFqIQFBLSEQDMIBCwJAIAEiBCACRw0AQYgBIRAM3AILIAIgBGsgACgCACIBaiEUIAQgAWtBCGohEAJAA0AgBC0AACABQdDPgIAAai0AAEcNxAEgAUEIRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQYgBIRAM3AILIABBADYCACAQQQFqIQFBKSEQDMEBCwJAIAEiASACRw0AQYkBIRAM2wILQQEhECABLQAAQd8ARw3AASABQQFqIQEMgQILAkAgASIEIAJHDQBBigEhEAzaAgsgAiAEayAAKAIAIgFqIRQgBCABa0EBaiEQA0AgBC0AACABQYzPgIAAai0AAEcNwQEgAUEBRg2vAiABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGKASEQDNkCCwJAIAEiBCACRw0AQYsBIRAM2QILIAIgBGsgACgCACIBaiEUIAQgAWtBAmohEAJAA0AgBC0AACABQY7PgIAAai0AAEcNwQEgAUECRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQYsBIRAM2QILIABBADYCACAQQQFqIQFBAiEQDL4BCwJAIAEiBCACRw0AQYwBIRAM2AILIAIgBGsgACgCACIBaiEUIAQgAWtBAWohEAJAA0AgBC0AACABQfDPgIAAai0AAEcNwAEgAUEBRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQYwBIRAM2AILIABBADYCACAQQQFqIQFBHyEQDL0BCwJAIAEiBCACRw0AQY0BIRAM1wILIAIgBGsgACgCACIBaiEUIAQgAWtBAWohEAJAA0AgBC0AACABQfLPgIAAai0AAEcNvwEgAUEBRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQY0BIRAM1wILIABBADYCACAQQQFqIQFBCSEQDLwBCwJAIAEiBCACRw0AQY4BIRAM1gILAkACQCAELQAAQbd/ag4HAL8BvwG/Ab8BvwEBvwELIARBAWohAUH4ACEQDL0CCyAEQQFqIQFB+QAhEAy8AgsCQCABIgQgAkcNAEGPASEQDNUCCyACIARrIAAoAgAiAWohFCAEIAFrQQVqIRACQANAIAQtAAAgAUGRz4CAAGotAABHDb0BIAFBBUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGPASEQDNUCCyAAQQA2AgAgEEEBaiEBQRghEAy6AQsCQCABIgQgAkcNAEGQASEQDNQCCyACIARrIAAoAgAiAWohFCAEIAFrQQJqIRACQANAIAQtAAAgAUGXz4CAAGotAABHDbwBIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGQASEQDNQCCyAAQQA2AgAgEEEBaiEBQRchEAy5AQsCQCABIgQgAkcNAEGRASEQDNMCCyACIARrIAAoAgAiAWohFCAEIAFrQQZqIRACQANAIAQtAAAgAUGaz4CAAGotAABHDbsBIAFBBkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGRASEQDNMCCyAAQQA2AgAgEEEBaiEBQRUhEAy4AQsCQCABIgQgAkcNAEGSASEQDNICCyACIARrIAAoAgAiAWohFCAEIAFrQQVqIRACQANAIAQtAAAgAUGhz4CAAGotAABHDboBIAFBBUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGSASEQDNICCyAAQQA2AgAgEEEBaiEBQR4hEAy3AQsCQCABIgQgAkcNAEGTASEQDNECCyAELQAAQcwARw24ASAEQQFqIQFBCiEQDLYBCwJAIAQgAkcNAEGUASEQDNACCwJAAkAgBC0AAEG/f2oODwC5AbkBuQG5AbkBuQG5AbkBuQG5AbkBuQG5AQG5AQsgBEEBaiEBQf4AIRAMtwILIARBAWohAUH/ACEQDLYCCwJAIAQgAkcNAEGVASEQDM8CCwJAAkAgBC0AAEG/f2oOAwC4AQG4AQsgBEEBaiEBQf0AIRAMtgILIARBAWohBEGAASEQDLUCCwJAIAQgAkcNAEGWASEQDM4CCyACIARrIAAoAgAiAWohFCAEIAFrQQFqIRACQANAIAQtAAAgAUGnz4CAAGotAABHDbYBIAFBAUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGWASEQDM4CCyAAQQA2AgAgEEEBaiEBQQshEAyzAQsCQCAEIAJHDQBBlwEhEAzNAgsCQAJAAkACQCAELQAAQVNqDiMAuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AQG4AbgBuAG4AbgBArgBuAG4AQO4AQsgBEEBaiEBQfsAIRAMtgILIARBAWohAUH8ACEQDLUCCyAEQQFqIQRBgQEhEAy0AgsgBEEBaiEEQYIBIRAMswILAkAgBCACRw0AQZgBIRAMzAILIAIgBGsgACgCACIBaiEUIAQgAWtBBGohEAJAA0AgBC0AACABQanPgIAAai0AAEcNtAEgAUEERg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZgBIRAMzAILIABBADYCACAQQQFqIQFBGSEQDLEBCwJAIAQgAkcNAEGZASEQDMsCCyACIARrIAAoAgAiAWohFCAEIAFrQQVqIRACQANAIAQtAAAgAUGuz4CAAGotAABHDbMBIAFBBUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGZASEQDMsCCyAAQQA2AgAgEEEBaiEBQQYhEAywAQsCQCAEIAJHDQBBmgEhEAzKAgsgAiAEayAAKAIAIgFqIRQgBCABa0EBaiEQAkADQCAELQAAIAFBtM+AgABqLQAARw2yASABQQFGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBmgEhEAzKAgsgAEEANgIAIBBBAWohAUEcIRAMrwELAkAgBCACRw0AQZsBIRAMyQILIAIgBGsgACgCACIBaiEUIAQgAWtBAWohEAJAA0AgBC0AACABQbbPgIAAai0AAEcNsQEgAUEBRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZsBIRAMyQILIABBADYCACAQQQFqIQFBJyEQDK4BCwJAIAQgAkcNAEGcASEQDMgCCwJAAkAgBC0AAEGsf2oOAgABsQELIARBAWohBEGGASEQDK8CCyAEQQFqIQRBhwEhEAyuAgsCQCAEIAJHDQBBnQEhEAzHAgsgAiAEayAAKAIAIgFqIRQgBCABa0EBaiEQAkADQCAELQAAIAFBuM+AgABqLQAARw2vASABQQFGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBnQEhEAzHAgsgAEEANgIAIBBBAWohAUEmIRAMrAELAkAgBCACRw0AQZ4BIRAMxgILIAIgBGsgACgCACIBaiEUIAQgAWtBAWohEAJAA0AgBC0AACABQbrPgIAAai0AAEcNrgEgAUEBRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZ4BIRAMxgILIABBADYCACAQQQFqIQFBAyEQDKsBCwJAIAQgAkcNAEGfASEQDMUCCyACIARrIAAoAgAiAWohFCAEIAFrQQJqIRACQANAIAQtAAAgAUHtz4CAAGotAABHDa0BIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGfASEQDMUCCyAAQQA2AgAgEEEBaiEBQQwhEAyqAQsCQCAEIAJHDQBBoAEhEAzEAgsgAiAEayAAKAIAIgFqIRQgBCABa0EDaiEQAkADQCAELQAAIAFBvM+AgABqLQAARw2sASABQQNGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBoAEhEAzEAgsgAEEANgIAIBBBAWohAUENIRAMqQELAkAgBCACRw0AQaEBIRAMwwILAkACQCAELQAAQbp/ag4LAKwBrAGsAawBrAGsAawBrAGsAQGsAQsgBEEBaiEEQYsBIRAMqgILIARBAWohBEGMASEQDKkCCwJAIAQgAkcNAEGiASEQDMICCyAELQAAQdAARw2pASAEQQFqIQQM6QELAkAgBCACRw0AQaMBIRAMwQILAkACQCAELQAAQbd/ag4HAaoBqgGqAaoBqgEAqgELIARBAWohBEGOASEQDKgCCyAEQQFqIQFBIiEQDKYBCwJAIAQgAkcNAEGkASEQDMACCyACIARrIAAoAgAiAWohFCAEIAFrQQFqIRACQANAIAQtAAAgAUHAz4CAAGotAABHDagBIAFBAUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGkASEQDMACCyAAQQA2AgAgEEEBaiEBQR0hEAylAQsCQCAEIAJHDQBBpQEhEAy/AgsCQAJAIAQtAABBrn9qDgMAqAEBqAELIARBAWohBEGQASEQDKYCCyAEQQFqIQFBBCEQDKQBCwJAIAQgAkcNAEGmASEQDL4CCwJAAkACQAJAAkAgBC0AAEG/f2oOFQCqAaoBqgGqAaoBqgGqAaoBqgGqAQGqAaoBAqoBqgEDqgGqAQSqAQsgBEEBaiEEQYgBIRAMqAILIARBAWohBEGJASEQDKcCCyAEQQFqIQRBigEhEAymAgsgBEEBaiEEQY8BIRAMpQILIARBAWohBEGRASEQDKQCCwJAIAQgAkcNAEGnASEQDL0CCyACIARrIAAoAgAiAWohFCAEIAFrQQJqIRACQANAIAQtAAAgAUHtz4CAAGotAABHDaUBIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGnASEQDL0CCyAAQQA2AgAgEEEBaiEBQREhEAyiAQsCQCAEIAJHDQBBqAEhEAy8AgsgAiAEayAAKAIAIgFqIRQgBCABa0ECaiEQAkADQCAELQAAIAFBws+AgABqLQAARw2kASABQQJGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBqAEhEAy8AgsgAEEANgIAIBBBAWohAUEsIRAMoQELAkAgBCACRw0AQakBIRAMuwILIAIgBGsgACgCACIBaiEUIAQgAWtBBGohEAJAA0AgBC0AACABQcXPgIAAai0AAEcNowEgAUEERg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQakBIRAMuwILIABBADYCACAQQQFqIQFBKyEQDKABCwJAIAQgAkcNAEGqASEQDLoCCyACIARrIAAoAgAiAWohFCAEIAFrQQJqIRACQANAIAQtAAAgAUHKz4CAAGotAABHDaIBIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGqASEQDLoCCyAAQQA2AgAgEEEBaiEBQRQhEAyfAQsCQCAEIAJHDQBBqwEhEAy5AgsCQAJAAkACQCAELQAAQb5/ag4PAAECpAGkAaQBpAGkAaQBpAGkAaQBpAGkAQOkAQsgBEEBaiEEQZMBIRAMogILIARBAWohBEGUASEQDKECCyAEQQFqIQRBlQEhEAygAgsgBEEBaiEEQZYBIRAMnwILAkAgBCACRw0AQawBIRAMuAILIAQtAABBxQBHDZ8BIARBAWohBAzgAQsCQCAEIAJHDQBBrQEhEAy3AgsgAiAEayAAKAIAIgFqIRQgBCABa0ECaiEQAkADQCAELQAAIAFBzc+AgABqLQAARw2fASABQQJGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBrQEhEAy3AgsgAEEANgIAIBBBAWohAUEOIRAMnAELAkAgBCACRw0AQa4BIRAMtgILIAQtAABB0ABHDZ0BIARBAWohAUElIRAMmwELAkAgBCACRw0AQa8BIRAMtQILIAIgBGsgACgCACIBaiEUIAQgAWtBCGohEAJAA0AgBC0AACABQdDPgIAAai0AAEcNnQEgAUEIRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQa8BIRAMtQILIABBADYCACAQQQFqIQFBKiEQDJoBCwJAIAQgAkcNAEGwASEQDLQCCwJAAkAgBC0AAEGrf2oOCwCdAZ0BnQGdAZ0BnQGdAZ0BnQEBnQELIARBAWohBEGaASEQDJsCCyAEQQFqIQRBmwEhEAyaAgsCQCAEIAJHDQBBsQEhEAyzAgsCQAJAIAQtAABBv39qDhQAnAGcAZwBnAGcAZwBnAGcAZwBnAGcAZwBnAGcAZwBnAGcAZwBAZwBCyAEQQFqIQRBmQEhEAyaAgsgBEEBaiEEQZwBIRAMmQILAkAgBCACRw0AQbIBIRAMsgILIAIgBGsgACgCACIBaiEUIAQgAWtBA2ohEAJAA0AgBC0AACABQdnPgIAAai0AAEcNmgEgAUEDRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQbIBIRAMsgILIABBADYCACAQQQFqIQFBISEQDJcBCwJAIAQgAkcNAEGzASEQDLECCyACIARrIAAoAgAiAWohFCAEIAFrQQZqIRACQANAIAQtAAAgAUHdz4CAAGotAABHDZkBIAFBBkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGzASEQDLECCyAAQQA2AgAgEEEBaiEBQRohEAyWAQsCQCAEIAJHDQBBtAEhEAywAgsCQAJAAkAgBC0AAEG7f2oOEQCaAZoBmgGaAZoBmgGaAZoBmgEBmgGaAZoBmgGaAQKaAQsgBEEBaiEEQZ0BIRAMmAILIARBAWohBEGeASEQDJcCCyAEQQFqIQRBnwEhEAyWAgsCQCAEIAJHDQBBtQEhEAyvAgsgAiAEayAAKAIAIgFqIRQgBCABa0EFaiEQAkADQCAELQAAIAFB5M+AgABqLQAARw2XASABQQVGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBtQEhEAyvAgsgAEEANgIAIBBBAWohAUEoIRAMlAELAkAgBCACRw0AQbYBIRAMrgILIAIgBGsgACgCACIBaiEUIAQgAWtBAmohEAJAA0AgBC0AACABQerPgIAAai0AAEcNlgEgAUECRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQbYBIRAMrgILIABBADYCACAQQQFqIQFBByEQDJMBCwJAIAQgAkcNAEG3ASEQDK0CCwJAAkAgBC0AAEG7f2oODgCWAZYBlgGWAZYBlgGWAZYBlgGWAZYBlgEBlgELIARBAWohBEGhASEQDJQCCyAEQQFqIQRBogEhEAyTAgsCQCAEIAJHDQBBuAEhEAysAgsgAiAEayAAKAIAIgFqIRQgBCABa0ECaiEQAkADQCAELQAAIAFB7c+AgABqLQAARw2UASABQQJGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBuAEhEAysAgsgAEEANgIAIBBBAWohAUESIRAMkQELAkAgBCACRw0AQbkBIRAMqwILIAIgBGsgACgCACIBaiEUIAQgAWtBAWohEAJAA0AgBC0AACABQfDPgIAAai0AAEcNkwEgAUEBRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQbkBIRAMqwILIABBADYCACAQQQFqIQFBICEQDJABCwJAIAQgAkcNAEG6ASEQDKoCCyACIARrIAAoAgAiAWohFCAEIAFrQQFqIRACQANAIAQtAAAgAUHyz4CAAGotAABHDZIBIAFBAUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEG6ASEQDKoCCyAAQQA2AgAgEEEBaiEBQQ8hEAyPAQsCQCAEIAJHDQBBuwEhEAypAgsCQAJAIAQtAABBt39qDgcAkgGSAZIBkgGSAQGSAQsgBEEBaiEEQaUBIRAMkAILIARBAWohBEGmASEQDI8CCwJAIAQgAkcNAEG8ASEQDKgCCyACIARrIAAoAgAiAWohFCAEIAFrQQdqIRACQANAIAQtAAAgAUH0z4CAAGotAABHDZABIAFBB0YNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEG8ASEQDKgCCyAAQQA2AgAgEEEBaiEBQRshEAyNAQsCQCAEIAJHDQBBvQEhEAynAgsCQAJAAkAgBC0AAEG+f2oOEgCRAZEBkQGRAZEBkQGRAZEBkQEBkQGRAZEBkQGRAZEBApEBCyAEQQFqIQRBpAEhEAyPAgsgBEEBaiEEQacBIRAMjgILIARBAWohBEGoASEQDI0CCwJAIAQgAkcNAEG+ASEQDKYCCyAELQAAQc4ARw2NASAEQQFqIQQMzwELAkAgBCACRw0AQb8BIRAMpQILAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgBC0AAEG/f2oOFQABAgOcAQQFBpwBnAGcAQcICQoLnAEMDQ4PnAELIARBAWohAUHoACEQDJoCCyAEQQFqIQFB6QAhEAyZAgsgBEEBaiEBQe4AIRAMmAILIARBAWohAUHyACEQDJcCCyAEQQFqIQFB8wAhEAyWAgsgBEEBaiEBQfYAIRAMlQILIARBAWohAUH3ACEQDJQCCyAEQQFqIQFB+gAhEAyTAgsgBEEBaiEEQYMBIRAMkgILIARBAWohBEGEASEQDJECCyAEQQFqIQRBhQEhEAyQAgsgBEEBaiEEQZIBIRAMjwILIARBAWohBEGYASEQDI4CCyAEQQFqIQRBoAEhEAyNAgsgBEEBaiEEQaMBIRAMjAILIARBAWohBEGqASEQDIsCCwJAIAQgAkYNACAAQZCAgIAANgIIIAAgBDYCBEGrASEQDIsCC0HAASEQDKMCCyAAIAUgAhCqgICAACIBDYsBIAUhAQxcCwJAIAYgAkYNACAGQQFqIQUMjQELQcIBIRAMoQILA0ACQCAQLQAAQXZqDgSMAQAAjwEACyAQQQFqIhAgAkcNAAtBwwEhEAygAgsCQCAHIAJGDQAgAEGRgICAADYCCCAAIAc2AgQgByEBQQEhEAyHAgtBxAEhEAyfAgsCQCAHIAJHDQBBxQEhEAyfAgsCQAJAIActAABBdmoOBAHOAc4BAM4BCyAHQQFqIQYMjQELIAdBAWohBQyJAQsCQCAHIAJHDQBBxgEhEAyeAgsCQAJAIActAABBdmoOFwGPAY8BAY8BjwGPAY8BjwGPAY8BjwGPAY8BjwGPAY8BjwGPAY8BjwGPAQCPAQsgB0EBaiEHC0GwASEQDIQCCwJAIAggAkcNAEHIASEQDJ0CCyAILQAAQSBHDY0BIABBADsBMiAIQQFqIQFBswEhEAyDAgsgASEXAkADQCAXIgcgAkYNASAHLQAAQVBqQf8BcSIQQQpPDcwBAkAgAC8BMiIUQZkzSw0AIAAgFEEKbCIUOwEyIBBB//8DcyAUQf7/A3FJDQAgB0EBaiEXIAAgFCAQaiIQOwEyIBBB//8DcUHoB0kNAQsLQQAhECAAQQA2AhwgAEHBiYCAADYCECAAQQ02AgwgACAHQQFqNgIUDJwCC0HHASEQDJsCCyAAIAggAhCugICAACIQRQ3KASAQQRVHDYwBIABByAE2AhwgACAINgIUIABByZeAgAA2AhAgAEEVNgIMQQAhEAyaAgsCQCAJIAJHDQBBzAEhEAyaAgtBACEUQQEhF0EBIRZBACEQAkACQAJAAkACQAJAAkACQAJAIAktAABBUGoOCpYBlQEAAQIDBAUGCJcBC0ECIRAMBgtBAyEQDAULQQQhEAwEC0EFIRAMAwtBBiEQDAILQQchEAwBC0EIIRALQQAhF0EAIRZBACEUDI4BC0EJIRBBASEUQQAhF0EAIRYMjQELAkAgCiACRw0AQc4BIRAMmQILIAotAABBLkcNjgEgCkEBaiEJDMoBCyALIAJHDY4BQdABIRAMlwILAkAgCyACRg0AIABBjoCAgAA2AgggACALNgIEQbcBIRAM/gELQdEBIRAMlgILAkAgBCACRw0AQdIBIRAMlgILIAIgBGsgACgCACIQaiEUIAQgEGtBBGohCwNAIAQtAAAgEEH8z4CAAGotAABHDY4BIBBBBEYN6QEgEEEBaiEQIARBAWoiBCACRw0ACyAAIBQ2AgBB0gEhEAyVAgsgACAMIAIQrICAgAAiAQ2NASAMIQEMuAELAkAgBCACRw0AQdQBIRAMlAILIAIgBGsgACgCACIQaiEUIAQgEGtBAWohDANAIAQtAAAgEEGB0ICAAGotAABHDY8BIBBBAUYNjgEgEEEBaiEQIARBAWoiBCACRw0ACyAAIBQ2AgBB1AEhEAyTAgsCQCAEIAJHDQBB1gEhEAyTAgsgAiAEayAAKAIAIhBqIRQgBCAQa0ECaiELA0AgBC0AACAQQYPQgIAAai0AAEcNjgEgEEECRg2QASAQQQFqIRAgBEEBaiIEIAJHDQALIAAgFDYCAEHWASEQDJICCwJAIAQgAkcNAEHXASEQDJICCwJAAkAgBC0AAEG7f2oOEACPAY8BjwGPAY8BjwGPAY8BjwGPAY8BjwGPAY8BAY8BCyAEQQFqIQRBuwEhEAz5AQsgBEEBaiEEQbwBIRAM+AELAkAgBCACRw0AQdgBIRAMkQILIAQtAABByABHDYwBIARBAWohBAzEAQsCQCAEIAJGDQAgAEGQgICAADYCCCAAIAQ2AgRBvgEhEAz3AQtB2QEhEAyPAgsCQCAEIAJHDQBB2gEhEAyPAgsgBC0AAEHIAEYNwwEgAEEBOgAoDLkBCyAAQQI6AC8gACAEIAIQpoCAgAAiEA2NAUHCASEQDPQBCyAALQAoQX9qDgK3AbkBuAELA0ACQCAELQAAQXZqDgQAjgGOAQCOAQsgBEEBaiIEIAJHDQALQd0BIRAMiwILIABBADoALyAALQAtQQRxRQ2EAgsgAEEAOgAvIABBAToANCABIQEMjAELIBBBFUYN2gEgAEEANgIcIAAgATYCFCAAQaeOgIAANgIQIABBEjYCDEEAIRAMiAILAkAgACAQIAIQtICAgAAiBA0AIBAhAQyBAgsCQCAEQRVHDQAgAEEDNgIcIAAgEDYCFCAAQbCYgIAANgIQIABBFTYCDEEAIRAMiAILIABBADYCHCAAIBA2AhQgAEGnjoCAADYCECAAQRI2AgxBACEQDIcCCyAQQRVGDdYBIABBADYCHCAAIAE2AhQgAEHajYCAADYCECAAQRQ2AgxBACEQDIYCCyAAKAIEIRcgAEEANgIEIBAgEadqIhYhASAAIBcgECAWIBQbIhAQtYCAgAAiFEUNjQEgAEEHNgIcIAAgEDYCFCAAIBQ2AgxBACEQDIUCCyAAIAAvATBBgAFyOwEwIAEhAQtBKiEQDOoBCyAQQRVGDdEBIABBADYCHCAAIAE2AhQgAEGDjICAADYCECAAQRM2AgxBACEQDIICCyAQQRVGDc8BIABBADYCHCAAIAE2AhQgAEGaj4CAADYCECAAQSI2AgxBACEQDIECCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQt4CAgAAiEA0AIAFBAWohAQyNAQsgAEEMNgIcIAAgEDYCDCAAIAFBAWo2AhRBACEQDIACCyAQQRVGDcwBIABBADYCHCAAIAE2AhQgAEGaj4CAADYCECAAQSI2AgxBACEQDP8BCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQt4CAgAAiEA0AIAFBAWohAQyMAQsgAEENNgIcIAAgEDYCDCAAIAFBAWo2AhRBACEQDP4BCyAQQRVGDckBIABBADYCHCAAIAE2AhQgAEHGjICAADYCECAAQSM2AgxBACEQDP0BCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQuYCAgAAiEA0AIAFBAWohAQyLAQsgAEEONgIcIAAgEDYCDCAAIAFBAWo2AhRBACEQDPwBCyAAQQA2AhwgACABNgIUIABBwJWAgAA2AhAgAEECNgIMQQAhEAz7AQsgEEEVRg3FASAAQQA2AhwgACABNgIUIABBxoyAgAA2AhAgAEEjNgIMQQAhEAz6AQsgAEEQNgIcIAAgATYCFCAAIBA2AgxBACEQDPkBCyAAKAIEIQQgAEEANgIEAkAgACAEIAEQuYCAgAAiBA0AIAFBAWohAQzxAQsgAEERNgIcIAAgBDYCDCAAIAFBAWo2AhRBACEQDPgBCyAQQRVGDcEBIABBADYCHCAAIAE2AhQgAEHGjICAADYCECAAQSM2AgxBACEQDPcBCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQuYCAgAAiEA0AIAFBAWohAQyIAQsgAEETNgIcIAAgEDYCDCAAIAFBAWo2AhRBACEQDPYBCyAAKAIEIQQgAEEANgIEAkAgACAEIAEQuYCAgAAiBA0AIAFBAWohAQztAQsgAEEUNgIcIAAgBDYCDCAAIAFBAWo2AhRBACEQDPUBCyAQQRVGDb0BIABBADYCHCAAIAE2AhQgAEGaj4CAADYCECAAQSI2AgxBACEQDPQBCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQt4CAgAAiEA0AIAFBAWohAQyGAQsgAEEWNgIcIAAgEDYCDCAAIAFBAWo2AhRBACEQDPMBCyAAKAIEIQQgAEEANgIEAkAgACAEIAEQt4CAgAAiBA0AIAFBAWohAQzpAQsgAEEXNgIcIAAgBDYCDCAAIAFBAWo2AhRBACEQDPIBCyAAQQA2AhwgACABNgIUIABBzZOAgAA2AhAgAEEMNgIMQQAhEAzxAQtCASERCyAQQQFqIQECQCAAKQMgIhJC//////////8PVg0AIAAgEkIEhiARhDcDICABIQEMhAELIABBADYCHCAAIAE2AhQgAEGtiYCAADYCECAAQQw2AgxBACEQDO8BCyAAQQA2AhwgACAQNgIUIABBzZOAgAA2AhAgAEEMNgIMQQAhEAzuAQsgACgCBCEXIABBADYCBCAQIBGnaiIWIQEgACAXIBAgFiAUGyIQELWAgIAAIhRFDXMgAEEFNgIcIAAgEDYCFCAAIBQ2AgxBACEQDO0BCyAAQQA2AhwgACAQNgIUIABBqpyAgAA2AhAgAEEPNgIMQQAhEAzsAQsgACAQIAIQtICAgAAiAQ0BIBAhAQtBDiEQDNEBCwJAIAFBFUcNACAAQQI2AhwgACAQNgIUIABBsJiAgAA2AhAgAEEVNgIMQQAhEAzqAQsgAEEANgIcIAAgEDYCFCAAQaeOgIAANgIQIABBEjYCDEEAIRAM6QELIAFBAWohEAJAIAAvATAiAUGAAXFFDQACQCAAIBAgAhC7gICAACIBDQAgECEBDHALIAFBFUcNugEgAEEFNgIcIAAgEDYCFCAAQfmXgIAANgIQIABBFTYCDEEAIRAM6QELAkAgAUGgBHFBoARHDQAgAC0ALUECcQ0AIABBADYCHCAAIBA2AhQgAEGWk4CAADYCECAAQQQ2AgxBACEQDOkBCyAAIBAgAhC9gICAABogECEBAkACQAJAAkACQCAAIBAgAhCzgICAAA4WAgEABAQEBAQEBAQEBAQEBAQEBAQEAwQLIABBAToALgsgACAALwEwQcAAcjsBMCAQIQELQSYhEAzRAQsgAEEjNgIcIAAgEDYCFCAAQaWWgIAANgIQIABBFTYCDEEAIRAM6QELIABBADYCHCAAIBA2AhQgAEHVi4CAADYCECAAQRE2AgxBACEQDOgBCyAALQAtQQFxRQ0BQcMBIRAMzgELAkAgDSACRg0AA0ACQCANLQAAQSBGDQAgDSEBDMQBCyANQQFqIg0gAkcNAAtBJSEQDOcBC0ElIRAM5gELIAAoAgQhBCAAQQA2AgQgACAEIA0Qr4CAgAAiBEUNrQEgAEEmNgIcIAAgBDYCDCAAIA1BAWo2AhRBACEQDOUBCyAQQRVGDasBIABBADYCHCAAIAE2AhQgAEH9jYCAADYCECAAQR02AgxBACEQDOQBCyAAQSc2AhwgACABNgIUIAAgEDYCDEEAIRAM4wELIBAhAUEBIRQCQAJAAkACQAJAAkACQCAALQAsQX5qDgcGBQUDAQIABQsgACAALwEwQQhyOwEwDAMLQQIhFAwBC0EEIRQLIABBAToALCAAIAAvATAgFHI7ATALIBAhAQtBKyEQDMoBCyAAQQA2AhwgACAQNgIUIABBq5KAgAA2AhAgAEELNgIMQQAhEAziAQsgAEEANgIcIAAgATYCFCAAQeGPgIAANgIQIABBCjYCDEEAIRAM4QELIABBADoALCAQIQEMvQELIBAhAUEBIRQCQAJAAkACQAJAIAAtACxBe2oOBAMBAgAFCyAAIAAvATBBCHI7ATAMAwtBAiEUDAELQQQhFAsgAEEBOgAsIAAgAC8BMCAUcjsBMAsgECEBC0EpIRAMxQELIABBADYCHCAAIAE2AhQgAEHwlICAADYCECAAQQM2AgxBACEQDN0BCwJAIA4tAABBDUcNACAAKAIEIQEgAEEANgIEAkAgACABIA4QsYCAgAAiAQ0AIA5BAWohAQx1CyAAQSw2AhwgACABNgIMIAAgDkEBajYCFEEAIRAM3QELIAAtAC1BAXFFDQFBxAEhEAzDAQsCQCAOIAJHDQBBLSEQDNwBCwJAAkADQAJAIA4tAABBdmoOBAIAAAMACyAOQQFqIg4gAkcNAAtBLSEQDN0BCyAAKAIEIQEgAEEANgIEAkAgACABIA4QsYCAgAAiAQ0AIA4hAQx0CyAAQSw2AhwgACAONgIUIAAgATYCDEEAIRAM3AELIAAoAgQhASAAQQA2AgQCQCAAIAEgDhCxgICAACIBDQAgDkEBaiEBDHMLIABBLDYCHCAAIAE2AgwgACAOQQFqNgIUQQAhEAzbAQsgACgCBCEEIABBADYCBCAAIAQgDhCxgICAACIEDaABIA4hAQzOAQsgEEEsRw0BIAFBAWohEEEBIQECQAJAAkACQAJAIAAtACxBe2oOBAMBAgQACyAQIQEMBAtBAiEBDAELQQQhAQsgAEEBOgAsIAAgAC8BMCABcjsBMCAQIQEMAQsgACAALwEwQQhyOwEwIBAhAQtBOSEQDL8BCyAAQQA6ACwgASEBC0E0IRAMvQELIAAgAC8BMEEgcjsBMCABIQEMAgsgACgCBCEEIABBADYCBAJAIAAgBCABELGAgIAAIgQNACABIQEMxwELIABBNzYCHCAAIAE2AhQgACAENgIMQQAhEAzUAQsgAEEIOgAsIAEhAQtBMCEQDLkBCwJAIAAtAChBAUYNACABIQEMBAsgAC0ALUEIcUUNkwEgASEBDAMLIAAtADBBIHENlAFBxQEhEAy3AQsCQCAPIAJGDQACQANAAkAgDy0AAEFQaiIBQf8BcUEKSQ0AIA8hAUE1IRAMugELIAApAyAiEUKZs+bMmbPmzBlWDQEgACARQgp+IhE3AyAgESABrUL/AYMiEkJ/hVYNASAAIBEgEnw3AyAgD0EBaiIPIAJHDQALQTkhEAzRAQsgACgCBCECIABBADYCBCAAIAIgD0EBaiIEELGAgIAAIgINlQEgBCEBDMMBC0E5IRAMzwELAkAgAC8BMCIBQQhxRQ0AIAAtAChBAUcNACAALQAtQQhxRQ2QAQsgACABQff7A3FBgARyOwEwIA8hAQtBNyEQDLQBCyAAIAAvATBBEHI7ATAMqwELIBBBFUYNiwEgAEEANgIcIAAgATYCFCAAQfCOgIAANgIQIABBHDYCDEEAIRAMywELIABBwwA2AhwgACABNgIMIAAgDUEBajYCFEEAIRAMygELAkAgAS0AAEE6Rw0AIAAoAgQhECAAQQA2AgQCQCAAIBAgARCvgICAACIQDQAgAUEBaiEBDGMLIABBwwA2AhwgACAQNgIMIAAgAUEBajYCFEEAIRAMygELIABBADYCHCAAIAE2AhQgAEGxkYCAADYCECAAQQo2AgxBACEQDMkBCyAAQQA2AhwgACABNgIUIABBoJmAgAA2AhAgAEEeNgIMQQAhEAzIAQsgAEEANgIACyAAQYASOwEqIAAgF0EBaiIBIAIQqICAgAAiEA0BIAEhAQtBxwAhEAysAQsgEEEVRw2DASAAQdEANgIcIAAgATYCFCAAQeOXgIAANgIQIABBFTYCDEEAIRAMxAELIAAoAgQhECAAQQA2AgQCQCAAIBAgARCngICAACIQDQAgASEBDF4LIABB0gA2AhwgACABNgIUIAAgEDYCDEEAIRAMwwELIABBADYCHCAAIBQ2AhQgAEHBqICAADYCECAAQQc2AgwgAEEANgIAQQAhEAzCAQsgACgCBCEQIABBADYCBAJAIAAgECABEKeAgIAAIhANACABIQEMXQsgAEHTADYCHCAAIAE2AhQgACAQNgIMQQAhEAzBAQtBACEQIABBADYCHCAAIAE2AhQgAEGAkYCAADYCECAAQQk2AgwMwAELIBBBFUYNfSAAQQA2AhwgACABNgIUIABBlI2AgAA2AhAgAEEhNgIMQQAhEAy/AQtBASEWQQAhF0EAIRRBASEQCyAAIBA6ACsgAUEBaiEBAkACQCAALQAtQRBxDQACQAJAAkAgAC0AKg4DAQACBAsgFkUNAwwCCyAUDQEMAgsgF0UNAQsgACgCBCEQIABBADYCBAJAIAAgECABEK2AgIAAIhANACABIQEMXAsgAEHYADYCHCAAIAE2AhQgACAQNgIMQQAhEAy+AQsgACgCBCEEIABBADYCBAJAIAAgBCABEK2AgIAAIgQNACABIQEMrQELIABB2QA2AhwgACABNgIUIAAgBDYCDEEAIRAMvQELIAAoAgQhBCAAQQA2AgQCQCAAIAQgARCtgICAACIEDQAgASEBDKsBCyAAQdoANgIcIAAgATYCFCAAIAQ2AgxBACEQDLwBCyAAKAIEIQQgAEEANgIEAkAgACAEIAEQrYCAgAAiBA0AIAEhAQypAQsgAEHcADYCHCAAIAE2AhQgACAENgIMQQAhEAy7AQsCQCABLQAAQVBqIhBB/wFxQQpPDQAgACAQOgAqIAFBAWohAUHPACEQDKIBCyAAKAIEIQQgAEEANgIEAkAgACAEIAEQrYCAgAAiBA0AIAEhAQynAQsgAEHeADYCHCAAIAE2AhQgACAENgIMQQAhEAy6AQsgAEEANgIAIBdBAWohAQJAIAAtAClBI08NACABIQEMWQsgAEEANgIcIAAgATYCFCAAQdOJgIAANgIQIABBCDYCDEEAIRAMuQELIABBADYCAAtBACEQIABBADYCHCAAIAE2AhQgAEGQs4CAADYCECAAQQg2AgwMtwELIABBADYCACAXQQFqIQECQCAALQApQSFHDQAgASEBDFYLIABBADYCHCAAIAE2AhQgAEGbioCAADYCECAAQQg2AgxBACEQDLYBCyAAQQA2AgAgF0EBaiEBAkAgAC0AKSIQQV1qQQtPDQAgASEBDFULAkAgEEEGSw0AQQEgEHRBygBxRQ0AIAEhAQxVC0EAIRAgAEEANgIcIAAgATYCFCAAQfeJgIAANgIQIABBCDYCDAy1AQsgEEEVRg1xIABBADYCHCAAIAE2AhQgAEG5jYCAADYCECAAQRo2AgxBACEQDLQBCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQp4CAgAAiEA0AIAEhAQxUCyAAQeUANgIcIAAgATYCFCAAIBA2AgxBACEQDLMBCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQp4CAgAAiEA0AIAEhAQxNCyAAQdIANgIcIAAgATYCFCAAIBA2AgxBACEQDLIBCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQp4CAgAAiEA0AIAEhAQxNCyAAQdMANgIcIAAgATYCFCAAIBA2AgxBACEQDLEBCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQp4CAgAAiEA0AIAEhAQxRCyAAQeUANgIcIAAgATYCFCAAIBA2AgxBACEQDLABCyAAQQA2AhwgACABNgIUIABBxoqAgAA2AhAgAEEHNgIMQQAhEAyvAQsgACgCBCEQIABBADYCBAJAIAAgECABEKeAgIAAIhANACABIQEMSQsgAEHSADYCHCAAIAE2AhQgACAQNgIMQQAhEAyuAQsgACgCBCEQIABBADYCBAJAIAAgECABEKeAgIAAIhANACABIQEMSQsgAEHTADYCHCAAIAE2AhQgACAQNgIMQQAhEAytAQsgACgCBCEQIABBADYCBAJAIAAgECABEKeAgIAAIhANACABIQEMTQsgAEHlADYCHCAAIAE2AhQgACAQNgIMQQAhEAysAQsgAEEANgIcIAAgATYCFCAAQdyIgIAANgIQIABBBzYCDEEAIRAMqwELIBBBP0cNASABQQFqIQELQQUhEAyQAQtBACEQIABBADYCHCAAIAE2AhQgAEH9koCAADYCECAAQQc2AgwMqAELIAAoAgQhECAAQQA2AgQCQCAAIBAgARCngICAACIQDQAgASEBDEILIABB0gA2AhwgACABNgIUIAAgEDYCDEEAIRAMpwELIAAoAgQhECAAQQA2AgQCQCAAIBAgARCngICAACIQDQAgASEBDEILIABB0wA2AhwgACABNgIUIAAgEDYCDEEAIRAMpgELIAAoAgQhECAAQQA2AgQCQCAAIBAgARCngICAACIQDQAgASEBDEYLIABB5QA2AhwgACABNgIUIAAgEDYCDEEAIRAMpQELIAAoAgQhASAAQQA2AgQCQCAAIAEgFBCngICAACIBDQAgFCEBDD8LIABB0gA2AhwgACAUNgIUIAAgATYCDEEAIRAMpAELIAAoAgQhASAAQQA2AgQCQCAAIAEgFBCngICAACIBDQAgFCEBDD8LIABB0wA2AhwgACAUNgIUIAAgATYCDEEAIRAMowELIAAoAgQhASAAQQA2AgQCQCAAIAEgFBCngICAACIBDQAgFCEBDEMLIABB5QA2AhwgACAUNgIUIAAgATYCDEEAIRAMogELIABBADYCHCAAIBQ2AhQgAEHDj4CAADYCECAAQQc2AgxBACEQDKEBCyAAQQA2AhwgACABNgIUIABBw4+AgAA2AhAgAEEHNgIMQQAhEAygAQtBACEQIABBADYCHCAAIBQ2AhQgAEGMnICAADYCECAAQQc2AgwMnwELIABBADYCHCAAIBQ2AhQgAEGMnICAADYCECAAQQc2AgxBACEQDJ4BCyAAQQA2AhwgACAUNgIUIABB/pGAgAA2AhAgAEEHNgIMQQAhEAydAQsgAEEANgIcIAAgATYCFCAAQY6bgIAANgIQIABBBjYCDEEAIRAMnAELIBBBFUYNVyAAQQA2AhwgACABNgIUIABBzI6AgAA2AhAgAEEgNgIMQQAhEAybAQsgAEEANgIAIBBBAWohAUEkIRALIAAgEDoAKSAAKAIEIRAgAEEANgIEIAAgECABEKuAgIAAIhANVCABIQEMPgsgAEEANgIAC0EAIRAgAEEANgIcIAAgBDYCFCAAQfGbgIAANgIQIABBBjYCDAyXAQsgAUEVRg1QIABBADYCHCAAIAU2AhQgAEHwjICAADYCECAAQRs2AgxBACEQDJYBCyAAKAIEIQUgAEEANgIEIAAgBSAQEKmAgIAAIgUNASAQQQFqIQULQa0BIRAMewsgAEHBATYCHCAAIAU2AgwgACAQQQFqNgIUQQAhEAyTAQsgACgCBCEGIABBADYCBCAAIAYgEBCpgICAACIGDQEgEEEBaiEGC0GuASEQDHgLIABBwgE2AhwgACAGNgIMIAAgEEEBajYCFEEAIRAMkAELIABBADYCHCAAIAc2AhQgAEGXi4CAADYCECAAQQ02AgxBACEQDI8BCyAAQQA2AhwgACAINgIUIABB45CAgAA2AhAgAEEJNgIMQQAhEAyOAQsgAEEANgIcIAAgCDYCFCAAQZSNgIAANgIQIABBITYCDEEAIRAMjQELQQEhFkEAIRdBACEUQQEhEAsgACAQOgArIAlBAWohCAJAAkAgAC0ALUEQcQ0AAkACQAJAIAAtACoOAwEAAgQLIBZFDQMMAgsgFA0BDAILIBdFDQELIAAoAgQhECAAQQA2AgQgACAQIAgQrYCAgAAiEEUNPSAAQckBNgIcIAAgCDYCFCAAIBA2AgxBACEQDIwBCyAAKAIEIQQgAEEANgIEIAAgBCAIEK2AgIAAIgRFDXYgAEHKATYCHCAAIAg2AhQgACAENgIMQQAhEAyLAQsgACgCBCEEIABBADYCBCAAIAQgCRCtgICAACIERQ10IABBywE2AhwgACAJNgIUIAAgBDYCDEEAIRAMigELIAAoAgQhBCAAQQA2AgQgACAEIAoQrYCAgAAiBEUNciAAQc0BNgIcIAAgCjYCFCAAIAQ2AgxBACEQDIkBCwJAIAstAABBUGoiEEH/AXFBCk8NACAAIBA6ACogC0EBaiEKQbYBIRAMcAsgACgCBCEEIABBADYCBCAAIAQgCxCtgICAACIERQ1wIABBzwE2AhwgACALNgIUIAAgBDYCDEEAIRAMiAELIABBADYCHCAAIAQ2AhQgAEGQs4CAADYCECAAQQg2AgwgAEEANgIAQQAhEAyHAQsgAUEVRg0/IABBADYCHCAAIAw2AhQgAEHMjoCAADYCECAAQSA2AgxBACEQDIYBCyAAQYEEOwEoIAAoAgQhECAAQgA3AwAgACAQIAxBAWoiDBCrgICAACIQRQ04IABB0wE2AhwgACAMNgIUIAAgEDYCDEEAIRAMhQELIABBADYCAAtBACEQIABBADYCHCAAIAQ2AhQgAEHYm4CAADYCECAAQQg2AgwMgwELIAAoAgQhECAAQgA3AwAgACAQIAtBAWoiCxCrgICAACIQDQFBxgEhEAxpCyAAQQI6ACgMVQsgAEHVATYCHCAAIAs2AhQgACAQNgIMQQAhEAyAAQsgEEEVRg03IABBADYCHCAAIAQ2AhQgAEGkjICAADYCECAAQRA2AgxBACEQDH8LIAAtADRBAUcNNCAAIAQgAhC8gICAACIQRQ00IBBBFUcNNSAAQdwBNgIcIAAgBDYCFCAAQdWWgIAANgIQIABBFTYCDEEAIRAMfgtBACEQIABBADYCHCAAQa+LgIAANgIQIABBAjYCDCAAIBRBAWo2AhQMfQtBACEQDGMLQQIhEAxiC0ENIRAMYQtBDyEQDGALQSUhEAxfC0ETIRAMXgtBFSEQDF0LQRYhEAxcC0EXIRAMWwtBGCEQDFoLQRkhEAxZC0EaIRAMWAtBGyEQDFcLQRwhEAxWC0EdIRAMVQtBHyEQDFQLQSEhEAxTC0EjIRAMUgtBxgAhEAxRC0EuIRAMUAtBLyEQDE8LQTshEAxOC0E9IRAMTQtByAAhEAxMC0HJACEQDEsLQcsAIRAMSgtBzAAhEAxJC0HOACEQDEgLQdEAIRAMRwtB1QAhEAxGC0HYACEQDEULQdkAIRAMRAtB2wAhEAxDC0HkACEQDEILQeUAIRAMQQtB8QAhEAxAC0H0ACEQDD8LQY0BIRAMPgtBlwEhEAw9C0GpASEQDDwLQawBIRAMOwtBwAEhEAw6C0G5ASEQDDkLQa8BIRAMOAtBsQEhEAw3C0GyASEQDDYLQbQBIRAMNQtBtQEhEAw0C0G6ASEQDDMLQb0BIRAMMgtBvwEhEAwxC0HBASEQDDALIABBADYCHCAAIAQ2AhQgAEHpi4CAADYCECAAQR82AgxBACEQDEgLIABB2wE2AhwgACAENgIUIABB+paAgAA2AhAgAEEVNgIMQQAhEAxHCyAAQfgANgIcIAAgDDYCFCAAQcqYgIAANgIQIABBFTYCDEEAIRAMRgsgAEHRADYCHCAAIAU2AhQgAEGwl4CAADYCECAAQRU2AgxBACEQDEULIABB+QA2AhwgACABNgIUIAAgEDYCDEEAIRAMRAsgAEH4ADYCHCAAIAE2AhQgAEHKmICAADYCECAAQRU2AgxBACEQDEMLIABB5AA2AhwgACABNgIUIABB45eAgAA2AhAgAEEVNgIMQQAhEAxCCyAAQdcANgIcIAAgATYCFCAAQcmXgIAANgIQIABBFTYCDEEAIRAMQQsgAEEANgIcIAAgATYCFCAAQbmNgIAANgIQIABBGjYCDEEAIRAMQAsgAEHCADYCHCAAIAE2AhQgAEHjmICAADYCECAAQRU2AgxBACEQDD8LIABBADYCBCAAIA8gDxCxgICAACIERQ0BIABBOjYCHCAAIAQ2AgwgACAPQQFqNgIUQQAhEAw+CyAAKAIEIQQgAEEANgIEAkAgACAEIAEQsYCAgAAiBEUNACAAQTs2AhwgACAENgIMIAAgAUEBajYCFEEAIRAMPgsgAUEBaiEBDC0LIA9BAWohAQwtCyAAQQA2AhwgACAPNgIUIABB5JKAgAA2AhAgAEEENgIMQQAhEAw7CyAAQTY2AhwgACAENgIUIAAgAjYCDEEAIRAMOgsgAEEuNgIcIAAgDjYCFCAAIAQ2AgxBACEQDDkLIABB0AA2AhwgACABNgIUIABBkZiAgAA2AhAgAEEVNgIMQQAhEAw4CyANQQFqIQEMLAsgAEEVNgIcIAAgATYCFCAAQYKZgIAANgIQIABBFTYCDEEAIRAMNgsgAEEbNgIcIAAgATYCFCAAQZGXgIAANgIQIABBFTYCDEEAIRAMNQsgAEEPNgIcIAAgATYCFCAAQZGXgIAANgIQIABBFTYCDEEAIRAMNAsgAEELNgIcIAAgATYCFCAAQZGXgIAANgIQIABBFTYCDEEAIRAMMwsgAEEaNgIcIAAgATYCFCAAQYKZgIAANgIQIABBFTYCDEEAIRAMMgsgAEELNgIcIAAgATYCFCAAQYKZgIAANgIQIABBFTYCDEEAIRAMMQsgAEEKNgIcIAAgATYCFCAAQeSWgIAANgIQIABBFTYCDEEAIRAMMAsgAEEeNgIcIAAgATYCFCAAQfmXgIAANgIQIABBFTYCDEEAIRAMLwsgAEEANgIcIAAgEDYCFCAAQdqNgIAANgIQIABBFDYCDEEAIRAMLgsgAEEENgIcIAAgATYCFCAAQbCYgIAANgIQIABBFTYCDEEAIRAMLQsgAEEANgIAIAtBAWohCwtBuAEhEAwSCyAAQQA2AgAgEEEBaiEBQfUAIRAMEQsgASEBAkAgAC0AKUEFRw0AQeMAIRAMEQtB4gAhEAwQC0EAIRAgAEEANgIcIABB5JGAgAA2AhAgAEEHNgIMIAAgFEEBajYCFAwoCyAAQQA2AgAgF0EBaiEBQcAAIRAMDgtBASEBCyAAIAE6ACwgAEEANgIAIBdBAWohAQtBKCEQDAsLIAEhAQtBOCEQDAkLAkAgASIPIAJGDQADQAJAIA8tAABBgL6AgABqLQAAIgFBAUYNACABQQJHDQMgD0EBaiEBDAQLIA9BAWoiDyACRw0AC0E+IRAMIgtBPiEQDCELIABBADoALCAPIQEMAQtBCyEQDAYLQTohEAwFCyABQQFqIQFBLSEQDAQLIAAgAToALCAAQQA2AgAgFkEBaiEBQQwhEAwDCyAAQQA2AgAgF0EBaiEBQQohEAwCCyAAQQA2AgALIABBADoALCANIQFBCSEQDAALC0EAIRAgAEEANgIcIAAgCzYCFCAAQc2QgIAANgIQIABBCTYCDAwXC0EAIRAgAEEANgIcIAAgCjYCFCAAQemKgIAANgIQIABBCTYCDAwWC0EAIRAgAEEANgIcIAAgCTYCFCAAQbeQgIAANgIQIABBCTYCDAwVC0EAIRAgAEEANgIcIAAgCDYCFCAAQZyRgIAANgIQIABBCTYCDAwUC0EAIRAgAEEANgIcIAAgATYCFCAAQc2QgIAANgIQIABBCTYCDAwTC0EAIRAgAEEANgIcIAAgATYCFCAAQemKgIAANgIQIABBCTYCDAwSC0EAIRAgAEEANgIcIAAgATYCFCAAQbeQgIAANgIQIABBCTYCDAwRC0EAIRAgAEEANgIcIAAgATYCFCAAQZyRgIAANgIQIABBCTYCDAwQC0EAIRAgAEEANgIcIAAgATYCFCAAQZeVgIAANgIQIABBDzYCDAwPC0EAIRAgAEEANgIcIAAgATYCFCAAQZeVgIAANgIQIABBDzYCDAwOC0EAIRAgAEEANgIcIAAgATYCFCAAQcCSgIAANgIQIABBCzYCDAwNC0EAIRAgAEEANgIcIAAgATYCFCAAQZWJgIAANgIQIABBCzYCDAwMC0EAIRAgAEEANgIcIAAgATYCFCAAQeGPgIAANgIQIABBCjYCDAwLC0EAIRAgAEEANgIcIAAgATYCFCAAQfuPgIAANgIQIABBCjYCDAwKC0EAIRAgAEEANgIcIAAgATYCFCAAQfGZgIAANgIQIABBAjYCDAwJC0EAIRAgAEEANgIcIAAgATYCFCAAQcSUgIAANgIQIABBAjYCDAwIC0EAIRAgAEEANgIcIAAgATYCFCAAQfKVgIAANgIQIABBAjYCDAwHCyAAQQI2AhwgACABNgIUIABBnJqAgAA2AhAgAEEWNgIMQQAhEAwGC0EBIRAMBQtB1AAhECABIgQgAkYNBCADQQhqIAAgBCACQdjCgIAAQQoQxYCAgAAgAygCDCEEIAMoAggOAwEEAgALEMqAgIAAAAsgAEEANgIcIABBtZqAgAA2AhAgAEEXNgIMIAAgBEEBajYCFEEAIRAMAgsgAEEANgIcIAAgBDYCFCAAQcqagIAANgIQIABBCTYCDEEAIRAMAQsCQCABIgQgAkcNAEEiIRAMAQsgAEGJgICAADYCCCAAIAQ2AgRBISEQCyADQRBqJICAgIAAIBALrwEBAn8gASgCACEGAkACQCACIANGDQAgBCAGaiEEIAYgA2ogAmshByACIAZBf3MgBWoiBmohBQNAAkAgAi0AACAELQAARg0AQQIhBAwDCwJAIAYNAEEAIQQgBSECDAMLIAZBf2ohBiAEQQFqIQQgAkEBaiICIANHDQALIAchBiADIQILIABBATYCACABIAY2AgAgACACNgIEDwsgAUEANgIAIAAgBDYCACAAIAI2AgQLCgAgABDHgICAAAvyNgELfyOAgICAAEEQayIBJICAgIAAAkBBACgCoNCAgAANAEEAEMuAgIAAQYDUhIAAayICQdkASQ0AQQAhAwJAQQAoAuDTgIAAIgQNAEEAQn83AuzTgIAAQQBCgICEgICAwAA3AuTTgIAAQQAgAUEIakFwcUHYqtWqBXMiBDYC4NOAgABBAEEANgL004CAAEEAQQA2AsTTgIAAC0EAIAI2AszTgIAAQQBBgNSEgAA2AsjTgIAAQQBBgNSEgAA2ApjQgIAAQQAgBDYCrNCAgABBAEF/NgKo0ICAAANAIANBxNCAgABqIANBuNCAgABqIgQ2AgAgBCADQbDQgIAAaiIFNgIAIANBvNCAgABqIAU2AgAgA0HM0ICAAGogA0HA0ICAAGoiBTYCACAFIAQ2AgAgA0HU0ICAAGogA0HI0ICAAGoiBDYCACAEIAU2AgAgA0HQ0ICAAGogBDYCACADQSBqIgNBgAJHDQALQYDUhIAAQXhBgNSEgABrQQ9xQQBBgNSEgABBCGpBD3EbIgNqIgRBBGogAkFIaiIFIANrIgNBAXI2AgBBAEEAKALw04CAADYCpNCAgABBACADNgKU0ICAAEEAIAQ2AqDQgIAAQYDUhIAAIAVqQTg2AgQLAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABB7AFLDQACQEEAKAKI0ICAACIGQRAgAEETakFwcSAAQQtJGyICQQN2IgR2IgNBA3FFDQACQAJAIANBAXEgBHJBAXMiBUEDdCIEQbDQgIAAaiIDIARBuNCAgABqKAIAIgQoAggiAkcNAEEAIAZBfiAFd3E2AojQgIAADAELIAMgAjYCCCACIAM2AgwLIARBCGohAyAEIAVBA3QiBUEDcjYCBCAEIAVqIgQgBCgCBEEBcjYCBAwMCyACQQAoApDQgIAAIgdNDQECQCADRQ0AAkACQCADIAR0QQIgBHQiA0EAIANrcnEiA0EAIANrcUF/aiIDIANBDHZBEHEiA3YiBEEFdkEIcSIFIANyIAQgBXYiA0ECdkEEcSIEciADIAR2IgNBAXZBAnEiBHIgAyAEdiIDQQF2QQFxIgRyIAMgBHZqIgRBA3QiA0Gw0ICAAGoiBSADQbjQgIAAaigCACIDKAIIIgBHDQBBACAGQX4gBHdxIgY2AojQgIAADAELIAUgADYCCCAAIAU2AgwLIAMgAkEDcjYCBCADIARBA3QiBGogBCACayIFNgIAIAMgAmoiACAFQQFyNgIEAkAgB0UNACAHQXhxQbDQgIAAaiECQQAoApzQgIAAIQQCQAJAIAZBASAHQQN2dCIIcQ0AQQAgBiAIcjYCiNCAgAAgAiEIDAELIAIoAgghCAsgCCAENgIMIAIgBDYCCCAEIAI2AgwgBCAINgIICyADQQhqIQNBACAANgKc0ICAAEEAIAU2ApDQgIAADAwLQQAoAozQgIAAIglFDQEgCUEAIAlrcUF/aiIDIANBDHZBEHEiA3YiBEEFdkEIcSIFIANyIAQgBXYiA0ECdkEEcSIEciADIAR2IgNBAXZBAnEiBHIgAyAEdiIDQQF2QQFxIgRyIAMgBHZqQQJ0QbjSgIAAaigCACIAKAIEQXhxIAJrIQQgACEFAkADQAJAIAUoAhAiAw0AIAVBFGooAgAiA0UNAgsgAygCBEF4cSACayIFIAQgBSAESSIFGyEEIAMgACAFGyEAIAMhBQwACwsgACgCGCEKAkAgACgCDCIIIABGDQAgACgCCCIDQQAoApjQgIAASRogCCADNgIIIAMgCDYCDAwLCwJAIABBFGoiBSgCACIDDQAgACgCECIDRQ0DIABBEGohBQsDQCAFIQsgAyIIQRRqIgUoAgAiAw0AIAhBEGohBSAIKAIQIgMNAAsgC0EANgIADAoLQX8hAiAAQb9/Sw0AIABBE2oiA0FwcSECQQAoAozQgIAAIgdFDQBBACELAkAgAkGAAkkNAEEfIQsgAkH///8HSw0AIANBCHYiAyADQYD+P2pBEHZBCHEiA3QiBCAEQYDgH2pBEHZBBHEiBHQiBSAFQYCAD2pBEHZBAnEiBXRBD3YgAyAEciAFcmsiA0EBdCACIANBFWp2QQFxckEcaiELC0EAIAJrIQQCQAJAAkACQCALQQJ0QbjSgIAAaigCACIFDQBBACEDQQAhCAwBC0EAIQMgAkEAQRkgC0EBdmsgC0EfRht0IQBBACEIA0ACQCAFKAIEQXhxIAJrIgYgBE8NACAGIQQgBSEIIAYNAEEAIQQgBSEIIAUhAwwDCyADIAVBFGooAgAiBiAGIAUgAEEddkEEcWpBEGooAgAiBUYbIAMgBhshAyAAQQF0IQAgBQ0ACwsCQCADIAhyDQBBACEIQQIgC3QiA0EAIANrciAHcSIDRQ0DIANBACADa3FBf2oiAyADQQx2QRBxIgN2IgVBBXZBCHEiACADciAFIAB2IgNBAnZBBHEiBXIgAyAFdiIDQQF2QQJxIgVyIAMgBXYiA0EBdkEBcSIFciADIAV2akECdEG40oCAAGooAgAhAwsgA0UNAQsDQCADKAIEQXhxIAJrIgYgBEkhAAJAIAMoAhAiBQ0AIANBFGooAgAhBQsgBiAEIAAbIQQgAyAIIAAbIQggBSEDIAUNAAsLIAhFDQAgBEEAKAKQ0ICAACACa08NACAIKAIYIQsCQCAIKAIMIgAgCEYNACAIKAIIIgNBACgCmNCAgABJGiAAIAM2AgggAyAANgIMDAkLAkAgCEEUaiIFKAIAIgMNACAIKAIQIgNFDQMgCEEQaiEFCwNAIAUhBiADIgBBFGoiBSgCACIDDQAgAEEQaiEFIAAoAhAiAw0ACyAGQQA2AgAMCAsCQEEAKAKQ0ICAACIDIAJJDQBBACgCnNCAgAAhBAJAAkAgAyACayIFQRBJDQAgBCACaiIAIAVBAXI2AgRBACAFNgKQ0ICAAEEAIAA2ApzQgIAAIAQgA2ogBTYCACAEIAJBA3I2AgQMAQsgBCADQQNyNgIEIAQgA2oiAyADKAIEQQFyNgIEQQBBADYCnNCAgABBAEEANgKQ0ICAAAsgBEEIaiEDDAoLAkBBACgClNCAgAAiACACTQ0AQQAoAqDQgIAAIgMgAmoiBCAAIAJrIgVBAXI2AgRBACAFNgKU0ICAAEEAIAQ2AqDQgIAAIAMgAkEDcjYCBCADQQhqIQMMCgsCQAJAQQAoAuDTgIAARQ0AQQAoAujTgIAAIQQMAQtBAEJ/NwLs04CAAEEAQoCAhICAgMAANwLk04CAAEEAIAFBDGpBcHFB2KrVqgVzNgLg04CAAEEAQQA2AvTTgIAAQQBBADYCxNOAgABBgIAEIQQLQQAhAwJAIAQgAkHHAGoiB2oiBkEAIARrIgtxIgggAksNAEEAQTA2AvjTgIAADAoLAkBBACgCwNOAgAAiA0UNAAJAQQAoArjTgIAAIgQgCGoiBSAETQ0AIAUgA00NAQtBACEDQQBBMDYC+NOAgAAMCgtBAC0AxNOAgABBBHENBAJAAkACQEEAKAKg0ICAACIERQ0AQcjTgIAAIQMDQAJAIAMoAgAiBSAESw0AIAUgAygCBGogBEsNAwsgAygCCCIDDQALC0EAEMuAgIAAIgBBf0YNBSAIIQYCQEEAKALk04CAACIDQX9qIgQgAHFFDQAgCCAAayAEIABqQQAgA2txaiEGCyAGIAJNDQUgBkH+////B0sNBQJAQQAoAsDTgIAAIgNFDQBBACgCuNOAgAAiBCAGaiIFIARNDQYgBSADSw0GCyAGEMuAgIAAIgMgAEcNAQwHCyAGIABrIAtxIgZB/v///wdLDQQgBhDLgICAACIAIAMoAgAgAygCBGpGDQMgACEDCwJAIANBf0YNACACQcgAaiAGTQ0AAkAgByAGa0EAKALo04CAACIEakEAIARrcSIEQf7///8HTQ0AIAMhAAwHCwJAIAQQy4CAgABBf0YNACAEIAZqIQYgAyEADAcLQQAgBmsQy4CAgAAaDAQLIAMhACADQX9HDQUMAwtBACEIDAcLQQAhAAwFCyAAQX9HDQILQQBBACgCxNOAgABBBHI2AsTTgIAACyAIQf7///8HSw0BIAgQy4CAgAAhAEEAEMuAgIAAIQMgAEF/Rg0BIANBf0YNASAAIANPDQEgAyAAayIGIAJBOGpNDQELQQBBACgCuNOAgAAgBmoiAzYCuNOAgAACQCADQQAoArzTgIAATQ0AQQAgAzYCvNOAgAALAkACQAJAAkBBACgCoNCAgAAiBEUNAEHI04CAACEDA0AgACADKAIAIgUgAygCBCIIakYNAiADKAIIIgMNAAwDCwsCQAJAQQAoApjQgIAAIgNFDQAgACADTw0BC0EAIAA2ApjQgIAAC0EAIQNBACAGNgLM04CAAEEAIAA2AsjTgIAAQQBBfzYCqNCAgABBAEEAKALg04CAADYCrNCAgABBAEEANgLU04CAAANAIANBxNCAgABqIANBuNCAgABqIgQ2AgAgBCADQbDQgIAAaiIFNgIAIANBvNCAgABqIAU2AgAgA0HM0ICAAGogA0HA0ICAAGoiBTYCACAFIAQ2AgAgA0HU0ICAAGogA0HI0ICAAGoiBDYCACAEIAU2AgAgA0HQ0ICAAGogBDYCACADQSBqIgNBgAJHDQALIABBeCAAa0EPcUEAIABBCGpBD3EbIgNqIgQgBkFIaiIFIANrIgNBAXI2AgRBAEEAKALw04CAADYCpNCAgABBACADNgKU0ICAAEEAIAQ2AqDQgIAAIAAgBWpBODYCBAwCCyADLQAMQQhxDQAgBCAFSQ0AIAQgAE8NACAEQXggBGtBD3FBACAEQQhqQQ9xGyIFaiIAQQAoApTQgIAAIAZqIgsgBWsiBUEBcjYCBCADIAggBmo2AgRBAEEAKALw04CAADYCpNCAgABBACAFNgKU0ICAAEEAIAA2AqDQgIAAIAQgC2pBODYCBAwBCwJAIABBACgCmNCAgAAiCE8NAEEAIAA2ApjQgIAAIAAhCAsgACAGaiEFQcjTgIAAIQMCQAJAAkACQAJAAkACQANAIAMoAgAgBUYNASADKAIIIgMNAAwCCwsgAy0ADEEIcUUNAQtByNOAgAAhAwNAAkAgAygCACIFIARLDQAgBSADKAIEaiIFIARLDQMLIAMoAgghAwwACwsgAyAANgIAIAMgAygCBCAGajYCBCAAQXggAGtBD3FBACAAQQhqQQ9xG2oiCyACQQNyNgIEIAVBeCAFa0EPcUEAIAVBCGpBD3EbaiIGIAsgAmoiAmshAwJAIAYgBEcNAEEAIAI2AqDQgIAAQQBBACgClNCAgAAgA2oiAzYClNCAgAAgAiADQQFyNgIEDAMLAkAgBkEAKAKc0ICAAEcNAEEAIAI2ApzQgIAAQQBBACgCkNCAgAAgA2oiAzYCkNCAgAAgAiADQQFyNgIEIAIgA2ogAzYCAAwDCwJAIAYoAgQiBEEDcUEBRw0AIARBeHEhBwJAAkAgBEH/AUsNACAGKAIIIgUgBEEDdiIIQQN0QbDQgIAAaiIARhoCQCAGKAIMIgQgBUcNAEEAQQAoAojQgIAAQX4gCHdxNgKI0ICAAAwCCyAEIABGGiAEIAU2AgggBSAENgIMDAELIAYoAhghCQJAAkAgBigCDCIAIAZGDQAgBigCCCIEIAhJGiAAIAQ2AgggBCAANgIMDAELAkAgBkEUaiIEKAIAIgUNACAGQRBqIgQoAgAiBQ0AQQAhAAwBCwNAIAQhCCAFIgBBFGoiBCgCACIFDQAgAEEQaiEEIAAoAhAiBQ0ACyAIQQA2AgALIAlFDQACQAJAIAYgBigCHCIFQQJ0QbjSgIAAaiIEKAIARw0AIAQgADYCACAADQFBAEEAKAKM0ICAAEF+IAV3cTYCjNCAgAAMAgsgCUEQQRQgCSgCECAGRhtqIAA2AgAgAEUNAQsgACAJNgIYAkAgBigCECIERQ0AIAAgBDYCECAEIAA2AhgLIAYoAhQiBEUNACAAQRRqIAQ2AgAgBCAANgIYCyAHIANqIQMgBiAHaiIGKAIEIQQLIAYgBEF+cTYCBCACIANqIAM2AgAgAiADQQFyNgIEAkAgA0H/AUsNACADQXhxQbDQgIAAaiEEAkACQEEAKAKI0ICAACIFQQEgA0EDdnQiA3ENAEEAIAUgA3I2AojQgIAAIAQhAwwBCyAEKAIIIQMLIAMgAjYCDCAEIAI2AgggAiAENgIMIAIgAzYCCAwDC0EfIQQCQCADQf///wdLDQAgA0EIdiIEIARBgP4/akEQdkEIcSIEdCIFIAVBgOAfakEQdkEEcSIFdCIAIABBgIAPakEQdkECcSIAdEEPdiAEIAVyIAByayIEQQF0IAMgBEEVanZBAXFyQRxqIQQLIAIgBDYCHCACQgA3AhAgBEECdEG40oCAAGohBQJAQQAoAozQgIAAIgBBASAEdCIIcQ0AIAUgAjYCAEEAIAAgCHI2AozQgIAAIAIgBTYCGCACIAI2AgggAiACNgIMDAMLIANBAEEZIARBAXZrIARBH0YbdCEEIAUoAgAhAANAIAAiBSgCBEF4cSADRg0CIARBHXYhACAEQQF0IQQgBSAAQQRxakEQaiIIKAIAIgANAAsgCCACNgIAIAIgBTYCGCACIAI2AgwgAiACNgIIDAILIABBeCAAa0EPcUEAIABBCGpBD3EbIgNqIgsgBkFIaiIIIANrIgNBAXI2AgQgACAIakE4NgIEIAQgBUE3IAVrQQ9xQQAgBUFJakEPcRtqQUFqIgggCCAEQRBqSRsiCEEjNgIEQQBBACgC8NOAgAA2AqTQgIAAQQAgAzYClNCAgABBACALNgKg0ICAACAIQRBqQQApAtDTgIAANwIAIAhBACkCyNOAgAA3AghBACAIQQhqNgLQ04CAAEEAIAY2AszTgIAAQQAgADYCyNOAgABBAEEANgLU04CAACAIQSRqIQMDQCADQQc2AgAgA0EEaiIDIAVJDQALIAggBEYNAyAIIAgoAgRBfnE2AgQgCCAIIARrIgA2AgAgBCAAQQFyNgIEAkAgAEH/AUsNACAAQXhxQbDQgIAAaiEDAkACQEEAKAKI0ICAACIFQQEgAEEDdnQiAHENAEEAIAUgAHI2AojQgIAAIAMhBQwBCyADKAIIIQULIAUgBDYCDCADIAQ2AgggBCADNgIMIAQgBTYCCAwEC0EfIQMCQCAAQf///wdLDQAgAEEIdiIDIANBgP4/akEQdkEIcSIDdCIFIAVBgOAfakEQdkEEcSIFdCIIIAhBgIAPakEQdkECcSIIdEEPdiADIAVyIAhyayIDQQF0IAAgA0EVanZBAXFyQRxqIQMLIAQgAzYCHCAEQgA3AhAgA0ECdEG40oCAAGohBQJAQQAoAozQgIAAIghBASADdCIGcQ0AIAUgBDYCAEEAIAggBnI2AozQgIAAIAQgBTYCGCAEIAQ2AgggBCAENgIMDAQLIABBAEEZIANBAXZrIANBH0YbdCEDIAUoAgAhCANAIAgiBSgCBEF4cSAARg0DIANBHXYhCCADQQF0IQMgBSAIQQRxakEQaiIGKAIAIggNAAsgBiAENgIAIAQgBTYCGCAEIAQ2AgwgBCAENgIIDAMLIAUoAggiAyACNgIMIAUgAjYCCCACQQA2AhggAiAFNgIMIAIgAzYCCAsgC0EIaiEDDAULIAUoAggiAyAENgIMIAUgBDYCCCAEQQA2AhggBCAFNgIMIAQgAzYCCAtBACgClNCAgAAiAyACTQ0AQQAoAqDQgIAAIgQgAmoiBSADIAJrIgNBAXI2AgRBACADNgKU0ICAAEEAIAU2AqDQgIAAIAQgAkEDcjYCBCAEQQhqIQMMAwtBACEDQQBBMDYC+NOAgAAMAgsCQCALRQ0AAkACQCAIIAgoAhwiBUECdEG40oCAAGoiAygCAEcNACADIAA2AgAgAA0BQQAgB0F+IAV3cSIHNgKM0ICAAAwCCyALQRBBFCALKAIQIAhGG2ogADYCACAARQ0BCyAAIAs2AhgCQCAIKAIQIgNFDQAgACADNgIQIAMgADYCGAsgCEEUaigCACIDRQ0AIABBFGogAzYCACADIAA2AhgLAkACQCAEQQ9LDQAgCCAEIAJqIgNBA3I2AgQgCCADaiIDIAMoAgRBAXI2AgQMAQsgCCACaiIAIARBAXI2AgQgCCACQQNyNgIEIAAgBGogBDYCAAJAIARB/wFLDQAgBEF4cUGw0ICAAGohAwJAAkBBACgCiNCAgAAiBUEBIARBA3Z0IgRxDQBBACAFIARyNgKI0ICAACADIQQMAQsgAygCCCEECyAEIAA2AgwgAyAANgIIIAAgAzYCDCAAIAQ2AggMAQtBHyEDAkAgBEH///8HSw0AIARBCHYiAyADQYD+P2pBEHZBCHEiA3QiBSAFQYDgH2pBEHZBBHEiBXQiAiACQYCAD2pBEHZBAnEiAnRBD3YgAyAFciACcmsiA0EBdCAEIANBFWp2QQFxckEcaiEDCyAAIAM2AhwgAEIANwIQIANBAnRBuNKAgABqIQUCQCAHQQEgA3QiAnENACAFIAA2AgBBACAHIAJyNgKM0ICAACAAIAU2AhggACAANgIIIAAgADYCDAwBCyAEQQBBGSADQQF2ayADQR9GG3QhAyAFKAIAIQICQANAIAIiBSgCBEF4cSAERg0BIANBHXYhAiADQQF0IQMgBSACQQRxakEQaiIGKAIAIgINAAsgBiAANgIAIAAgBTYCGCAAIAA2AgwgACAANgIIDAELIAUoAggiAyAANgIMIAUgADYCCCAAQQA2AhggACAFNgIMIAAgAzYCCAsgCEEIaiEDDAELAkAgCkUNAAJAAkAgACAAKAIcIgVBAnRBuNKAgABqIgMoAgBHDQAgAyAINgIAIAgNAUEAIAlBfiAFd3E2AozQgIAADAILIApBEEEUIAooAhAgAEYbaiAINgIAIAhFDQELIAggCjYCGAJAIAAoAhAiA0UNACAIIAM2AhAgAyAINgIYCyAAQRRqKAIAIgNFDQAgCEEUaiADNgIAIAMgCDYCGAsCQAJAIARBD0sNACAAIAQgAmoiA0EDcjYCBCAAIANqIgMgAygCBEEBcjYCBAwBCyAAIAJqIgUgBEEBcjYCBCAAIAJBA3I2AgQgBSAEaiAENgIAAkAgB0UNACAHQXhxQbDQgIAAaiECQQAoApzQgIAAIQMCQAJAQQEgB0EDdnQiCCAGcQ0AQQAgCCAGcjYCiNCAgAAgAiEIDAELIAIoAgghCAsgCCADNgIMIAIgAzYCCCADIAI2AgwgAyAINgIIC0EAIAU2ApzQgIAAQQAgBDYCkNCAgAALIABBCGohAwsgAUEQaiSAgICAACADCwoAIAAQyYCAgAAL4g0BB38CQCAARQ0AIABBeGoiASAAQXxqKAIAIgJBeHEiAGohAwJAIAJBAXENACACQQNxRQ0BIAEgASgCACICayIBQQAoApjQgIAAIgRJDQEgAiAAaiEAAkAgAUEAKAKc0ICAAEYNAAJAIAJB/wFLDQAgASgCCCIEIAJBA3YiBUEDdEGw0ICAAGoiBkYaAkAgASgCDCICIARHDQBBAEEAKAKI0ICAAEF+IAV3cTYCiNCAgAAMAwsgAiAGRhogAiAENgIIIAQgAjYCDAwCCyABKAIYIQcCQAJAIAEoAgwiBiABRg0AIAEoAggiAiAESRogBiACNgIIIAIgBjYCDAwBCwJAIAFBFGoiAigCACIEDQAgAUEQaiICKAIAIgQNAEEAIQYMAQsDQCACIQUgBCIGQRRqIgIoAgAiBA0AIAZBEGohAiAGKAIQIgQNAAsgBUEANgIACyAHRQ0BAkACQCABIAEoAhwiBEECdEG40oCAAGoiAigCAEcNACACIAY2AgAgBg0BQQBBACgCjNCAgABBfiAEd3E2AozQgIAADAMLIAdBEEEUIAcoAhAgAUYbaiAGNgIAIAZFDQILIAYgBzYCGAJAIAEoAhAiAkUNACAGIAI2AhAgAiAGNgIYCyABKAIUIgJFDQEgBkEUaiACNgIAIAIgBjYCGAwBCyADKAIEIgJBA3FBA0cNACADIAJBfnE2AgRBACAANgKQ0ICAACABIABqIAA2AgAgASAAQQFyNgIEDwsgASADTw0AIAMoAgQiAkEBcUUNAAJAAkAgAkECcQ0AAkAgA0EAKAKg0ICAAEcNAEEAIAE2AqDQgIAAQQBBACgClNCAgAAgAGoiADYClNCAgAAgASAAQQFyNgIEIAFBACgCnNCAgABHDQNBAEEANgKQ0ICAAEEAQQA2ApzQgIAADwsCQCADQQAoApzQgIAARw0AQQAgATYCnNCAgABBAEEAKAKQ0ICAACAAaiIANgKQ0ICAACABIABBAXI2AgQgASAAaiAANgIADwsgAkF4cSAAaiEAAkACQCACQf8BSw0AIAMoAggiBCACQQN2IgVBA3RBsNCAgABqIgZGGgJAIAMoAgwiAiAERw0AQQBBACgCiNCAgABBfiAFd3E2AojQgIAADAILIAIgBkYaIAIgBDYCCCAEIAI2AgwMAQsgAygCGCEHAkACQCADKAIMIgYgA0YNACADKAIIIgJBACgCmNCAgABJGiAGIAI2AgggAiAGNgIMDAELAkAgA0EUaiICKAIAIgQNACADQRBqIgIoAgAiBA0AQQAhBgwBCwNAIAIhBSAEIgZBFGoiAigCACIEDQAgBkEQaiECIAYoAhAiBA0ACyAFQQA2AgALIAdFDQACQAJAIAMgAygCHCIEQQJ0QbjSgIAAaiICKAIARw0AIAIgBjYCACAGDQFBAEEAKAKM0ICAAEF+IAR3cTYCjNCAgAAMAgsgB0EQQRQgBygCECADRhtqIAY2AgAgBkUNAQsgBiAHNgIYAkAgAygCECICRQ0AIAYgAjYCECACIAY2AhgLIAMoAhQiAkUNACAGQRRqIAI2AgAgAiAGNgIYCyABIABqIAA2AgAgASAAQQFyNgIEIAFBACgCnNCAgABHDQFBACAANgKQ0ICAAA8LIAMgAkF+cTYCBCABIABqIAA2AgAgASAAQQFyNgIECwJAIABB/wFLDQAgAEF4cUGw0ICAAGohAgJAAkBBACgCiNCAgAAiBEEBIABBA3Z0IgBxDQBBACAEIAByNgKI0ICAACACIQAMAQsgAigCCCEACyAAIAE2AgwgAiABNgIIIAEgAjYCDCABIAA2AggPC0EfIQICQCAAQf///wdLDQAgAEEIdiICIAJBgP4/akEQdkEIcSICdCIEIARBgOAfakEQdkEEcSIEdCIGIAZBgIAPakEQdkECcSIGdEEPdiACIARyIAZyayICQQF0IAAgAkEVanZBAXFyQRxqIQILIAEgAjYCHCABQgA3AhAgAkECdEG40oCAAGohBAJAAkBBACgCjNCAgAAiBkEBIAJ0IgNxDQAgBCABNgIAQQAgBiADcjYCjNCAgAAgASAENgIYIAEgATYCCCABIAE2AgwMAQsgAEEAQRkgAkEBdmsgAkEfRht0IQIgBCgCACEGAkADQCAGIgQoAgRBeHEgAEYNASACQR12IQYgAkEBdCECIAQgBkEEcWpBEGoiAygCACIGDQALIAMgATYCACABIAQ2AhggASABNgIMIAEgATYCCAwBCyAEKAIIIgAgATYCDCAEIAE2AgggAUEANgIYIAEgBDYCDCABIAA2AggLQQBBACgCqNCAgABBf2oiAUF/IAEbNgKo0ICAAAsLBAAAAAtOAAJAIAANAD8AQRB0DwsCQCAAQf//A3ENACAAQX9MDQACQCAAQRB2QAAiAEF/Rw0AQQBBMDYC+NOAgABBfw8LIABBEHQPCxDKgICAAAAL8gICA38BfgJAIAJFDQAgACABOgAAIAIgAGoiA0F/aiABOgAAIAJBA0kNACAAIAE6AAIgACABOgABIANBfWogAToAACADQX5qIAE6AAAgAkEHSQ0AIAAgAToAAyADQXxqIAE6AAAgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIFayICQSBJDQAgAa1CgYCAgBB+IQYgAyAFaiEBA0AgASAGNwMYIAEgBjcDECABIAY3AwggASAGNwMAIAFBIGohASACQWBqIgJBH0sNAAsLIAALC45IAQBBgAgLhkgBAAAAAgAAAAMAAAAAAAAAAAAAAAQAAAAFAAAAAAAAAAAAAAAGAAAABwAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEludmFsaWQgY2hhciBpbiB1cmwgcXVlcnkAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9ib2R5AENvbnRlbnQtTGVuZ3RoIG92ZXJmbG93AENodW5rIHNpemUgb3ZlcmZsb3cAUmVzcG9uc2Ugb3ZlcmZsb3cASW52YWxpZCBtZXRob2QgZm9yIEhUVFAveC54IHJlcXVlc3QASW52YWxpZCBtZXRob2QgZm9yIFJUU1AveC54IHJlcXVlc3QARXhwZWN0ZWQgU09VUkNFIG1ldGhvZCBmb3IgSUNFL3gueCByZXF1ZXN0AEludmFsaWQgY2hhciBpbiB1cmwgZnJhZ21lbnQgc3RhcnQARXhwZWN0ZWQgZG90AFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fc3RhdHVzAEludmFsaWQgcmVzcG9uc2Ugc3RhdHVzAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMAVXNlciBjYWxsYmFjayBlcnJvcgBgb25fcmVzZXRgIGNhbGxiYWNrIGVycm9yAGBvbl9jaHVua19oZWFkZXJgIGNhbGxiYWNrIGVycm9yAGBvbl9tZXNzYWdlX2JlZ2luYCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfZXh0ZW5zaW9uX3ZhbHVlYCBjYWxsYmFjayBlcnJvcgBgb25fc3RhdHVzX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fdmVyc2lvbl9jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX3VybF9jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX2NodW5rX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25faGVhZGVyX3ZhbHVlX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fbWVzc2FnZV9jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX21ldGhvZF9jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX2hlYWRlcl9maWVsZF9jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX2NodW5rX2V4dGVuc2lvbl9uYW1lYCBjYWxsYmFjayBlcnJvcgBVbmV4cGVjdGVkIGNoYXIgaW4gdXJsIHNlcnZlcgBJbnZhbGlkIGhlYWRlciB2YWx1ZSBjaGFyAEludmFsaWQgaGVhZGVyIGZpZWxkIGNoYXIAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl92ZXJzaW9uAEludmFsaWQgbWlub3IgdmVyc2lvbgBJbnZhbGlkIG1ham9yIHZlcnNpb24ARXhwZWN0ZWQgc3BhY2UgYWZ0ZXIgdmVyc2lvbgBFeHBlY3RlZCBDUkxGIGFmdGVyIHZlcnNpb24ASW52YWxpZCBIVFRQIHZlcnNpb24ASW52YWxpZCBoZWFkZXIgdG9rZW4AU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl91cmwASW52YWxpZCBjaGFyYWN0ZXJzIGluIHVybABVbmV4cGVjdGVkIHN0YXJ0IGNoYXIgaW4gdXJsAERvdWJsZSBAIGluIHVybABFbXB0eSBDb250ZW50LUxlbmd0aABJbnZhbGlkIGNoYXJhY3RlciBpbiBDb250ZW50LUxlbmd0aABEdXBsaWNhdGUgQ29udGVudC1MZW5ndGgASW52YWxpZCBjaGFyIGluIHVybCBwYXRoAENvbnRlbnQtTGVuZ3RoIGNhbid0IGJlIHByZXNlbnQgd2l0aCBUcmFuc2Zlci1FbmNvZGluZwBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBzaXplAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25faGVhZGVyX3ZhbHVlAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fY2h1bmtfZXh0ZW5zaW9uX3ZhbHVlAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMgdmFsdWUATWlzc2luZyBleHBlY3RlZCBMRiBhZnRlciBoZWFkZXIgdmFsdWUASW52YWxpZCBgVHJhbnNmZXItRW5jb2RpbmdgIGhlYWRlciB2YWx1ZQBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBleHRlbnNpb25zIHF1b3RlIHZhbHVlAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMgcXVvdGVkIHZhbHVlAFBhdXNlZCBieSBvbl9oZWFkZXJzX2NvbXBsZXRlAEludmFsaWQgRU9GIHN0YXRlAG9uX3Jlc2V0IHBhdXNlAG9uX2NodW5rX2hlYWRlciBwYXVzZQBvbl9tZXNzYWdlX2JlZ2luIHBhdXNlAG9uX2NodW5rX2V4dGVuc2lvbl92YWx1ZSBwYXVzZQBvbl9zdGF0dXNfY29tcGxldGUgcGF1c2UAb25fdmVyc2lvbl9jb21wbGV0ZSBwYXVzZQBvbl91cmxfY29tcGxldGUgcGF1c2UAb25fY2h1bmtfY29tcGxldGUgcGF1c2UAb25faGVhZGVyX3ZhbHVlX2NvbXBsZXRlIHBhdXNlAG9uX21lc3NhZ2VfY29tcGxldGUgcGF1c2UAb25fbWV0aG9kX2NvbXBsZXRlIHBhdXNlAG9uX2hlYWRlcl9maWVsZF9jb21wbGV0ZSBwYXVzZQBvbl9jaHVua19leHRlbnNpb25fbmFtZSBwYXVzZQBVbmV4cGVjdGVkIHNwYWNlIGFmdGVyIHN0YXJ0IGxpbmUAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9jaHVua19leHRlbnNpb25fbmFtZQBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBleHRlbnNpb25zIG5hbWUAUGF1c2Ugb24gQ09OTkVDVC9VcGdyYWRlAFBhdXNlIG9uIFBSSS9VcGdyYWRlAEV4cGVjdGVkIEhUVFAvMiBDb25uZWN0aW9uIFByZWZhY2UAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9tZXRob2QARXhwZWN0ZWQgc3BhY2UgYWZ0ZXIgbWV0aG9kAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25faGVhZGVyX2ZpZWxkAFBhdXNlZABJbnZhbGlkIHdvcmQgZW5jb3VudGVyZWQASW52YWxpZCBtZXRob2QgZW5jb3VudGVyZWQAVW5leHBlY3RlZCBjaGFyIGluIHVybCBzY2hlbWEAUmVxdWVzdCBoYXMgaW52YWxpZCBgVHJhbnNmZXItRW5jb2RpbmdgAFNXSVRDSF9QUk9YWQBVU0VfUFJPWFkATUtBQ1RJVklUWQBVTlBST0NFU1NBQkxFX0VOVElUWQBDT1BZAE1PVkVEX1BFUk1BTkVOVExZAFRPT19FQVJMWQBOT1RJRlkARkFJTEVEX0RFUEVOREVOQ1kAQkFEX0dBVEVXQVkAUExBWQBQVVQAQ0hFQ0tPVVQAR0FURVdBWV9USU1FT1VUAFJFUVVFU1RfVElNRU9VVABORVRXT1JLX0NPTk5FQ1RfVElNRU9VVABDT05ORUNUSU9OX1RJTUVPVVQATE9HSU5fVElNRU9VVABORVRXT1JLX1JFQURfVElNRU9VVABQT1NUAE1JU0RJUkVDVEVEX1JFUVVFU1QAQ0xJRU5UX0NMT1NFRF9SRVFVRVNUAENMSUVOVF9DTE9TRURfTE9BRF9CQUxBTkNFRF9SRVFVRVNUAEJBRF9SRVFVRVNUAEhUVFBfUkVRVUVTVF9TRU5UX1RPX0hUVFBTX1BPUlQAUkVQT1JUAElNX0FfVEVBUE9UAFJFU0VUX0NPTlRFTlQATk9fQ09OVEVOVABQQVJUSUFMX0NPTlRFTlQASFBFX0lOVkFMSURfQ09OU1RBTlQASFBFX0NCX1JFU0VUAEdFVABIUEVfU1RSSUNUAENPTkZMSUNUAFRFTVBPUkFSWV9SRURJUkVDVABQRVJNQU5FTlRfUkVESVJFQ1QAQ09OTkVDVABNVUxUSV9TVEFUVVMASFBFX0lOVkFMSURfU1RBVFVTAFRPT19NQU5ZX1JFUVVFU1RTAEVBUkxZX0hJTlRTAFVOQVZBSUxBQkxFX0ZPUl9MRUdBTF9SRUFTT05TAE9QVElPTlMAU1dJVENISU5HX1BST1RPQ09MUwBWQVJJQU5UX0FMU09fTkVHT1RJQVRFUwBNVUxUSVBMRV9DSE9JQ0VTAElOVEVSTkFMX1NFUlZFUl9FUlJPUgBXRUJfU0VSVkVSX1VOS05PV05fRVJST1IAUkFJTEdVTl9FUlJPUgBJREVOVElUWV9QUk9WSURFUl9BVVRIRU5USUNBVElPTl9FUlJPUgBTU0xfQ0VSVElGSUNBVEVfRVJST1IASU5WQUxJRF9YX0ZPUldBUkRFRF9GT1IAU0VUX1BBUkFNRVRFUgBHRVRfUEFSQU1FVEVSAEhQRV9VU0VSAFNFRV9PVEhFUgBIUEVfQ0JfQ0hVTktfSEVBREVSAE1LQ0FMRU5EQVIAU0VUVVAAV0VCX1NFUlZFUl9JU19ET1dOAFRFQVJET1dOAEhQRV9DTE9TRURfQ09OTkVDVElPTgBIRVVSSVNUSUNfRVhQSVJBVElPTgBESVNDT05ORUNURURfT1BFUkFUSU9OAE5PTl9BVVRIT1JJVEFUSVZFX0lORk9STUFUSU9OAEhQRV9JTlZBTElEX1ZFUlNJT04ASFBFX0NCX01FU1NBR0VfQkVHSU4AU0lURV9JU19GUk9aRU4ASFBFX0lOVkFMSURfSEVBREVSX1RPS0VOAElOVkFMSURfVE9LRU4ARk9SQklEREVOAEVOSEFOQ0VfWU9VUl9DQUxNAEhQRV9JTlZBTElEX1VSTABCTE9DS0VEX0JZX1BBUkVOVEFMX0NPTlRST0wATUtDT0wAQUNMAEhQRV9JTlRFUk5BTABSRVFVRVNUX0hFQURFUl9GSUVMRFNfVE9PX0xBUkdFX1VOT0ZGSUNJQUwASFBFX09LAFVOTElOSwBVTkxPQ0sAUFJJAFJFVFJZX1dJVEgASFBFX0lOVkFMSURfQ09OVEVOVF9MRU5HVEgASFBFX1VORVhQRUNURURfQ09OVEVOVF9MRU5HVEgARkxVU0gAUFJPUFBBVENIAE0tU0VBUkNIAFVSSV9UT09fTE9ORwBQUk9DRVNTSU5HAE1JU0NFTExBTkVPVVNfUEVSU0lTVEVOVF9XQVJOSU5HAE1JU0NFTExBTkVPVVNfV0FSTklORwBIUEVfSU5WQUxJRF9UUkFOU0ZFUl9FTkNPRElORwBFeHBlY3RlZCBDUkxGAEhQRV9JTlZBTElEX0NIVU5LX1NJWkUATU9WRQBDT05USU5VRQBIUEVfQ0JfU1RBVFVTX0NPTVBMRVRFAEhQRV9DQl9IRUFERVJTX0NPTVBMRVRFAEhQRV9DQl9WRVJTSU9OX0NPTVBMRVRFAEhQRV9DQl9VUkxfQ09NUExFVEUASFBFX0NCX0NIVU5LX0NPTVBMRVRFAEhQRV9DQl9IRUFERVJfVkFMVUVfQ09NUExFVEUASFBFX0NCX0NIVU5LX0VYVEVOU0lPTl9WQUxVRV9DT01QTEVURQBIUEVfQ0JfQ0hVTktfRVhURU5TSU9OX05BTUVfQ09NUExFVEUASFBFX0NCX01FU1NBR0VfQ09NUExFVEUASFBFX0NCX01FVEhPRF9DT01QTEVURQBIUEVfQ0JfSEVBREVSX0ZJRUxEX0NPTVBMRVRFAERFTEVURQBIUEVfSU5WQUxJRF9FT0ZfU1RBVEUASU5WQUxJRF9TU0xfQ0VSVElGSUNBVEUAUEFVU0UATk9fUkVTUE9OU0UAVU5TVVBQT1JURURfTUVESUFfVFlQRQBHT05FAE5PVF9BQ0NFUFRBQkxFAFNFUlZJQ0VfVU5BVkFJTEFCTEUAUkFOR0VfTk9UX1NBVElTRklBQkxFAE9SSUdJTl9JU19VTlJFQUNIQUJMRQBSRVNQT05TRV9JU19TVEFMRQBQVVJHRQBNRVJHRQBSRVFVRVNUX0hFQURFUl9GSUVMRFNfVE9PX0xBUkdFAFJFUVVFU1RfSEVBREVSX1RPT19MQVJHRQBQQVlMT0FEX1RPT19MQVJHRQBJTlNVRkZJQ0lFTlRfU1RPUkFHRQBIUEVfUEFVU0VEX1VQR1JBREUASFBFX1BBVVNFRF9IMl9VUEdSQURFAFNPVVJDRQBBTk5PVU5DRQBUUkFDRQBIUEVfVU5FWFBFQ1RFRF9TUEFDRQBERVNDUklCRQBVTlNVQlNDUklCRQBSRUNPUkQASFBFX0lOVkFMSURfTUVUSE9EAE5PVF9GT1VORABQUk9QRklORABVTkJJTkQAUkVCSU5EAFVOQVVUSE9SSVpFRABNRVRIT0RfTk9UX0FMTE9XRUQASFRUUF9WRVJTSU9OX05PVF9TVVBQT1JURUQAQUxSRUFEWV9SRVBPUlRFRABBQ0NFUFRFRABOT1RfSU1QTEVNRU5URUQATE9PUF9ERVRFQ1RFRABIUEVfQ1JfRVhQRUNURUQASFBFX0xGX0VYUEVDVEVEAENSRUFURUQASU1fVVNFRABIUEVfUEFVU0VEAFRJTUVPVVRfT0NDVVJFRABQQVlNRU5UX1JFUVVJUkVEAFBSRUNPTkRJVElPTl9SRVFVSVJFRABQUk9YWV9BVVRIRU5USUNBVElPTl9SRVFVSVJFRABORVRXT1JLX0FVVEhFTlRJQ0FUSU9OX1JFUVVJUkVEAExFTkdUSF9SRVFVSVJFRABTU0xfQ0VSVElGSUNBVEVfUkVRVUlSRUQAVVBHUkFERV9SRVFVSVJFRABQQUdFX0VYUElSRUQAUFJFQ09ORElUSU9OX0ZBSUxFRABFWFBFQ1RBVElPTl9GQUlMRUQAUkVWQUxJREFUSU9OX0ZBSUxFRABTU0xfSEFORFNIQUtFX0ZBSUxFRABMT0NLRUQAVFJBTlNGT1JNQVRJT05fQVBQTElFRABOT1RfTU9ESUZJRUQATk9UX0VYVEVOREVEAEJBTkRXSURUSF9MSU1JVF9FWENFRURFRABTSVRFX0lTX09WRVJMT0FERUQASEVBRABFeHBlY3RlZCBIVFRQLwAAXhMAACYTAAAwEAAA8BcAAJ0TAAAVEgAAORcAAPASAAAKEAAAdRIAAK0SAACCEwAATxQAAH8QAACgFQAAIxQAAIkSAACLFAAATRUAANQRAADPFAAAEBgAAMkWAADcFgAAwREAAOAXAAC7FAAAdBQAAHwVAADlFAAACBcAAB8QAABlFQAAoxQAACgVAAACFQAAmRUAACwQAACLGQAATw8AANQOAABqEAAAzhAAAAIXAACJDgAAbhMAABwTAABmFAAAVhcAAMETAADNEwAAbBMAAGgXAABmFwAAXxcAACITAADODwAAaQ4AANgOAABjFgAAyxMAAKoOAAAoFwAAJhcAAMUTAABdFgAA6BEAAGcTAABlEwAA8hYAAHMTAAAdFwAA+RYAAPMRAADPDgAAzhUAAAwSAACzEQAApREAAGEQAAAyFwAAuxMAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQIBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAIDAgICAgIAAAICAAICAAICAgICAgICAgIABAAAAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgIAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAACAAICAgICAAACAgACAgACAgICAgICAgICAAMABAAAAAICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbG9zZWVlcC1hbGl2ZQAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQIBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBY2h1bmtlZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEAAQEBAQEAAAEBAAEBAAEBAQEBAQEBAQEAAAAAAAAAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlY3Rpb25lbnQtbGVuZ3Rob25yb3h5LWNvbm5lY3Rpb24AAAAAAAAAAAAAAAAAAAByYW5zZmVyLWVuY29kaW5ncGdyYWRlDQoNCg0KU00NCg0KVFRQL0NFL1RTUC8AAAAAAAAAAAAAAAABAgABAwAAAAAAAAAAAAAAAAAAAAAAAAQBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAAAAAAAAAAAAQIAAQMAAAAAAAAAAAAAAAAAAAAAAAAEAQEFAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAAAAAAAAAAAAAQAAAgAAAAAAAAAAAAAAAAAAAAAAAAMEAAAEBAQEBAQEBAQEBAUEBAQEBAQEBAQEBAQABAAGBwQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEAAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAABAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOT1VOQ0VFQ0tPVVRORUNURVRFQ1JJQkVMVVNIRVRFQURTRUFSQ0hSR0VDVElWSVRZTEVOREFSVkVPVElGWVBUSU9OU0NIU0VBWVNUQVRDSEdFT1JESVJFQ1RPUlRSQ0hQQVJBTUVURVJVUkNFQlNDUklCRUFSRE9XTkFDRUlORE5LQ0tVQlNDUklCRUhUVFAvQURUUC8=';\n\treturn llhttpWasm;\n}\n\nvar llhttp_simdWasm;\nvar hasRequiredLlhttp_simdWasm;\n\nfunction requireLlhttp_simdWasm () {\n\tif (hasRequiredLlhttp_simdWasm) return llhttp_simdWasm;\n\thasRequiredLlhttp_simdWasm = 1;\n\tllhttp_simdWasm = 'AGFzbQEAAAABMAhgAX8Bf2ADf39/AX9gBH9/f38Bf2AAAGADf39/AGABfwBgAn9/AGAGf39/f39/AALLAQgDZW52GHdhc21fb25faGVhZGVyc19jb21wbGV0ZQACA2VudhV3YXNtX29uX21lc3NhZ2VfYmVnaW4AAANlbnYLd2FzbV9vbl91cmwAAQNlbnYOd2FzbV9vbl9zdGF0dXMAAQNlbnYUd2FzbV9vbl9oZWFkZXJfZmllbGQAAQNlbnYUd2FzbV9vbl9oZWFkZXJfdmFsdWUAAQNlbnYMd2FzbV9vbl9ib2R5AAEDZW52GHdhc21fb25fbWVzc2FnZV9jb21wbGV0ZQAAA0ZFAwMEAAAFAAAAAAAABQEFAAUFBQAABgAAAAAGBgYGAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAAABAQcAAAUFAwABBAUBcAESEgUDAQACBggBfwFBgNQECwfRBSIGbWVtb3J5AgALX2luaXRpYWxpemUACRlfX2luZGlyZWN0X2Z1bmN0aW9uX3RhYmxlAQALbGxodHRwX2luaXQAChhsbGh0dHBfc2hvdWxkX2tlZXBfYWxpdmUAQQxsbGh0dHBfYWxsb2MADAZtYWxsb2MARgtsbGh0dHBfZnJlZQANBGZyZWUASA9sbGh0dHBfZ2V0X3R5cGUADhVsbGh0dHBfZ2V0X2h0dHBfbWFqb3IADxVsbGh0dHBfZ2V0X2h0dHBfbWlub3IAEBFsbGh0dHBfZ2V0X21ldGhvZAARFmxsaHR0cF9nZXRfc3RhdHVzX2NvZGUAEhJsbGh0dHBfZ2V0X3VwZ3JhZGUAEwxsbGh0dHBfcmVzZXQAFA5sbGh0dHBfZXhlY3V0ZQAVFGxsaHR0cF9zZXR0aW5nc19pbml0ABYNbGxodHRwX2ZpbmlzaAAXDGxsaHR0cF9wYXVzZQAYDWxsaHR0cF9yZXN1bWUAGRtsbGh0dHBfcmVzdW1lX2FmdGVyX3VwZ3JhZGUAGhBsbGh0dHBfZ2V0X2Vycm5vABsXbGxodHRwX2dldF9lcnJvcl9yZWFzb24AHBdsbGh0dHBfc2V0X2Vycm9yX3JlYXNvbgAdFGxsaHR0cF9nZXRfZXJyb3JfcG9zAB4RbGxodHRwX2Vycm5vX25hbWUAHxJsbGh0dHBfbWV0aG9kX25hbWUAIBJsbGh0dHBfc3RhdHVzX25hbWUAIRpsbGh0dHBfc2V0X2xlbmllbnRfaGVhZGVycwAiIWxsaHR0cF9zZXRfbGVuaWVudF9jaHVua2VkX2xlbmd0aAAjHWxsaHR0cF9zZXRfbGVuaWVudF9rZWVwX2FsaXZlACQkbGxodHRwX3NldF9sZW5pZW50X3RyYW5zZmVyX2VuY29kaW5nACUYbGxodHRwX21lc3NhZ2VfbmVlZHNfZW9mAD8JFwEAQQELEQECAwQFCwYHNTk3MS8tJyspCrLgAkUCAAsIABCIgICAAAsZACAAEMKAgIAAGiAAIAI2AjggACABOgAoCxwAIAAgAC8BMiAALQAuIAAQwYCAgAAQgICAgAALKgEBf0HAABDGgICAACIBEMKAgIAAGiABQYCIgIAANgI4IAEgADoAKCABCwoAIAAQyICAgAALBwAgAC0AKAsHACAALQAqCwcAIAAtACsLBwAgAC0AKQsHACAALwEyCwcAIAAtAC4LRQEEfyAAKAIYIQEgAC0ALSECIAAtACghAyAAKAI4IQQgABDCgICAABogACAENgI4IAAgAzoAKCAAIAI6AC0gACABNgIYCxEAIAAgASABIAJqEMOAgIAACxAAIABBAEHcABDMgICAABoLZwEBf0EAIQECQCAAKAIMDQACQAJAAkACQCAALQAvDgMBAAMCCyAAKAI4IgFFDQAgASgCLCIBRQ0AIAAgARGAgICAAAAiAQ0DC0EADwsQyoCAgAAACyAAQcOWgIAANgIQQQ4hAQsgAQseAAJAIAAoAgwNACAAQdGbgIAANgIQIABBFTYCDAsLFgACQCAAKAIMQRVHDQAgAEEANgIMCwsWAAJAIAAoAgxBFkcNACAAQQA2AgwLCwcAIAAoAgwLBwAgACgCEAsJACAAIAE2AhALBwAgACgCFAsiAAJAIABBJEkNABDKgICAAAALIABBAnRBoLOAgABqKAIACyIAAkAgAEEuSQ0AEMqAgIAAAAsgAEECdEGwtICAAGooAgAL7gsBAX9B66iAgAAhAQJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABBnH9qDvQDY2IAAWFhYWFhYQIDBAVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhBgcICQoLDA0OD2FhYWFhEGFhYWFhYWFhYWFhEWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYRITFBUWFxgZGhthYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2YTc4OTphYWFhYWFhYTthYWE8YWFhYT0+P2FhYWFhYWFhQGFhQWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYUJDREVGR0hJSktMTU5PUFFSU2FhYWFhYWFhVFVWV1hZWlthXF1hYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFeYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhX2BhC0Hhp4CAAA8LQaShgIAADwtBy6yAgAAPC0H+sYCAAA8LQcCkgIAADwtBq6SAgAAPC0GNqICAAA8LQeKmgIAADwtBgLCAgAAPC0G5r4CAAA8LQdekgIAADwtB75+AgAAPC0Hhn4CAAA8LQfqfgIAADwtB8qCAgAAPC0Gor4CAAA8LQa6ygIAADwtBiLCAgAAPC0Hsp4CAAA8LQYKigIAADwtBjp2AgAAPC0HQroCAAA8LQcqjgIAADwtBxbKAgAAPC0HfnICAAA8LQdKcgIAADwtBxKCAgAAPC0HXoICAAA8LQaKfgIAADwtB7a6AgAAPC0GrsICAAA8LQdSlgIAADwtBzK6AgAAPC0H6roCAAA8LQfyrgIAADwtB0rCAgAAPC0HxnYCAAA8LQbuggIAADwtB96uAgAAPC0GQsYCAAA8LQdexgIAADwtBoq2AgAAPC0HUp4CAAA8LQeCrgIAADwtBn6yAgAAPC0HrsYCAAA8LQdWfgIAADwtByrGAgAAPC0HepYCAAA8LQdSegIAADwtB9JyAgAAPC0GnsoCAAA8LQbGdgIAADwtBoJ2AgAAPC0G5sYCAAA8LQbywgIAADwtBkqGAgAAPC0GzpoCAAA8LQemsgIAADwtBrJ6AgAAPC0HUq4CAAA8LQfemgIAADwtBgKaAgAAPC0GwoYCAAA8LQf6egIAADwtBjaOAgAAPC0GJrYCAAA8LQfeigIAADwtBoLGAgAAPC0Gun4CAAA8LQcalgIAADwtB6J6AgAAPC0GTooCAAA8LQcKvgIAADwtBw52AgAAPC0GLrICAAA8LQeGdgIAADwtBja+AgAAPC0HqoYCAAA8LQbStgIAADwtB0q+AgAAPC0HfsoCAAA8LQdKygIAADwtB8LCAgAAPC0GpooCAAA8LQfmjgIAADwtBmZ6AgAAPC0G1rICAAA8LQZuwgIAADwtBkrKAgAAPC0G2q4CAAA8LQcKigIAADwtB+LKAgAAPC0GepYCAAA8LQdCigIAADwtBup6AgAAPC0GBnoCAAA8LEMqAgIAAAAtB1qGAgAAhAQsgAQsWACAAIAAtAC1B/gFxIAFBAEdyOgAtCxkAIAAgAC0ALUH9AXEgAUEAR0EBdHI6AC0LGQAgACAALQAtQfsBcSABQQBHQQJ0cjoALQsZACAAIAAtAC1B9wFxIAFBAEdBA3RyOgAtCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAgAiBEUNACAAIAQRgICAgAAAIQMLIAMLSQECf0EAIQMCQCAAKAI4IgRFDQAgBCgCBCIERQ0AIAAgASACIAFrIAQRgYCAgAAAIgNBf0cNACAAQcaRgIAANgIQQRghAwsgAwsuAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIwIgRFDQAgACAEEYCAgIAAACEDCyADC0kBAn9BACEDAkAgACgCOCIERQ0AIAQoAggiBEUNACAAIAEgAiABayAEEYGAgIAAACIDQX9HDQAgAEH2ioCAADYCEEEYIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCNCIERQ0AIAAgBBGAgICAAAAhAwsgAwtJAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIMIgRFDQAgACABIAIgAWsgBBGBgICAAAAiA0F/Rw0AIABB7ZqAgAA2AhBBGCEDCyADCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAjgiBEUNACAAIAQRgICAgAAAIQMLIAMLSQECf0EAIQMCQCAAKAI4IgRFDQAgBCgCECIERQ0AIAAgASACIAFrIAQRgYCAgAAAIgNBf0cNACAAQZWQgIAANgIQQRghAwsgAwsuAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAI8IgRFDQAgACAEEYCAgIAAACEDCyADC0kBAn9BACEDAkAgACgCOCIERQ0AIAQoAhQiBEUNACAAIAEgAiABayAEEYGAgIAAACIDQX9HDQAgAEGqm4CAADYCEEEYIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCQCIERQ0AIAAgBBGAgICAAAAhAwsgAwtJAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIYIgRFDQAgACABIAIgAWsgBBGBgICAAAAiA0F/Rw0AIABB7ZOAgAA2AhBBGCEDCyADCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAkQiBEUNACAAIAQRgICAgAAAIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCJCIERQ0AIAAgBBGAgICAAAAhAwsgAwsuAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIsIgRFDQAgACAEEYCAgIAAACEDCyADC0kBAn9BACEDAkAgACgCOCIERQ0AIAQoAigiBEUNACAAIAEgAiABayAEEYGAgIAAACIDQX9HDQAgAEH2iICAADYCEEEYIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCUCIERQ0AIAAgBBGAgICAAAAhAwsgAwtJAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAIcIgRFDQAgACABIAIgAWsgBBGBgICAAAAiA0F/Rw0AIABBwpmAgAA2AhBBGCEDCyADCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAkgiBEUNACAAIAQRgICAgAAAIQMLIAMLSQECf0EAIQMCQCAAKAI4IgRFDQAgBCgCICIERQ0AIAAgASACIAFrIAQRgYCAgAAAIgNBf0cNACAAQZSUgIAANgIQQRghAwsgAwsuAQJ/QQAhAwJAIAAoAjgiBEUNACAEKAJMIgRFDQAgACAEEYCAgIAAACEDCyADCy4BAn9BACEDAkAgACgCOCIERQ0AIAQoAlQiBEUNACAAIAQRgICAgAAAIQMLIAMLLgECf0EAIQMCQCAAKAI4IgRFDQAgBCgCWCIERQ0AIAAgBBGAgICAAAAhAwsgAwtFAQF/AkACQCAALwEwQRRxQRRHDQBBASEDIAAtAChBAUYNASAALwEyQeUARiEDDAELIAAtAClBBUYhAwsgACADOgAuQQAL/gEBA39BASEDAkAgAC8BMCIEQQhxDQAgACkDIEIAUiEDCwJAAkAgAC0ALkUNAEEBIQUgAC0AKUEFRg0BQQEhBSAEQcAAcUUgA3FBAUcNAQtBACEFIARBwABxDQBBAiEFIARB//8DcSIDQQhxDQACQCADQYAEcUUNAAJAIAAtAChBAUcNACAALQAtQQpxDQBBBQ8LQQQPCwJAIANBIHENAAJAIAAtAChBAUYNACAALwEyQf//A3EiAEGcf2pB5ABJDQAgAEHMAUYNACAAQbACRg0AQQQhBSAEQShxRQ0CIANBiARxQYAERg0CC0EADwtBAEEDIAApAyBQGyEFCyAFC2IBAn9BACEBAkAgAC0AKEEBRg0AIAAvATJB//8DcSICQZx/akHkAEkNACACQcwBRg0AIAJBsAJGDQAgAC8BMCIAQcAAcQ0AQQEhASAAQYgEcUGABEYNACAAQShxRSEBCyABC6cBAQN/AkACQAJAIAAtACpFDQAgAC0AK0UNAEEAIQMgAC8BMCIEQQJxRQ0BDAILQQAhAyAALwEwIgRBAXFFDQELQQEhAyAALQAoQQFGDQAgAC8BMkH//wNxIgVBnH9qQeQASQ0AIAVBzAFGDQAgBUGwAkYNACAEQcAAcQ0AQQAhAyAEQYgEcUGABEYNACAEQShxQQBHIQMLIABBADsBMCAAQQA6AC8gAwuZAQECfwJAAkACQCAALQAqRQ0AIAAtACtFDQBBACEBIAAvATAiAkECcUUNAQwCC0EAIQEgAC8BMCICQQFxRQ0BC0EBIQEgAC0AKEEBRg0AIAAvATJB//8DcSIAQZx/akHkAEkNACAAQcwBRg0AIABBsAJGDQAgAkHAAHENAEEAIQEgAkGIBHFBgARGDQAgAkEocUEARyEBCyABC0kBAXsgAEEQav0MAAAAAAAAAAAAAAAAAAAAACIB/QsDACAAIAH9CwMAIABBMGogAf0LAwAgAEEgaiAB/QsDACAAQd0BNgIcQQALewEBfwJAIAAoAgwiAw0AAkAgACgCBEUNACAAIAE2AgQLAkAgACABIAIQxICAgAAiAw0AIAAoAgwPCyAAIAM2AhxBACEDIAAoAgQiAUUNACAAIAEgAiAAKAIIEYGAgIAAACIBRQ0AIAAgAjYCFCAAIAE2AgwgASEDCyADC+TzAQMOfwN+BH8jgICAgABBEGsiAySAgICAACABIQQgASEFIAEhBiABIQcgASEIIAEhCSABIQogASELIAEhDCABIQ0gASEOIAEhDwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCAAKAIcIhBBf2oO3QHaAQHZAQIDBAUGBwgJCgsMDQ7YAQ8Q1wEREtYBExQVFhcYGRob4AHfARwdHtUBHyAhIiMkJdQBJicoKSorLNMB0gEtLtEB0AEvMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUbbAUdISUrPAc4BS80BTMwBTU5PUFFSU1RVVldYWVpbXF1eX2BhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gAGBAYIBgwGEAYUBhgGHAYgBiQGKAYsBjAGNAY4BjwGQAZEBkgGTAZQBlQGWAZcBmAGZAZoBmwGcAZ0BngGfAaABoQGiAaMBpAGlAaYBpwGoAakBqgGrAawBrQGuAa8BsAGxAbIBswG0AbUBtgG3AcsBygG4AckBuQHIAboBuwG8Ab0BvgG/AcABwQHCAcMBxAHFAcYBANwBC0EAIRAMxgELQQ4hEAzFAQtBDSEQDMQBC0EPIRAMwwELQRAhEAzCAQtBEyEQDMEBC0EUIRAMwAELQRUhEAy/AQtBFiEQDL4BC0EXIRAMvQELQRghEAy8AQtBGSEQDLsBC0EaIRAMugELQRshEAy5AQtBHCEQDLgBC0EIIRAMtwELQR0hEAy2AQtBICEQDLUBC0EfIRAMtAELQQchEAyzAQtBISEQDLIBC0EiIRAMsQELQR4hEAywAQtBIyEQDK8BC0ESIRAMrgELQREhEAytAQtBJCEQDKwBC0ElIRAMqwELQSYhEAyqAQtBJyEQDKkBC0HDASEQDKgBC0EpIRAMpwELQSshEAymAQtBLCEQDKUBC0EtIRAMpAELQS4hEAyjAQtBLyEQDKIBC0HEASEQDKEBC0EwIRAMoAELQTQhEAyfAQtBDCEQDJ4BC0ExIRAMnQELQTIhEAycAQtBMyEQDJsBC0E5IRAMmgELQTUhEAyZAQtBxQEhEAyYAQtBCyEQDJcBC0E6IRAMlgELQTYhEAyVAQtBCiEQDJQBC0E3IRAMkwELQTghEAySAQtBPCEQDJEBC0E7IRAMkAELQT0hEAyPAQtBCSEQDI4BC0EoIRAMjQELQT4hEAyMAQtBPyEQDIsBC0HAACEQDIoBC0HBACEQDIkBC0HCACEQDIgBC0HDACEQDIcBC0HEACEQDIYBC0HFACEQDIUBC0HGACEQDIQBC0EqIRAMgwELQccAIRAMggELQcgAIRAMgQELQckAIRAMgAELQcoAIRAMfwtBywAhEAx+C0HNACEQDH0LQcwAIRAMfAtBzgAhEAx7C0HPACEQDHoLQdAAIRAMeQtB0QAhEAx4C0HSACEQDHcLQdMAIRAMdgtB1AAhEAx1C0HWACEQDHQLQdUAIRAMcwtBBiEQDHILQdcAIRAMcQtBBSEQDHALQdgAIRAMbwtBBCEQDG4LQdkAIRAMbQtB2gAhEAxsC0HbACEQDGsLQdwAIRAMagtBAyEQDGkLQd0AIRAMaAtB3gAhEAxnC0HfACEQDGYLQeEAIRAMZQtB4AAhEAxkC0HiACEQDGMLQeMAIRAMYgtBAiEQDGELQeQAIRAMYAtB5QAhEAxfC0HmACEQDF4LQecAIRAMXQtB6AAhEAxcC0HpACEQDFsLQeoAIRAMWgtB6wAhEAxZC0HsACEQDFgLQe0AIRAMVwtB7gAhEAxWC0HvACEQDFULQfAAIRAMVAtB8QAhEAxTC0HyACEQDFILQfMAIRAMUQtB9AAhEAxQC0H1ACEQDE8LQfYAIRAMTgtB9wAhEAxNC0H4ACEQDEwLQfkAIRAMSwtB+gAhEAxKC0H7ACEQDEkLQfwAIRAMSAtB/QAhEAxHC0H+ACEQDEYLQf8AIRAMRQtBgAEhEAxEC0GBASEQDEMLQYIBIRAMQgtBgwEhEAxBC0GEASEQDEALQYUBIRAMPwtBhgEhEAw+C0GHASEQDD0LQYgBIRAMPAtBiQEhEAw7C0GKASEQDDoLQYsBIRAMOQtBjAEhEAw4C0GNASEQDDcLQY4BIRAMNgtBjwEhEAw1C0GQASEQDDQLQZEBIRAMMwtBkgEhEAwyC0GTASEQDDELQZQBIRAMMAtBlQEhEAwvC0GWASEQDC4LQZcBIRAMLQtBmAEhEAwsC0GZASEQDCsLQZoBIRAMKgtBmwEhEAwpC0GcASEQDCgLQZ0BIRAMJwtBngEhEAwmC0GfASEQDCULQaABIRAMJAtBoQEhEAwjC0GiASEQDCILQaMBIRAMIQtBpAEhEAwgC0GlASEQDB8LQaYBIRAMHgtBpwEhEAwdC0GoASEQDBwLQakBIRAMGwtBqgEhEAwaC0GrASEQDBkLQawBIRAMGAtBrQEhEAwXC0GuASEQDBYLQQEhEAwVC0GvASEQDBQLQbABIRAMEwtBsQEhEAwSC0GzASEQDBELQbIBIRAMEAtBtAEhEAwPC0G1ASEQDA4LQbYBIRAMDQtBtwEhEAwMC0G4ASEQDAsLQbkBIRAMCgtBugEhEAwJC0G7ASEQDAgLQcYBIRAMBwtBvAEhEAwGC0G9ASEQDAULQb4BIRAMBAtBvwEhEAwDC0HAASEQDAILQcIBIRAMAQtBwQEhEAsDQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIBAOxwEAAQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB4fICEjJSg/QEFERUZHSElKS0xNT1BRUlPeA1dZW1xdYGJlZmdoaWprbG1vcHFyc3R1dnd4eXp7fH1+gAGCAYUBhgGHAYkBiwGMAY0BjgGPAZABkQGUAZUBlgGXAZgBmQGaAZsBnAGdAZ4BnwGgAaEBogGjAaQBpQGmAacBqAGpAaoBqwGsAa0BrgGvAbABsQGyAbMBtAG1AbYBtwG4AbkBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgHHAcgByQHKAcsBzAHNAc4BzwHQAdEB0gHTAdQB1QHWAdcB2AHZAdoB2wHcAd0B3gHgAeEB4gHjAeQB5QHmAecB6AHpAeoB6wHsAe0B7gHvAfAB8QHyAfMBmQKkArAC/gL+AgsgASIEIAJHDfMBQd0BIRAM/wMLIAEiECACRw3dAUHDASEQDP4DCyABIgEgAkcNkAFB9wAhEAz9AwsgASIBIAJHDYYBQe8AIRAM/AMLIAEiASACRw1/QeoAIRAM+wMLIAEiASACRw17QegAIRAM+gMLIAEiASACRw14QeYAIRAM+QMLIAEiASACRw0aQRghEAz4AwsgASIBIAJHDRRBEiEQDPcDCyABIgEgAkcNWUHFACEQDPYDCyABIgEgAkcNSkE/IRAM9QMLIAEiASACRw1IQTwhEAz0AwsgASIBIAJHDUFBMSEQDPMDCyAALQAuQQFGDesDDIcCCyAAIAEiASACEMCAgIAAQQFHDeYBIABCADcDIAznAQsgACABIgEgAhC0gICAACIQDecBIAEhAQz1AgsCQCABIgEgAkcNAEEGIRAM8AMLIAAgAUEBaiIBIAIQu4CAgAAiEA3oASABIQEMMQsgAEIANwMgQRIhEAzVAwsgASIQIAJHDStBHSEQDO0DCwJAIAEiASACRg0AIAFBAWohAUEQIRAM1AMLQQchEAzsAwsgAEIAIAApAyAiESACIAEiEGutIhJ9IhMgEyARVhs3AyAgESASViIURQ3lAUEIIRAM6wMLAkAgASIBIAJGDQAgAEGJgICAADYCCCAAIAE2AgQgASEBQRQhEAzSAwtBCSEQDOoDCyABIQEgACkDIFAN5AEgASEBDPICCwJAIAEiASACRw0AQQshEAzpAwsgACABQQFqIgEgAhC2gICAACIQDeUBIAEhAQzyAgsgACABIgEgAhC4gICAACIQDeUBIAEhAQzyAgsgACABIgEgAhC4gICAACIQDeYBIAEhAQwNCyAAIAEiASACELqAgIAAIhAN5wEgASEBDPACCwJAIAEiASACRw0AQQ8hEAzlAwsgAS0AACIQQTtGDQggEEENRw3oASABQQFqIQEM7wILIAAgASIBIAIQuoCAgAAiEA3oASABIQEM8gILA0ACQCABLQAAQfC1gIAAai0AACIQQQFGDQAgEEECRw3rASAAKAIEIRAgAEEANgIEIAAgECABQQFqIgEQuYCAgAAiEA3qASABIQEM9AILIAFBAWoiASACRw0AC0ESIRAM4gMLIAAgASIBIAIQuoCAgAAiEA3pASABIQEMCgsgASIBIAJHDQZBGyEQDOADCwJAIAEiASACRw0AQRYhEAzgAwsgAEGKgICAADYCCCAAIAE2AgQgACABIAIQuICAgAAiEA3qASABIQFBICEQDMYDCwJAIAEiASACRg0AA0ACQCABLQAAQfC3gIAAai0AACIQQQJGDQACQCAQQX9qDgTlAewBAOsB7AELIAFBAWohAUEIIRAMyAMLIAFBAWoiASACRw0AC0EVIRAM3wMLQRUhEAzeAwsDQAJAIAEtAABB8LmAgABqLQAAIhBBAkYNACAQQX9qDgTeAewB4AHrAewBCyABQQFqIgEgAkcNAAtBGCEQDN0DCwJAIAEiASACRg0AIABBi4CAgAA2AgggACABNgIEIAEhAUEHIRAMxAMLQRkhEAzcAwsgAUEBaiEBDAILAkAgASIUIAJHDQBBGiEQDNsDCyAUIQECQCAULQAAQXNqDhTdAu4C7gLuAu4C7gLuAu4C7gLuAu4C7gLuAu4C7gLuAu4C7gLuAgDuAgtBACEQIABBADYCHCAAQa+LgIAANgIQIABBAjYCDCAAIBRBAWo2AhQM2gMLAkAgAS0AACIQQTtGDQAgEEENRw3oASABQQFqIQEM5QILIAFBAWohAQtBIiEQDL8DCwJAIAEiECACRw0AQRwhEAzYAwtCACERIBAhASAQLQAAQVBqDjfnAeYBAQIDBAUGBwgAAAAAAAAACQoLDA0OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPEBESExQAC0EeIRAMvQMLQgIhEQzlAQtCAyERDOQBC0IEIREM4wELQgUhEQziAQtCBiERDOEBC0IHIREM4AELQgghEQzfAQtCCSERDN4BC0IKIREM3QELQgshEQzcAQtCDCERDNsBC0INIREM2gELQg4hEQzZAQtCDyERDNgBC0IKIREM1wELQgshEQzWAQtCDCERDNUBC0INIREM1AELQg4hEQzTAQtCDyERDNIBC0IAIRECQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIBAtAABBUGoON+UB5AEAAQIDBAUGB+YB5gHmAeYB5gHmAeYBCAkKCwwN5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAeYB5gHmAQ4PEBESE+YBC0ICIREM5AELQgMhEQzjAQtCBCERDOIBC0IFIREM4QELQgYhEQzgAQtCByERDN8BC0IIIREM3gELQgkhEQzdAQtCCiERDNwBC0ILIREM2wELQgwhEQzaAQtCDSERDNkBC0IOIREM2AELQg8hEQzXAQtCCiERDNYBC0ILIREM1QELQgwhEQzUAQtCDSERDNMBC0IOIREM0gELQg8hEQzRAQsgAEIAIAApAyAiESACIAEiEGutIhJ9IhMgEyARVhs3AyAgESASViIURQ3SAUEfIRAMwAMLAkAgASIBIAJGDQAgAEGJgICAADYCCCAAIAE2AgQgASEBQSQhEAynAwtBICEQDL8DCyAAIAEiECACEL6AgIAAQX9qDgW2AQDFAgHRAdIBC0ERIRAMpAMLIABBAToALyAQIQEMuwMLIAEiASACRw3SAUEkIRAMuwMLIAEiDSACRw0eQcYAIRAMugMLIAAgASIBIAIQsoCAgAAiEA3UASABIQEMtQELIAEiECACRw0mQdAAIRAMuAMLAkAgASIBIAJHDQBBKCEQDLgDCyAAQQA2AgQgAEGMgICAADYCCCAAIAEgARCxgICAACIQDdMBIAEhAQzYAQsCQCABIhAgAkcNAEEpIRAMtwMLIBAtAAAiAUEgRg0UIAFBCUcN0wEgEEEBaiEBDBULAkAgASIBIAJGDQAgAUEBaiEBDBcLQSohEAy1AwsCQCABIhAgAkcNAEErIRAMtQMLAkAgEC0AACIBQQlGDQAgAUEgRw3VAQsgAC0ALEEIRg3TASAQIQEMkQMLAkAgASIBIAJHDQBBLCEQDLQDCyABLQAAQQpHDdUBIAFBAWohAQzJAgsgASIOIAJHDdUBQS8hEAyyAwsDQAJAIAEtAAAiEEEgRg0AAkAgEEF2ag4EANwB3AEA2gELIAEhAQzgAQsgAUEBaiIBIAJHDQALQTEhEAyxAwtBMiEQIAEiFCACRg2wAyACIBRrIAAoAgAiAWohFSAUIAFrQQNqIRYCQANAIBQtAAAiF0EgciAXIBdBv39qQf8BcUEaSRtB/wFxIAFB8LuAgABqLQAARw0BAkAgAUEDRw0AQQYhAQyWAwsgAUEBaiEBIBRBAWoiFCACRw0ACyAAIBU2AgAMsQMLIABBADYCACAUIQEM2QELQTMhECABIhQgAkYNrwMgAiAUayAAKAIAIgFqIRUgFCABa0EIaiEWAkADQCAULQAAIhdBIHIgFyAXQb9/akH/AXFBGkkbQf8BcSABQfS7gIAAai0AAEcNAQJAIAFBCEcNAEEFIQEMlQMLIAFBAWohASAUQQFqIhQgAkcNAAsgACAVNgIADLADCyAAQQA2AgAgFCEBDNgBC0E0IRAgASIUIAJGDa4DIAIgFGsgACgCACIBaiEVIBQgAWtBBWohFgJAA0AgFC0AACIXQSByIBcgF0G/f2pB/wFxQRpJG0H/AXEgAUHQwoCAAGotAABHDQECQCABQQVHDQBBByEBDJQDCyABQQFqIQEgFEEBaiIUIAJHDQALIAAgFTYCAAyvAwsgAEEANgIAIBQhAQzXAQsCQCABIgEgAkYNAANAAkAgAS0AAEGAvoCAAGotAAAiEEEBRg0AIBBBAkYNCiABIQEM3QELIAFBAWoiASACRw0AC0EwIRAMrgMLQTAhEAytAwsCQCABIgEgAkYNAANAAkAgAS0AACIQQSBGDQAgEEF2ag4E2QHaAdoB2QHaAQsgAUEBaiIBIAJHDQALQTghEAytAwtBOCEQDKwDCwNAAkAgAS0AACIQQSBGDQAgEEEJRw0DCyABQQFqIgEgAkcNAAtBPCEQDKsDCwNAAkAgAS0AACIQQSBGDQACQAJAIBBBdmoOBNoBAQHaAQALIBBBLEYN2wELIAEhAQwECyABQQFqIgEgAkcNAAtBPyEQDKoDCyABIQEM2wELQcAAIRAgASIUIAJGDagDIAIgFGsgACgCACIBaiEWIBQgAWtBBmohFwJAA0AgFC0AAEEgciABQYDAgIAAai0AAEcNASABQQZGDY4DIAFBAWohASAUQQFqIhQgAkcNAAsgACAWNgIADKkDCyAAQQA2AgAgFCEBC0E2IRAMjgMLAkAgASIPIAJHDQBBwQAhEAynAwsgAEGMgICAADYCCCAAIA82AgQgDyEBIAAtACxBf2oOBM0B1QHXAdkBhwMLIAFBAWohAQzMAQsCQCABIgEgAkYNAANAAkAgAS0AACIQQSByIBAgEEG/f2pB/wFxQRpJG0H/AXEiEEEJRg0AIBBBIEYNAAJAAkACQAJAIBBBnX9qDhMAAwMDAwMDAwEDAwMDAwMDAwMCAwsgAUEBaiEBQTEhEAyRAwsgAUEBaiEBQTIhEAyQAwsgAUEBaiEBQTMhEAyPAwsgASEBDNABCyABQQFqIgEgAkcNAAtBNSEQDKUDC0E1IRAMpAMLAkAgASIBIAJGDQADQAJAIAEtAABBgLyAgABqLQAAQQFGDQAgASEBDNMBCyABQQFqIgEgAkcNAAtBPSEQDKQDC0E9IRAMowMLIAAgASIBIAIQsICAgAAiEA3WASABIQEMAQsgEEEBaiEBC0E8IRAMhwMLAkAgASIBIAJHDQBBwgAhEAygAwsCQANAAkAgAS0AAEF3ag4YAAL+Av4ChAP+Av4C/gL+Av4C/gL+Av4C/gL+Av4C/gL+Av4C/gL+Av4C/gIA/gILIAFBAWoiASACRw0AC0HCACEQDKADCyABQQFqIQEgAC0ALUEBcUUNvQEgASEBC0EsIRAMhQMLIAEiASACRw3TAUHEACEQDJ0DCwNAAkAgAS0AAEGQwICAAGotAABBAUYNACABIQEMtwILIAFBAWoiASACRw0AC0HFACEQDJwDCyANLQAAIhBBIEYNswEgEEE6Rw2BAyAAKAIEIQEgAEEANgIEIAAgASANEK+AgIAAIgEN0AEgDUEBaiEBDLMCC0HHACEQIAEiDSACRg2aAyACIA1rIAAoAgAiAWohFiANIAFrQQVqIRcDQCANLQAAIhRBIHIgFCAUQb9/akH/AXFBGkkbQf8BcSABQZDCgIAAai0AAEcNgAMgAUEFRg30AiABQQFqIQEgDUEBaiINIAJHDQALIAAgFjYCAAyaAwtByAAhECABIg0gAkYNmQMgAiANayAAKAIAIgFqIRYgDSABa0EJaiEXA0AgDS0AACIUQSByIBQgFEG/f2pB/wFxQRpJG0H/AXEgAUGWwoCAAGotAABHDf8CAkAgAUEJRw0AQQIhAQz1AgsgAUEBaiEBIA1BAWoiDSACRw0ACyAAIBY2AgAMmQMLAkAgASINIAJHDQBByQAhEAyZAwsCQAJAIA0tAAAiAUEgciABIAFBv39qQf8BcUEaSRtB/wFxQZJ/ag4HAIADgAOAA4ADgAMBgAMLIA1BAWohAUE+IRAMgAMLIA1BAWohAUE/IRAM/wILQcoAIRAgASINIAJGDZcDIAIgDWsgACgCACIBaiEWIA0gAWtBAWohFwNAIA0tAAAiFEEgciAUIBRBv39qQf8BcUEaSRtB/wFxIAFBoMKAgABqLQAARw39AiABQQFGDfACIAFBAWohASANQQFqIg0gAkcNAAsgACAWNgIADJcDC0HLACEQIAEiDSACRg2WAyACIA1rIAAoAgAiAWohFiANIAFrQQ5qIRcDQCANLQAAIhRBIHIgFCAUQb9/akH/AXFBGkkbQf8BcSABQaLCgIAAai0AAEcN/AIgAUEORg3wAiABQQFqIQEgDUEBaiINIAJHDQALIAAgFjYCAAyWAwtBzAAhECABIg0gAkYNlQMgAiANayAAKAIAIgFqIRYgDSABa0EPaiEXA0AgDS0AACIUQSByIBQgFEG/f2pB/wFxQRpJG0H/AXEgAUHAwoCAAGotAABHDfsCAkAgAUEPRw0AQQMhAQzxAgsgAUEBaiEBIA1BAWoiDSACRw0ACyAAIBY2AgAMlQMLQc0AIRAgASINIAJGDZQDIAIgDWsgACgCACIBaiEWIA0gAWtBBWohFwNAIA0tAAAiFEEgciAUIBRBv39qQf8BcUEaSRtB/wFxIAFB0MKAgABqLQAARw36AgJAIAFBBUcNAEEEIQEM8AILIAFBAWohASANQQFqIg0gAkcNAAsgACAWNgIADJQDCwJAIAEiDSACRw0AQc4AIRAMlAMLAkACQAJAAkAgDS0AACIBQSByIAEgAUG/f2pB/wFxQRpJG0H/AXFBnX9qDhMA/QL9Av0C/QL9Av0C/QL9Av0C/QL9Av0CAf0C/QL9AgID/QILIA1BAWohAUHBACEQDP0CCyANQQFqIQFBwgAhEAz8AgsgDUEBaiEBQcMAIRAM+wILIA1BAWohAUHEACEQDPoCCwJAIAEiASACRg0AIABBjYCAgAA2AgggACABNgIEIAEhAUHFACEQDPoCC0HPACEQDJIDCyAQIQECQAJAIBAtAABBdmoOBAGoAqgCAKgCCyAQQQFqIQELQSchEAz4AgsCQCABIgEgAkcNAEHRACEQDJEDCwJAIAEtAABBIEYNACABIQEMjQELIAFBAWohASAALQAtQQFxRQ3HASABIQEMjAELIAEiFyACRw3IAUHSACEQDI8DC0HTACEQIAEiFCACRg2OAyACIBRrIAAoAgAiAWohFiAUIAFrQQFqIRcDQCAULQAAIAFB1sKAgABqLQAARw3MASABQQFGDccBIAFBAWohASAUQQFqIhQgAkcNAAsgACAWNgIADI4DCwJAIAEiASACRw0AQdUAIRAMjgMLIAEtAABBCkcNzAEgAUEBaiEBDMcBCwJAIAEiASACRw0AQdYAIRAMjQMLAkACQCABLQAAQXZqDgQAzQHNAQHNAQsgAUEBaiEBDMcBCyABQQFqIQFBygAhEAzzAgsgACABIgEgAhCugICAACIQDcsBIAEhAUHNACEQDPICCyAALQApQSJGDYUDDKYCCwJAIAEiASACRw0AQdsAIRAMigMLQQAhFEEBIRdBASEWQQAhEAJAAkACQAJAAkACQAJAAkACQCABLQAAQVBqDgrUAdMBAAECAwQFBgjVAQtBAiEQDAYLQQMhEAwFC0EEIRAMBAtBBSEQDAMLQQYhEAwCC0EHIRAMAQtBCCEQC0EAIRdBACEWQQAhFAzMAQtBCSEQQQEhFEEAIRdBACEWDMsBCwJAIAEiASACRw0AQd0AIRAMiQMLIAEtAABBLkcNzAEgAUEBaiEBDKYCCyABIgEgAkcNzAFB3wAhEAyHAwsCQCABIgEgAkYNACAAQY6AgIAANgIIIAAgATYCBCABIQFB0AAhEAzuAgtB4AAhEAyGAwtB4QAhECABIgEgAkYNhQMgAiABayAAKAIAIhRqIRYgASAUa0EDaiEXA0AgAS0AACAUQeLCgIAAai0AAEcNzQEgFEEDRg3MASAUQQFqIRQgAUEBaiIBIAJHDQALIAAgFjYCAAyFAwtB4gAhECABIgEgAkYNhAMgAiABayAAKAIAIhRqIRYgASAUa0ECaiEXA0AgAS0AACAUQebCgIAAai0AAEcNzAEgFEECRg3OASAUQQFqIRQgAUEBaiIBIAJHDQALIAAgFjYCAAyEAwtB4wAhECABIgEgAkYNgwMgAiABayAAKAIAIhRqIRYgASAUa0EDaiEXA0AgAS0AACAUQenCgIAAai0AAEcNywEgFEEDRg3OASAUQQFqIRQgAUEBaiIBIAJHDQALIAAgFjYCAAyDAwsCQCABIgEgAkcNAEHlACEQDIMDCyAAIAFBAWoiASACEKiAgIAAIhANzQEgASEBQdYAIRAM6QILAkAgASIBIAJGDQADQAJAIAEtAAAiEEEgRg0AAkACQAJAIBBBuH9qDgsAAc8BzwHPAc8BzwHPAc8BzwECzwELIAFBAWohAUHSACEQDO0CCyABQQFqIQFB0wAhEAzsAgsgAUEBaiEBQdQAIRAM6wILIAFBAWoiASACRw0AC0HkACEQDIIDC0HkACEQDIEDCwNAAkAgAS0AAEHwwoCAAGotAAAiEEEBRg0AIBBBfmoOA88B0AHRAdIBCyABQQFqIgEgAkcNAAtB5gAhEAyAAwsCQCABIgEgAkYNACABQQFqIQEMAwtB5wAhEAz/AgsDQAJAIAEtAABB8MSAgABqLQAAIhBBAUYNAAJAIBBBfmoOBNIB0wHUAQDVAQsgASEBQdcAIRAM5wILIAFBAWoiASACRw0AC0HoACEQDP4CCwJAIAEiASACRw0AQekAIRAM/gILAkAgAS0AACIQQXZqDhq6AdUB1QG8AdUB1QHVAdUB1QHVAdUB1QHVAdUB1QHVAdUB1QHVAdUB1QHVAcoB1QHVAQDTAQsgAUEBaiEBC0EGIRAM4wILA0ACQCABLQAAQfDGgIAAai0AAEEBRg0AIAEhAQyeAgsgAUEBaiIBIAJHDQALQeoAIRAM+wILAkAgASIBIAJGDQAgAUEBaiEBDAMLQesAIRAM+gILAkAgASIBIAJHDQBB7AAhEAz6AgsgAUEBaiEBDAELAkAgASIBIAJHDQBB7QAhEAz5AgsgAUEBaiEBC0EEIRAM3gILAkAgASIUIAJHDQBB7gAhEAz3AgsgFCEBAkACQAJAIBQtAABB8MiAgABqLQAAQX9qDgfUAdUB1gEAnAIBAtcBCyAUQQFqIQEMCgsgFEEBaiEBDM0BC0EAIRAgAEEANgIcIABBm5KAgAA2AhAgAEEHNgIMIAAgFEEBajYCFAz2AgsCQANAAkAgAS0AAEHwyICAAGotAAAiEEEERg0AAkACQCAQQX9qDgfSAdMB1AHZAQAEAdkBCyABIQFB2gAhEAzgAgsgAUEBaiEBQdwAIRAM3wILIAFBAWoiASACRw0AC0HvACEQDPYCCyABQQFqIQEMywELAkAgASIUIAJHDQBB8AAhEAz1AgsgFC0AAEEvRw3UASAUQQFqIQEMBgsCQCABIhQgAkcNAEHxACEQDPQCCwJAIBQtAAAiAUEvRw0AIBRBAWohAUHdACEQDNsCCyABQXZqIgRBFksN0wFBASAEdEGJgIACcUUN0wEMygILAkAgASIBIAJGDQAgAUEBaiEBQd4AIRAM2gILQfIAIRAM8gILAkAgASIUIAJHDQBB9AAhEAzyAgsgFCEBAkAgFC0AAEHwzICAAGotAABBf2oOA8kClAIA1AELQeEAIRAM2AILAkAgASIUIAJGDQADQAJAIBQtAABB8MqAgABqLQAAIgFBA0YNAAJAIAFBf2oOAssCANUBCyAUIQFB3wAhEAzaAgsgFEEBaiIUIAJHDQALQfMAIRAM8QILQfMAIRAM8AILAkAgASIBIAJGDQAgAEGPgICAADYCCCAAIAE2AgQgASEBQeAAIRAM1wILQfUAIRAM7wILAkAgASIBIAJHDQBB9gAhEAzvAgsgAEGPgICAADYCCCAAIAE2AgQgASEBC0EDIRAM1AILA0AgAS0AAEEgRw3DAiABQQFqIgEgAkcNAAtB9wAhEAzsAgsCQCABIgEgAkcNAEH4ACEQDOwCCyABLQAAQSBHDc4BIAFBAWohAQzvAQsgACABIgEgAhCsgICAACIQDc4BIAEhAQyOAgsCQCABIgQgAkcNAEH6ACEQDOoCCyAELQAAQcwARw3RASAEQQFqIQFBEyEQDM8BCwJAIAEiBCACRw0AQfsAIRAM6QILIAIgBGsgACgCACIBaiEUIAQgAWtBBWohEANAIAQtAAAgAUHwzoCAAGotAABHDdABIAFBBUYNzgEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBB+wAhEAzoAgsCQCABIgQgAkcNAEH8ACEQDOgCCwJAAkAgBC0AAEG9f2oODADRAdEB0QHRAdEB0QHRAdEB0QHRAQHRAQsgBEEBaiEBQeYAIRAMzwILIARBAWohAUHnACEQDM4CCwJAIAEiBCACRw0AQf0AIRAM5wILIAIgBGsgACgCACIBaiEUIAQgAWtBAmohEAJAA0AgBC0AACABQe3PgIAAai0AAEcNzwEgAUECRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQf0AIRAM5wILIABBADYCACAQQQFqIQFBECEQDMwBCwJAIAEiBCACRw0AQf4AIRAM5gILIAIgBGsgACgCACIBaiEUIAQgAWtBBWohEAJAA0AgBC0AACABQfbOgIAAai0AAEcNzgEgAUEFRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQf4AIRAM5gILIABBADYCACAQQQFqIQFBFiEQDMsBCwJAIAEiBCACRw0AQf8AIRAM5QILIAIgBGsgACgCACIBaiEUIAQgAWtBA2ohEAJAA0AgBC0AACABQfzOgIAAai0AAEcNzQEgAUEDRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQf8AIRAM5QILIABBADYCACAQQQFqIQFBBSEQDMoBCwJAIAEiBCACRw0AQYABIRAM5AILIAQtAABB2QBHDcsBIARBAWohAUEIIRAMyQELAkAgASIEIAJHDQBBgQEhEAzjAgsCQAJAIAQtAABBsn9qDgMAzAEBzAELIARBAWohAUHrACEQDMoCCyAEQQFqIQFB7AAhEAzJAgsCQCABIgQgAkcNAEGCASEQDOICCwJAAkAgBC0AAEG4f2oOCADLAcsBywHLAcsBywEBywELIARBAWohAUHqACEQDMkCCyAEQQFqIQFB7QAhEAzIAgsCQCABIgQgAkcNAEGDASEQDOECCyACIARrIAAoAgAiAWohECAEIAFrQQJqIRQCQANAIAQtAAAgAUGAz4CAAGotAABHDckBIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgEDYCAEGDASEQDOECC0EAIRAgAEEANgIAIBRBAWohAQzGAQsCQCABIgQgAkcNAEGEASEQDOACCyACIARrIAAoAgAiAWohFCAEIAFrQQRqIRACQANAIAQtAAAgAUGDz4CAAGotAABHDcgBIAFBBEYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGEASEQDOACCyAAQQA2AgAgEEEBaiEBQSMhEAzFAQsCQCABIgQgAkcNAEGFASEQDN8CCwJAAkAgBC0AAEG0f2oOCADIAcgByAHIAcgByAEByAELIARBAWohAUHvACEQDMYCCyAEQQFqIQFB8AAhEAzFAgsCQCABIgQgAkcNAEGGASEQDN4CCyAELQAAQcUARw3FASAEQQFqIQEMgwILAkAgASIEIAJHDQBBhwEhEAzdAgsgAiAEayAAKAIAIgFqIRQgBCABa0EDaiEQAkADQCAELQAAIAFBiM+AgABqLQAARw3FASABQQNGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBhwEhEAzdAgsgAEEANgIAIBBBAWohAUEtIRAMwgELAkAgASIEIAJHDQBBiAEhEAzcAgsgAiAEayAAKAIAIgFqIRQgBCABa0EIaiEQAkADQCAELQAAIAFB0M+AgABqLQAARw3EASABQQhGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBiAEhEAzcAgsgAEEANgIAIBBBAWohAUEpIRAMwQELAkAgASIBIAJHDQBBiQEhEAzbAgtBASEQIAEtAABB3wBHDcABIAFBAWohAQyBAgsCQCABIgQgAkcNAEGKASEQDNoCCyACIARrIAAoAgAiAWohFCAEIAFrQQFqIRADQCAELQAAIAFBjM+AgABqLQAARw3BASABQQFGDa8CIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQYoBIRAM2QILAkAgASIEIAJHDQBBiwEhEAzZAgsgAiAEayAAKAIAIgFqIRQgBCABa0ECaiEQAkADQCAELQAAIAFBjs+AgABqLQAARw3BASABQQJGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBiwEhEAzZAgsgAEEANgIAIBBBAWohAUECIRAMvgELAkAgASIEIAJHDQBBjAEhEAzYAgsgAiAEayAAKAIAIgFqIRQgBCABa0EBaiEQAkADQCAELQAAIAFB8M+AgABqLQAARw3AASABQQFGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBjAEhEAzYAgsgAEEANgIAIBBBAWohAUEfIRAMvQELAkAgASIEIAJHDQBBjQEhEAzXAgsgAiAEayAAKAIAIgFqIRQgBCABa0EBaiEQAkADQCAELQAAIAFB8s+AgABqLQAARw2/ASABQQFGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBjQEhEAzXAgsgAEEANgIAIBBBAWohAUEJIRAMvAELAkAgASIEIAJHDQBBjgEhEAzWAgsCQAJAIAQtAABBt39qDgcAvwG/Ab8BvwG/AQG/AQsgBEEBaiEBQfgAIRAMvQILIARBAWohAUH5ACEQDLwCCwJAIAEiBCACRw0AQY8BIRAM1QILIAIgBGsgACgCACIBaiEUIAQgAWtBBWohEAJAA0AgBC0AACABQZHPgIAAai0AAEcNvQEgAUEFRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQY8BIRAM1QILIABBADYCACAQQQFqIQFBGCEQDLoBCwJAIAEiBCACRw0AQZABIRAM1AILIAIgBGsgACgCACIBaiEUIAQgAWtBAmohEAJAA0AgBC0AACABQZfPgIAAai0AAEcNvAEgAUECRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZABIRAM1AILIABBADYCACAQQQFqIQFBFyEQDLkBCwJAIAEiBCACRw0AQZEBIRAM0wILIAIgBGsgACgCACIBaiEUIAQgAWtBBmohEAJAA0AgBC0AACABQZrPgIAAai0AAEcNuwEgAUEGRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZEBIRAM0wILIABBADYCACAQQQFqIQFBFSEQDLgBCwJAIAEiBCACRw0AQZIBIRAM0gILIAIgBGsgACgCACIBaiEUIAQgAWtBBWohEAJAA0AgBC0AACABQaHPgIAAai0AAEcNugEgAUEFRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZIBIRAM0gILIABBADYCACAQQQFqIQFBHiEQDLcBCwJAIAEiBCACRw0AQZMBIRAM0QILIAQtAABBzABHDbgBIARBAWohAUEKIRAMtgELAkAgBCACRw0AQZQBIRAM0AILAkACQCAELQAAQb9/ag4PALkBuQG5AbkBuQG5AbkBuQG5AbkBuQG5AbkBAbkBCyAEQQFqIQFB/gAhEAy3AgsgBEEBaiEBQf8AIRAMtgILAkAgBCACRw0AQZUBIRAMzwILAkACQCAELQAAQb9/ag4DALgBAbgBCyAEQQFqIQFB/QAhEAy2AgsgBEEBaiEEQYABIRAMtQILAkAgBCACRw0AQZYBIRAMzgILIAIgBGsgACgCACIBaiEUIAQgAWtBAWohEAJAA0AgBC0AACABQafPgIAAai0AAEcNtgEgAUEBRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZYBIRAMzgILIABBADYCACAQQQFqIQFBCyEQDLMBCwJAIAQgAkcNAEGXASEQDM0CCwJAAkACQAJAIAQtAABBU2oOIwC4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBAbgBuAG4AbgBuAECuAG4AbgBA7gBCyAEQQFqIQFB+wAhEAy2AgsgBEEBaiEBQfwAIRAMtQILIARBAWohBEGBASEQDLQCCyAEQQFqIQRBggEhEAyzAgsCQCAEIAJHDQBBmAEhEAzMAgsgAiAEayAAKAIAIgFqIRQgBCABa0EEaiEQAkADQCAELQAAIAFBqc+AgABqLQAARw20ASABQQRGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBmAEhEAzMAgsgAEEANgIAIBBBAWohAUEZIRAMsQELAkAgBCACRw0AQZkBIRAMywILIAIgBGsgACgCACIBaiEUIAQgAWtBBWohEAJAA0AgBC0AACABQa7PgIAAai0AAEcNswEgAUEFRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZkBIRAMywILIABBADYCACAQQQFqIQFBBiEQDLABCwJAIAQgAkcNAEGaASEQDMoCCyACIARrIAAoAgAiAWohFCAEIAFrQQFqIRACQANAIAQtAAAgAUG0z4CAAGotAABHDbIBIAFBAUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGaASEQDMoCCyAAQQA2AgAgEEEBaiEBQRwhEAyvAQsCQCAEIAJHDQBBmwEhEAzJAgsgAiAEayAAKAIAIgFqIRQgBCABa0EBaiEQAkADQCAELQAAIAFBts+AgABqLQAARw2xASABQQFGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBmwEhEAzJAgsgAEEANgIAIBBBAWohAUEnIRAMrgELAkAgBCACRw0AQZwBIRAMyAILAkACQCAELQAAQax/ag4CAAGxAQsgBEEBaiEEQYYBIRAMrwILIARBAWohBEGHASEQDK4CCwJAIAQgAkcNAEGdASEQDMcCCyACIARrIAAoAgAiAWohFCAEIAFrQQFqIRACQANAIAQtAAAgAUG4z4CAAGotAABHDa8BIAFBAUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGdASEQDMcCCyAAQQA2AgAgEEEBaiEBQSYhEAysAQsCQCAEIAJHDQBBngEhEAzGAgsgAiAEayAAKAIAIgFqIRQgBCABa0EBaiEQAkADQCAELQAAIAFBus+AgABqLQAARw2uASABQQFGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBngEhEAzGAgsgAEEANgIAIBBBAWohAUEDIRAMqwELAkAgBCACRw0AQZ8BIRAMxQILIAIgBGsgACgCACIBaiEUIAQgAWtBAmohEAJAA0AgBC0AACABQe3PgIAAai0AAEcNrQEgAUECRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQZ8BIRAMxQILIABBADYCACAQQQFqIQFBDCEQDKoBCwJAIAQgAkcNAEGgASEQDMQCCyACIARrIAAoAgAiAWohFCAEIAFrQQNqIRACQANAIAQtAAAgAUG8z4CAAGotAABHDawBIAFBA0YNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGgASEQDMQCCyAAQQA2AgAgEEEBaiEBQQ0hEAypAQsCQCAEIAJHDQBBoQEhEAzDAgsCQAJAIAQtAABBun9qDgsArAGsAawBrAGsAawBrAGsAawBAawBCyAEQQFqIQRBiwEhEAyqAgsgBEEBaiEEQYwBIRAMqQILAkAgBCACRw0AQaIBIRAMwgILIAQtAABB0ABHDakBIARBAWohBAzpAQsCQCAEIAJHDQBBowEhEAzBAgsCQAJAIAQtAABBt39qDgcBqgGqAaoBqgGqAQCqAQsgBEEBaiEEQY4BIRAMqAILIARBAWohAUEiIRAMpgELAkAgBCACRw0AQaQBIRAMwAILIAIgBGsgACgCACIBaiEUIAQgAWtBAWohEAJAA0AgBC0AACABQcDPgIAAai0AAEcNqAEgAUEBRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQaQBIRAMwAILIABBADYCACAQQQFqIQFBHSEQDKUBCwJAIAQgAkcNAEGlASEQDL8CCwJAAkAgBC0AAEGuf2oOAwCoAQGoAQsgBEEBaiEEQZABIRAMpgILIARBAWohAUEEIRAMpAELAkAgBCACRw0AQaYBIRAMvgILAkACQAJAAkACQCAELQAAQb9/ag4VAKoBqgGqAaoBqgGqAaoBqgGqAaoBAaoBqgECqgGqAQOqAaoBBKoBCyAEQQFqIQRBiAEhEAyoAgsgBEEBaiEEQYkBIRAMpwILIARBAWohBEGKASEQDKYCCyAEQQFqIQRBjwEhEAylAgsgBEEBaiEEQZEBIRAMpAILAkAgBCACRw0AQacBIRAMvQILIAIgBGsgACgCACIBaiEUIAQgAWtBAmohEAJAA0AgBC0AACABQe3PgIAAai0AAEcNpQEgAUECRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQacBIRAMvQILIABBADYCACAQQQFqIQFBESEQDKIBCwJAIAQgAkcNAEGoASEQDLwCCyACIARrIAAoAgAiAWohFCAEIAFrQQJqIRACQANAIAQtAAAgAUHCz4CAAGotAABHDaQBIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGoASEQDLwCCyAAQQA2AgAgEEEBaiEBQSwhEAyhAQsCQCAEIAJHDQBBqQEhEAy7AgsgAiAEayAAKAIAIgFqIRQgBCABa0EEaiEQAkADQCAELQAAIAFBxc+AgABqLQAARw2jASABQQRGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBqQEhEAy7AgsgAEEANgIAIBBBAWohAUErIRAMoAELAkAgBCACRw0AQaoBIRAMugILIAIgBGsgACgCACIBaiEUIAQgAWtBAmohEAJAA0AgBC0AACABQcrPgIAAai0AAEcNogEgAUECRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQaoBIRAMugILIABBADYCACAQQQFqIQFBFCEQDJ8BCwJAIAQgAkcNAEGrASEQDLkCCwJAAkACQAJAIAQtAABBvn9qDg8AAQKkAaQBpAGkAaQBpAGkAaQBpAGkAaQBA6QBCyAEQQFqIQRBkwEhEAyiAgsgBEEBaiEEQZQBIRAMoQILIARBAWohBEGVASEQDKACCyAEQQFqIQRBlgEhEAyfAgsCQCAEIAJHDQBBrAEhEAy4AgsgBC0AAEHFAEcNnwEgBEEBaiEEDOABCwJAIAQgAkcNAEGtASEQDLcCCyACIARrIAAoAgAiAWohFCAEIAFrQQJqIRACQANAIAQtAAAgAUHNz4CAAGotAABHDZ8BIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEGtASEQDLcCCyAAQQA2AgAgEEEBaiEBQQ4hEAycAQsCQCAEIAJHDQBBrgEhEAy2AgsgBC0AAEHQAEcNnQEgBEEBaiEBQSUhEAybAQsCQCAEIAJHDQBBrwEhEAy1AgsgAiAEayAAKAIAIgFqIRQgBCABa0EIaiEQAkADQCAELQAAIAFB0M+AgABqLQAARw2dASABQQhGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBrwEhEAy1AgsgAEEANgIAIBBBAWohAUEqIRAMmgELAkAgBCACRw0AQbABIRAMtAILAkACQCAELQAAQat/ag4LAJ0BnQGdAZ0BnQGdAZ0BnQGdAQGdAQsgBEEBaiEEQZoBIRAMmwILIARBAWohBEGbASEQDJoCCwJAIAQgAkcNAEGxASEQDLMCCwJAAkAgBC0AAEG/f2oOFACcAZwBnAGcAZwBnAGcAZwBnAGcAZwBnAGcAZwBnAGcAZwBnAEBnAELIARBAWohBEGZASEQDJoCCyAEQQFqIQRBnAEhEAyZAgsCQCAEIAJHDQBBsgEhEAyyAgsgAiAEayAAKAIAIgFqIRQgBCABa0EDaiEQAkADQCAELQAAIAFB2c+AgABqLQAARw2aASABQQNGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBsgEhEAyyAgsgAEEANgIAIBBBAWohAUEhIRAMlwELAkAgBCACRw0AQbMBIRAMsQILIAIgBGsgACgCACIBaiEUIAQgAWtBBmohEAJAA0AgBC0AACABQd3PgIAAai0AAEcNmQEgAUEGRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQbMBIRAMsQILIABBADYCACAQQQFqIQFBGiEQDJYBCwJAIAQgAkcNAEG0ASEQDLACCwJAAkACQCAELQAAQbt/ag4RAJoBmgGaAZoBmgGaAZoBmgGaAQGaAZoBmgGaAZoBApoBCyAEQQFqIQRBnQEhEAyYAgsgBEEBaiEEQZ4BIRAMlwILIARBAWohBEGfASEQDJYCCwJAIAQgAkcNAEG1ASEQDK8CCyACIARrIAAoAgAiAWohFCAEIAFrQQVqIRACQANAIAQtAAAgAUHkz4CAAGotAABHDZcBIAFBBUYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEG1ASEQDK8CCyAAQQA2AgAgEEEBaiEBQSghEAyUAQsCQCAEIAJHDQBBtgEhEAyuAgsgAiAEayAAKAIAIgFqIRQgBCABa0ECaiEQAkADQCAELQAAIAFB6s+AgABqLQAARw2WASABQQJGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBtgEhEAyuAgsgAEEANgIAIBBBAWohAUEHIRAMkwELAkAgBCACRw0AQbcBIRAMrQILAkACQCAELQAAQbt/ag4OAJYBlgGWAZYBlgGWAZYBlgGWAZYBlgGWAQGWAQsgBEEBaiEEQaEBIRAMlAILIARBAWohBEGiASEQDJMCCwJAIAQgAkcNAEG4ASEQDKwCCyACIARrIAAoAgAiAWohFCAEIAFrQQJqIRACQANAIAQtAAAgAUHtz4CAAGotAABHDZQBIAFBAkYNASABQQFqIQEgBEEBaiIEIAJHDQALIAAgFDYCAEG4ASEQDKwCCyAAQQA2AgAgEEEBaiEBQRIhEAyRAQsCQCAEIAJHDQBBuQEhEAyrAgsgAiAEayAAKAIAIgFqIRQgBCABa0EBaiEQAkADQCAELQAAIAFB8M+AgABqLQAARw2TASABQQFGDQEgAUEBaiEBIARBAWoiBCACRw0ACyAAIBQ2AgBBuQEhEAyrAgsgAEEANgIAIBBBAWohAUEgIRAMkAELAkAgBCACRw0AQboBIRAMqgILIAIgBGsgACgCACIBaiEUIAQgAWtBAWohEAJAA0AgBC0AACABQfLPgIAAai0AAEcNkgEgAUEBRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQboBIRAMqgILIABBADYCACAQQQFqIQFBDyEQDI8BCwJAIAQgAkcNAEG7ASEQDKkCCwJAAkAgBC0AAEG3f2oOBwCSAZIBkgGSAZIBAZIBCyAEQQFqIQRBpQEhEAyQAgsgBEEBaiEEQaYBIRAMjwILAkAgBCACRw0AQbwBIRAMqAILIAIgBGsgACgCACIBaiEUIAQgAWtBB2ohEAJAA0AgBC0AACABQfTPgIAAai0AAEcNkAEgAUEHRg0BIAFBAWohASAEQQFqIgQgAkcNAAsgACAUNgIAQbwBIRAMqAILIABBADYCACAQQQFqIQFBGyEQDI0BCwJAIAQgAkcNAEG9ASEQDKcCCwJAAkACQCAELQAAQb5/ag4SAJEBkQGRAZEBkQGRAZEBkQGRAQGRAZEBkQGRAZEBkQECkQELIARBAWohBEGkASEQDI8CCyAEQQFqIQRBpwEhEAyOAgsgBEEBaiEEQagBIRAMjQILAkAgBCACRw0AQb4BIRAMpgILIAQtAABBzgBHDY0BIARBAWohBAzPAQsCQCAEIAJHDQBBvwEhEAylAgsCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCAELQAAQb9/ag4VAAECA5wBBAUGnAGcAZwBBwgJCgucAQwNDg+cAQsgBEEBaiEBQegAIRAMmgILIARBAWohAUHpACEQDJkCCyAEQQFqIQFB7gAhEAyYAgsgBEEBaiEBQfIAIRAMlwILIARBAWohAUHzACEQDJYCCyAEQQFqIQFB9gAhEAyVAgsgBEEBaiEBQfcAIRAMlAILIARBAWohAUH6ACEQDJMCCyAEQQFqIQRBgwEhEAySAgsgBEEBaiEEQYQBIRAMkQILIARBAWohBEGFASEQDJACCyAEQQFqIQRBkgEhEAyPAgsgBEEBaiEEQZgBIRAMjgILIARBAWohBEGgASEQDI0CCyAEQQFqIQRBowEhEAyMAgsgBEEBaiEEQaoBIRAMiwILAkAgBCACRg0AIABBkICAgAA2AgggACAENgIEQasBIRAMiwILQcABIRAMowILIAAgBSACEKqAgIAAIgENiwEgBSEBDFwLAkAgBiACRg0AIAZBAWohBQyNAQtBwgEhEAyhAgsDQAJAIBAtAABBdmoOBIwBAACPAQALIBBBAWoiECACRw0AC0HDASEQDKACCwJAIAcgAkYNACAAQZGAgIAANgIIIAAgBzYCBCAHIQFBASEQDIcCC0HEASEQDJ8CCwJAIAcgAkcNAEHFASEQDJ8CCwJAAkAgBy0AAEF2ag4EAc4BzgEAzgELIAdBAWohBgyNAQsgB0EBaiEFDIkBCwJAIAcgAkcNAEHGASEQDJ4CCwJAAkAgBy0AAEF2ag4XAY8BjwEBjwGPAY8BjwGPAY8BjwGPAY8BjwGPAY8BjwGPAY8BjwGPAY8BAI8BCyAHQQFqIQcLQbABIRAMhAILAkAgCCACRw0AQcgBIRAMnQILIAgtAABBIEcNjQEgAEEAOwEyIAhBAWohAUGzASEQDIMCCyABIRcCQANAIBciByACRg0BIActAABBUGpB/wFxIhBBCk8NzAECQCAALwEyIhRBmTNLDQAgACAUQQpsIhQ7ATIgEEH//wNzIBRB/v8DcUkNACAHQQFqIRcgACAUIBBqIhA7ATIgEEH//wNxQegHSQ0BCwtBACEQIABBADYCHCAAQcGJgIAANgIQIABBDTYCDCAAIAdBAWo2AhQMnAILQccBIRAMmwILIAAgCCACEK6AgIAAIhBFDcoBIBBBFUcNjAEgAEHIATYCHCAAIAg2AhQgAEHJl4CAADYCECAAQRU2AgxBACEQDJoCCwJAIAkgAkcNAEHMASEQDJoCC0EAIRRBASEXQQEhFkEAIRACQAJAAkACQAJAAkACQAJAAkAgCS0AAEFQag4KlgGVAQABAgMEBQYIlwELQQIhEAwGC0EDIRAMBQtBBCEQDAQLQQUhEAwDC0EGIRAMAgtBByEQDAELQQghEAtBACEXQQAhFkEAIRQMjgELQQkhEEEBIRRBACEXQQAhFgyNAQsCQCAKIAJHDQBBzgEhEAyZAgsgCi0AAEEuRw2OASAKQQFqIQkMygELIAsgAkcNjgFB0AEhEAyXAgsCQCALIAJGDQAgAEGOgICAADYCCCAAIAs2AgRBtwEhEAz+AQtB0QEhEAyWAgsCQCAEIAJHDQBB0gEhEAyWAgsgAiAEayAAKAIAIhBqIRQgBCAQa0EEaiELA0AgBC0AACAQQfzPgIAAai0AAEcNjgEgEEEERg3pASAQQQFqIRAgBEEBaiIEIAJHDQALIAAgFDYCAEHSASEQDJUCCyAAIAwgAhCsgICAACIBDY0BIAwhAQy4AQsCQCAEIAJHDQBB1AEhEAyUAgsgAiAEayAAKAIAIhBqIRQgBCAQa0EBaiEMA0AgBC0AACAQQYHQgIAAai0AAEcNjwEgEEEBRg2OASAQQQFqIRAgBEEBaiIEIAJHDQALIAAgFDYCAEHUASEQDJMCCwJAIAQgAkcNAEHWASEQDJMCCyACIARrIAAoAgAiEGohFCAEIBBrQQJqIQsDQCAELQAAIBBBg9CAgABqLQAARw2OASAQQQJGDZABIBBBAWohECAEQQFqIgQgAkcNAAsgACAUNgIAQdYBIRAMkgILAkAgBCACRw0AQdcBIRAMkgILAkACQCAELQAAQbt/ag4QAI8BjwGPAY8BjwGPAY8BjwGPAY8BjwGPAY8BjwEBjwELIARBAWohBEG7ASEQDPkBCyAEQQFqIQRBvAEhEAz4AQsCQCAEIAJHDQBB2AEhEAyRAgsgBC0AAEHIAEcNjAEgBEEBaiEEDMQBCwJAIAQgAkYNACAAQZCAgIAANgIIIAAgBDYCBEG+ASEQDPcBC0HZASEQDI8CCwJAIAQgAkcNAEHaASEQDI8CCyAELQAAQcgARg3DASAAQQE6ACgMuQELIABBAjoALyAAIAQgAhCmgICAACIQDY0BQcIBIRAM9AELIAAtAChBf2oOArcBuQG4AQsDQAJAIAQtAABBdmoOBACOAY4BAI4BCyAEQQFqIgQgAkcNAAtB3QEhEAyLAgsgAEEAOgAvIAAtAC1BBHFFDYQCCyAAQQA6AC8gAEEBOgA0IAEhAQyMAQsgEEEVRg3aASAAQQA2AhwgACABNgIUIABBp46AgAA2AhAgAEESNgIMQQAhEAyIAgsCQCAAIBAgAhC0gICAACIEDQAgECEBDIECCwJAIARBFUcNACAAQQM2AhwgACAQNgIUIABBsJiAgAA2AhAgAEEVNgIMQQAhEAyIAgsgAEEANgIcIAAgEDYCFCAAQaeOgIAANgIQIABBEjYCDEEAIRAMhwILIBBBFUYN1gEgAEEANgIcIAAgATYCFCAAQdqNgIAANgIQIABBFDYCDEEAIRAMhgILIAAoAgQhFyAAQQA2AgQgECARp2oiFiEBIAAgFyAQIBYgFBsiEBC1gICAACIURQ2NASAAQQc2AhwgACAQNgIUIAAgFDYCDEEAIRAMhQILIAAgAC8BMEGAAXI7ATAgASEBC0EqIRAM6gELIBBBFUYN0QEgAEEANgIcIAAgATYCFCAAQYOMgIAANgIQIABBEzYCDEEAIRAMggILIBBBFUYNzwEgAEEANgIcIAAgATYCFCAAQZqPgIAANgIQIABBIjYCDEEAIRAMgQILIAAoAgQhECAAQQA2AgQCQCAAIBAgARC3gICAACIQDQAgAUEBaiEBDI0BCyAAQQw2AhwgACAQNgIMIAAgAUEBajYCFEEAIRAMgAILIBBBFUYNzAEgAEEANgIcIAAgATYCFCAAQZqPgIAANgIQIABBIjYCDEEAIRAM/wELIAAoAgQhECAAQQA2AgQCQCAAIBAgARC3gICAACIQDQAgAUEBaiEBDIwBCyAAQQ02AhwgACAQNgIMIAAgAUEBajYCFEEAIRAM/gELIBBBFUYNyQEgAEEANgIcIAAgATYCFCAAQcaMgIAANgIQIABBIzYCDEEAIRAM/QELIAAoAgQhECAAQQA2AgQCQCAAIBAgARC5gICAACIQDQAgAUEBaiEBDIsBCyAAQQ42AhwgACAQNgIMIAAgAUEBajYCFEEAIRAM/AELIABBADYCHCAAIAE2AhQgAEHAlYCAADYCECAAQQI2AgxBACEQDPsBCyAQQRVGDcUBIABBADYCHCAAIAE2AhQgAEHGjICAADYCECAAQSM2AgxBACEQDPoBCyAAQRA2AhwgACABNgIUIAAgEDYCDEEAIRAM+QELIAAoAgQhBCAAQQA2AgQCQCAAIAQgARC5gICAACIEDQAgAUEBaiEBDPEBCyAAQRE2AhwgACAENgIMIAAgAUEBajYCFEEAIRAM+AELIBBBFUYNwQEgAEEANgIcIAAgATYCFCAAQcaMgIAANgIQIABBIzYCDEEAIRAM9wELIAAoAgQhECAAQQA2AgQCQCAAIBAgARC5gICAACIQDQAgAUEBaiEBDIgBCyAAQRM2AhwgACAQNgIMIAAgAUEBajYCFEEAIRAM9gELIAAoAgQhBCAAQQA2AgQCQCAAIAQgARC5gICAACIEDQAgAUEBaiEBDO0BCyAAQRQ2AhwgACAENgIMIAAgAUEBajYCFEEAIRAM9QELIBBBFUYNvQEgAEEANgIcIAAgATYCFCAAQZqPgIAANgIQIABBIjYCDEEAIRAM9AELIAAoAgQhECAAQQA2AgQCQCAAIBAgARC3gICAACIQDQAgAUEBaiEBDIYBCyAAQRY2AhwgACAQNgIMIAAgAUEBajYCFEEAIRAM8wELIAAoAgQhBCAAQQA2AgQCQCAAIAQgARC3gICAACIEDQAgAUEBaiEBDOkBCyAAQRc2AhwgACAENgIMIAAgAUEBajYCFEEAIRAM8gELIABBADYCHCAAIAE2AhQgAEHNk4CAADYCECAAQQw2AgxBACEQDPEBC0IBIRELIBBBAWohAQJAIAApAyAiEkL//////////w9WDQAgACASQgSGIBGENwMgIAEhAQyEAQsgAEEANgIcIAAgATYCFCAAQa2JgIAANgIQIABBDDYCDEEAIRAM7wELIABBADYCHCAAIBA2AhQgAEHNk4CAADYCECAAQQw2AgxBACEQDO4BCyAAKAIEIRcgAEEANgIEIBAgEadqIhYhASAAIBcgECAWIBQbIhAQtYCAgAAiFEUNcyAAQQU2AhwgACAQNgIUIAAgFDYCDEEAIRAM7QELIABBADYCHCAAIBA2AhQgAEGqnICAADYCECAAQQ82AgxBACEQDOwBCyAAIBAgAhC0gICAACIBDQEgECEBC0EOIRAM0QELAkAgAUEVRw0AIABBAjYCHCAAIBA2AhQgAEGwmICAADYCECAAQRU2AgxBACEQDOoBCyAAQQA2AhwgACAQNgIUIABBp46AgAA2AhAgAEESNgIMQQAhEAzpAQsgAUEBaiEQAkAgAC8BMCIBQYABcUUNAAJAIAAgECACELuAgIAAIgENACAQIQEMcAsgAUEVRw26ASAAQQU2AhwgACAQNgIUIABB+ZeAgAA2AhAgAEEVNgIMQQAhEAzpAQsCQCABQaAEcUGgBEcNACAALQAtQQJxDQAgAEEANgIcIAAgEDYCFCAAQZaTgIAANgIQIABBBDYCDEEAIRAM6QELIAAgECACEL2AgIAAGiAQIQECQAJAAkACQAJAIAAgECACELOAgIAADhYCAQAEBAQEBAQEBAQEBAQEBAQEBAQDBAsgAEEBOgAuCyAAIAAvATBBwAByOwEwIBAhAQtBJiEQDNEBCyAAQSM2AhwgACAQNgIUIABBpZaAgAA2AhAgAEEVNgIMQQAhEAzpAQsgAEEANgIcIAAgEDYCFCAAQdWLgIAANgIQIABBETYCDEEAIRAM6AELIAAtAC1BAXFFDQFBwwEhEAzOAQsCQCANIAJGDQADQAJAIA0tAABBIEYNACANIQEMxAELIA1BAWoiDSACRw0AC0ElIRAM5wELQSUhEAzmAQsgACgCBCEEIABBADYCBCAAIAQgDRCvgICAACIERQ2tASAAQSY2AhwgACAENgIMIAAgDUEBajYCFEEAIRAM5QELIBBBFUYNqwEgAEEANgIcIAAgATYCFCAAQf2NgIAANgIQIABBHTYCDEEAIRAM5AELIABBJzYCHCAAIAE2AhQgACAQNgIMQQAhEAzjAQsgECEBQQEhFAJAAkACQAJAAkACQAJAIAAtACxBfmoOBwYFBQMBAgAFCyAAIAAvATBBCHI7ATAMAwtBAiEUDAELQQQhFAsgAEEBOgAsIAAgAC8BMCAUcjsBMAsgECEBC0ErIRAMygELIABBADYCHCAAIBA2AhQgAEGrkoCAADYCECAAQQs2AgxBACEQDOIBCyAAQQA2AhwgACABNgIUIABB4Y+AgAA2AhAgAEEKNgIMQQAhEAzhAQsgAEEAOgAsIBAhAQy9AQsgECEBQQEhFAJAAkACQAJAAkAgAC0ALEF7ag4EAwECAAULIAAgAC8BMEEIcjsBMAwDC0ECIRQMAQtBBCEUCyAAQQE6ACwgACAALwEwIBRyOwEwCyAQIQELQSkhEAzFAQsgAEEANgIcIAAgATYCFCAAQfCUgIAANgIQIABBAzYCDEEAIRAM3QELAkAgDi0AAEENRw0AIAAoAgQhASAAQQA2AgQCQCAAIAEgDhCxgICAACIBDQAgDkEBaiEBDHULIABBLDYCHCAAIAE2AgwgACAOQQFqNgIUQQAhEAzdAQsgAC0ALUEBcUUNAUHEASEQDMMBCwJAIA4gAkcNAEEtIRAM3AELAkACQANAAkAgDi0AAEF2ag4EAgAAAwALIA5BAWoiDiACRw0AC0EtIRAM3QELIAAoAgQhASAAQQA2AgQCQCAAIAEgDhCxgICAACIBDQAgDiEBDHQLIABBLDYCHCAAIA42AhQgACABNgIMQQAhEAzcAQsgACgCBCEBIABBADYCBAJAIAAgASAOELGAgIAAIgENACAOQQFqIQEMcwsgAEEsNgIcIAAgATYCDCAAIA5BAWo2AhRBACEQDNsBCyAAKAIEIQQgAEEANgIEIAAgBCAOELGAgIAAIgQNoAEgDiEBDM4BCyAQQSxHDQEgAUEBaiEQQQEhAQJAAkACQAJAAkAgAC0ALEF7ag4EAwECBAALIBAhAQwEC0ECIQEMAQtBBCEBCyAAQQE6ACwgACAALwEwIAFyOwEwIBAhAQwBCyAAIAAvATBBCHI7ATAgECEBC0E5IRAMvwELIABBADoALCABIQELQTQhEAy9AQsgACAALwEwQSByOwEwIAEhAQwCCyAAKAIEIQQgAEEANgIEAkAgACAEIAEQsYCAgAAiBA0AIAEhAQzHAQsgAEE3NgIcIAAgATYCFCAAIAQ2AgxBACEQDNQBCyAAQQg6ACwgASEBC0EwIRAMuQELAkAgAC0AKEEBRg0AIAEhAQwECyAALQAtQQhxRQ2TASABIQEMAwsgAC0AMEEgcQ2UAUHFASEQDLcBCwJAIA8gAkYNAAJAA0ACQCAPLQAAQVBqIgFB/wFxQQpJDQAgDyEBQTUhEAy6AQsgACkDICIRQpmz5syZs+bMGVYNASAAIBFCCn4iETcDICARIAGtQv8BgyISQn+FVg0BIAAgESASfDcDICAPQQFqIg8gAkcNAAtBOSEQDNEBCyAAKAIEIQIgAEEANgIEIAAgAiAPQQFqIgQQsYCAgAAiAg2VASAEIQEMwwELQTkhEAzPAQsCQCAALwEwIgFBCHFFDQAgAC0AKEEBRw0AIAAtAC1BCHFFDZABCyAAIAFB9/sDcUGABHI7ATAgDyEBC0E3IRAMtAELIAAgAC8BMEEQcjsBMAyrAQsgEEEVRg2LASAAQQA2AhwgACABNgIUIABB8I6AgAA2AhAgAEEcNgIMQQAhEAzLAQsgAEHDADYCHCAAIAE2AgwgACANQQFqNgIUQQAhEAzKAQsCQCABLQAAQTpHDQAgACgCBCEQIABBADYCBAJAIAAgECABEK+AgIAAIhANACABQQFqIQEMYwsgAEHDADYCHCAAIBA2AgwgACABQQFqNgIUQQAhEAzKAQsgAEEANgIcIAAgATYCFCAAQbGRgIAANgIQIABBCjYCDEEAIRAMyQELIABBADYCHCAAIAE2AhQgAEGgmYCAADYCECAAQR42AgxBACEQDMgBCyAAQQA2AgALIABBgBI7ASogACAXQQFqIgEgAhCogICAACIQDQEgASEBC0HHACEQDKwBCyAQQRVHDYMBIABB0QA2AhwgACABNgIUIABB45eAgAA2AhAgAEEVNgIMQQAhEAzEAQsgACgCBCEQIABBADYCBAJAIAAgECABEKeAgIAAIhANACABIQEMXgsgAEHSADYCHCAAIAE2AhQgACAQNgIMQQAhEAzDAQsgAEEANgIcIAAgFDYCFCAAQcGogIAANgIQIABBBzYCDCAAQQA2AgBBACEQDMIBCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQp4CAgAAiEA0AIAEhAQxdCyAAQdMANgIcIAAgATYCFCAAIBA2AgxBACEQDMEBC0EAIRAgAEEANgIcIAAgATYCFCAAQYCRgIAANgIQIABBCTYCDAzAAQsgEEEVRg19IABBADYCHCAAIAE2AhQgAEGUjYCAADYCECAAQSE2AgxBACEQDL8BC0EBIRZBACEXQQAhFEEBIRALIAAgEDoAKyABQQFqIQECQAJAIAAtAC1BEHENAAJAAkACQCAALQAqDgMBAAIECyAWRQ0DDAILIBQNAQwCCyAXRQ0BCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQrYCAgAAiEA0AIAEhAQxcCyAAQdgANgIcIAAgATYCFCAAIBA2AgxBACEQDL4BCyAAKAIEIQQgAEEANgIEAkAgACAEIAEQrYCAgAAiBA0AIAEhAQytAQsgAEHZADYCHCAAIAE2AhQgACAENgIMQQAhEAy9AQsgACgCBCEEIABBADYCBAJAIAAgBCABEK2AgIAAIgQNACABIQEMqwELIABB2gA2AhwgACABNgIUIAAgBDYCDEEAIRAMvAELIAAoAgQhBCAAQQA2AgQCQCAAIAQgARCtgICAACIEDQAgASEBDKkBCyAAQdwANgIcIAAgATYCFCAAIAQ2AgxBACEQDLsBCwJAIAEtAABBUGoiEEH/AXFBCk8NACAAIBA6ACogAUEBaiEBQc8AIRAMogELIAAoAgQhBCAAQQA2AgQCQCAAIAQgARCtgICAACIEDQAgASEBDKcBCyAAQd4ANgIcIAAgATYCFCAAIAQ2AgxBACEQDLoBCyAAQQA2AgAgF0EBaiEBAkAgAC0AKUEjTw0AIAEhAQxZCyAAQQA2AhwgACABNgIUIABB04mAgAA2AhAgAEEINgIMQQAhEAy5AQsgAEEANgIAC0EAIRAgAEEANgIcIAAgATYCFCAAQZCzgIAANgIQIABBCDYCDAy3AQsgAEEANgIAIBdBAWohAQJAIAAtAClBIUcNACABIQEMVgsgAEEANgIcIAAgATYCFCAAQZuKgIAANgIQIABBCDYCDEEAIRAMtgELIABBADYCACAXQQFqIQECQCAALQApIhBBXWpBC08NACABIQEMVQsCQCAQQQZLDQBBASAQdEHKAHFFDQAgASEBDFULQQAhECAAQQA2AhwgACABNgIUIABB94mAgAA2AhAgAEEINgIMDLUBCyAQQRVGDXEgAEEANgIcIAAgATYCFCAAQbmNgIAANgIQIABBGjYCDEEAIRAMtAELIAAoAgQhECAAQQA2AgQCQCAAIBAgARCngICAACIQDQAgASEBDFQLIABB5QA2AhwgACABNgIUIAAgEDYCDEEAIRAMswELIAAoAgQhECAAQQA2AgQCQCAAIBAgARCngICAACIQDQAgASEBDE0LIABB0gA2AhwgACABNgIUIAAgEDYCDEEAIRAMsgELIAAoAgQhECAAQQA2AgQCQCAAIBAgARCngICAACIQDQAgASEBDE0LIABB0wA2AhwgACABNgIUIAAgEDYCDEEAIRAMsQELIAAoAgQhECAAQQA2AgQCQCAAIBAgARCngICAACIQDQAgASEBDFELIABB5QA2AhwgACABNgIUIAAgEDYCDEEAIRAMsAELIABBADYCHCAAIAE2AhQgAEHGioCAADYCECAAQQc2AgxBACEQDK8BCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQp4CAgAAiEA0AIAEhAQxJCyAAQdIANgIcIAAgATYCFCAAIBA2AgxBACEQDK4BCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQp4CAgAAiEA0AIAEhAQxJCyAAQdMANgIcIAAgATYCFCAAIBA2AgxBACEQDK0BCyAAKAIEIRAgAEEANgIEAkAgACAQIAEQp4CAgAAiEA0AIAEhAQxNCyAAQeUANgIcIAAgATYCFCAAIBA2AgxBACEQDKwBCyAAQQA2AhwgACABNgIUIABB3IiAgAA2AhAgAEEHNgIMQQAhEAyrAQsgEEE/Rw0BIAFBAWohAQtBBSEQDJABC0EAIRAgAEEANgIcIAAgATYCFCAAQf2SgIAANgIQIABBBzYCDAyoAQsgACgCBCEQIABBADYCBAJAIAAgECABEKeAgIAAIhANACABIQEMQgsgAEHSADYCHCAAIAE2AhQgACAQNgIMQQAhEAynAQsgACgCBCEQIABBADYCBAJAIAAgECABEKeAgIAAIhANACABIQEMQgsgAEHTADYCHCAAIAE2AhQgACAQNgIMQQAhEAymAQsgACgCBCEQIABBADYCBAJAIAAgECABEKeAgIAAIhANACABIQEMRgsgAEHlADYCHCAAIAE2AhQgACAQNgIMQQAhEAylAQsgACgCBCEBIABBADYCBAJAIAAgASAUEKeAgIAAIgENACAUIQEMPwsgAEHSADYCHCAAIBQ2AhQgACABNgIMQQAhEAykAQsgACgCBCEBIABBADYCBAJAIAAgASAUEKeAgIAAIgENACAUIQEMPwsgAEHTADYCHCAAIBQ2AhQgACABNgIMQQAhEAyjAQsgACgCBCEBIABBADYCBAJAIAAgASAUEKeAgIAAIgENACAUIQEMQwsgAEHlADYCHCAAIBQ2AhQgACABNgIMQQAhEAyiAQsgAEEANgIcIAAgFDYCFCAAQcOPgIAANgIQIABBBzYCDEEAIRAMoQELIABBADYCHCAAIAE2AhQgAEHDj4CAADYCECAAQQc2AgxBACEQDKABC0EAIRAgAEEANgIcIAAgFDYCFCAAQYycgIAANgIQIABBBzYCDAyfAQsgAEEANgIcIAAgFDYCFCAAQYycgIAANgIQIABBBzYCDEEAIRAMngELIABBADYCHCAAIBQ2AhQgAEH+kYCAADYCECAAQQc2AgxBACEQDJ0BCyAAQQA2AhwgACABNgIUIABBjpuAgAA2AhAgAEEGNgIMQQAhEAycAQsgEEEVRg1XIABBADYCHCAAIAE2AhQgAEHMjoCAADYCECAAQSA2AgxBACEQDJsBCyAAQQA2AgAgEEEBaiEBQSQhEAsgACAQOgApIAAoAgQhECAAQQA2AgQgACAQIAEQq4CAgAAiEA1UIAEhAQw+CyAAQQA2AgALQQAhECAAQQA2AhwgACAENgIUIABB8ZuAgAA2AhAgAEEGNgIMDJcBCyABQRVGDVAgAEEANgIcIAAgBTYCFCAAQfCMgIAANgIQIABBGzYCDEEAIRAMlgELIAAoAgQhBSAAQQA2AgQgACAFIBAQqYCAgAAiBQ0BIBBBAWohBQtBrQEhEAx7CyAAQcEBNgIcIAAgBTYCDCAAIBBBAWo2AhRBACEQDJMBCyAAKAIEIQYgAEEANgIEIAAgBiAQEKmAgIAAIgYNASAQQQFqIQYLQa4BIRAMeAsgAEHCATYCHCAAIAY2AgwgACAQQQFqNgIUQQAhEAyQAQsgAEEANgIcIAAgBzYCFCAAQZeLgIAANgIQIABBDTYCDEEAIRAMjwELIABBADYCHCAAIAg2AhQgAEHjkICAADYCECAAQQk2AgxBACEQDI4BCyAAQQA2AhwgACAINgIUIABBlI2AgAA2AhAgAEEhNgIMQQAhEAyNAQtBASEWQQAhF0EAIRRBASEQCyAAIBA6ACsgCUEBaiEIAkACQCAALQAtQRBxDQACQAJAAkAgAC0AKg4DAQACBAsgFkUNAwwCCyAUDQEMAgsgF0UNAQsgACgCBCEQIABBADYCBCAAIBAgCBCtgICAACIQRQ09IABByQE2AhwgACAINgIUIAAgEDYCDEEAIRAMjAELIAAoAgQhBCAAQQA2AgQgACAEIAgQrYCAgAAiBEUNdiAAQcoBNgIcIAAgCDYCFCAAIAQ2AgxBACEQDIsBCyAAKAIEIQQgAEEANgIEIAAgBCAJEK2AgIAAIgRFDXQgAEHLATYCHCAAIAk2AhQgACAENgIMQQAhEAyKAQsgACgCBCEEIABBADYCBCAAIAQgChCtgICAACIERQ1yIABBzQE2AhwgACAKNgIUIAAgBDYCDEEAIRAMiQELAkAgCy0AAEFQaiIQQf8BcUEKTw0AIAAgEDoAKiALQQFqIQpBtgEhEAxwCyAAKAIEIQQgAEEANgIEIAAgBCALEK2AgIAAIgRFDXAgAEHPATYCHCAAIAs2AhQgACAENgIMQQAhEAyIAQsgAEEANgIcIAAgBDYCFCAAQZCzgIAANgIQIABBCDYCDCAAQQA2AgBBACEQDIcBCyABQRVGDT8gAEEANgIcIAAgDDYCFCAAQcyOgIAANgIQIABBIDYCDEEAIRAMhgELIABBgQQ7ASggACgCBCEQIABCADcDACAAIBAgDEEBaiIMEKuAgIAAIhBFDTggAEHTATYCHCAAIAw2AhQgACAQNgIMQQAhEAyFAQsgAEEANgIAC0EAIRAgAEEANgIcIAAgBDYCFCAAQdibgIAANgIQIABBCDYCDAyDAQsgACgCBCEQIABCADcDACAAIBAgC0EBaiILEKuAgIAAIhANAUHGASEQDGkLIABBAjoAKAxVCyAAQdUBNgIcIAAgCzYCFCAAIBA2AgxBACEQDIABCyAQQRVGDTcgAEEANgIcIAAgBDYCFCAAQaSMgIAANgIQIABBEDYCDEEAIRAMfwsgAC0ANEEBRw00IAAgBCACELyAgIAAIhBFDTQgEEEVRw01IABB3AE2AhwgACAENgIUIABB1ZaAgAA2AhAgAEEVNgIMQQAhEAx+C0EAIRAgAEEANgIcIABBr4uAgAA2AhAgAEECNgIMIAAgFEEBajYCFAx9C0EAIRAMYwtBAiEQDGILQQ0hEAxhC0EPIRAMYAtBJSEQDF8LQRMhEAxeC0EVIRAMXQtBFiEQDFwLQRchEAxbC0EYIRAMWgtBGSEQDFkLQRohEAxYC0EbIRAMVwtBHCEQDFYLQR0hEAxVC0EfIRAMVAtBISEQDFMLQSMhEAxSC0HGACEQDFELQS4hEAxQC0EvIRAMTwtBOyEQDE4LQT0hEAxNC0HIACEQDEwLQckAIRAMSwtBywAhEAxKC0HMACEQDEkLQc4AIRAMSAtB0QAhEAxHC0HVACEQDEYLQdgAIRAMRQtB2QAhEAxEC0HbACEQDEMLQeQAIRAMQgtB5QAhEAxBC0HxACEQDEALQfQAIRAMPwtBjQEhEAw+C0GXASEQDD0LQakBIRAMPAtBrAEhEAw7C0HAASEQDDoLQbkBIRAMOQtBrwEhEAw4C0GxASEQDDcLQbIBIRAMNgtBtAEhEAw1C0G1ASEQDDQLQboBIRAMMwtBvQEhEAwyC0G/ASEQDDELQcEBIRAMMAsgAEEANgIcIAAgBDYCFCAAQemLgIAANgIQIABBHzYCDEEAIRAMSAsgAEHbATYCHCAAIAQ2AhQgAEH6loCAADYCECAAQRU2AgxBACEQDEcLIABB+AA2AhwgACAMNgIUIABBypiAgAA2AhAgAEEVNgIMQQAhEAxGCyAAQdEANgIcIAAgBTYCFCAAQbCXgIAANgIQIABBFTYCDEEAIRAMRQsgAEH5ADYCHCAAIAE2AhQgACAQNgIMQQAhEAxECyAAQfgANgIcIAAgATYCFCAAQcqYgIAANgIQIABBFTYCDEEAIRAMQwsgAEHkADYCHCAAIAE2AhQgAEHjl4CAADYCECAAQRU2AgxBACEQDEILIABB1wA2AhwgACABNgIUIABByZeAgAA2AhAgAEEVNgIMQQAhEAxBCyAAQQA2AhwgACABNgIUIABBuY2AgAA2AhAgAEEaNgIMQQAhEAxACyAAQcIANgIcIAAgATYCFCAAQeOYgIAANgIQIABBFTYCDEEAIRAMPwsgAEEANgIEIAAgDyAPELGAgIAAIgRFDQEgAEE6NgIcIAAgBDYCDCAAIA9BAWo2AhRBACEQDD4LIAAoAgQhBCAAQQA2AgQCQCAAIAQgARCxgICAACIERQ0AIABBOzYCHCAAIAQ2AgwgACABQQFqNgIUQQAhEAw+CyABQQFqIQEMLQsgD0EBaiEBDC0LIABBADYCHCAAIA82AhQgAEHkkoCAADYCECAAQQQ2AgxBACEQDDsLIABBNjYCHCAAIAQ2AhQgACACNgIMQQAhEAw6CyAAQS42AhwgACAONgIUIAAgBDYCDEEAIRAMOQsgAEHQADYCHCAAIAE2AhQgAEGRmICAADYCECAAQRU2AgxBACEQDDgLIA1BAWohAQwsCyAAQRU2AhwgACABNgIUIABBgpmAgAA2AhAgAEEVNgIMQQAhEAw2CyAAQRs2AhwgACABNgIUIABBkZeAgAA2AhAgAEEVNgIMQQAhEAw1CyAAQQ82AhwgACABNgIUIABBkZeAgAA2AhAgAEEVNgIMQQAhEAw0CyAAQQs2AhwgACABNgIUIABBkZeAgAA2AhAgAEEVNgIMQQAhEAwzCyAAQRo2AhwgACABNgIUIABBgpmAgAA2AhAgAEEVNgIMQQAhEAwyCyAAQQs2AhwgACABNgIUIABBgpmAgAA2AhAgAEEVNgIMQQAhEAwxCyAAQQo2AhwgACABNgIUIABB5JaAgAA2AhAgAEEVNgIMQQAhEAwwCyAAQR42AhwgACABNgIUIABB+ZeAgAA2AhAgAEEVNgIMQQAhEAwvCyAAQQA2AhwgACAQNgIUIABB2o2AgAA2AhAgAEEUNgIMQQAhEAwuCyAAQQQ2AhwgACABNgIUIABBsJiAgAA2AhAgAEEVNgIMQQAhEAwtCyAAQQA2AgAgC0EBaiELC0G4ASEQDBILIABBADYCACAQQQFqIQFB9QAhEAwRCyABIQECQCAALQApQQVHDQBB4wAhEAwRC0HiACEQDBALQQAhECAAQQA2AhwgAEHkkYCAADYCECAAQQc2AgwgACAUQQFqNgIUDCgLIABBADYCACAXQQFqIQFBwAAhEAwOC0EBIQELIAAgAToALCAAQQA2AgAgF0EBaiEBC0EoIRAMCwsgASEBC0E4IRAMCQsCQCABIg8gAkYNAANAAkAgDy0AAEGAvoCAAGotAAAiAUEBRg0AIAFBAkcNAyAPQQFqIQEMBAsgD0EBaiIPIAJHDQALQT4hEAwiC0E+IRAMIQsgAEEAOgAsIA8hAQwBC0ELIRAMBgtBOiEQDAULIAFBAWohAUEtIRAMBAsgACABOgAsIABBADYCACAWQQFqIQFBDCEQDAMLIABBADYCACAXQQFqIQFBCiEQDAILIABBADYCAAsgAEEAOgAsIA0hAUEJIRAMAAsLQQAhECAAQQA2AhwgACALNgIUIABBzZCAgAA2AhAgAEEJNgIMDBcLQQAhECAAQQA2AhwgACAKNgIUIABB6YqAgAA2AhAgAEEJNgIMDBYLQQAhECAAQQA2AhwgACAJNgIUIABBt5CAgAA2AhAgAEEJNgIMDBULQQAhECAAQQA2AhwgACAINgIUIABBnJGAgAA2AhAgAEEJNgIMDBQLQQAhECAAQQA2AhwgACABNgIUIABBzZCAgAA2AhAgAEEJNgIMDBMLQQAhECAAQQA2AhwgACABNgIUIABB6YqAgAA2AhAgAEEJNgIMDBILQQAhECAAQQA2AhwgACABNgIUIABBt5CAgAA2AhAgAEEJNgIMDBELQQAhECAAQQA2AhwgACABNgIUIABBnJGAgAA2AhAgAEEJNgIMDBALQQAhECAAQQA2AhwgACABNgIUIABBl5WAgAA2AhAgAEEPNgIMDA8LQQAhECAAQQA2AhwgACABNgIUIABBl5WAgAA2AhAgAEEPNgIMDA4LQQAhECAAQQA2AhwgACABNgIUIABBwJKAgAA2AhAgAEELNgIMDA0LQQAhECAAQQA2AhwgACABNgIUIABBlYmAgAA2AhAgAEELNgIMDAwLQQAhECAAQQA2AhwgACABNgIUIABB4Y+AgAA2AhAgAEEKNgIMDAsLQQAhECAAQQA2AhwgACABNgIUIABB+4+AgAA2AhAgAEEKNgIMDAoLQQAhECAAQQA2AhwgACABNgIUIABB8ZmAgAA2AhAgAEECNgIMDAkLQQAhECAAQQA2AhwgACABNgIUIABBxJSAgAA2AhAgAEECNgIMDAgLQQAhECAAQQA2AhwgACABNgIUIABB8pWAgAA2AhAgAEECNgIMDAcLIABBAjYCHCAAIAE2AhQgAEGcmoCAADYCECAAQRY2AgxBACEQDAYLQQEhEAwFC0HUACEQIAEiBCACRg0EIANBCGogACAEIAJB2MKAgABBChDFgICAACADKAIMIQQgAygCCA4DAQQCAAsQyoCAgAAACyAAQQA2AhwgAEG1moCAADYCECAAQRc2AgwgACAEQQFqNgIUQQAhEAwCCyAAQQA2AhwgACAENgIUIABBypqAgAA2AhAgAEEJNgIMQQAhEAwBCwJAIAEiBCACRw0AQSIhEAwBCyAAQYmAgIAANgIIIAAgBDYCBEEhIRALIANBEGokgICAgAAgEAuvAQECfyABKAIAIQYCQAJAIAIgA0YNACAEIAZqIQQgBiADaiACayEHIAIgBkF/cyAFaiIGaiEFA0ACQCACLQAAIAQtAABGDQBBAiEEDAMLAkAgBg0AQQAhBCAFIQIMAwsgBkF/aiEGIARBAWohBCACQQFqIgIgA0cNAAsgByEGIAMhAgsgAEEBNgIAIAEgBjYCACAAIAI2AgQPCyABQQA2AgAgACAENgIAIAAgAjYCBAsKACAAEMeAgIAAC/I2AQt/I4CAgIAAQRBrIgEkgICAgAACQEEAKAKg0ICAAA0AQQAQy4CAgABBgNSEgABrIgJB2QBJDQBBACEDAkBBACgC4NOAgAAiBA0AQQBCfzcC7NOAgABBAEKAgISAgIDAADcC5NOAgABBACABQQhqQXBxQdiq1aoFcyIENgLg04CAAEEAQQA2AvTTgIAAQQBBADYCxNOAgAALQQAgAjYCzNOAgABBAEGA1ISAADYCyNOAgABBAEGA1ISAADYCmNCAgABBACAENgKs0ICAAEEAQX82AqjQgIAAA0AgA0HE0ICAAGogA0G40ICAAGoiBDYCACAEIANBsNCAgABqIgU2AgAgA0G80ICAAGogBTYCACADQczQgIAAaiADQcDQgIAAaiIFNgIAIAUgBDYCACADQdTQgIAAaiADQcjQgIAAaiIENgIAIAQgBTYCACADQdDQgIAAaiAENgIAIANBIGoiA0GAAkcNAAtBgNSEgABBeEGA1ISAAGtBD3FBAEGA1ISAAEEIakEPcRsiA2oiBEEEaiACQUhqIgUgA2siA0EBcjYCAEEAQQAoAvDTgIAANgKk0ICAAEEAIAM2ApTQgIAAQQAgBDYCoNCAgABBgNSEgAAgBWpBODYCBAsCQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAEHsAUsNAAJAQQAoAojQgIAAIgZBECAAQRNqQXBxIABBC0kbIgJBA3YiBHYiA0EDcUUNAAJAAkAgA0EBcSAEckEBcyIFQQN0IgRBsNCAgABqIgMgBEG40ICAAGooAgAiBCgCCCICRw0AQQAgBkF+IAV3cTYCiNCAgAAMAQsgAyACNgIIIAIgAzYCDAsgBEEIaiEDIAQgBUEDdCIFQQNyNgIEIAQgBWoiBCAEKAIEQQFyNgIEDAwLIAJBACgCkNCAgAAiB00NAQJAIANFDQACQAJAIAMgBHRBAiAEdCIDQQAgA2tycSIDQQAgA2txQX9qIgMgA0EMdkEQcSIDdiIEQQV2QQhxIgUgA3IgBCAFdiIDQQJ2QQRxIgRyIAMgBHYiA0EBdkECcSIEciADIAR2IgNBAXZBAXEiBHIgAyAEdmoiBEEDdCIDQbDQgIAAaiIFIANBuNCAgABqKAIAIgMoAggiAEcNAEEAIAZBfiAEd3EiBjYCiNCAgAAMAQsgBSAANgIIIAAgBTYCDAsgAyACQQNyNgIEIAMgBEEDdCIEaiAEIAJrIgU2AgAgAyACaiIAIAVBAXI2AgQCQCAHRQ0AIAdBeHFBsNCAgABqIQJBACgCnNCAgAAhBAJAAkAgBkEBIAdBA3Z0IghxDQBBACAGIAhyNgKI0ICAACACIQgMAQsgAigCCCEICyAIIAQ2AgwgAiAENgIIIAQgAjYCDCAEIAg2AggLIANBCGohA0EAIAA2ApzQgIAAQQAgBTYCkNCAgAAMDAtBACgCjNCAgAAiCUUNASAJQQAgCWtxQX9qIgMgA0EMdkEQcSIDdiIEQQV2QQhxIgUgA3IgBCAFdiIDQQJ2QQRxIgRyIAMgBHYiA0EBdkECcSIEciADIAR2IgNBAXZBAXEiBHIgAyAEdmpBAnRBuNKAgABqKAIAIgAoAgRBeHEgAmshBCAAIQUCQANAAkAgBSgCECIDDQAgBUEUaigCACIDRQ0CCyADKAIEQXhxIAJrIgUgBCAFIARJIgUbIQQgAyAAIAUbIQAgAyEFDAALCyAAKAIYIQoCQCAAKAIMIgggAEYNACAAKAIIIgNBACgCmNCAgABJGiAIIAM2AgggAyAINgIMDAsLAkAgAEEUaiIFKAIAIgMNACAAKAIQIgNFDQMgAEEQaiEFCwNAIAUhCyADIghBFGoiBSgCACIDDQAgCEEQaiEFIAgoAhAiAw0ACyALQQA2AgAMCgtBfyECIABBv39LDQAgAEETaiIDQXBxIQJBACgCjNCAgAAiB0UNAEEAIQsCQCACQYACSQ0AQR8hCyACQf///wdLDQAgA0EIdiIDIANBgP4/akEQdkEIcSIDdCIEIARBgOAfakEQdkEEcSIEdCIFIAVBgIAPakEQdkECcSIFdEEPdiADIARyIAVyayIDQQF0IAIgA0EVanZBAXFyQRxqIQsLQQAgAmshBAJAAkACQAJAIAtBAnRBuNKAgABqKAIAIgUNAEEAIQNBACEIDAELQQAhAyACQQBBGSALQQF2ayALQR9GG3QhAEEAIQgDQAJAIAUoAgRBeHEgAmsiBiAETw0AIAYhBCAFIQggBg0AQQAhBCAFIQggBSEDDAMLIAMgBUEUaigCACIGIAYgBSAAQR12QQRxakEQaigCACIFRhsgAyAGGyEDIABBAXQhACAFDQALCwJAIAMgCHINAEEAIQhBAiALdCIDQQAgA2tyIAdxIgNFDQMgA0EAIANrcUF/aiIDIANBDHZBEHEiA3YiBUEFdkEIcSIAIANyIAUgAHYiA0ECdkEEcSIFciADIAV2IgNBAXZBAnEiBXIgAyAFdiIDQQF2QQFxIgVyIAMgBXZqQQJ0QbjSgIAAaigCACEDCyADRQ0BCwNAIAMoAgRBeHEgAmsiBiAESSEAAkAgAygCECIFDQAgA0EUaigCACEFCyAGIAQgABshBCADIAggABshCCAFIQMgBQ0ACwsgCEUNACAEQQAoApDQgIAAIAJrTw0AIAgoAhghCwJAIAgoAgwiACAIRg0AIAgoAggiA0EAKAKY0ICAAEkaIAAgAzYCCCADIAA2AgwMCQsCQCAIQRRqIgUoAgAiAw0AIAgoAhAiA0UNAyAIQRBqIQULA0AgBSEGIAMiAEEUaiIFKAIAIgMNACAAQRBqIQUgACgCECIDDQALIAZBADYCAAwICwJAQQAoApDQgIAAIgMgAkkNAEEAKAKc0ICAACEEAkACQCADIAJrIgVBEEkNACAEIAJqIgAgBUEBcjYCBEEAIAU2ApDQgIAAQQAgADYCnNCAgAAgBCADaiAFNgIAIAQgAkEDcjYCBAwBCyAEIANBA3I2AgQgBCADaiIDIAMoAgRBAXI2AgRBAEEANgKc0ICAAEEAQQA2ApDQgIAACyAEQQhqIQMMCgsCQEEAKAKU0ICAACIAIAJNDQBBACgCoNCAgAAiAyACaiIEIAAgAmsiBUEBcjYCBEEAIAU2ApTQgIAAQQAgBDYCoNCAgAAgAyACQQNyNgIEIANBCGohAwwKCwJAAkBBACgC4NOAgABFDQBBACgC6NOAgAAhBAwBC0EAQn83AuzTgIAAQQBCgICEgICAwAA3AuTTgIAAQQAgAUEMakFwcUHYqtWqBXM2AuDTgIAAQQBBADYC9NOAgABBAEEANgLE04CAAEGAgAQhBAtBACEDAkAgBCACQccAaiIHaiIGQQAgBGsiC3EiCCACSw0AQQBBMDYC+NOAgAAMCgsCQEEAKALA04CAACIDRQ0AAkBBACgCuNOAgAAiBCAIaiIFIARNDQAgBSADTQ0BC0EAIQNBAEEwNgL404CAAAwKC0EALQDE04CAAEEEcQ0EAkACQAJAQQAoAqDQgIAAIgRFDQBByNOAgAAhAwNAAkAgAygCACIFIARLDQAgBSADKAIEaiAESw0DCyADKAIIIgMNAAsLQQAQy4CAgAAiAEF/Rg0FIAghBgJAQQAoAuTTgIAAIgNBf2oiBCAAcUUNACAIIABrIAQgAGpBACADa3FqIQYLIAYgAk0NBSAGQf7///8HSw0FAkBBACgCwNOAgAAiA0UNAEEAKAK404CAACIEIAZqIgUgBE0NBiAFIANLDQYLIAYQy4CAgAAiAyAARw0BDAcLIAYgAGsgC3EiBkH+////B0sNBCAGEMuAgIAAIgAgAygCACADKAIEakYNAyAAIQMLAkAgA0F/Rg0AIAJByABqIAZNDQACQCAHIAZrQQAoAujTgIAAIgRqQQAgBGtxIgRB/v///wdNDQAgAyEADAcLAkAgBBDLgICAAEF/Rg0AIAQgBmohBiADIQAMBwtBACAGaxDLgICAABoMBAsgAyEAIANBf0cNBQwDC0EAIQgMBwtBACEADAULIABBf0cNAgtBAEEAKALE04CAAEEEcjYCxNOAgAALIAhB/v///wdLDQEgCBDLgICAACEAQQAQy4CAgAAhAyAAQX9GDQEgA0F/Rg0BIAAgA08NASADIABrIgYgAkE4ak0NAQtBAEEAKAK404CAACAGaiIDNgK404CAAAJAIANBACgCvNOAgABNDQBBACADNgK804CAAAsCQAJAAkACQEEAKAKg0ICAACIERQ0AQcjTgIAAIQMDQCAAIAMoAgAiBSADKAIEIghqRg0CIAMoAggiAw0ADAMLCwJAAkBBACgCmNCAgAAiA0UNACAAIANPDQELQQAgADYCmNCAgAALQQAhA0EAIAY2AszTgIAAQQAgADYCyNOAgABBAEF/NgKo0ICAAEEAQQAoAuDTgIAANgKs0ICAAEEAQQA2AtTTgIAAA0AgA0HE0ICAAGogA0G40ICAAGoiBDYCACAEIANBsNCAgABqIgU2AgAgA0G80ICAAGogBTYCACADQczQgIAAaiADQcDQgIAAaiIFNgIAIAUgBDYCACADQdTQgIAAaiADQcjQgIAAaiIENgIAIAQgBTYCACADQdDQgIAAaiAENgIAIANBIGoiA0GAAkcNAAsgAEF4IABrQQ9xQQAgAEEIakEPcRsiA2oiBCAGQUhqIgUgA2siA0EBcjYCBEEAQQAoAvDTgIAANgKk0ICAAEEAIAM2ApTQgIAAQQAgBDYCoNCAgAAgACAFakE4NgIEDAILIAMtAAxBCHENACAEIAVJDQAgBCAATw0AIARBeCAEa0EPcUEAIARBCGpBD3EbIgVqIgBBACgClNCAgAAgBmoiCyAFayIFQQFyNgIEIAMgCCAGajYCBEEAQQAoAvDTgIAANgKk0ICAAEEAIAU2ApTQgIAAQQAgADYCoNCAgAAgBCALakE4NgIEDAELAkAgAEEAKAKY0ICAACIITw0AQQAgADYCmNCAgAAgACEICyAAIAZqIQVByNOAgAAhAwJAAkACQAJAAkACQAJAA0AgAygCACAFRg0BIAMoAggiAw0ADAILCyADLQAMQQhxRQ0BC0HI04CAACEDA0ACQCADKAIAIgUgBEsNACAFIAMoAgRqIgUgBEsNAwsgAygCCCEDDAALCyADIAA2AgAgAyADKAIEIAZqNgIEIABBeCAAa0EPcUEAIABBCGpBD3EbaiILIAJBA3I2AgQgBUF4IAVrQQ9xQQAgBUEIakEPcRtqIgYgCyACaiICayEDAkAgBiAERw0AQQAgAjYCoNCAgABBAEEAKAKU0ICAACADaiIDNgKU0ICAACACIANBAXI2AgQMAwsCQCAGQQAoApzQgIAARw0AQQAgAjYCnNCAgABBAEEAKAKQ0ICAACADaiIDNgKQ0ICAACACIANBAXI2AgQgAiADaiADNgIADAMLAkAgBigCBCIEQQNxQQFHDQAgBEF4cSEHAkACQCAEQf8BSw0AIAYoAggiBSAEQQN2IghBA3RBsNCAgABqIgBGGgJAIAYoAgwiBCAFRw0AQQBBACgCiNCAgABBfiAId3E2AojQgIAADAILIAQgAEYaIAQgBTYCCCAFIAQ2AgwMAQsgBigCGCEJAkACQCAGKAIMIgAgBkYNACAGKAIIIgQgCEkaIAAgBDYCCCAEIAA2AgwMAQsCQCAGQRRqIgQoAgAiBQ0AIAZBEGoiBCgCACIFDQBBACEADAELA0AgBCEIIAUiAEEUaiIEKAIAIgUNACAAQRBqIQQgACgCECIFDQALIAhBADYCAAsgCUUNAAJAAkAgBiAGKAIcIgVBAnRBuNKAgABqIgQoAgBHDQAgBCAANgIAIAANAUEAQQAoAozQgIAAQX4gBXdxNgKM0ICAAAwCCyAJQRBBFCAJKAIQIAZGG2ogADYCACAARQ0BCyAAIAk2AhgCQCAGKAIQIgRFDQAgACAENgIQIAQgADYCGAsgBigCFCIERQ0AIABBFGogBDYCACAEIAA2AhgLIAcgA2ohAyAGIAdqIgYoAgQhBAsgBiAEQX5xNgIEIAIgA2ogAzYCACACIANBAXI2AgQCQCADQf8BSw0AIANBeHFBsNCAgABqIQQCQAJAQQAoAojQgIAAIgVBASADQQN2dCIDcQ0AQQAgBSADcjYCiNCAgAAgBCEDDAELIAQoAgghAwsgAyACNgIMIAQgAjYCCCACIAQ2AgwgAiADNgIIDAMLQR8hBAJAIANB////B0sNACADQQh2IgQgBEGA/j9qQRB2QQhxIgR0IgUgBUGA4B9qQRB2QQRxIgV0IgAgAEGAgA9qQRB2QQJxIgB0QQ92IAQgBXIgAHJrIgRBAXQgAyAEQRVqdkEBcXJBHGohBAsgAiAENgIcIAJCADcCECAEQQJ0QbjSgIAAaiEFAkBBACgCjNCAgAAiAEEBIAR0IghxDQAgBSACNgIAQQAgACAIcjYCjNCAgAAgAiAFNgIYIAIgAjYCCCACIAI2AgwMAwsgA0EAQRkgBEEBdmsgBEEfRht0IQQgBSgCACEAA0AgACIFKAIEQXhxIANGDQIgBEEddiEAIARBAXQhBCAFIABBBHFqQRBqIggoAgAiAA0ACyAIIAI2AgAgAiAFNgIYIAIgAjYCDCACIAI2AggMAgsgAEF4IABrQQ9xQQAgAEEIakEPcRsiA2oiCyAGQUhqIgggA2siA0EBcjYCBCAAIAhqQTg2AgQgBCAFQTcgBWtBD3FBACAFQUlqQQ9xG2pBQWoiCCAIIARBEGpJGyIIQSM2AgRBAEEAKALw04CAADYCpNCAgABBACADNgKU0ICAAEEAIAs2AqDQgIAAIAhBEGpBACkC0NOAgAA3AgAgCEEAKQLI04CAADcCCEEAIAhBCGo2AtDTgIAAQQAgBjYCzNOAgABBACAANgLI04CAAEEAQQA2AtTTgIAAIAhBJGohAwNAIANBBzYCACADQQRqIgMgBUkNAAsgCCAERg0DIAggCCgCBEF+cTYCBCAIIAggBGsiADYCACAEIABBAXI2AgQCQCAAQf8BSw0AIABBeHFBsNCAgABqIQMCQAJAQQAoAojQgIAAIgVBASAAQQN2dCIAcQ0AQQAgBSAAcjYCiNCAgAAgAyEFDAELIAMoAgghBQsgBSAENgIMIAMgBDYCCCAEIAM2AgwgBCAFNgIIDAQLQR8hAwJAIABB////B0sNACAAQQh2IgMgA0GA/j9qQRB2QQhxIgN0IgUgBUGA4B9qQRB2QQRxIgV0IgggCEGAgA9qQRB2QQJxIgh0QQ92IAMgBXIgCHJrIgNBAXQgACADQRVqdkEBcXJBHGohAwsgBCADNgIcIARCADcCECADQQJ0QbjSgIAAaiEFAkBBACgCjNCAgAAiCEEBIAN0IgZxDQAgBSAENgIAQQAgCCAGcjYCjNCAgAAgBCAFNgIYIAQgBDYCCCAEIAQ2AgwMBAsgAEEAQRkgA0EBdmsgA0EfRht0IQMgBSgCACEIA0AgCCIFKAIEQXhxIABGDQMgA0EddiEIIANBAXQhAyAFIAhBBHFqQRBqIgYoAgAiCA0ACyAGIAQ2AgAgBCAFNgIYIAQgBDYCDCAEIAQ2AggMAwsgBSgCCCIDIAI2AgwgBSACNgIIIAJBADYCGCACIAU2AgwgAiADNgIICyALQQhqIQMMBQsgBSgCCCIDIAQ2AgwgBSAENgIIIARBADYCGCAEIAU2AgwgBCADNgIIC0EAKAKU0ICAACIDIAJNDQBBACgCoNCAgAAiBCACaiIFIAMgAmsiA0EBcjYCBEEAIAM2ApTQgIAAQQAgBTYCoNCAgAAgBCACQQNyNgIEIARBCGohAwwDC0EAIQNBAEEwNgL404CAAAwCCwJAIAtFDQACQAJAIAggCCgCHCIFQQJ0QbjSgIAAaiIDKAIARw0AIAMgADYCACAADQFBACAHQX4gBXdxIgc2AozQgIAADAILIAtBEEEUIAsoAhAgCEYbaiAANgIAIABFDQELIAAgCzYCGAJAIAgoAhAiA0UNACAAIAM2AhAgAyAANgIYCyAIQRRqKAIAIgNFDQAgAEEUaiADNgIAIAMgADYCGAsCQAJAIARBD0sNACAIIAQgAmoiA0EDcjYCBCAIIANqIgMgAygCBEEBcjYCBAwBCyAIIAJqIgAgBEEBcjYCBCAIIAJBA3I2AgQgACAEaiAENgIAAkAgBEH/AUsNACAEQXhxQbDQgIAAaiEDAkACQEEAKAKI0ICAACIFQQEgBEEDdnQiBHENAEEAIAUgBHI2AojQgIAAIAMhBAwBCyADKAIIIQQLIAQgADYCDCADIAA2AgggACADNgIMIAAgBDYCCAwBC0EfIQMCQCAEQf///wdLDQAgBEEIdiIDIANBgP4/akEQdkEIcSIDdCIFIAVBgOAfakEQdkEEcSIFdCICIAJBgIAPakEQdkECcSICdEEPdiADIAVyIAJyayIDQQF0IAQgA0EVanZBAXFyQRxqIQMLIAAgAzYCHCAAQgA3AhAgA0ECdEG40oCAAGohBQJAIAdBASADdCICcQ0AIAUgADYCAEEAIAcgAnI2AozQgIAAIAAgBTYCGCAAIAA2AgggACAANgIMDAELIARBAEEZIANBAXZrIANBH0YbdCEDIAUoAgAhAgJAA0AgAiIFKAIEQXhxIARGDQEgA0EddiECIANBAXQhAyAFIAJBBHFqQRBqIgYoAgAiAg0ACyAGIAA2AgAgACAFNgIYIAAgADYCDCAAIAA2AggMAQsgBSgCCCIDIAA2AgwgBSAANgIIIABBADYCGCAAIAU2AgwgACADNgIICyAIQQhqIQMMAQsCQCAKRQ0AAkACQCAAIAAoAhwiBUECdEG40oCAAGoiAygCAEcNACADIAg2AgAgCA0BQQAgCUF+IAV3cTYCjNCAgAAMAgsgCkEQQRQgCigCECAARhtqIAg2AgAgCEUNAQsgCCAKNgIYAkAgACgCECIDRQ0AIAggAzYCECADIAg2AhgLIABBFGooAgAiA0UNACAIQRRqIAM2AgAgAyAINgIYCwJAAkAgBEEPSw0AIAAgBCACaiIDQQNyNgIEIAAgA2oiAyADKAIEQQFyNgIEDAELIAAgAmoiBSAEQQFyNgIEIAAgAkEDcjYCBCAFIARqIAQ2AgACQCAHRQ0AIAdBeHFBsNCAgABqIQJBACgCnNCAgAAhAwJAAkBBASAHQQN2dCIIIAZxDQBBACAIIAZyNgKI0ICAACACIQgMAQsgAigCCCEICyAIIAM2AgwgAiADNgIIIAMgAjYCDCADIAg2AggLQQAgBTYCnNCAgABBACAENgKQ0ICAAAsgAEEIaiEDCyABQRBqJICAgIAAIAMLCgAgABDJgICAAAviDQEHfwJAIABFDQAgAEF4aiIBIABBfGooAgAiAkF4cSIAaiEDAkAgAkEBcQ0AIAJBA3FFDQEgASABKAIAIgJrIgFBACgCmNCAgAAiBEkNASACIABqIQACQCABQQAoApzQgIAARg0AAkAgAkH/AUsNACABKAIIIgQgAkEDdiIFQQN0QbDQgIAAaiIGRhoCQCABKAIMIgIgBEcNAEEAQQAoAojQgIAAQX4gBXdxNgKI0ICAAAwDCyACIAZGGiACIAQ2AgggBCACNgIMDAILIAEoAhghBwJAAkAgASgCDCIGIAFGDQAgASgCCCICIARJGiAGIAI2AgggAiAGNgIMDAELAkAgAUEUaiICKAIAIgQNACABQRBqIgIoAgAiBA0AQQAhBgwBCwNAIAIhBSAEIgZBFGoiAigCACIEDQAgBkEQaiECIAYoAhAiBA0ACyAFQQA2AgALIAdFDQECQAJAIAEgASgCHCIEQQJ0QbjSgIAAaiICKAIARw0AIAIgBjYCACAGDQFBAEEAKAKM0ICAAEF+IAR3cTYCjNCAgAAMAwsgB0EQQRQgBygCECABRhtqIAY2AgAgBkUNAgsgBiAHNgIYAkAgASgCECICRQ0AIAYgAjYCECACIAY2AhgLIAEoAhQiAkUNASAGQRRqIAI2AgAgAiAGNgIYDAELIAMoAgQiAkEDcUEDRw0AIAMgAkF+cTYCBEEAIAA2ApDQgIAAIAEgAGogADYCACABIABBAXI2AgQPCyABIANPDQAgAygCBCICQQFxRQ0AAkACQCACQQJxDQACQCADQQAoAqDQgIAARw0AQQAgATYCoNCAgABBAEEAKAKU0ICAACAAaiIANgKU0ICAACABIABBAXI2AgQgAUEAKAKc0ICAAEcNA0EAQQA2ApDQgIAAQQBBADYCnNCAgAAPCwJAIANBACgCnNCAgABHDQBBACABNgKc0ICAAEEAQQAoApDQgIAAIABqIgA2ApDQgIAAIAEgAEEBcjYCBCABIABqIAA2AgAPCyACQXhxIABqIQACQAJAIAJB/wFLDQAgAygCCCIEIAJBA3YiBUEDdEGw0ICAAGoiBkYaAkAgAygCDCICIARHDQBBAEEAKAKI0ICAAEF+IAV3cTYCiNCAgAAMAgsgAiAGRhogAiAENgIIIAQgAjYCDAwBCyADKAIYIQcCQAJAIAMoAgwiBiADRg0AIAMoAggiAkEAKAKY0ICAAEkaIAYgAjYCCCACIAY2AgwMAQsCQCADQRRqIgIoAgAiBA0AIANBEGoiAigCACIEDQBBACEGDAELA0AgAiEFIAQiBkEUaiICKAIAIgQNACAGQRBqIQIgBigCECIEDQALIAVBADYCAAsgB0UNAAJAAkAgAyADKAIcIgRBAnRBuNKAgABqIgIoAgBHDQAgAiAGNgIAIAYNAUEAQQAoAozQgIAAQX4gBHdxNgKM0ICAAAwCCyAHQRBBFCAHKAIQIANGG2ogBjYCACAGRQ0BCyAGIAc2AhgCQCADKAIQIgJFDQAgBiACNgIQIAIgBjYCGAsgAygCFCICRQ0AIAZBFGogAjYCACACIAY2AhgLIAEgAGogADYCACABIABBAXI2AgQgAUEAKAKc0ICAAEcNAUEAIAA2ApDQgIAADwsgAyACQX5xNgIEIAEgAGogADYCACABIABBAXI2AgQLAkAgAEH/AUsNACAAQXhxQbDQgIAAaiECAkACQEEAKAKI0ICAACIEQQEgAEEDdnQiAHENAEEAIAQgAHI2AojQgIAAIAIhAAwBCyACKAIIIQALIAAgATYCDCACIAE2AgggASACNgIMIAEgADYCCA8LQR8hAgJAIABB////B0sNACAAQQh2IgIgAkGA/j9qQRB2QQhxIgJ0IgQgBEGA4B9qQRB2QQRxIgR0IgYgBkGAgA9qQRB2QQJxIgZ0QQ92IAIgBHIgBnJrIgJBAXQgACACQRVqdkEBcXJBHGohAgsgASACNgIcIAFCADcCECACQQJ0QbjSgIAAaiEEAkACQEEAKAKM0ICAACIGQQEgAnQiA3ENACAEIAE2AgBBACAGIANyNgKM0ICAACABIAQ2AhggASABNgIIIAEgATYCDAwBCyAAQQBBGSACQQF2ayACQR9GG3QhAiAEKAIAIQYCQANAIAYiBCgCBEF4cSAARg0BIAJBHXYhBiACQQF0IQIgBCAGQQRxakEQaiIDKAIAIgYNAAsgAyABNgIAIAEgBDYCGCABIAE2AgwgASABNgIIDAELIAQoAggiACABNgIMIAQgATYCCCABQQA2AhggASAENgIMIAEgADYCCAtBAEEAKAKo0ICAAEF/aiIBQX8gARs2AqjQgIAACwsEAAAAC04AAkAgAA0APwBBEHQPCwJAIABB//8DcQ0AIABBf0wNAAJAIABBEHZAACIAQX9HDQBBAEEwNgL404CAAEF/DwsgAEEQdA8LEMqAgIAAAAvyAgIDfwF+AkAgAkUNACAAIAE6AAAgAiAAaiIDQX9qIAE6AAAgAkEDSQ0AIAAgAToAAiAAIAE6AAEgA0F9aiABOgAAIANBfmogAToAACACQQdJDQAgACABOgADIANBfGogAToAACACQQlJDQAgAEEAIABrQQNxIgRqIgMgAUH/AXFBgYKECGwiATYCACADIAIgBGtBfHEiBGoiAkF8aiABNgIAIARBCUkNACADIAE2AgggAyABNgIEIAJBeGogATYCACACQXRqIAE2AgAgBEEZSQ0AIAMgATYCGCADIAE2AhQgAyABNgIQIAMgATYCDCACQXBqIAE2AgAgAkFsaiABNgIAIAJBaGogATYCACACQWRqIAE2AgAgBCADQQRxQRhyIgVrIgJBIEkNACABrUKBgICAEH4hBiADIAVqIQEDQCABIAY3AxggASAGNwMQIAEgBjcDCCABIAY3AwAgAUEgaiEBIAJBYGoiAkEfSw0ACwsgAAsLjkgBAEGACAuGSAEAAAACAAAAAwAAAAAAAAAAAAAABAAAAAUAAAAAAAAAAAAAAAYAAAAHAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASW52YWxpZCBjaGFyIGluIHVybCBxdWVyeQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2JvZHkAQ29udGVudC1MZW5ndGggb3ZlcmZsb3cAQ2h1bmsgc2l6ZSBvdmVyZmxvdwBSZXNwb25zZSBvdmVyZmxvdwBJbnZhbGlkIG1ldGhvZCBmb3IgSFRUUC94LnggcmVxdWVzdABJbnZhbGlkIG1ldGhvZCBmb3IgUlRTUC94LnggcmVxdWVzdABFeHBlY3RlZCBTT1VSQ0UgbWV0aG9kIGZvciBJQ0UveC54IHJlcXVlc3QASW52YWxpZCBjaGFyIGluIHVybCBmcmFnbWVudCBzdGFydABFeHBlY3RlZCBkb3QAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9zdGF0dXMASW52YWxpZCByZXNwb25zZSBzdGF0dXMASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucwBVc2VyIGNhbGxiYWNrIGVycm9yAGBvbl9yZXNldGAgY2FsbGJhY2sgZXJyb3IAYG9uX2NodW5rX2hlYWRlcmAgY2FsbGJhY2sgZXJyb3IAYG9uX21lc3NhZ2VfYmVnaW5gIGNhbGxiYWNrIGVycm9yAGBvbl9jaHVua19leHRlbnNpb25fdmFsdWVgIGNhbGxiYWNrIGVycm9yAGBvbl9zdGF0dXNfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl92ZXJzaW9uX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fdXJsX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9oZWFkZXJfdmFsdWVfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9tZXNzYWdlX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fbWV0aG9kX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25faGVhZGVyX2ZpZWxkX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfZXh0ZW5zaW9uX25hbWVgIGNhbGxiYWNrIGVycm9yAFVuZXhwZWN0ZWQgY2hhciBpbiB1cmwgc2VydmVyAEludmFsaWQgaGVhZGVyIHZhbHVlIGNoYXIASW52YWxpZCBoZWFkZXIgZmllbGQgY2hhcgBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX3ZlcnNpb24ASW52YWxpZCBtaW5vciB2ZXJzaW9uAEludmFsaWQgbWFqb3IgdmVyc2lvbgBFeHBlY3RlZCBzcGFjZSBhZnRlciB2ZXJzaW9uAEV4cGVjdGVkIENSTEYgYWZ0ZXIgdmVyc2lvbgBJbnZhbGlkIEhUVFAgdmVyc2lvbgBJbnZhbGlkIGhlYWRlciB0b2tlbgBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX3VybABJbnZhbGlkIGNoYXJhY3RlcnMgaW4gdXJsAFVuZXhwZWN0ZWQgc3RhcnQgY2hhciBpbiB1cmwARG91YmxlIEAgaW4gdXJsAEVtcHR5IENvbnRlbnQtTGVuZ3RoAEludmFsaWQgY2hhcmFjdGVyIGluIENvbnRlbnQtTGVuZ3RoAER1cGxpY2F0ZSBDb250ZW50LUxlbmd0aABJbnZhbGlkIGNoYXIgaW4gdXJsIHBhdGgAQ29udGVudC1MZW5ndGggY2FuJ3QgYmUgcHJlc2VudCB3aXRoIFRyYW5zZmVyLUVuY29kaW5nAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIHNpemUAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9oZWFkZXJfdmFsdWUAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9jaHVua19leHRlbnNpb25fdmFsdWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyB2YWx1ZQBNaXNzaW5nIGV4cGVjdGVkIExGIGFmdGVyIGhlYWRlciB2YWx1ZQBJbnZhbGlkIGBUcmFuc2Zlci1FbmNvZGluZ2AgaGVhZGVyIHZhbHVlAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMgcXVvdGUgdmFsdWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyBxdW90ZWQgdmFsdWUAUGF1c2VkIGJ5IG9uX2hlYWRlcnNfY29tcGxldGUASW52YWxpZCBFT0Ygc3RhdGUAb25fcmVzZXQgcGF1c2UAb25fY2h1bmtfaGVhZGVyIHBhdXNlAG9uX21lc3NhZ2VfYmVnaW4gcGF1c2UAb25fY2h1bmtfZXh0ZW5zaW9uX3ZhbHVlIHBhdXNlAG9uX3N0YXR1c19jb21wbGV0ZSBwYXVzZQBvbl92ZXJzaW9uX2NvbXBsZXRlIHBhdXNlAG9uX3VybF9jb21wbGV0ZSBwYXVzZQBvbl9jaHVua19jb21wbGV0ZSBwYXVzZQBvbl9oZWFkZXJfdmFsdWVfY29tcGxldGUgcGF1c2UAb25fbWVzc2FnZV9jb21wbGV0ZSBwYXVzZQBvbl9tZXRob2RfY29tcGxldGUgcGF1c2UAb25faGVhZGVyX2ZpZWxkX2NvbXBsZXRlIHBhdXNlAG9uX2NodW5rX2V4dGVuc2lvbl9uYW1lIHBhdXNlAFVuZXhwZWN0ZWQgc3BhY2UgYWZ0ZXIgc3RhcnQgbGluZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2NodW5rX2V4dGVuc2lvbl9uYW1lAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMgbmFtZQBQYXVzZSBvbiBDT05ORUNUL1VwZ3JhZGUAUGF1c2Ugb24gUFJJL1VwZ3JhZGUARXhwZWN0ZWQgSFRUUC8yIENvbm5lY3Rpb24gUHJlZmFjZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX21ldGhvZABFeHBlY3RlZCBzcGFjZSBhZnRlciBtZXRob2QAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9oZWFkZXJfZmllbGQAUGF1c2VkAEludmFsaWQgd29yZCBlbmNvdW50ZXJlZABJbnZhbGlkIG1ldGhvZCBlbmNvdW50ZXJlZABVbmV4cGVjdGVkIGNoYXIgaW4gdXJsIHNjaGVtYQBSZXF1ZXN0IGhhcyBpbnZhbGlkIGBUcmFuc2Zlci1FbmNvZGluZ2AAU1dJVENIX1BST1hZAFVTRV9QUk9YWQBNS0FDVElWSVRZAFVOUFJPQ0VTU0FCTEVfRU5USVRZAENPUFkATU9WRURfUEVSTUFORU5UTFkAVE9PX0VBUkxZAE5PVElGWQBGQUlMRURfREVQRU5ERU5DWQBCQURfR0FURVdBWQBQTEFZAFBVVABDSEVDS09VVABHQVRFV0FZX1RJTUVPVVQAUkVRVUVTVF9USU1FT1VUAE5FVFdPUktfQ09OTkVDVF9USU1FT1VUAENPTk5FQ1RJT05fVElNRU9VVABMT0dJTl9USU1FT1VUAE5FVFdPUktfUkVBRF9USU1FT1VUAFBPU1QATUlTRElSRUNURURfUkVRVUVTVABDTElFTlRfQ0xPU0VEX1JFUVVFU1QAQ0xJRU5UX0NMT1NFRF9MT0FEX0JBTEFOQ0VEX1JFUVVFU1QAQkFEX1JFUVVFU1QASFRUUF9SRVFVRVNUX1NFTlRfVE9fSFRUUFNfUE9SVABSRVBPUlQASU1fQV9URUFQT1QAUkVTRVRfQ09OVEVOVABOT19DT05URU5UAFBBUlRJQUxfQ09OVEVOVABIUEVfSU5WQUxJRF9DT05TVEFOVABIUEVfQ0JfUkVTRVQAR0VUAEhQRV9TVFJJQ1QAQ09ORkxJQ1QAVEVNUE9SQVJZX1JFRElSRUNUAFBFUk1BTkVOVF9SRURJUkVDVABDT05ORUNUAE1VTFRJX1NUQVRVUwBIUEVfSU5WQUxJRF9TVEFUVVMAVE9PX01BTllfUkVRVUVTVFMARUFSTFlfSElOVFMAVU5BVkFJTEFCTEVfRk9SX0xFR0FMX1JFQVNPTlMAT1BUSU9OUwBTV0lUQ0hJTkdfUFJPVE9DT0xTAFZBUklBTlRfQUxTT19ORUdPVElBVEVTAE1VTFRJUExFX0NIT0lDRVMASU5URVJOQUxfU0VSVkVSX0VSUk9SAFdFQl9TRVJWRVJfVU5LTk9XTl9FUlJPUgBSQUlMR1VOX0VSUk9SAElERU5USVRZX1BST1ZJREVSX0FVVEhFTlRJQ0FUSU9OX0VSUk9SAFNTTF9DRVJUSUZJQ0FURV9FUlJPUgBJTlZBTElEX1hfRk9SV0FSREVEX0ZPUgBTRVRfUEFSQU1FVEVSAEdFVF9QQVJBTUVURVIASFBFX1VTRVIAU0VFX09USEVSAEhQRV9DQl9DSFVOS19IRUFERVIATUtDQUxFTkRBUgBTRVRVUABXRUJfU0VSVkVSX0lTX0RPV04AVEVBUkRPV04ASFBFX0NMT1NFRF9DT05ORUNUSU9OAEhFVVJJU1RJQ19FWFBJUkFUSU9OAERJU0NPTk5FQ1RFRF9PUEVSQVRJT04ATk9OX0FVVEhPUklUQVRJVkVfSU5GT1JNQVRJT04ASFBFX0lOVkFMSURfVkVSU0lPTgBIUEVfQ0JfTUVTU0FHRV9CRUdJTgBTSVRFX0lTX0ZST1pFTgBIUEVfSU5WQUxJRF9IRUFERVJfVE9LRU4ASU5WQUxJRF9UT0tFTgBGT1JCSURERU4ARU5IQU5DRV9ZT1VSX0NBTE0ASFBFX0lOVkFMSURfVVJMAEJMT0NLRURfQllfUEFSRU5UQUxfQ09OVFJPTABNS0NPTABBQ0wASFBFX0lOVEVSTkFMAFJFUVVFU1RfSEVBREVSX0ZJRUxEU19UT09fTEFSR0VfVU5PRkZJQ0lBTABIUEVfT0sAVU5MSU5LAFVOTE9DSwBQUkkAUkVUUllfV0lUSABIUEVfSU5WQUxJRF9DT05URU5UX0xFTkdUSABIUEVfVU5FWFBFQ1RFRF9DT05URU5UX0xFTkdUSABGTFVTSABQUk9QUEFUQ0gATS1TRUFSQ0gAVVJJX1RPT19MT05HAFBST0NFU1NJTkcATUlTQ0VMTEFORU9VU19QRVJTSVNURU5UX1dBUk5JTkcATUlTQ0VMTEFORU9VU19XQVJOSU5HAEhQRV9JTlZBTElEX1RSQU5TRkVSX0VOQ09ESU5HAEV4cGVjdGVkIENSTEYASFBFX0lOVkFMSURfQ0hVTktfU0laRQBNT1ZFAENPTlRJTlVFAEhQRV9DQl9TVEFUVVNfQ09NUExFVEUASFBFX0NCX0hFQURFUlNfQ09NUExFVEUASFBFX0NCX1ZFUlNJT05fQ09NUExFVEUASFBFX0NCX1VSTF9DT01QTEVURQBIUEVfQ0JfQ0hVTktfQ09NUExFVEUASFBFX0NCX0hFQURFUl9WQUxVRV9DT01QTEVURQBIUEVfQ0JfQ0hVTktfRVhURU5TSU9OX1ZBTFVFX0NPTVBMRVRFAEhQRV9DQl9DSFVOS19FWFRFTlNJT05fTkFNRV9DT01QTEVURQBIUEVfQ0JfTUVTU0FHRV9DT01QTEVURQBIUEVfQ0JfTUVUSE9EX0NPTVBMRVRFAEhQRV9DQl9IRUFERVJfRklFTERfQ09NUExFVEUAREVMRVRFAEhQRV9JTlZBTElEX0VPRl9TVEFURQBJTlZBTElEX1NTTF9DRVJUSUZJQ0FURQBQQVVTRQBOT19SRVNQT05TRQBVTlNVUFBPUlRFRF9NRURJQV9UWVBFAEdPTkUATk9UX0FDQ0VQVEFCTEUAU0VSVklDRV9VTkFWQUlMQUJMRQBSQU5HRV9OT1RfU0FUSVNGSUFCTEUAT1JJR0lOX0lTX1VOUkVBQ0hBQkxFAFJFU1BPTlNFX0lTX1NUQUxFAFBVUkdFAE1FUkdFAFJFUVVFU1RfSEVBREVSX0ZJRUxEU19UT09fTEFSR0UAUkVRVUVTVF9IRUFERVJfVE9PX0xBUkdFAFBBWUxPQURfVE9PX0xBUkdFAElOU1VGRklDSUVOVF9TVE9SQUdFAEhQRV9QQVVTRURfVVBHUkFERQBIUEVfUEFVU0VEX0gyX1VQR1JBREUAU09VUkNFAEFOTk9VTkNFAFRSQUNFAEhQRV9VTkVYUEVDVEVEX1NQQUNFAERFU0NSSUJFAFVOU1VCU0NSSUJFAFJFQ09SRABIUEVfSU5WQUxJRF9NRVRIT0QATk9UX0ZPVU5EAFBST1BGSU5EAFVOQklORABSRUJJTkQAVU5BVVRIT1JJWkVEAE1FVEhPRF9OT1RfQUxMT1dFRABIVFRQX1ZFUlNJT05fTk9UX1NVUFBPUlRFRABBTFJFQURZX1JFUE9SVEVEAEFDQ0VQVEVEAE5PVF9JTVBMRU1FTlRFRABMT09QX0RFVEVDVEVEAEhQRV9DUl9FWFBFQ1RFRABIUEVfTEZfRVhQRUNURUQAQ1JFQVRFRABJTV9VU0VEAEhQRV9QQVVTRUQAVElNRU9VVF9PQ0NVUkVEAFBBWU1FTlRfUkVRVUlSRUQAUFJFQ09ORElUSU9OX1JFUVVJUkVEAFBST1hZX0FVVEhFTlRJQ0FUSU9OX1JFUVVJUkVEAE5FVFdPUktfQVVUSEVOVElDQVRJT05fUkVRVUlSRUQATEVOR1RIX1JFUVVJUkVEAFNTTF9DRVJUSUZJQ0FURV9SRVFVSVJFRABVUEdSQURFX1JFUVVJUkVEAFBBR0VfRVhQSVJFRABQUkVDT05ESVRJT05fRkFJTEVEAEVYUEVDVEFUSU9OX0ZBSUxFRABSRVZBTElEQVRJT05fRkFJTEVEAFNTTF9IQU5EU0hBS0VfRkFJTEVEAExPQ0tFRABUUkFOU0ZPUk1BVElPTl9BUFBMSUVEAE5PVF9NT0RJRklFRABOT1RfRVhURU5ERUQAQkFORFdJRFRIX0xJTUlUX0VYQ0VFREVEAFNJVEVfSVNfT1ZFUkxPQURFRABIRUFEAEV4cGVjdGVkIEhUVFAvAABeEwAAJhMAADAQAADwFwAAnRMAABUSAAA5FwAA8BIAAAoQAAB1EgAArRIAAIITAABPFAAAfxAAAKAVAAAjFAAAiRIAAIsUAABNFQAA1BEAAM8UAAAQGAAAyRYAANwWAADBEQAA4BcAALsUAAB0FAAAfBUAAOUUAAAIFwAAHxAAAGUVAACjFAAAKBUAAAIVAACZFQAALBAAAIsZAABPDwAA1A4AAGoQAADOEAAAAhcAAIkOAABuEwAAHBMAAGYUAABWFwAAwRMAAM0TAABsEwAAaBcAAGYXAABfFwAAIhMAAM4PAABpDgAA2A4AAGMWAADLEwAAqg4AACgXAAAmFwAAxRMAAF0WAADoEQAAZxMAAGUTAADyFgAAcxMAAB0XAAD5FgAA8xEAAM8OAADOFQAADBIAALMRAAClEQAAYRAAADIXAAC7EwAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAgMCAgICAgAAAgIAAgIAAgICAgICAgICAgAEAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAIAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAIAAgICAgIAAAICAAICAAICAgICAgICAgIAAwAEAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgIAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsb3NlZWVwLWFsaXZlAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAQEBAQEBAQEBAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQFjaHVua2VkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQABAQEBAQAAAQEAAQEAAQEBAQEBAQEBAQAAAAAAAAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGVjdGlvbmVudC1sZW5ndGhvbnJveHktY29ubmVjdGlvbgAAAAAAAAAAAAAAAAAAAHJhbnNmZXItZW5jb2RpbmdwZ3JhZGUNCg0KDQpTTQ0KDQpUVFAvQ0UvVFNQLwAAAAAAAAAAAAAAAAECAAEDAAAAAAAAAAAAAAAAAAAAAAAABAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAAAAAAAAAAABAgABAwAAAAAAAAAAAAAAAAAAAAAAAAQBAQUBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAAAAAAAAAAAAQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAABAAACAAAAAAAAAAAAAAAAAAAAAAAAAwQAAAQEBAQEBAQEBAQEBQQEBAQEBAQEBAQEBAAEAAYHBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQABAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE5PVU5DRUVDS09VVE5FQ1RFVEVDUklCRUxVU0hFVEVBRFNFQVJDSFJHRUNUSVZJVFlMRU5EQVJWRU9USUZZUFRJT05TQ0hTRUFZU1RBVENIR0VPUkRJUkVDVE9SVFJDSFBBUkFNRVRFUlVSQ0VCU0NSSUJFQVJET1dOQUNFSU5ETktDS1VCU0NSSUJFSFRUUC9BRFRQLw==';\n\treturn llhttp_simdWasm;\n}\n\nvar client$1;\nvar hasRequiredClient$1;\n\nfunction requireClient$1 () {\n\tif (hasRequiredClient$1) return client$1;\n\thasRequiredClient$1 = 1;\n\n\t/* global WebAssembly */\n\n\tconst assert = require$$0$9;\n\tconst net = require$$0$a;\n\tconst http = require$$2$3;\n\tconst { pipeline } = require$$0$b;\n\tconst util = requireUtil$c();\n\tconst timers = requireTimers();\n\tconst Request = requireRequest$1();\n\tconst DispatcherBase = requireDispatcherBase();\n\tconst {\n\t  RequestContentLengthMismatchError,\n\t  ResponseContentLengthMismatchError,\n\t  InvalidArgumentError,\n\t  RequestAbortedError,\n\t  HeadersTimeoutError,\n\t  HeadersOverflowError,\n\t  SocketError,\n\t  InformationalError,\n\t  BodyTimeoutError,\n\t  HTTPParserError,\n\t  ResponseExceededMaxSizeError,\n\t  ClientDestroyedError\n\t} = requireErrors$3();\n\tconst buildConnector = requireConnect();\n\tconst {\n\t  kUrl,\n\t  kReset,\n\t  kServerName,\n\t  kClient,\n\t  kBusy,\n\t  kParser,\n\t  kConnect,\n\t  kBlocking,\n\t  kResuming,\n\t  kRunning,\n\t  kPending,\n\t  kSize,\n\t  kWriting,\n\t  kQueue,\n\t  kConnected,\n\t  kConnecting,\n\t  kNeedDrain,\n\t  kNoRef,\n\t  kKeepAliveDefaultTimeout,\n\t  kHostHeader,\n\t  kPendingIdx,\n\t  kRunningIdx,\n\t  kError,\n\t  kPipelining,\n\t  kSocket,\n\t  kKeepAliveTimeoutValue,\n\t  kMaxHeadersSize,\n\t  kKeepAliveMaxTimeout,\n\t  kKeepAliveTimeoutThreshold,\n\t  kHeadersTimeout,\n\t  kBodyTimeout,\n\t  kStrictContentLength,\n\t  kConnector,\n\t  kMaxRedirections,\n\t  kMaxRequests,\n\t  kCounter,\n\t  kClose,\n\t  kDestroy,\n\t  kDispatch,\n\t  kInterceptors,\n\t  kLocalAddress,\n\t  kMaxResponseSize,\n\t  kHTTPConnVersion,\n\t  // HTTP2\n\t  kHost,\n\t  kHTTP2Session,\n\t  kHTTP2SessionState,\n\t  kHTTP2BuildRequest,\n\t  kHTTP2CopyHeaders,\n\t  kHTTP1BuildRequest\n\t} = requireSymbols$4();\n\n\t/** @type {import('http2')} */\n\tlet http2;\n\ttry {\n\t  http2 = require('http2');\n\t} catch {\n\t  // @ts-ignore\n\t  http2 = { constants: {} };\n\t}\n\n\tconst {\n\t  constants: {\n\t    HTTP2_HEADER_AUTHORITY,\n\t    HTTP2_HEADER_METHOD,\n\t    HTTP2_HEADER_PATH,\n\t    HTTP2_HEADER_SCHEME,\n\t    HTTP2_HEADER_CONTENT_LENGTH,\n\t    HTTP2_HEADER_EXPECT,\n\t    HTTP2_HEADER_STATUS\n\t  }\n\t} = http2;\n\n\t// Experimental\n\tlet h2ExperimentalWarned = false;\n\n\tconst FastBuffer = Buffer[Symbol.species];\n\n\tconst kClosedResolve = Symbol('kClosedResolve');\n\n\tconst channels = {};\n\n\ttry {\n\t  const diagnosticsChannel = require('diagnostics_channel');\n\t  channels.sendHeaders = diagnosticsChannel.channel('undici:client:sendHeaders');\n\t  channels.beforeConnect = diagnosticsChannel.channel('undici:client:beforeConnect');\n\t  channels.connectError = diagnosticsChannel.channel('undici:client:connectError');\n\t  channels.connected = diagnosticsChannel.channel('undici:client:connected');\n\t} catch {\n\t  channels.sendHeaders = { hasSubscribers: false };\n\t  channels.beforeConnect = { hasSubscribers: false };\n\t  channels.connectError = { hasSubscribers: false };\n\t  channels.connected = { hasSubscribers: false };\n\t}\n\n\t/**\n\t * @type {import('../types/client').default}\n\t */\n\tclass Client extends DispatcherBase {\n\t  /**\n\t   *\n\t   * @param {string|URL} url\n\t   * @param {import('../types/client').Client.Options} options\n\t   */\n\t  constructor (url, {\n\t    interceptors,\n\t    maxHeaderSize,\n\t    headersTimeout,\n\t    socketTimeout,\n\t    requestTimeout,\n\t    connectTimeout,\n\t    bodyTimeout,\n\t    idleTimeout,\n\t    keepAlive,\n\t    keepAliveTimeout,\n\t    maxKeepAliveTimeout,\n\t    keepAliveMaxTimeout,\n\t    keepAliveTimeoutThreshold,\n\t    socketPath,\n\t    pipelining,\n\t    tls,\n\t    strictContentLength,\n\t    maxCachedSessions,\n\t    maxRedirections,\n\t    connect,\n\t    maxRequestsPerClient,\n\t    localAddress,\n\t    maxResponseSize,\n\t    autoSelectFamily,\n\t    autoSelectFamilyAttemptTimeout,\n\t    // h2\n\t    allowH2,\n\t    maxConcurrentStreams\n\t  } = {}) {\n\t    super();\n\n\t    if (keepAlive !== undefined) {\n\t      throw new InvalidArgumentError('unsupported keepAlive, use pipelining=0 instead')\n\t    }\n\n\t    if (socketTimeout !== undefined) {\n\t      throw new InvalidArgumentError('unsupported socketTimeout, use headersTimeout & bodyTimeout instead')\n\t    }\n\n\t    if (requestTimeout !== undefined) {\n\t      throw new InvalidArgumentError('unsupported requestTimeout, use headersTimeout & bodyTimeout instead')\n\t    }\n\n\t    if (idleTimeout !== undefined) {\n\t      throw new InvalidArgumentError('unsupported idleTimeout, use keepAliveTimeout instead')\n\t    }\n\n\t    if (maxKeepAliveTimeout !== undefined) {\n\t      throw new InvalidArgumentError('unsupported maxKeepAliveTimeout, use keepAliveMaxTimeout instead')\n\t    }\n\n\t    if (maxHeaderSize != null && !Number.isFinite(maxHeaderSize)) {\n\t      throw new InvalidArgumentError('invalid maxHeaderSize')\n\t    }\n\n\t    if (socketPath != null && typeof socketPath !== 'string') {\n\t      throw new InvalidArgumentError('invalid socketPath')\n\t    }\n\n\t    if (connectTimeout != null && (!Number.isFinite(connectTimeout) || connectTimeout < 0)) {\n\t      throw new InvalidArgumentError('invalid connectTimeout')\n\t    }\n\n\t    if (keepAliveTimeout != null && (!Number.isFinite(keepAliveTimeout) || keepAliveTimeout <= 0)) {\n\t      throw new InvalidArgumentError('invalid keepAliveTimeout')\n\t    }\n\n\t    if (keepAliveMaxTimeout != null && (!Number.isFinite(keepAliveMaxTimeout) || keepAliveMaxTimeout <= 0)) {\n\t      throw new InvalidArgumentError('invalid keepAliveMaxTimeout')\n\t    }\n\n\t    if (keepAliveTimeoutThreshold != null && !Number.isFinite(keepAliveTimeoutThreshold)) {\n\t      throw new InvalidArgumentError('invalid keepAliveTimeoutThreshold')\n\t    }\n\n\t    if (headersTimeout != null && (!Number.isInteger(headersTimeout) || headersTimeout < 0)) {\n\t      throw new InvalidArgumentError('headersTimeout must be a positive integer or zero')\n\t    }\n\n\t    if (bodyTimeout != null && (!Number.isInteger(bodyTimeout) || bodyTimeout < 0)) {\n\t      throw new InvalidArgumentError('bodyTimeout must be a positive integer or zero')\n\t    }\n\n\t    if (connect != null && typeof connect !== 'function' && typeof connect !== 'object') {\n\t      throw new InvalidArgumentError('connect must be a function or an object')\n\t    }\n\n\t    if (maxRedirections != null && (!Number.isInteger(maxRedirections) || maxRedirections < 0)) {\n\t      throw new InvalidArgumentError('maxRedirections must be a positive number')\n\t    }\n\n\t    if (maxRequestsPerClient != null && (!Number.isInteger(maxRequestsPerClient) || maxRequestsPerClient < 0)) {\n\t      throw new InvalidArgumentError('maxRequestsPerClient must be a positive number')\n\t    }\n\n\t    if (localAddress != null && (typeof localAddress !== 'string' || net.isIP(localAddress) === 0)) {\n\t      throw new InvalidArgumentError('localAddress must be valid string IP address')\n\t    }\n\n\t    if (maxResponseSize != null && (!Number.isInteger(maxResponseSize) || maxResponseSize < -1)) {\n\t      throw new InvalidArgumentError('maxResponseSize must be a positive number')\n\t    }\n\n\t    if (\n\t      autoSelectFamilyAttemptTimeout != null &&\n\t      (!Number.isInteger(autoSelectFamilyAttemptTimeout) || autoSelectFamilyAttemptTimeout < -1)\n\t    ) {\n\t      throw new InvalidArgumentError('autoSelectFamilyAttemptTimeout must be a positive number')\n\t    }\n\n\t    // h2\n\t    if (allowH2 != null && typeof allowH2 !== 'boolean') {\n\t      throw new InvalidArgumentError('allowH2 must be a valid boolean value')\n\t    }\n\n\t    if (maxConcurrentStreams != null && (typeof maxConcurrentStreams !== 'number' || maxConcurrentStreams < 1)) {\n\t      throw new InvalidArgumentError('maxConcurrentStreams must be a possitive integer, greater than 0')\n\t    }\n\n\t    if (typeof connect !== 'function') {\n\t      connect = buildConnector({\n\t        ...tls,\n\t        maxCachedSessions,\n\t        allowH2,\n\t        socketPath,\n\t        timeout: connectTimeout,\n\t        ...(util.nodeHasAutoSelectFamily && autoSelectFamily ? { autoSelectFamily, autoSelectFamilyAttemptTimeout } : undefined),\n\t        ...connect\n\t      });\n\t    }\n\n\t    this[kInterceptors] = interceptors && interceptors.Client && Array.isArray(interceptors.Client)\n\t      ? interceptors.Client\n\t      : [createRedirectInterceptor({ maxRedirections })];\n\t    this[kUrl] = util.parseOrigin(url);\n\t    this[kConnector] = connect;\n\t    this[kSocket] = null;\n\t    this[kPipelining] = pipelining != null ? pipelining : 1;\n\t    this[kMaxHeadersSize] = maxHeaderSize || http.maxHeaderSize;\n\t    this[kKeepAliveDefaultTimeout] = keepAliveTimeout == null ? 4e3 : keepAliveTimeout;\n\t    this[kKeepAliveMaxTimeout] = keepAliveMaxTimeout == null ? 600e3 : keepAliveMaxTimeout;\n\t    this[kKeepAliveTimeoutThreshold] = keepAliveTimeoutThreshold == null ? 1e3 : keepAliveTimeoutThreshold;\n\t    this[kKeepAliveTimeoutValue] = this[kKeepAliveDefaultTimeout];\n\t    this[kServerName] = null;\n\t    this[kLocalAddress] = localAddress != null ? localAddress : null;\n\t    this[kResuming] = 0; // 0, idle, 1, scheduled, 2 resuming\n\t    this[kNeedDrain] = 0; // 0, idle, 1, scheduled, 2 resuming\n\t    this[kHostHeader] = `host: ${this[kUrl].hostname}${this[kUrl].port ? `:${this[kUrl].port}` : ''}\\r\\n`;\n\t    this[kBodyTimeout] = bodyTimeout != null ? bodyTimeout : 300e3;\n\t    this[kHeadersTimeout] = headersTimeout != null ? headersTimeout : 300e3;\n\t    this[kStrictContentLength] = strictContentLength == null ? true : strictContentLength;\n\t    this[kMaxRedirections] = maxRedirections;\n\t    this[kMaxRequests] = maxRequestsPerClient;\n\t    this[kClosedResolve] = null;\n\t    this[kMaxResponseSize] = maxResponseSize > -1 ? maxResponseSize : -1;\n\t    this[kHTTPConnVersion] = 'h1';\n\n\t    // HTTP/2\n\t    this[kHTTP2Session] = null;\n\t    this[kHTTP2SessionState] = !allowH2\n\t      ? null\n\t      : {\n\t        // streams: null, // Fixed queue of streams - For future support of `push`\n\t          openStreams: 0, // Keep track of them to decide wether or not unref the session\n\t          maxConcurrentStreams: maxConcurrentStreams != null ? maxConcurrentStreams : 100 // Max peerConcurrentStreams for a Node h2 server\n\t        };\n\t    this[kHost] = `${this[kUrl].hostname}${this[kUrl].port ? `:${this[kUrl].port}` : ''}`;\n\n\t    // kQueue is built up of 3 sections separated by\n\t    // the kRunningIdx and kPendingIdx indices.\n\t    // |   complete   |   running   |   pending   |\n\t    //                ^ kRunningIdx ^ kPendingIdx ^ kQueue.length\n\t    // kRunningIdx points to the first running element.\n\t    // kPendingIdx points to the first pending element.\n\t    // This implements a fast queue with an amortized\n\t    // time of O(1).\n\n\t    this[kQueue] = [];\n\t    this[kRunningIdx] = 0;\n\t    this[kPendingIdx] = 0;\n\t  }\n\n\t  get pipelining () {\n\t    return this[kPipelining]\n\t  }\n\n\t  set pipelining (value) {\n\t    this[kPipelining] = value;\n\t    resume(this, true);\n\t  }\n\n\t  get [kPending] () {\n\t    return this[kQueue].length - this[kPendingIdx]\n\t  }\n\n\t  get [kRunning] () {\n\t    return this[kPendingIdx] - this[kRunningIdx]\n\t  }\n\n\t  get [kSize] () {\n\t    return this[kQueue].length - this[kRunningIdx]\n\t  }\n\n\t  get [kConnected] () {\n\t    return !!this[kSocket] && !this[kConnecting] && !this[kSocket].destroyed\n\t  }\n\n\t  get [kBusy] () {\n\t    const socket = this[kSocket];\n\t    return (\n\t      (socket && (socket[kReset] || socket[kWriting] || socket[kBlocking])) ||\n\t      (this[kSize] >= (this[kPipelining] || 1)) ||\n\t      this[kPending] > 0\n\t    )\n\t  }\n\n\t  /* istanbul ignore: only used for test */\n\t  [kConnect] (cb) {\n\t    connect(this);\n\t    this.once('connect', cb);\n\t  }\n\n\t  [kDispatch] (opts, handler) {\n\t    const origin = opts.origin || this[kUrl].origin;\n\n\t    const request = this[kHTTPConnVersion] === 'h2'\n\t      ? Request[kHTTP2BuildRequest](origin, opts, handler)\n\t      : Request[kHTTP1BuildRequest](origin, opts, handler);\n\n\t    this[kQueue].push(request);\n\t    if (this[kResuming]) ; else if (util.bodyLength(request.body) == null && util.isIterable(request.body)) {\n\t      // Wait a tick in case stream/iterator is ended in the same tick.\n\t      this[kResuming] = 1;\n\t      process.nextTick(resume, this);\n\t    } else {\n\t      resume(this, true);\n\t    }\n\n\t    if (this[kResuming] && this[kNeedDrain] !== 2 && this[kBusy]) {\n\t      this[kNeedDrain] = 2;\n\t    }\n\n\t    return this[kNeedDrain] < 2\n\t  }\n\n\t  async [kClose] () {\n\t    // TODO: for H2 we need to gracefully flush the remaining enqueued\n\t    // request and close each stream.\n\t    return new Promise((resolve) => {\n\t      if (!this[kSize]) {\n\t        resolve(null);\n\t      } else {\n\t        this[kClosedResolve] = resolve;\n\t      }\n\t    })\n\t  }\n\n\t  async [kDestroy] (err) {\n\t    return new Promise((resolve) => {\n\t      const requests = this[kQueue].splice(this[kPendingIdx]);\n\t      for (let i = 0; i < requests.length; i++) {\n\t        const request = requests[i];\n\t        errorRequest(this, request, err);\n\t      }\n\n\t      const callback = () => {\n\t        if (this[kClosedResolve]) {\n\t          // TODO (fix): Should we error here with ClientDestroyedError?\n\t          this[kClosedResolve]();\n\t          this[kClosedResolve] = null;\n\t        }\n\t        resolve();\n\t      };\n\n\t      if (this[kHTTP2Session] != null) {\n\t        util.destroy(this[kHTTP2Session], err);\n\t        this[kHTTP2Session] = null;\n\t        this[kHTTP2SessionState] = null;\n\t      }\n\n\t      if (!this[kSocket]) {\n\t        queueMicrotask(callback);\n\t      } else {\n\t        util.destroy(this[kSocket].on('close', callback), err);\n\t      }\n\n\t      resume(this);\n\t    })\n\t  }\n\t}\n\n\tfunction onHttp2SessionError (err) {\n\t  assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID');\n\n\t  this[kSocket][kError] = err;\n\n\t  onError(this[kClient], err);\n\t}\n\n\tfunction onHttp2FrameError (type, code, id) {\n\t  const err = new InformationalError(`HTTP/2: \"frameError\" received - type ${type}, code ${code}`);\n\n\t  if (id === 0) {\n\t    this[kSocket][kError] = err;\n\t    onError(this[kClient], err);\n\t  }\n\t}\n\n\tfunction onHttp2SessionEnd () {\n\t  util.destroy(this, new SocketError('other side closed'));\n\t  util.destroy(this[kSocket], new SocketError('other side closed'));\n\t}\n\n\tfunction onHTTP2GoAway (code) {\n\t  const client = this[kClient];\n\t  const err = new InformationalError(`HTTP/2: \"GOAWAY\" frame received with code ${code}`);\n\t  client[kSocket] = null;\n\t  client[kHTTP2Session] = null;\n\n\t  if (client.destroyed) {\n\t    assert(this[kPending] === 0);\n\n\t    // Fail entire queue.\n\t    const requests = client[kQueue].splice(client[kRunningIdx]);\n\t    for (let i = 0; i < requests.length; i++) {\n\t      const request = requests[i];\n\t      errorRequest(this, request, err);\n\t    }\n\t  } else if (client[kRunning] > 0) {\n\t    // Fail head of pipeline.\n\t    const request = client[kQueue][client[kRunningIdx]];\n\t    client[kQueue][client[kRunningIdx]++] = null;\n\n\t    errorRequest(client, request, err);\n\t  }\n\n\t  client[kPendingIdx] = client[kRunningIdx];\n\n\t  assert(client[kRunning] === 0);\n\n\t  client.emit('disconnect',\n\t    client[kUrl],\n\t    [client],\n\t    err\n\t  );\n\n\t  resume(client);\n\t}\n\n\tconst constants = requireConstants$6();\n\tconst createRedirectInterceptor = requireRedirectInterceptor();\n\tconst EMPTY_BUF = Buffer.alloc(0);\n\n\tasync function lazyllhttp () {\n\t  const llhttpWasmData = process.env.JEST_WORKER_ID ? requireLlhttpWasm() : undefined;\n\n\t  let mod;\n\t  try {\n\t    mod = await WebAssembly.compile(Buffer.from(requireLlhttp_simdWasm(), 'base64'));\n\t  } catch (e) {\n\t    /* istanbul ignore next */\n\n\t    // We could check if the error was caused by the simd option not\n\t    // being enabled, but the occurring of this other error\n\t    // * https://github.com/emscripten-core/emscripten/issues/11495\n\t    // got me to remove that check to avoid breaking Node 12.\n\t    mod = await WebAssembly.compile(Buffer.from(llhttpWasmData || requireLlhttpWasm(), 'base64'));\n\t  }\n\n\t  return await WebAssembly.instantiate(mod, {\n\t    env: {\n\t      /* eslint-disable camelcase */\n\n\t      wasm_on_url: (p, at, len) => {\n\t        /* istanbul ignore next */\n\t        return 0\n\t      },\n\t      wasm_on_status: (p, at, len) => {\n\t        assert.strictEqual(currentParser.ptr, p);\n\t        const start = at - currentBufferPtr + currentBufferRef.byteOffset;\n\t        return currentParser.onStatus(new FastBuffer(currentBufferRef.buffer, start, len)) || 0\n\t      },\n\t      wasm_on_message_begin: (p) => {\n\t        assert.strictEqual(currentParser.ptr, p);\n\t        return currentParser.onMessageBegin() || 0\n\t      },\n\t      wasm_on_header_field: (p, at, len) => {\n\t        assert.strictEqual(currentParser.ptr, p);\n\t        const start = at - currentBufferPtr + currentBufferRef.byteOffset;\n\t        return currentParser.onHeaderField(new FastBuffer(currentBufferRef.buffer, start, len)) || 0\n\t      },\n\t      wasm_on_header_value: (p, at, len) => {\n\t        assert.strictEqual(currentParser.ptr, p);\n\t        const start = at - currentBufferPtr + currentBufferRef.byteOffset;\n\t        return currentParser.onHeaderValue(new FastBuffer(currentBufferRef.buffer, start, len)) || 0\n\t      },\n\t      wasm_on_headers_complete: (p, statusCode, upgrade, shouldKeepAlive) => {\n\t        assert.strictEqual(currentParser.ptr, p);\n\t        return currentParser.onHeadersComplete(statusCode, Boolean(upgrade), Boolean(shouldKeepAlive)) || 0\n\t      },\n\t      wasm_on_body: (p, at, len) => {\n\t        assert.strictEqual(currentParser.ptr, p);\n\t        const start = at - currentBufferPtr + currentBufferRef.byteOffset;\n\t        return currentParser.onBody(new FastBuffer(currentBufferRef.buffer, start, len)) || 0\n\t      },\n\t      wasm_on_message_complete: (p) => {\n\t        assert.strictEqual(currentParser.ptr, p);\n\t        return currentParser.onMessageComplete() || 0\n\t      }\n\n\t      /* eslint-enable camelcase */\n\t    }\n\t  })\n\t}\n\n\tlet llhttpInstance = null;\n\tlet llhttpPromise = lazyllhttp();\n\tllhttpPromise.catch();\n\n\tlet currentParser = null;\n\tlet currentBufferRef = null;\n\tlet currentBufferSize = 0;\n\tlet currentBufferPtr = null;\n\n\tconst TIMEOUT_HEADERS = 1;\n\tconst TIMEOUT_BODY = 2;\n\tconst TIMEOUT_IDLE = 3;\n\n\tclass Parser {\n\t  constructor (client, socket, { exports }) {\n\t    assert(Number.isFinite(client[kMaxHeadersSize]) && client[kMaxHeadersSize] > 0);\n\n\t    this.llhttp = exports;\n\t    this.ptr = this.llhttp.llhttp_alloc(constants.TYPE.RESPONSE);\n\t    this.client = client;\n\t    this.socket = socket;\n\t    this.timeout = null;\n\t    this.timeoutValue = null;\n\t    this.timeoutType = null;\n\t    this.statusCode = null;\n\t    this.statusText = '';\n\t    this.upgrade = false;\n\t    this.headers = [];\n\t    this.headersSize = 0;\n\t    this.headersMaxSize = client[kMaxHeadersSize];\n\t    this.shouldKeepAlive = false;\n\t    this.paused = false;\n\t    this.resume = this.resume.bind(this);\n\n\t    this.bytesRead = 0;\n\n\t    this.keepAlive = '';\n\t    this.contentLength = '';\n\t    this.connection = '';\n\t    this.maxResponseSize = client[kMaxResponseSize];\n\t  }\n\n\t  setTimeout (value, type) {\n\t    this.timeoutType = type;\n\t    if (value !== this.timeoutValue) {\n\t      timers.clearTimeout(this.timeout);\n\t      if (value) {\n\t        this.timeout = timers.setTimeout(onParserTimeout, value, this);\n\t        // istanbul ignore else: only for jest\n\t        if (this.timeout.unref) {\n\t          this.timeout.unref();\n\t        }\n\t      } else {\n\t        this.timeout = null;\n\t      }\n\t      this.timeoutValue = value;\n\t    } else if (this.timeout) {\n\t      // istanbul ignore else: only for jest\n\t      if (this.timeout.refresh) {\n\t        this.timeout.refresh();\n\t      }\n\t    }\n\t  }\n\n\t  resume () {\n\t    if (this.socket.destroyed || !this.paused) {\n\t      return\n\t    }\n\n\t    assert(this.ptr != null);\n\t    assert(currentParser == null);\n\n\t    this.llhttp.llhttp_resume(this.ptr);\n\n\t    assert(this.timeoutType === TIMEOUT_BODY);\n\t    if (this.timeout) {\n\t      // istanbul ignore else: only for jest\n\t      if (this.timeout.refresh) {\n\t        this.timeout.refresh();\n\t      }\n\t    }\n\n\t    this.paused = false;\n\t    this.execute(this.socket.read() || EMPTY_BUF); // Flush parser.\n\t    this.readMore();\n\t  }\n\n\t  readMore () {\n\t    while (!this.paused && this.ptr) {\n\t      const chunk = this.socket.read();\n\t      if (chunk === null) {\n\t        break\n\t      }\n\t      this.execute(chunk);\n\t    }\n\t  }\n\n\t  execute (data) {\n\t    assert(this.ptr != null);\n\t    assert(currentParser == null);\n\t    assert(!this.paused);\n\n\t    const { socket, llhttp } = this;\n\n\t    if (data.length > currentBufferSize) {\n\t      if (currentBufferPtr) {\n\t        llhttp.free(currentBufferPtr);\n\t      }\n\t      currentBufferSize = Math.ceil(data.length / 4096) * 4096;\n\t      currentBufferPtr = llhttp.malloc(currentBufferSize);\n\t    }\n\n\t    new Uint8Array(llhttp.memory.buffer, currentBufferPtr, currentBufferSize).set(data);\n\n\t    // Call `execute` on the wasm parser.\n\t    // We pass the `llhttp_parser` pointer address, the pointer address of buffer view data,\n\t    // and finally the length of bytes to parse.\n\t    // The return value is an error code or `constants.ERROR.OK`.\n\t    try {\n\t      let ret;\n\n\t      try {\n\t        currentBufferRef = data;\n\t        currentParser = this;\n\t        ret = llhttp.llhttp_execute(this.ptr, currentBufferPtr, data.length);\n\t        /* eslint-disable-next-line no-useless-catch */\n\t      } catch (err) {\n\t        /* istanbul ignore next: difficult to make a test case for */\n\t        throw err\n\t      } finally {\n\t        currentParser = null;\n\t        currentBufferRef = null;\n\t      }\n\n\t      const offset = llhttp.llhttp_get_error_pos(this.ptr) - currentBufferPtr;\n\n\t      if (ret === constants.ERROR.PAUSED_UPGRADE) {\n\t        this.onUpgrade(data.slice(offset));\n\t      } else if (ret === constants.ERROR.PAUSED) {\n\t        this.paused = true;\n\t        socket.unshift(data.slice(offset));\n\t      } else if (ret !== constants.ERROR.OK) {\n\t        const ptr = llhttp.llhttp_get_error_reason(this.ptr);\n\t        let message = '';\n\t        /* istanbul ignore else: difficult to make a test case for */\n\t        if (ptr) {\n\t          const len = new Uint8Array(llhttp.memory.buffer, ptr).indexOf(0);\n\t          message =\n\t            'Response does not match the HTTP/1.1 protocol (' +\n\t            Buffer.from(llhttp.memory.buffer, ptr, len).toString() +\n\t            ')';\n\t        }\n\t        throw new HTTPParserError(message, constants.ERROR[ret], data.slice(offset))\n\t      }\n\t    } catch (err) {\n\t      util.destroy(socket, err);\n\t    }\n\t  }\n\n\t  destroy () {\n\t    assert(this.ptr != null);\n\t    assert(currentParser == null);\n\n\t    this.llhttp.llhttp_free(this.ptr);\n\t    this.ptr = null;\n\n\t    timers.clearTimeout(this.timeout);\n\t    this.timeout = null;\n\t    this.timeoutValue = null;\n\t    this.timeoutType = null;\n\n\t    this.paused = false;\n\t  }\n\n\t  onStatus (buf) {\n\t    this.statusText = buf.toString();\n\t  }\n\n\t  onMessageBegin () {\n\t    const { socket, client } = this;\n\n\t    /* istanbul ignore next: difficult to make a test case for */\n\t    if (socket.destroyed) {\n\t      return -1\n\t    }\n\n\t    const request = client[kQueue][client[kRunningIdx]];\n\t    if (!request) {\n\t      return -1\n\t    }\n\t  }\n\n\t  onHeaderField (buf) {\n\t    const len = this.headers.length;\n\n\t    if ((len & 1) === 0) {\n\t      this.headers.push(buf);\n\t    } else {\n\t      this.headers[len - 1] = Buffer.concat([this.headers[len - 1], buf]);\n\t    }\n\n\t    this.trackHeader(buf.length);\n\t  }\n\n\t  onHeaderValue (buf) {\n\t    let len = this.headers.length;\n\n\t    if ((len & 1) === 1) {\n\t      this.headers.push(buf);\n\t      len += 1;\n\t    } else {\n\t      this.headers[len - 1] = Buffer.concat([this.headers[len - 1], buf]);\n\t    }\n\n\t    const key = this.headers[len - 2];\n\t    if (key.length === 10 && key.toString().toLowerCase() === 'keep-alive') {\n\t      this.keepAlive += buf.toString();\n\t    } else if (key.length === 10 && key.toString().toLowerCase() === 'connection') {\n\t      this.connection += buf.toString();\n\t    } else if (key.length === 14 && key.toString().toLowerCase() === 'content-length') {\n\t      this.contentLength += buf.toString();\n\t    }\n\n\t    this.trackHeader(buf.length);\n\t  }\n\n\t  trackHeader (len) {\n\t    this.headersSize += len;\n\t    if (this.headersSize >= this.headersMaxSize) {\n\t      util.destroy(this.socket, new HeadersOverflowError());\n\t    }\n\t  }\n\n\t  onUpgrade (head) {\n\t    const { upgrade, client, socket, headers, statusCode } = this;\n\n\t    assert(upgrade);\n\n\t    const request = client[kQueue][client[kRunningIdx]];\n\t    assert(request);\n\n\t    assert(!socket.destroyed);\n\t    assert(socket === client[kSocket]);\n\t    assert(!this.paused);\n\t    assert(request.upgrade || request.method === 'CONNECT');\n\n\t    this.statusCode = null;\n\t    this.statusText = '';\n\t    this.shouldKeepAlive = null;\n\n\t    assert(this.headers.length % 2 === 0);\n\t    this.headers = [];\n\t    this.headersSize = 0;\n\n\t    socket.unshift(head);\n\n\t    socket[kParser].destroy();\n\t    socket[kParser] = null;\n\n\t    socket[kClient] = null;\n\t    socket[kError] = null;\n\t    socket\n\t      .removeListener('error', onSocketError)\n\t      .removeListener('readable', onSocketReadable)\n\t      .removeListener('end', onSocketEnd)\n\t      .removeListener('close', onSocketClose);\n\n\t    client[kSocket] = null;\n\t    client[kQueue][client[kRunningIdx]++] = null;\n\t    client.emit('disconnect', client[kUrl], [client], new InformationalError('upgrade'));\n\n\t    try {\n\t      request.onUpgrade(statusCode, headers, socket);\n\t    } catch (err) {\n\t      util.destroy(socket, err);\n\t    }\n\n\t    resume(client);\n\t  }\n\n\t  onHeadersComplete (statusCode, upgrade, shouldKeepAlive) {\n\t    const { client, socket, headers, statusText } = this;\n\n\t    /* istanbul ignore next: difficult to make a test case for */\n\t    if (socket.destroyed) {\n\t      return -1\n\t    }\n\n\t    const request = client[kQueue][client[kRunningIdx]];\n\n\t    /* istanbul ignore next: difficult to make a test case for */\n\t    if (!request) {\n\t      return -1\n\t    }\n\n\t    assert(!this.upgrade);\n\t    assert(this.statusCode < 200);\n\n\t    if (statusCode === 100) {\n\t      util.destroy(socket, new SocketError('bad response', util.getSocketInfo(socket)));\n\t      return -1\n\t    }\n\n\t    /* this can only happen if server is misbehaving */\n\t    if (upgrade && !request.upgrade) {\n\t      util.destroy(socket, new SocketError('bad upgrade', util.getSocketInfo(socket)));\n\t      return -1\n\t    }\n\n\t    assert.strictEqual(this.timeoutType, TIMEOUT_HEADERS);\n\n\t    this.statusCode = statusCode;\n\t    this.shouldKeepAlive = (\n\t      shouldKeepAlive ||\n\t      // Override llhttp value which does not allow keepAlive for HEAD.\n\t      (request.method === 'HEAD' && !socket[kReset] && this.connection.toLowerCase() === 'keep-alive')\n\t    );\n\n\t    if (this.statusCode >= 200) {\n\t      const bodyTimeout = request.bodyTimeout != null\n\t        ? request.bodyTimeout\n\t        : client[kBodyTimeout];\n\t      this.setTimeout(bodyTimeout, TIMEOUT_BODY);\n\t    } else if (this.timeout) {\n\t      // istanbul ignore else: only for jest\n\t      if (this.timeout.refresh) {\n\t        this.timeout.refresh();\n\t      }\n\t    }\n\n\t    if (request.method === 'CONNECT') {\n\t      assert(client[kRunning] === 1);\n\t      this.upgrade = true;\n\t      return 2\n\t    }\n\n\t    if (upgrade) {\n\t      assert(client[kRunning] === 1);\n\t      this.upgrade = true;\n\t      return 2\n\t    }\n\n\t    assert(this.headers.length % 2 === 0);\n\t    this.headers = [];\n\t    this.headersSize = 0;\n\n\t    if (this.shouldKeepAlive && client[kPipelining]) {\n\t      const keepAliveTimeout = this.keepAlive ? util.parseKeepAliveTimeout(this.keepAlive) : null;\n\n\t      if (keepAliveTimeout != null) {\n\t        const timeout = Math.min(\n\t          keepAliveTimeout - client[kKeepAliveTimeoutThreshold],\n\t          client[kKeepAliveMaxTimeout]\n\t        );\n\t        if (timeout <= 0) {\n\t          socket[kReset] = true;\n\t        } else {\n\t          client[kKeepAliveTimeoutValue] = timeout;\n\t        }\n\t      } else {\n\t        client[kKeepAliveTimeoutValue] = client[kKeepAliveDefaultTimeout];\n\t      }\n\t    } else {\n\t      // Stop more requests from being dispatched.\n\t      socket[kReset] = true;\n\t    }\n\n\t    const pause = request.onHeaders(statusCode, headers, this.resume, statusText) === false;\n\n\t    if (request.aborted) {\n\t      return -1\n\t    }\n\n\t    if (request.method === 'HEAD') {\n\t      return 1\n\t    }\n\n\t    if (statusCode < 200) {\n\t      return 1\n\t    }\n\n\t    if (socket[kBlocking]) {\n\t      socket[kBlocking] = false;\n\t      resume(client);\n\t    }\n\n\t    return pause ? constants.ERROR.PAUSED : 0\n\t  }\n\n\t  onBody (buf) {\n\t    const { client, socket, statusCode, maxResponseSize } = this;\n\n\t    if (socket.destroyed) {\n\t      return -1\n\t    }\n\n\t    const request = client[kQueue][client[kRunningIdx]];\n\t    assert(request);\n\n\t    assert.strictEqual(this.timeoutType, TIMEOUT_BODY);\n\t    if (this.timeout) {\n\t      // istanbul ignore else: only for jest\n\t      if (this.timeout.refresh) {\n\t        this.timeout.refresh();\n\t      }\n\t    }\n\n\t    assert(statusCode >= 200);\n\n\t    if (maxResponseSize > -1 && this.bytesRead + buf.length > maxResponseSize) {\n\t      util.destroy(socket, new ResponseExceededMaxSizeError());\n\t      return -1\n\t    }\n\n\t    this.bytesRead += buf.length;\n\n\t    if (request.onData(buf) === false) {\n\t      return constants.ERROR.PAUSED\n\t    }\n\t  }\n\n\t  onMessageComplete () {\n\t    const { client, socket, statusCode, upgrade, headers, contentLength, bytesRead, shouldKeepAlive } = this;\n\n\t    if (socket.destroyed && (!statusCode || shouldKeepAlive)) {\n\t      return -1\n\t    }\n\n\t    if (upgrade) {\n\t      return\n\t    }\n\n\t    const request = client[kQueue][client[kRunningIdx]];\n\t    assert(request);\n\n\t    assert(statusCode >= 100);\n\n\t    this.statusCode = null;\n\t    this.statusText = '';\n\t    this.bytesRead = 0;\n\t    this.contentLength = '';\n\t    this.keepAlive = '';\n\t    this.connection = '';\n\n\t    assert(this.headers.length % 2 === 0);\n\t    this.headers = [];\n\t    this.headersSize = 0;\n\n\t    if (statusCode < 200) {\n\t      return\n\t    }\n\n\t    /* istanbul ignore next: should be handled by llhttp? */\n\t    if (request.method !== 'HEAD' && contentLength && bytesRead !== parseInt(contentLength, 10)) {\n\t      util.destroy(socket, new ResponseContentLengthMismatchError());\n\t      return -1\n\t    }\n\n\t    request.onComplete(headers);\n\n\t    client[kQueue][client[kRunningIdx]++] = null;\n\n\t    if (socket[kWriting]) {\n\t      assert.strictEqual(client[kRunning], 0);\n\t      // Response completed before request.\n\t      util.destroy(socket, new InformationalError('reset'));\n\t      return constants.ERROR.PAUSED\n\t    } else if (!shouldKeepAlive) {\n\t      util.destroy(socket, new InformationalError('reset'));\n\t      return constants.ERROR.PAUSED\n\t    } else if (socket[kReset] && client[kRunning] === 0) {\n\t      // Destroy socket once all requests have completed.\n\t      // The request at the tail of the pipeline is the one\n\t      // that requested reset and no further requests should\n\t      // have been queued since then.\n\t      util.destroy(socket, new InformationalError('reset'));\n\t      return constants.ERROR.PAUSED\n\t    } else if (client[kPipelining] === 1) {\n\t      // We must wait a full event loop cycle to reuse this socket to make sure\n\t      // that non-spec compliant servers are not closing the connection even if they\n\t      // said they won't.\n\t      setImmediate(resume, client);\n\t    } else {\n\t      resume(client);\n\t    }\n\t  }\n\t}\n\n\tfunction onParserTimeout (parser) {\n\t  const { socket, timeoutType, client } = parser;\n\n\t  /* istanbul ignore else */\n\t  if (timeoutType === TIMEOUT_HEADERS) {\n\t    if (!socket[kWriting] || socket.writableNeedDrain || client[kRunning] > 1) {\n\t      assert(!parser.paused, 'cannot be paused while waiting for headers');\n\t      util.destroy(socket, new HeadersTimeoutError());\n\t    }\n\t  } else if (timeoutType === TIMEOUT_BODY) {\n\t    if (!parser.paused) {\n\t      util.destroy(socket, new BodyTimeoutError());\n\t    }\n\t  } else if (timeoutType === TIMEOUT_IDLE) {\n\t    assert(client[kRunning] === 0 && client[kKeepAliveTimeoutValue]);\n\t    util.destroy(socket, new InformationalError('socket idle timeout'));\n\t  }\n\t}\n\n\tfunction onSocketReadable () {\n\t  const { [kParser]: parser } = this;\n\t  if (parser) {\n\t    parser.readMore();\n\t  }\n\t}\n\n\tfunction onSocketError (err) {\n\t  const { [kClient]: client, [kParser]: parser } = this;\n\n\t  assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID');\n\n\t  if (client[kHTTPConnVersion] !== 'h2') {\n\t    // On Mac OS, we get an ECONNRESET even if there is a full body to be forwarded\n\t    // to the user.\n\t    if (err.code === 'ECONNRESET' && parser.statusCode && !parser.shouldKeepAlive) {\n\t      // We treat all incoming data so for as a valid response.\n\t      parser.onMessageComplete();\n\t      return\n\t    }\n\t  }\n\n\t  this[kError] = err;\n\n\t  onError(this[kClient], err);\n\t}\n\n\tfunction onError (client, err) {\n\t  if (\n\t    client[kRunning] === 0 &&\n\t    err.code !== 'UND_ERR_INFO' &&\n\t    err.code !== 'UND_ERR_SOCKET'\n\t  ) {\n\t    // Error is not caused by running request and not a recoverable\n\t    // socket error.\n\n\t    assert(client[kPendingIdx] === client[kRunningIdx]);\n\n\t    const requests = client[kQueue].splice(client[kRunningIdx]);\n\t    for (let i = 0; i < requests.length; i++) {\n\t      const request = requests[i];\n\t      errorRequest(client, request, err);\n\t    }\n\t    assert(client[kSize] === 0);\n\t  }\n\t}\n\n\tfunction onSocketEnd () {\n\t  const { [kParser]: parser, [kClient]: client } = this;\n\n\t  if (client[kHTTPConnVersion] !== 'h2') {\n\t    if (parser.statusCode && !parser.shouldKeepAlive) {\n\t      // We treat all incoming data so far as a valid response.\n\t      parser.onMessageComplete();\n\t      return\n\t    }\n\t  }\n\n\t  util.destroy(this, new SocketError('other side closed', util.getSocketInfo(this)));\n\t}\n\n\tfunction onSocketClose () {\n\t  const { [kClient]: client, [kParser]: parser } = this;\n\n\t  if (client[kHTTPConnVersion] === 'h1' && parser) {\n\t    if (!this[kError] && parser.statusCode && !parser.shouldKeepAlive) {\n\t      // We treat all incoming data so far as a valid response.\n\t      parser.onMessageComplete();\n\t    }\n\n\t    this[kParser].destroy();\n\t    this[kParser] = null;\n\t  }\n\n\t  const err = this[kError] || new SocketError('closed', util.getSocketInfo(this));\n\n\t  client[kSocket] = null;\n\n\t  if (client.destroyed) {\n\t    assert(client[kPending] === 0);\n\n\t    // Fail entire queue.\n\t    const requests = client[kQueue].splice(client[kRunningIdx]);\n\t    for (let i = 0; i < requests.length; i++) {\n\t      const request = requests[i];\n\t      errorRequest(client, request, err);\n\t    }\n\t  } else if (client[kRunning] > 0 && err.code !== 'UND_ERR_INFO') {\n\t    // Fail head of pipeline.\n\t    const request = client[kQueue][client[kRunningIdx]];\n\t    client[kQueue][client[kRunningIdx]++] = null;\n\n\t    errorRequest(client, request, err);\n\t  }\n\n\t  client[kPendingIdx] = client[kRunningIdx];\n\n\t  assert(client[kRunning] === 0);\n\n\t  client.emit('disconnect', client[kUrl], [client], err);\n\n\t  resume(client);\n\t}\n\n\tasync function connect (client) {\n\t  assert(!client[kConnecting]);\n\t  assert(!client[kSocket]);\n\n\t  let { host, hostname, protocol, port } = client[kUrl];\n\n\t  // Resolve ipv6\n\t  if (hostname[0] === '[') {\n\t    const idx = hostname.indexOf(']');\n\n\t    assert(idx !== -1);\n\t    const ip = hostname.substring(1, idx);\n\n\t    assert(net.isIP(ip));\n\t    hostname = ip;\n\t  }\n\n\t  client[kConnecting] = true;\n\n\t  if (channels.beforeConnect.hasSubscribers) {\n\t    channels.beforeConnect.publish({\n\t      connectParams: {\n\t        host,\n\t        hostname,\n\t        protocol,\n\t        port,\n\t        servername: client[kServerName],\n\t        localAddress: client[kLocalAddress]\n\t      },\n\t      connector: client[kConnector]\n\t    });\n\t  }\n\n\t  try {\n\t    const socket = await new Promise((resolve, reject) => {\n\t      client[kConnector]({\n\t        host,\n\t        hostname,\n\t        protocol,\n\t        port,\n\t        servername: client[kServerName],\n\t        localAddress: client[kLocalAddress]\n\t      }, (err, socket) => {\n\t        if (err) {\n\t          reject(err);\n\t        } else {\n\t          resolve(socket);\n\t        }\n\t      });\n\t    });\n\n\t    if (client.destroyed) {\n\t      util.destroy(socket.on('error', () => {}), new ClientDestroyedError());\n\t      return\n\t    }\n\n\t    client[kConnecting] = false;\n\n\t    assert(socket);\n\n\t    const isH2 = socket.alpnProtocol === 'h2';\n\t    if (isH2) {\n\t      if (!h2ExperimentalWarned) {\n\t        h2ExperimentalWarned = true;\n\t        process.emitWarning('H2 support is experimental, expect them to change at any time.', {\n\t          code: 'UNDICI-H2'\n\t        });\n\t      }\n\n\t      const session = http2.connect(client[kUrl], {\n\t        createConnection: () => socket,\n\t        peerMaxConcurrentStreams: client[kHTTP2SessionState].maxConcurrentStreams\n\t      });\n\n\t      client[kHTTPConnVersion] = 'h2';\n\t      session[kClient] = client;\n\t      session[kSocket] = socket;\n\t      session.on('error', onHttp2SessionError);\n\t      session.on('frameError', onHttp2FrameError);\n\t      session.on('end', onHttp2SessionEnd);\n\t      session.on('goaway', onHTTP2GoAway);\n\t      session.on('close', onSocketClose);\n\t      session.unref();\n\n\t      client[kHTTP2Session] = session;\n\t      socket[kHTTP2Session] = session;\n\t    } else {\n\t      if (!llhttpInstance) {\n\t        llhttpInstance = await llhttpPromise;\n\t        llhttpPromise = null;\n\t      }\n\n\t      socket[kNoRef] = false;\n\t      socket[kWriting] = false;\n\t      socket[kReset] = false;\n\t      socket[kBlocking] = false;\n\t      socket[kParser] = new Parser(client, socket, llhttpInstance);\n\t    }\n\n\t    socket[kCounter] = 0;\n\t    socket[kMaxRequests] = client[kMaxRequests];\n\t    socket[kClient] = client;\n\t    socket[kError] = null;\n\n\t    socket\n\t      .on('error', onSocketError)\n\t      .on('readable', onSocketReadable)\n\t      .on('end', onSocketEnd)\n\t      .on('close', onSocketClose);\n\n\t    client[kSocket] = socket;\n\n\t    if (channels.connected.hasSubscribers) {\n\t      channels.connected.publish({\n\t        connectParams: {\n\t          host,\n\t          hostname,\n\t          protocol,\n\t          port,\n\t          servername: client[kServerName],\n\t          localAddress: client[kLocalAddress]\n\t        },\n\t        connector: client[kConnector],\n\t        socket\n\t      });\n\t    }\n\t    client.emit('connect', client[kUrl], [client]);\n\t  } catch (err) {\n\t    if (client.destroyed) {\n\t      return\n\t    }\n\n\t    client[kConnecting] = false;\n\n\t    if (channels.connectError.hasSubscribers) {\n\t      channels.connectError.publish({\n\t        connectParams: {\n\t          host,\n\t          hostname,\n\t          protocol,\n\t          port,\n\t          servername: client[kServerName],\n\t          localAddress: client[kLocalAddress]\n\t        },\n\t        connector: client[kConnector],\n\t        error: err\n\t      });\n\t    }\n\n\t    if (err.code === 'ERR_TLS_CERT_ALTNAME_INVALID') {\n\t      assert(client[kRunning] === 0);\n\t      while (client[kPending] > 0 && client[kQueue][client[kPendingIdx]].servername === client[kServerName]) {\n\t        const request = client[kQueue][client[kPendingIdx]++];\n\t        errorRequest(client, request, err);\n\t      }\n\t    } else {\n\t      onError(client, err);\n\t    }\n\n\t    client.emit('connectionError', client[kUrl], [client], err);\n\t  }\n\n\t  resume(client);\n\t}\n\n\tfunction emitDrain (client) {\n\t  client[kNeedDrain] = 0;\n\t  client.emit('drain', client[kUrl], [client]);\n\t}\n\n\tfunction resume (client, sync) {\n\t  if (client[kResuming] === 2) {\n\t    return\n\t  }\n\n\t  client[kResuming] = 2;\n\n\t  _resume(client, sync);\n\t  client[kResuming] = 0;\n\n\t  if (client[kRunningIdx] > 256) {\n\t    client[kQueue].splice(0, client[kRunningIdx]);\n\t    client[kPendingIdx] -= client[kRunningIdx];\n\t    client[kRunningIdx] = 0;\n\t  }\n\t}\n\n\tfunction _resume (client, sync) {\n\t  while (true) {\n\t    if (client.destroyed) {\n\t      assert(client[kPending] === 0);\n\t      return\n\t    }\n\n\t    if (client[kClosedResolve] && !client[kSize]) {\n\t      client[kClosedResolve]();\n\t      client[kClosedResolve] = null;\n\t      return\n\t    }\n\n\t    const socket = client[kSocket];\n\n\t    if (socket && !socket.destroyed && socket.alpnProtocol !== 'h2') {\n\t      if (client[kSize] === 0) {\n\t        if (!socket[kNoRef] && socket.unref) {\n\t          socket.unref();\n\t          socket[kNoRef] = true;\n\t        }\n\t      } else if (socket[kNoRef] && socket.ref) {\n\t        socket.ref();\n\t        socket[kNoRef] = false;\n\t      }\n\n\t      if (client[kSize] === 0) {\n\t        if (socket[kParser].timeoutType !== TIMEOUT_IDLE) {\n\t          socket[kParser].setTimeout(client[kKeepAliveTimeoutValue], TIMEOUT_IDLE);\n\t        }\n\t      } else if (client[kRunning] > 0 && socket[kParser].statusCode < 200) {\n\t        if (socket[kParser].timeoutType !== TIMEOUT_HEADERS) {\n\t          const request = client[kQueue][client[kRunningIdx]];\n\t          const headersTimeout = request.headersTimeout != null\n\t            ? request.headersTimeout\n\t            : client[kHeadersTimeout];\n\t          socket[kParser].setTimeout(headersTimeout, TIMEOUT_HEADERS);\n\t        }\n\t      }\n\t    }\n\n\t    if (client[kBusy]) {\n\t      client[kNeedDrain] = 2;\n\t    } else if (client[kNeedDrain] === 2) {\n\t      if (sync) {\n\t        client[kNeedDrain] = 1;\n\t        process.nextTick(emitDrain, client);\n\t      } else {\n\t        emitDrain(client);\n\t      }\n\t      continue\n\t    }\n\n\t    if (client[kPending] === 0) {\n\t      return\n\t    }\n\n\t    if (client[kRunning] >= (client[kPipelining] || 1)) {\n\t      return\n\t    }\n\n\t    const request = client[kQueue][client[kPendingIdx]];\n\n\t    if (client[kUrl].protocol === 'https:' && client[kServerName] !== request.servername) {\n\t      if (client[kRunning] > 0) {\n\t        return\n\t      }\n\n\t      client[kServerName] = request.servername;\n\n\t      if (socket && socket.servername !== request.servername) {\n\t        util.destroy(socket, new InformationalError('servername changed'));\n\t        return\n\t      }\n\t    }\n\n\t    if (client[kConnecting]) {\n\t      return\n\t    }\n\n\t    if (!socket && !client[kHTTP2Session]) {\n\t      connect(client);\n\t      return\n\t    }\n\n\t    if (socket.destroyed || socket[kWriting] || socket[kReset] || socket[kBlocking]) {\n\t      return\n\t    }\n\n\t    if (client[kRunning] > 0 && !request.idempotent) {\n\t      // Non-idempotent request cannot be retried.\n\t      // Ensure that no other requests are inflight and\n\t      // could cause failure.\n\t      return\n\t    }\n\n\t    if (client[kRunning] > 0 && (request.upgrade || request.method === 'CONNECT')) {\n\t      // Don't dispatch an upgrade until all preceding requests have completed.\n\t      // A misbehaving server might upgrade the connection before all pipelined\n\t      // request has completed.\n\t      return\n\t    }\n\n\t    if (client[kRunning] > 0 && util.bodyLength(request.body) !== 0 &&\n\t      (util.isStream(request.body) || util.isAsyncIterable(request.body))) {\n\t      // Request with stream or iterator body can error while other requests\n\t      // are inflight and indirectly error those as well.\n\t      // Ensure this doesn't happen by waiting for inflight\n\t      // to complete before dispatching.\n\n\t      // Request with stream or iterator body cannot be retried.\n\t      // Ensure that no other requests are inflight and\n\t      // could cause failure.\n\t      return\n\t    }\n\n\t    if (!request.aborted && write(client, request)) {\n\t      client[kPendingIdx]++;\n\t    } else {\n\t      client[kQueue].splice(client[kPendingIdx], 1);\n\t    }\n\t  }\n\t}\n\n\t// https://www.rfc-editor.org/rfc/rfc7230#section-3.3.2\n\tfunction shouldSendContentLength (method) {\n\t  return method !== 'GET' && method !== 'HEAD' && method !== 'OPTIONS' && method !== 'TRACE' && method !== 'CONNECT'\n\t}\n\n\tfunction write (client, request) {\n\t  if (client[kHTTPConnVersion] === 'h2') {\n\t    writeH2(client, client[kHTTP2Session], request);\n\t    return\n\t  }\n\n\t  const { body, method, path, host, upgrade, headers, blocking, reset } = request;\n\n\t  // https://tools.ietf.org/html/rfc7231#section-4.3.1\n\t  // https://tools.ietf.org/html/rfc7231#section-4.3.2\n\t  // https://tools.ietf.org/html/rfc7231#section-4.3.5\n\n\t  // Sending a payload body on a request that does not\n\t  // expect it can cause undefined behavior on some\n\t  // servers and corrupt connection state. Do not\n\t  // re-use the connection for further requests.\n\n\t  const expectsPayload = (\n\t    method === 'PUT' ||\n\t    method === 'POST' ||\n\t    method === 'PATCH'\n\t  );\n\n\t  if (body && typeof body.read === 'function') {\n\t    // Try to read EOF in order to get length.\n\t    body.read(0);\n\t  }\n\n\t  const bodyLength = util.bodyLength(body);\n\n\t  let contentLength = bodyLength;\n\n\t  if (contentLength === null) {\n\t    contentLength = request.contentLength;\n\t  }\n\n\t  if (contentLength === 0 && !expectsPayload) {\n\t    // https://tools.ietf.org/html/rfc7230#section-3.3.2\n\t    // A user agent SHOULD NOT send a Content-Length header field when\n\t    // the request message does not contain a payload body and the method\n\t    // semantics do not anticipate such a body.\n\n\t    contentLength = null;\n\t  }\n\n\t  // https://github.com/nodejs/undici/issues/2046\n\t  // A user agent may send a Content-Length header with 0 value, this should be allowed.\n\t  if (shouldSendContentLength(method) && contentLength > 0 && request.contentLength !== null && request.contentLength !== contentLength) {\n\t    if (client[kStrictContentLength]) {\n\t      errorRequest(client, request, new RequestContentLengthMismatchError());\n\t      return false\n\t    }\n\n\t    process.emitWarning(new RequestContentLengthMismatchError());\n\t  }\n\n\t  const socket = client[kSocket];\n\n\t  try {\n\t    request.onConnect((err) => {\n\t      if (request.aborted || request.completed) {\n\t        return\n\t      }\n\n\t      errorRequest(client, request, err || new RequestAbortedError());\n\n\t      util.destroy(socket, new InformationalError('aborted'));\n\t    });\n\t  } catch (err) {\n\t    errorRequest(client, request, err);\n\t  }\n\n\t  if (request.aborted) {\n\t    return false\n\t  }\n\n\t  if (method === 'HEAD') {\n\t    // https://github.com/mcollina/undici/issues/258\n\t    // Close after a HEAD request to interop with misbehaving servers\n\t    // that may send a body in the response.\n\n\t    socket[kReset] = true;\n\t  }\n\n\t  if (upgrade || method === 'CONNECT') {\n\t    // On CONNECT or upgrade, block pipeline from dispatching further\n\t    // requests on this connection.\n\n\t    socket[kReset] = true;\n\t  }\n\n\t  if (reset != null) {\n\t    socket[kReset] = reset;\n\t  }\n\n\t  if (client[kMaxRequests] && socket[kCounter]++ >= client[kMaxRequests]) {\n\t    socket[kReset] = true;\n\t  }\n\n\t  if (blocking) {\n\t    socket[kBlocking] = true;\n\t  }\n\n\t  let header = `${method} ${path} HTTP/1.1\\r\\n`;\n\n\t  if (typeof host === 'string') {\n\t    header += `host: ${host}\\r\\n`;\n\t  } else {\n\t    header += client[kHostHeader];\n\t  }\n\n\t  if (upgrade) {\n\t    header += `connection: upgrade\\r\\nupgrade: ${upgrade}\\r\\n`;\n\t  } else if (client[kPipelining] && !socket[kReset]) {\n\t    header += 'connection: keep-alive\\r\\n';\n\t  } else {\n\t    header += 'connection: close\\r\\n';\n\t  }\n\n\t  if (headers) {\n\t    header += headers;\n\t  }\n\n\t  if (channels.sendHeaders.hasSubscribers) {\n\t    channels.sendHeaders.publish({ request, headers: header, socket });\n\t  }\n\n\t  /* istanbul ignore else: assertion */\n\t  if (!body || bodyLength === 0) {\n\t    if (contentLength === 0) {\n\t      socket.write(`${header}content-length: 0\\r\\n\\r\\n`, 'latin1');\n\t    } else {\n\t      assert(contentLength === null, 'no body must not have content length');\n\t      socket.write(`${header}\\r\\n`, 'latin1');\n\t    }\n\t    request.onRequestSent();\n\t  } else if (util.isBuffer(body)) {\n\t    assert(contentLength === body.byteLength, 'buffer body must have content length');\n\n\t    socket.cork();\n\t    socket.write(`${header}content-length: ${contentLength}\\r\\n\\r\\n`, 'latin1');\n\t    socket.write(body);\n\t    socket.uncork();\n\t    request.onBodySent(body);\n\t    request.onRequestSent();\n\t    if (!expectsPayload) {\n\t      socket[kReset] = true;\n\t    }\n\t  } else if (util.isBlobLike(body)) {\n\t    if (typeof body.stream === 'function') {\n\t      writeIterable({ body: body.stream(), client, request, socket, contentLength, header, expectsPayload });\n\t    } else {\n\t      writeBlob({ body, client, request, socket, contentLength, header, expectsPayload });\n\t    }\n\t  } else if (util.isStream(body)) {\n\t    writeStream({ body, client, request, socket, contentLength, header, expectsPayload });\n\t  } else if (util.isIterable(body)) {\n\t    writeIterable({ body, client, request, socket, contentLength, header, expectsPayload });\n\t  } else {\n\t    assert(false);\n\t  }\n\n\t  return true\n\t}\n\n\tfunction writeH2 (client, session, request) {\n\t  const { body, method, path, host, upgrade, expectContinue, signal, headers: reqHeaders } = request;\n\n\t  let headers;\n\t  if (typeof reqHeaders === 'string') headers = Request[kHTTP2CopyHeaders](reqHeaders.trim());\n\t  else headers = reqHeaders;\n\n\t  if (upgrade) {\n\t    errorRequest(client, request, new Error('Upgrade not supported for H2'));\n\t    return false\n\t  }\n\n\t  try {\n\t    // TODO(HTTP/2): Should we call onConnect immediately or on stream ready event?\n\t    request.onConnect((err) => {\n\t      if (request.aborted || request.completed) {\n\t        return\n\t      }\n\n\t      errorRequest(client, request, err || new RequestAbortedError());\n\t    });\n\t  } catch (err) {\n\t    errorRequest(client, request, err);\n\t  }\n\n\t  if (request.aborted) {\n\t    return false\n\t  }\n\n\t  /** @type {import('node:http2').ClientHttp2Stream} */\n\t  let stream;\n\t  const h2State = client[kHTTP2SessionState];\n\n\t  headers[HTTP2_HEADER_AUTHORITY] = host || client[kHost];\n\t  headers[HTTP2_HEADER_METHOD] = method;\n\n\t  if (method === 'CONNECT') {\n\t    session.ref();\n\t    // we are already connected, streams are pending, first request\n\t    // will create a new stream. We trigger a request to create the stream and wait until\n\t    // `ready` event is triggered\n\t    // We disabled endStream to allow the user to write to the stream\n\t    stream = session.request(headers, { endStream: false, signal });\n\n\t    if (stream.id && !stream.pending) {\n\t      request.onUpgrade(null, null, stream);\n\t      ++h2State.openStreams;\n\t    } else {\n\t      stream.once('ready', () => {\n\t        request.onUpgrade(null, null, stream);\n\t        ++h2State.openStreams;\n\t      });\n\t    }\n\n\t    stream.once('close', () => {\n\t      h2State.openStreams -= 1;\n\t      // TODO(HTTP/2): unref only if current streams count is 0\n\t      if (h2State.openStreams === 0) session.unref();\n\t    });\n\n\t    return true\n\t  }\n\n\t  // https://tools.ietf.org/html/rfc7540#section-8.3\n\t  // :path and :scheme headers must be omited when sending CONNECT\n\n\t  headers[HTTP2_HEADER_PATH] = path;\n\t  headers[HTTP2_HEADER_SCHEME] = 'https';\n\n\t  // https://tools.ietf.org/html/rfc7231#section-4.3.1\n\t  // https://tools.ietf.org/html/rfc7231#section-4.3.2\n\t  // https://tools.ietf.org/html/rfc7231#section-4.3.5\n\n\t  // Sending a payload body on a request that does not\n\t  // expect it can cause undefined behavior on some\n\t  // servers and corrupt connection state. Do not\n\t  // re-use the connection for further requests.\n\n\t  const expectsPayload = (\n\t    method === 'PUT' ||\n\t    method === 'POST' ||\n\t    method === 'PATCH'\n\t  );\n\n\t  if (body && typeof body.read === 'function') {\n\t    // Try to read EOF in order to get length.\n\t    body.read(0);\n\t  }\n\n\t  let contentLength = util.bodyLength(body);\n\n\t  if (contentLength == null) {\n\t    contentLength = request.contentLength;\n\t  }\n\n\t  if (contentLength === 0 || !expectsPayload) {\n\t    // https://tools.ietf.org/html/rfc7230#section-3.3.2\n\t    // A user agent SHOULD NOT send a Content-Length header field when\n\t    // the request message does not contain a payload body and the method\n\t    // semantics do not anticipate such a body.\n\n\t    contentLength = null;\n\t  }\n\n\t  // https://github.com/nodejs/undici/issues/2046\n\t  // A user agent may send a Content-Length header with 0 value, this should be allowed.\n\t  if (shouldSendContentLength(method) && contentLength > 0 && request.contentLength != null && request.contentLength !== contentLength) {\n\t    if (client[kStrictContentLength]) {\n\t      errorRequest(client, request, new RequestContentLengthMismatchError());\n\t      return false\n\t    }\n\n\t    process.emitWarning(new RequestContentLengthMismatchError());\n\t  }\n\n\t  if (contentLength != null) {\n\t    assert(body, 'no body must not have content length');\n\t    headers[HTTP2_HEADER_CONTENT_LENGTH] = `${contentLength}`;\n\t  }\n\n\t  session.ref();\n\n\t  const shouldEndStream = method === 'GET' || method === 'HEAD';\n\t  if (expectContinue) {\n\t    headers[HTTP2_HEADER_EXPECT] = '100-continue';\n\t    stream = session.request(headers, { endStream: shouldEndStream, signal });\n\n\t    stream.once('continue', writeBodyH2);\n\t  } else {\n\t    stream = session.request(headers, {\n\t      endStream: shouldEndStream,\n\t      signal\n\t    });\n\t    writeBodyH2();\n\t  }\n\n\t  // Increment counter as we have new several streams open\n\t  ++h2State.openStreams;\n\n\t  stream.once('response', headers => {\n\t    const { [HTTP2_HEADER_STATUS]: statusCode, ...realHeaders } = headers;\n\n\t    if (request.onHeaders(Number(statusCode), realHeaders, stream.resume.bind(stream), '') === false) {\n\t      stream.pause();\n\t    }\n\t  });\n\n\t  stream.once('end', () => {\n\t    request.onComplete([]);\n\t  });\n\n\t  stream.on('data', (chunk) => {\n\t    if (request.onData(chunk) === false) {\n\t      stream.pause();\n\t    }\n\t  });\n\n\t  stream.once('close', () => {\n\t    h2State.openStreams -= 1;\n\t    // TODO(HTTP/2): unref only if current streams count is 0\n\t    if (h2State.openStreams === 0) {\n\t      session.unref();\n\t    }\n\t  });\n\n\t  stream.once('error', function (err) {\n\t    if (client[kHTTP2Session] && !client[kHTTP2Session].destroyed && !this.closed && !this.destroyed) {\n\t      h2State.streams -= 1;\n\t      util.destroy(stream, err);\n\t    }\n\t  });\n\n\t  stream.once('frameError', (type, code) => {\n\t    const err = new InformationalError(`HTTP/2: \"frameError\" received - type ${type}, code ${code}`);\n\t    errorRequest(client, request, err);\n\n\t    if (client[kHTTP2Session] && !client[kHTTP2Session].destroyed && !this.closed && !this.destroyed) {\n\t      h2State.streams -= 1;\n\t      util.destroy(stream, err);\n\t    }\n\t  });\n\n\t  // stream.on('aborted', () => {\n\t  //   // TODO(HTTP/2): Support aborted\n\t  // })\n\n\t  // stream.on('timeout', () => {\n\t  //   // TODO(HTTP/2): Support timeout\n\t  // })\n\n\t  // stream.on('push', headers => {\n\t  //   // TODO(HTTP/2): Suppor push\n\t  // })\n\n\t  // stream.on('trailers', headers => {\n\t  //   // TODO(HTTP/2): Support trailers\n\t  // })\n\n\t  return true\n\n\t  function writeBodyH2 () {\n\t    /* istanbul ignore else: assertion */\n\t    if (!body) {\n\t      request.onRequestSent();\n\t    } else if (util.isBuffer(body)) {\n\t      assert(contentLength === body.byteLength, 'buffer body must have content length');\n\t      stream.cork();\n\t      stream.write(body);\n\t      stream.uncork();\n\t      stream.end();\n\t      request.onBodySent(body);\n\t      request.onRequestSent();\n\t    } else if (util.isBlobLike(body)) {\n\t      if (typeof body.stream === 'function') {\n\t        writeIterable({\n\t          client,\n\t          request,\n\t          contentLength,\n\t          h2stream: stream,\n\t          expectsPayload,\n\t          body: body.stream(),\n\t          socket: client[kSocket],\n\t          header: ''\n\t        });\n\t      } else {\n\t        writeBlob({\n\t          body,\n\t          client,\n\t          request,\n\t          contentLength,\n\t          expectsPayload,\n\t          h2stream: stream,\n\t          header: '',\n\t          socket: client[kSocket]\n\t        });\n\t      }\n\t    } else if (util.isStream(body)) {\n\t      writeStream({\n\t        body,\n\t        client,\n\t        request,\n\t        contentLength,\n\t        expectsPayload,\n\t        socket: client[kSocket],\n\t        h2stream: stream,\n\t        header: ''\n\t      });\n\t    } else if (util.isIterable(body)) {\n\t      writeIterable({\n\t        body,\n\t        client,\n\t        request,\n\t        contentLength,\n\t        expectsPayload,\n\t        header: '',\n\t        h2stream: stream,\n\t        socket: client[kSocket]\n\t      });\n\t    } else {\n\t      assert(false);\n\t    }\n\t  }\n\t}\n\n\tfunction writeStream ({ h2stream, body, client, request, socket, contentLength, header, expectsPayload }) {\n\t  assert(contentLength !== 0 || client[kRunning] === 0, 'stream body cannot be pipelined');\n\n\t  if (client[kHTTPConnVersion] === 'h2') {\n\t    // For HTTP/2, is enough to pipe the stream\n\t    const pipe = pipeline(\n\t      body,\n\t      h2stream,\n\t      (err) => {\n\t        if (err) {\n\t          util.destroy(body, err);\n\t          util.destroy(h2stream, err);\n\t        } else {\n\t          request.onRequestSent();\n\t        }\n\t      }\n\t    );\n\n\t    pipe.on('data', onPipeData);\n\t    pipe.once('end', () => {\n\t      pipe.removeListener('data', onPipeData);\n\t      util.destroy(pipe);\n\t    });\n\n\t    function onPipeData (chunk) {\n\t      request.onBodySent(chunk);\n\t    }\n\n\t    return\n\t  }\n\n\t  let finished = false;\n\n\t  const writer = new AsyncWriter({ socket, request, contentLength, client, expectsPayload, header });\n\n\t  const onData = function (chunk) {\n\t    if (finished) {\n\t      return\n\t    }\n\n\t    try {\n\t      if (!writer.write(chunk) && this.pause) {\n\t        this.pause();\n\t      }\n\t    } catch (err) {\n\t      util.destroy(this, err);\n\t    }\n\t  };\n\t  const onDrain = function () {\n\t    if (finished) {\n\t      return\n\t    }\n\n\t    if (body.resume) {\n\t      body.resume();\n\t    }\n\t  };\n\t  const onAbort = function () {\n\t    if (finished) {\n\t      return\n\t    }\n\t    const err = new RequestAbortedError();\n\t    queueMicrotask(() => onFinished(err));\n\t  };\n\t  const onFinished = function (err) {\n\t    if (finished) {\n\t      return\n\t    }\n\n\t    finished = true;\n\n\t    assert(socket.destroyed || (socket[kWriting] && client[kRunning] <= 1));\n\n\t    socket\n\t      .off('drain', onDrain)\n\t      .off('error', onFinished);\n\n\t    body\n\t      .removeListener('data', onData)\n\t      .removeListener('end', onFinished)\n\t      .removeListener('error', onFinished)\n\t      .removeListener('close', onAbort);\n\n\t    if (!err) {\n\t      try {\n\t        writer.end();\n\t      } catch (er) {\n\t        err = er;\n\t      }\n\t    }\n\n\t    writer.destroy(err);\n\n\t    if (err && (err.code !== 'UND_ERR_INFO' || err.message !== 'reset')) {\n\t      util.destroy(body, err);\n\t    } else {\n\t      util.destroy(body);\n\t    }\n\t  };\n\n\t  body\n\t    .on('data', onData)\n\t    .on('end', onFinished)\n\t    .on('error', onFinished)\n\t    .on('close', onAbort);\n\n\t  if (body.resume) {\n\t    body.resume();\n\t  }\n\n\t  socket\n\t    .on('drain', onDrain)\n\t    .on('error', onFinished);\n\t}\n\n\tasync function writeBlob ({ h2stream, body, client, request, socket, contentLength, header, expectsPayload }) {\n\t  assert(contentLength === body.size, 'blob body must have content length');\n\n\t  const isH2 = client[kHTTPConnVersion] === 'h2';\n\t  try {\n\t    if (contentLength != null && contentLength !== body.size) {\n\t      throw new RequestContentLengthMismatchError()\n\t    }\n\n\t    const buffer = Buffer.from(await body.arrayBuffer());\n\n\t    if (isH2) {\n\t      h2stream.cork();\n\t      h2stream.write(buffer);\n\t      h2stream.uncork();\n\t    } else {\n\t      socket.cork();\n\t      socket.write(`${header}content-length: ${contentLength}\\r\\n\\r\\n`, 'latin1');\n\t      socket.write(buffer);\n\t      socket.uncork();\n\t    }\n\n\t    request.onBodySent(buffer);\n\t    request.onRequestSent();\n\n\t    if (!expectsPayload) {\n\t      socket[kReset] = true;\n\t    }\n\n\t    resume(client);\n\t  } catch (err) {\n\t    util.destroy(isH2 ? h2stream : socket, err);\n\t  }\n\t}\n\n\tasync function writeIterable ({ h2stream, body, client, request, socket, contentLength, header, expectsPayload }) {\n\t  assert(contentLength !== 0 || client[kRunning] === 0, 'iterator body cannot be pipelined');\n\n\t  let callback = null;\n\t  function onDrain () {\n\t    if (callback) {\n\t      const cb = callback;\n\t      callback = null;\n\t      cb();\n\t    }\n\t  }\n\n\t  const waitForDrain = () => new Promise((resolve, reject) => {\n\t    assert(callback === null);\n\n\t    if (socket[kError]) {\n\t      reject(socket[kError]);\n\t    } else {\n\t      callback = resolve;\n\t    }\n\t  });\n\n\t  if (client[kHTTPConnVersion] === 'h2') {\n\t    h2stream\n\t      .on('close', onDrain)\n\t      .on('drain', onDrain);\n\n\t    try {\n\t      // It's up to the user to somehow abort the async iterable.\n\t      for await (const chunk of body) {\n\t        if (socket[kError]) {\n\t          throw socket[kError]\n\t        }\n\n\t        const res = h2stream.write(chunk);\n\t        request.onBodySent(chunk);\n\t        if (!res) {\n\t          await waitForDrain();\n\t        }\n\t      }\n\t    } catch (err) {\n\t      h2stream.destroy(err);\n\t    } finally {\n\t      request.onRequestSent();\n\t      h2stream.end();\n\t      h2stream\n\t        .off('close', onDrain)\n\t        .off('drain', onDrain);\n\t    }\n\n\t    return\n\t  }\n\n\t  socket\n\t    .on('close', onDrain)\n\t    .on('drain', onDrain);\n\n\t  const writer = new AsyncWriter({ socket, request, contentLength, client, expectsPayload, header });\n\t  try {\n\t    // It's up to the user to somehow abort the async iterable.\n\t    for await (const chunk of body) {\n\t      if (socket[kError]) {\n\t        throw socket[kError]\n\t      }\n\n\t      if (!writer.write(chunk)) {\n\t        await waitForDrain();\n\t      }\n\t    }\n\n\t    writer.end();\n\t  } catch (err) {\n\t    writer.destroy(err);\n\t  } finally {\n\t    socket\n\t      .off('close', onDrain)\n\t      .off('drain', onDrain);\n\t  }\n\t}\n\n\tclass AsyncWriter {\n\t  constructor ({ socket, request, contentLength, client, expectsPayload, header }) {\n\t    this.socket = socket;\n\t    this.request = request;\n\t    this.contentLength = contentLength;\n\t    this.client = client;\n\t    this.bytesWritten = 0;\n\t    this.expectsPayload = expectsPayload;\n\t    this.header = header;\n\n\t    socket[kWriting] = true;\n\t  }\n\n\t  write (chunk) {\n\t    const { socket, request, contentLength, client, bytesWritten, expectsPayload, header } = this;\n\n\t    if (socket[kError]) {\n\t      throw socket[kError]\n\t    }\n\n\t    if (socket.destroyed) {\n\t      return false\n\t    }\n\n\t    const len = Buffer.byteLength(chunk);\n\t    if (!len) {\n\t      return true\n\t    }\n\n\t    // We should defer writing chunks.\n\t    if (contentLength !== null && bytesWritten + len > contentLength) {\n\t      if (client[kStrictContentLength]) {\n\t        throw new RequestContentLengthMismatchError()\n\t      }\n\n\t      process.emitWarning(new RequestContentLengthMismatchError());\n\t    }\n\n\t    socket.cork();\n\n\t    if (bytesWritten === 0) {\n\t      if (!expectsPayload) {\n\t        socket[kReset] = true;\n\t      }\n\n\t      if (contentLength === null) {\n\t        socket.write(`${header}transfer-encoding: chunked\\r\\n`, 'latin1');\n\t      } else {\n\t        socket.write(`${header}content-length: ${contentLength}\\r\\n\\r\\n`, 'latin1');\n\t      }\n\t    }\n\n\t    if (contentLength === null) {\n\t      socket.write(`\\r\\n${len.toString(16)}\\r\\n`, 'latin1');\n\t    }\n\n\t    this.bytesWritten += len;\n\n\t    const ret = socket.write(chunk);\n\n\t    socket.uncork();\n\n\t    request.onBodySent(chunk);\n\n\t    if (!ret) {\n\t      if (socket[kParser].timeout && socket[kParser].timeoutType === TIMEOUT_HEADERS) {\n\t        // istanbul ignore else: only for jest\n\t        if (socket[kParser].timeout.refresh) {\n\t          socket[kParser].timeout.refresh();\n\t        }\n\t      }\n\t    }\n\n\t    return ret\n\t  }\n\n\t  end () {\n\t    const { socket, contentLength, client, bytesWritten, expectsPayload, header, request } = this;\n\t    request.onRequestSent();\n\n\t    socket[kWriting] = false;\n\n\t    if (socket[kError]) {\n\t      throw socket[kError]\n\t    }\n\n\t    if (socket.destroyed) {\n\t      return\n\t    }\n\n\t    if (bytesWritten === 0) {\n\t      if (expectsPayload) {\n\t        // https://tools.ietf.org/html/rfc7230#section-3.3.2\n\t        // A user agent SHOULD send a Content-Length in a request message when\n\t        // no Transfer-Encoding is sent and the request method defines a meaning\n\t        // for an enclosed payload body.\n\n\t        socket.write(`${header}content-length: 0\\r\\n\\r\\n`, 'latin1');\n\t      } else {\n\t        socket.write(`${header}\\r\\n`, 'latin1');\n\t      }\n\t    } else if (contentLength === null) {\n\t      socket.write('\\r\\n0\\r\\n\\r\\n', 'latin1');\n\t    }\n\n\t    if (contentLength !== null && bytesWritten !== contentLength) {\n\t      if (client[kStrictContentLength]) {\n\t        throw new RequestContentLengthMismatchError()\n\t      } else {\n\t        process.emitWarning(new RequestContentLengthMismatchError());\n\t      }\n\t    }\n\n\t    if (socket[kParser].timeout && socket[kParser].timeoutType === TIMEOUT_HEADERS) {\n\t      // istanbul ignore else: only for jest\n\t      if (socket[kParser].timeout.refresh) {\n\t        socket[kParser].timeout.refresh();\n\t      }\n\t    }\n\n\t    resume(client);\n\t  }\n\n\t  destroy (err) {\n\t    const { socket, client } = this;\n\n\t    socket[kWriting] = false;\n\n\t    if (err) {\n\t      assert(client[kRunning] <= 1, 'pipeline should only contain this request');\n\t      util.destroy(socket, err);\n\t    }\n\t  }\n\t}\n\n\tfunction errorRequest (client, request, err) {\n\t  try {\n\t    request.onError(err);\n\t    assert(request.aborted);\n\t  } catch (err) {\n\t    client.emit('error', err);\n\t  }\n\t}\n\n\tclient$1 = Client;\n\treturn client$1;\n}\n\n/* eslint-disable */\n\nvar fixedQueue;\nvar hasRequiredFixedQueue;\n\nfunction requireFixedQueue () {\n\tif (hasRequiredFixedQueue) return fixedQueue;\n\thasRequiredFixedQueue = 1;\n\n\t// Extracted from node/lib/internal/fixed_queue.js\n\n\t// Currently optimal queue size, tested on V8 6.0 - 6.6. Must be power of two.\n\tconst kSize = 2048;\n\tconst kMask = kSize - 1;\n\n\t// The FixedQueue is implemented as a singly-linked list of fixed-size\n\t// circular buffers. It looks something like this:\n\t//\n\t//  head                                                       tail\n\t//    |                                                          |\n\t//    v                                                          v\n\t// +-----------+ <-----\\       +-----------+ <------\\         +-----------+\n\t// |  [null]   |        \\----- |   next    |         \\------- |   next    |\n\t// +-----------+               +-----------+                  +-----------+\n\t// |   item    | <-- bottom    |   item    | <-- bottom       |  [empty]  |\n\t// |   item    |               |   item    |                  |  [empty]  |\n\t// |   item    |               |   item    |                  |  [empty]  |\n\t// |   item    |               |   item    |                  |  [empty]  |\n\t// |   item    |               |   item    |       bottom --> |   item    |\n\t// |   item    |               |   item    |                  |   item    |\n\t// |    ...    |               |    ...    |                  |    ...    |\n\t// |   item    |               |   item    |                  |   item    |\n\t// |   item    |               |   item    |                  |   item    |\n\t// |  [empty]  | <-- top       |   item    |                  |   item    |\n\t// |  [empty]  |               |   item    |                  |   item    |\n\t// |  [empty]  |               |  [empty]  | <-- top  top --> |  [empty]  |\n\t// +-----------+               +-----------+                  +-----------+\n\t//\n\t// Or, if there is only one circular buffer, it looks something\n\t// like either of these:\n\t//\n\t//  head   tail                                 head   tail\n\t//    |     |                                     |     |\n\t//    v     v                                     v     v\n\t// +-----------+                               +-----------+\n\t// |  [null]   |                               |  [null]   |\n\t// +-----------+                               +-----------+\n\t// |  [empty]  |                               |   item    |\n\t// |  [empty]  |                               |   item    |\n\t// |   item    | <-- bottom            top --> |  [empty]  |\n\t// |   item    |                               |  [empty]  |\n\t// |  [empty]  | <-- top            bottom --> |   item    |\n\t// |  [empty]  |                               |   item    |\n\t// +-----------+                               +-----------+\n\t//\n\t// Adding a value means moving `top` forward by one, removing means\n\t// moving `bottom` forward by one. After reaching the end, the queue\n\t// wraps around.\n\t//\n\t// When `top === bottom` the current queue is empty and when\n\t// `top + 1 === bottom` it's full. This wastes a single space of storage\n\t// but allows much quicker checks.\n\n\tclass FixedCircularBuffer {\n\t  constructor() {\n\t    this.bottom = 0;\n\t    this.top = 0;\n\t    this.list = new Array(kSize);\n\t    this.next = null;\n\t  }\n\n\t  isEmpty() {\n\t    return this.top === this.bottom;\n\t  }\n\n\t  isFull() {\n\t    return ((this.top + 1) & kMask) === this.bottom;\n\t  }\n\n\t  push(data) {\n\t    this.list[this.top] = data;\n\t    this.top = (this.top + 1) & kMask;\n\t  }\n\n\t  shift() {\n\t    const nextItem = this.list[this.bottom];\n\t    if (nextItem === undefined)\n\t      return null;\n\t    this.list[this.bottom] = undefined;\n\t    this.bottom = (this.bottom + 1) & kMask;\n\t    return nextItem;\n\t  }\n\t}\n\n\tfixedQueue = class FixedQueue {\n\t  constructor() {\n\t    this.head = this.tail = new FixedCircularBuffer();\n\t  }\n\n\t  isEmpty() {\n\t    return this.head.isEmpty();\n\t  }\n\n\t  push(data) {\n\t    if (this.head.isFull()) {\n\t      // Head is full: Creates a new queue, sets the old queue's `.next` to it,\n\t      // and sets it as the new main queue.\n\t      this.head = this.head.next = new FixedCircularBuffer();\n\t    }\n\t    this.head.push(data);\n\t  }\n\n\t  shift() {\n\t    const tail = this.tail;\n\t    const next = tail.shift();\n\t    if (tail.isEmpty() && tail.next !== null) {\n\t      // If there is another queue, it forms the new tail.\n\t      this.tail = tail.next;\n\t    }\n\t    return next;\n\t  }\n\t};\n\treturn fixedQueue;\n}\n\nvar poolStats;\nvar hasRequiredPoolStats;\n\nfunction requirePoolStats () {\n\tif (hasRequiredPoolStats) return poolStats;\n\thasRequiredPoolStats = 1;\n\tconst { kFree, kConnected, kPending, kQueued, kRunning, kSize } = requireSymbols$4();\n\tconst kPool = Symbol('pool');\n\n\tclass PoolStats {\n\t  constructor (pool) {\n\t    this[kPool] = pool;\n\t  }\n\n\t  get connected () {\n\t    return this[kPool][kConnected]\n\t  }\n\n\t  get free () {\n\t    return this[kPool][kFree]\n\t  }\n\n\t  get pending () {\n\t    return this[kPool][kPending]\n\t  }\n\n\t  get queued () {\n\t    return this[kPool][kQueued]\n\t  }\n\n\t  get running () {\n\t    return this[kPool][kRunning]\n\t  }\n\n\t  get size () {\n\t    return this[kPool][kSize]\n\t  }\n\t}\n\n\tpoolStats = PoolStats;\n\treturn poolStats;\n}\n\nvar poolBase;\nvar hasRequiredPoolBase;\n\nfunction requirePoolBase () {\n\tif (hasRequiredPoolBase) return poolBase;\n\thasRequiredPoolBase = 1;\n\n\tconst DispatcherBase = requireDispatcherBase();\n\tconst FixedQueue = requireFixedQueue();\n\tconst { kConnected, kSize, kRunning, kPending, kQueued, kBusy, kFree, kUrl, kClose, kDestroy, kDispatch } = requireSymbols$4();\n\tconst PoolStats = requirePoolStats();\n\n\tconst kClients = Symbol('clients');\n\tconst kNeedDrain = Symbol('needDrain');\n\tconst kQueue = Symbol('queue');\n\tconst kClosedResolve = Symbol('closed resolve');\n\tconst kOnDrain = Symbol('onDrain');\n\tconst kOnConnect = Symbol('onConnect');\n\tconst kOnDisconnect = Symbol('onDisconnect');\n\tconst kOnConnectionError = Symbol('onConnectionError');\n\tconst kGetDispatcher = Symbol('get dispatcher');\n\tconst kAddClient = Symbol('add client');\n\tconst kRemoveClient = Symbol('remove client');\n\tconst kStats = Symbol('stats');\n\n\tclass PoolBase extends DispatcherBase {\n\t  constructor () {\n\t    super();\n\n\t    this[kQueue] = new FixedQueue();\n\t    this[kClients] = [];\n\t    this[kQueued] = 0;\n\n\t    const pool = this;\n\n\t    this[kOnDrain] = function onDrain (origin, targets) {\n\t      const queue = pool[kQueue];\n\n\t      let needDrain = false;\n\n\t      while (!needDrain) {\n\t        const item = queue.shift();\n\t        if (!item) {\n\t          break\n\t        }\n\t        pool[kQueued]--;\n\t        needDrain = !this.dispatch(item.opts, item.handler);\n\t      }\n\n\t      this[kNeedDrain] = needDrain;\n\n\t      if (!this[kNeedDrain] && pool[kNeedDrain]) {\n\t        pool[kNeedDrain] = false;\n\t        pool.emit('drain', origin, [pool, ...targets]);\n\t      }\n\n\t      if (pool[kClosedResolve] && queue.isEmpty()) {\n\t        Promise\n\t          .all(pool[kClients].map(c => c.close()))\n\t          .then(pool[kClosedResolve]);\n\t      }\n\t    };\n\n\t    this[kOnConnect] = (origin, targets) => {\n\t      pool.emit('connect', origin, [pool, ...targets]);\n\t    };\n\n\t    this[kOnDisconnect] = (origin, targets, err) => {\n\t      pool.emit('disconnect', origin, [pool, ...targets], err);\n\t    };\n\n\t    this[kOnConnectionError] = (origin, targets, err) => {\n\t      pool.emit('connectionError', origin, [pool, ...targets], err);\n\t    };\n\n\t    this[kStats] = new PoolStats(this);\n\t  }\n\n\t  get [kBusy] () {\n\t    return this[kNeedDrain]\n\t  }\n\n\t  get [kConnected] () {\n\t    return this[kClients].filter(client => client[kConnected]).length\n\t  }\n\n\t  get [kFree] () {\n\t    return this[kClients].filter(client => client[kConnected] && !client[kNeedDrain]).length\n\t  }\n\n\t  get [kPending] () {\n\t    let ret = this[kQueued];\n\t    for (const { [kPending]: pending } of this[kClients]) {\n\t      ret += pending;\n\t    }\n\t    return ret\n\t  }\n\n\t  get [kRunning] () {\n\t    let ret = 0;\n\t    for (const { [kRunning]: running } of this[kClients]) {\n\t      ret += running;\n\t    }\n\t    return ret\n\t  }\n\n\t  get [kSize] () {\n\t    let ret = this[kQueued];\n\t    for (const { [kSize]: size } of this[kClients]) {\n\t      ret += size;\n\t    }\n\t    return ret\n\t  }\n\n\t  get stats () {\n\t    return this[kStats]\n\t  }\n\n\t  async [kClose] () {\n\t    if (this[kQueue].isEmpty()) {\n\t      return Promise.all(this[kClients].map(c => c.close()))\n\t    } else {\n\t      return new Promise((resolve) => {\n\t        this[kClosedResolve] = resolve;\n\t      })\n\t    }\n\t  }\n\n\t  async [kDestroy] (err) {\n\t    while (true) {\n\t      const item = this[kQueue].shift();\n\t      if (!item) {\n\t        break\n\t      }\n\t      item.handler.onError(err);\n\t    }\n\n\t    return Promise.all(this[kClients].map(c => c.destroy(err)))\n\t  }\n\n\t  [kDispatch] (opts, handler) {\n\t    const dispatcher = this[kGetDispatcher]();\n\n\t    if (!dispatcher) {\n\t      this[kNeedDrain] = true;\n\t      this[kQueue].push({ opts, handler });\n\t      this[kQueued]++;\n\t    } else if (!dispatcher.dispatch(opts, handler)) {\n\t      dispatcher[kNeedDrain] = true;\n\t      this[kNeedDrain] = !this[kGetDispatcher]();\n\t    }\n\n\t    return !this[kNeedDrain]\n\t  }\n\n\t  [kAddClient] (client) {\n\t    client\n\t      .on('drain', this[kOnDrain])\n\t      .on('connect', this[kOnConnect])\n\t      .on('disconnect', this[kOnDisconnect])\n\t      .on('connectionError', this[kOnConnectionError]);\n\n\t    this[kClients].push(client);\n\n\t    if (this[kNeedDrain]) {\n\t      process.nextTick(() => {\n\t        if (this[kNeedDrain]) {\n\t          this[kOnDrain](client[kUrl], [this, client]);\n\t        }\n\t      });\n\t    }\n\n\t    return this\n\t  }\n\n\t  [kRemoveClient] (client) {\n\t    client.close(() => {\n\t      const idx = this[kClients].indexOf(client);\n\t      if (idx !== -1) {\n\t        this[kClients].splice(idx, 1);\n\t      }\n\t    });\n\n\t    this[kNeedDrain] = this[kClients].some(dispatcher => (\n\t      !dispatcher[kNeedDrain] &&\n\t      dispatcher.closed !== true &&\n\t      dispatcher.destroyed !== true\n\t    ));\n\t  }\n\t}\n\n\tpoolBase = {\n\t  PoolBase,\n\t  kClients,\n\t  kNeedDrain,\n\t  kAddClient,\n\t  kRemoveClient,\n\t  kGetDispatcher\n\t};\n\treturn poolBase;\n}\n\nvar pool;\nvar hasRequiredPool;\n\nfunction requirePool () {\n\tif (hasRequiredPool) return pool;\n\thasRequiredPool = 1;\n\n\tconst {\n\t  PoolBase,\n\t  kClients,\n\t  kNeedDrain,\n\t  kAddClient,\n\t  kGetDispatcher\n\t} = requirePoolBase();\n\tconst Client = requireClient$1();\n\tconst {\n\t  InvalidArgumentError\n\t} = requireErrors$3();\n\tconst util = requireUtil$c();\n\tconst { kUrl, kInterceptors } = requireSymbols$4();\n\tconst buildConnector = requireConnect();\n\n\tconst kOptions = Symbol('options');\n\tconst kConnections = Symbol('connections');\n\tconst kFactory = Symbol('factory');\n\n\tfunction defaultFactory (origin, opts) {\n\t  return new Client(origin, opts)\n\t}\n\n\tclass Pool extends PoolBase {\n\t  constructor (origin, {\n\t    connections,\n\t    factory = defaultFactory,\n\t    connect,\n\t    connectTimeout,\n\t    tls,\n\t    maxCachedSessions,\n\t    socketPath,\n\t    autoSelectFamily,\n\t    autoSelectFamilyAttemptTimeout,\n\t    allowH2,\n\t    ...options\n\t  } = {}) {\n\t    super();\n\n\t    if (connections != null && (!Number.isFinite(connections) || connections < 0)) {\n\t      throw new InvalidArgumentError('invalid connections')\n\t    }\n\n\t    if (typeof factory !== 'function') {\n\t      throw new InvalidArgumentError('factory must be a function.')\n\t    }\n\n\t    if (connect != null && typeof connect !== 'function' && typeof connect !== 'object') {\n\t      throw new InvalidArgumentError('connect must be a function or an object')\n\t    }\n\n\t    if (typeof connect !== 'function') {\n\t      connect = buildConnector({\n\t        ...tls,\n\t        maxCachedSessions,\n\t        allowH2,\n\t        socketPath,\n\t        timeout: connectTimeout,\n\t        ...(util.nodeHasAutoSelectFamily && autoSelectFamily ? { autoSelectFamily, autoSelectFamilyAttemptTimeout } : undefined),\n\t        ...connect\n\t      });\n\t    }\n\n\t    this[kInterceptors] = options.interceptors && options.interceptors.Pool && Array.isArray(options.interceptors.Pool)\n\t      ? options.interceptors.Pool\n\t      : [];\n\t    this[kConnections] = connections || null;\n\t    this[kUrl] = util.parseOrigin(origin);\n\t    this[kOptions] = { ...util.deepClone(options), connect, allowH2 };\n\t    this[kOptions].interceptors = options.interceptors\n\t      ? { ...options.interceptors }\n\t      : undefined;\n\t    this[kFactory] = factory;\n\n\t    this.on('connectionError', (origin, targets, error) => {\n\t      // If a connection error occurs, we remove the client from the pool,\n\t      // and emit a connectionError event. They will not be re-used.\n\t      // Fixes https://github.com/nodejs/undici/issues/3895\n\t      for (const target of targets) {\n\t        // Do not use kRemoveClient here, as it will close the client,\n\t        // but the client cannot be closed in this state.\n\t        const idx = this[kClients].indexOf(target);\n\t        if (idx !== -1) {\n\t          this[kClients].splice(idx, 1);\n\t        }\n\t      }\n\t    });\n\t  }\n\n\t  [kGetDispatcher] () {\n\t    let dispatcher = this[kClients].find(dispatcher => !dispatcher[kNeedDrain]);\n\n\t    if (dispatcher) {\n\t      return dispatcher\n\t    }\n\n\t    if (!this[kConnections] || this[kClients].length < this[kConnections]) {\n\t      dispatcher = this[kFactory](this[kUrl], this[kOptions]);\n\t      this[kAddClient](dispatcher);\n\t    }\n\n\t    return dispatcher\n\t  }\n\t}\n\n\tpool = Pool;\n\treturn pool;\n}\n\nvar balancedPool;\nvar hasRequiredBalancedPool;\n\nfunction requireBalancedPool () {\n\tif (hasRequiredBalancedPool) return balancedPool;\n\thasRequiredBalancedPool = 1;\n\n\tconst {\n\t  BalancedPoolMissingUpstreamError,\n\t  InvalidArgumentError\n\t} = requireErrors$3();\n\tconst {\n\t  PoolBase,\n\t  kClients,\n\t  kNeedDrain,\n\t  kAddClient,\n\t  kRemoveClient,\n\t  kGetDispatcher\n\t} = requirePoolBase();\n\tconst Pool = requirePool();\n\tconst { kUrl, kInterceptors } = requireSymbols$4();\n\tconst { parseOrigin } = requireUtil$c();\n\tconst kFactory = Symbol('factory');\n\n\tconst kOptions = Symbol('options');\n\tconst kGreatestCommonDivisor = Symbol('kGreatestCommonDivisor');\n\tconst kCurrentWeight = Symbol('kCurrentWeight');\n\tconst kIndex = Symbol('kIndex');\n\tconst kWeight = Symbol('kWeight');\n\tconst kMaxWeightPerServer = Symbol('kMaxWeightPerServer');\n\tconst kErrorPenalty = Symbol('kErrorPenalty');\n\n\tfunction getGreatestCommonDivisor (a, b) {\n\t  if (b === 0) return a\n\t  return getGreatestCommonDivisor(b, a % b)\n\t}\n\n\tfunction defaultFactory (origin, opts) {\n\t  return new Pool(origin, opts)\n\t}\n\n\tclass BalancedPool extends PoolBase {\n\t  constructor (upstreams = [], { factory = defaultFactory, ...opts } = {}) {\n\t    super();\n\n\t    this[kOptions] = opts;\n\t    this[kIndex] = -1;\n\t    this[kCurrentWeight] = 0;\n\n\t    this[kMaxWeightPerServer] = this[kOptions].maxWeightPerServer || 100;\n\t    this[kErrorPenalty] = this[kOptions].errorPenalty || 15;\n\n\t    if (!Array.isArray(upstreams)) {\n\t      upstreams = [upstreams];\n\t    }\n\n\t    if (typeof factory !== 'function') {\n\t      throw new InvalidArgumentError('factory must be a function.')\n\t    }\n\n\t    this[kInterceptors] = opts.interceptors && opts.interceptors.BalancedPool && Array.isArray(opts.interceptors.BalancedPool)\n\t      ? opts.interceptors.BalancedPool\n\t      : [];\n\t    this[kFactory] = factory;\n\n\t    for (const upstream of upstreams) {\n\t      this.addUpstream(upstream);\n\t    }\n\t    this._updateBalancedPoolStats();\n\t  }\n\n\t  addUpstream (upstream) {\n\t    const upstreamOrigin = parseOrigin(upstream).origin;\n\n\t    if (this[kClients].find((pool) => (\n\t      pool[kUrl].origin === upstreamOrigin &&\n\t      pool.closed !== true &&\n\t      pool.destroyed !== true\n\t    ))) {\n\t      return this\n\t    }\n\t    const pool = this[kFactory](upstreamOrigin, Object.assign({}, this[kOptions]));\n\n\t    this[kAddClient](pool);\n\t    pool.on('connect', () => {\n\t      pool[kWeight] = Math.min(this[kMaxWeightPerServer], pool[kWeight] + this[kErrorPenalty]);\n\t    });\n\n\t    pool.on('connectionError', () => {\n\t      pool[kWeight] = Math.max(1, pool[kWeight] - this[kErrorPenalty]);\n\t      this._updateBalancedPoolStats();\n\t    });\n\n\t    pool.on('disconnect', (...args) => {\n\t      const err = args[2];\n\t      if (err && err.code === 'UND_ERR_SOCKET') {\n\t        // decrease the weight of the pool.\n\t        pool[kWeight] = Math.max(1, pool[kWeight] - this[kErrorPenalty]);\n\t        this._updateBalancedPoolStats();\n\t      }\n\t    });\n\n\t    for (const client of this[kClients]) {\n\t      client[kWeight] = this[kMaxWeightPerServer];\n\t    }\n\n\t    this._updateBalancedPoolStats();\n\n\t    return this\n\t  }\n\n\t  _updateBalancedPoolStats () {\n\t    this[kGreatestCommonDivisor] = this[kClients].map(p => p[kWeight]).reduce(getGreatestCommonDivisor, 0);\n\t  }\n\n\t  removeUpstream (upstream) {\n\t    const upstreamOrigin = parseOrigin(upstream).origin;\n\n\t    const pool = this[kClients].find((pool) => (\n\t      pool[kUrl].origin === upstreamOrigin &&\n\t      pool.closed !== true &&\n\t      pool.destroyed !== true\n\t    ));\n\n\t    if (pool) {\n\t      this[kRemoveClient](pool);\n\t    }\n\n\t    return this\n\t  }\n\n\t  get upstreams () {\n\t    return this[kClients]\n\t      .filter(dispatcher => dispatcher.closed !== true && dispatcher.destroyed !== true)\n\t      .map((p) => p[kUrl].origin)\n\t  }\n\n\t  [kGetDispatcher] () {\n\t    // We validate that pools is greater than 0,\n\t    // otherwise we would have to wait until an upstream\n\t    // is added, which might never happen.\n\t    if (this[kClients].length === 0) {\n\t      throw new BalancedPoolMissingUpstreamError()\n\t    }\n\n\t    const dispatcher = this[kClients].find(dispatcher => (\n\t      !dispatcher[kNeedDrain] &&\n\t      dispatcher.closed !== true &&\n\t      dispatcher.destroyed !== true\n\t    ));\n\n\t    if (!dispatcher) {\n\t      return\n\t    }\n\n\t    const allClientsBusy = this[kClients].map(pool => pool[kNeedDrain]).reduce((a, b) => a && b, true);\n\n\t    if (allClientsBusy) {\n\t      return\n\t    }\n\n\t    let counter = 0;\n\n\t    let maxWeightIndex = this[kClients].findIndex(pool => !pool[kNeedDrain]);\n\n\t    while (counter++ < this[kClients].length) {\n\t      this[kIndex] = (this[kIndex] + 1) % this[kClients].length;\n\t      const pool = this[kClients][this[kIndex]];\n\n\t      // find pool index with the largest weight\n\t      if (pool[kWeight] > this[kClients][maxWeightIndex][kWeight] && !pool[kNeedDrain]) {\n\t        maxWeightIndex = this[kIndex];\n\t      }\n\n\t      // decrease the current weight every `this[kClients].length`.\n\t      if (this[kIndex] === 0) {\n\t        // Set the current weight to the next lower weight.\n\t        this[kCurrentWeight] = this[kCurrentWeight] - this[kGreatestCommonDivisor];\n\n\t        if (this[kCurrentWeight] <= 0) {\n\t          this[kCurrentWeight] = this[kMaxWeightPerServer];\n\t        }\n\t      }\n\t      if (pool[kWeight] >= this[kCurrentWeight] && (!pool[kNeedDrain])) {\n\t        return pool\n\t      }\n\t    }\n\n\t    this[kCurrentWeight] = this[kClients][maxWeightIndex][kWeight];\n\t    this[kIndex] = maxWeightIndex;\n\t    return this[kClients][maxWeightIndex]\n\t  }\n\t}\n\n\tbalancedPool = BalancedPool;\n\treturn balancedPool;\n}\n\nvar dispatcherWeakref;\nvar hasRequiredDispatcherWeakref;\n\nfunction requireDispatcherWeakref () {\n\tif (hasRequiredDispatcherWeakref) return dispatcherWeakref;\n\thasRequiredDispatcherWeakref = 1;\n\n\t/* istanbul ignore file: only for Node 12 */\n\n\tconst { kConnected, kSize } = requireSymbols$4();\n\n\tclass CompatWeakRef {\n\t  constructor (value) {\n\t    this.value = value;\n\t  }\n\n\t  deref () {\n\t    return this.value[kConnected] === 0 && this.value[kSize] === 0\n\t      ? undefined\n\t      : this.value\n\t  }\n\t}\n\n\tclass CompatFinalizer {\n\t  constructor (finalizer) {\n\t    this.finalizer = finalizer;\n\t  }\n\n\t  register (dispatcher, key) {\n\t    if (dispatcher.on) {\n\t      dispatcher.on('disconnect', () => {\n\t        if (dispatcher[kConnected] === 0 && dispatcher[kSize] === 0) {\n\t          this.finalizer(key);\n\t        }\n\t      });\n\t    }\n\t  }\n\t}\n\n\tdispatcherWeakref = function () {\n\t  // FIXME: remove workaround when the Node bug is fixed\n\t  // https://github.com/nodejs/node/issues/49344#issuecomment-1741776308\n\t  if (process.env.NODE_V8_COVERAGE) {\n\t    return {\n\t      WeakRef: CompatWeakRef,\n\t      FinalizationRegistry: CompatFinalizer\n\t    }\n\t  }\n\t  return {\n\t    WeakRef: commonjsGlobal.WeakRef || CompatWeakRef,\n\t    FinalizationRegistry: commonjsGlobal.FinalizationRegistry || CompatFinalizer\n\t  }\n\t};\n\treturn dispatcherWeakref;\n}\n\nvar agent;\nvar hasRequiredAgent;\n\nfunction requireAgent () {\n\tif (hasRequiredAgent) return agent;\n\thasRequiredAgent = 1;\n\n\tconst { InvalidArgumentError } = requireErrors$3();\n\tconst { kClients, kRunning, kClose, kDestroy, kDispatch, kInterceptors } = requireSymbols$4();\n\tconst DispatcherBase = requireDispatcherBase();\n\tconst Pool = requirePool();\n\tconst Client = requireClient$1();\n\tconst util = requireUtil$c();\n\tconst createRedirectInterceptor = requireRedirectInterceptor();\n\tconst { WeakRef, FinalizationRegistry } = requireDispatcherWeakref()();\n\n\tconst kOnConnect = Symbol('onConnect');\n\tconst kOnDisconnect = Symbol('onDisconnect');\n\tconst kOnConnectionError = Symbol('onConnectionError');\n\tconst kMaxRedirections = Symbol('maxRedirections');\n\tconst kOnDrain = Symbol('onDrain');\n\tconst kFactory = Symbol('factory');\n\tconst kFinalizer = Symbol('finalizer');\n\tconst kOptions = Symbol('options');\n\n\tfunction defaultFactory (origin, opts) {\n\t  return opts && opts.connections === 1\n\t    ? new Client(origin, opts)\n\t    : new Pool(origin, opts)\n\t}\n\n\tclass Agent extends DispatcherBase {\n\t  constructor ({ factory = defaultFactory, maxRedirections = 0, connect, ...options } = {}) {\n\t    super();\n\n\t    if (typeof factory !== 'function') {\n\t      throw new InvalidArgumentError('factory must be a function.')\n\t    }\n\n\t    if (connect != null && typeof connect !== 'function' && typeof connect !== 'object') {\n\t      throw new InvalidArgumentError('connect must be a function or an object')\n\t    }\n\n\t    if (!Number.isInteger(maxRedirections) || maxRedirections < 0) {\n\t      throw new InvalidArgumentError('maxRedirections must be a positive number')\n\t    }\n\n\t    if (connect && typeof connect !== 'function') {\n\t      connect = { ...connect };\n\t    }\n\n\t    this[kInterceptors] = options.interceptors && options.interceptors.Agent && Array.isArray(options.interceptors.Agent)\n\t      ? options.interceptors.Agent\n\t      : [createRedirectInterceptor({ maxRedirections })];\n\n\t    this[kOptions] = { ...util.deepClone(options), connect };\n\t    this[kOptions].interceptors = options.interceptors\n\t      ? { ...options.interceptors }\n\t      : undefined;\n\t    this[kMaxRedirections] = maxRedirections;\n\t    this[kFactory] = factory;\n\t    this[kClients] = new Map();\n\t    this[kFinalizer] = new FinalizationRegistry(/* istanbul ignore next: gc is undeterministic */ key => {\n\t      const ref = this[kClients].get(key);\n\t      if (ref !== undefined && ref.deref() === undefined) {\n\t        this[kClients].delete(key);\n\t      }\n\t    });\n\n\t    const agent = this;\n\n\t    this[kOnDrain] = (origin, targets) => {\n\t      agent.emit('drain', origin, [agent, ...targets]);\n\t    };\n\n\t    this[kOnConnect] = (origin, targets) => {\n\t      agent.emit('connect', origin, [agent, ...targets]);\n\t    };\n\n\t    this[kOnDisconnect] = (origin, targets, err) => {\n\t      agent.emit('disconnect', origin, [agent, ...targets], err);\n\t    };\n\n\t    this[kOnConnectionError] = (origin, targets, err) => {\n\t      agent.emit('connectionError', origin, [agent, ...targets], err);\n\t    };\n\t  }\n\n\t  get [kRunning] () {\n\t    let ret = 0;\n\t    for (const ref of this[kClients].values()) {\n\t      const client = ref.deref();\n\t      /* istanbul ignore next: gc is undeterministic */\n\t      if (client) {\n\t        ret += client[kRunning];\n\t      }\n\t    }\n\t    return ret\n\t  }\n\n\t  [kDispatch] (opts, handler) {\n\t    let key;\n\t    if (opts.origin && (typeof opts.origin === 'string' || opts.origin instanceof URL)) {\n\t      key = String(opts.origin);\n\t    } else {\n\t      throw new InvalidArgumentError('opts.origin must be a non-empty string or URL.')\n\t    }\n\n\t    const ref = this[kClients].get(key);\n\n\t    let dispatcher = ref ? ref.deref() : null;\n\t    if (!dispatcher) {\n\t      dispatcher = this[kFactory](opts.origin, this[kOptions])\n\t        .on('drain', this[kOnDrain])\n\t        .on('connect', this[kOnConnect])\n\t        .on('disconnect', this[kOnDisconnect])\n\t        .on('connectionError', this[kOnConnectionError]);\n\n\t      this[kClients].set(key, new WeakRef(dispatcher));\n\t      this[kFinalizer].register(dispatcher, key);\n\t    }\n\n\t    return dispatcher.dispatch(opts, handler)\n\t  }\n\n\t  async [kClose] () {\n\t    const closePromises = [];\n\t    for (const ref of this[kClients].values()) {\n\t      const client = ref.deref();\n\t      /* istanbul ignore else: gc is undeterministic */\n\t      if (client) {\n\t        closePromises.push(client.close());\n\t      }\n\t    }\n\n\t    await Promise.all(closePromises);\n\t  }\n\n\t  async [kDestroy] (err) {\n\t    const destroyPromises = [];\n\t    for (const ref of this[kClients].values()) {\n\t      const client = ref.deref();\n\t      /* istanbul ignore else: gc is undeterministic */\n\t      if (client) {\n\t        destroyPromises.push(client.destroy(err));\n\t      }\n\t    }\n\n\t    await Promise.all(destroyPromises);\n\t  }\n\t}\n\n\tagent = Agent;\n\treturn agent;\n}\n\nvar api = {};\n\nvar apiRequest = {exports: {}};\n\nvar readable$2;\nvar hasRequiredReadable$2;\n\nfunction requireReadable$2 () {\n\tif (hasRequiredReadable$2) return readable$2;\n\thasRequiredReadable$2 = 1;\n\n\tconst assert = require$$0$9;\n\tconst { Readable } = require$$0$b;\n\tconst { RequestAbortedError, NotSupportedError, InvalidArgumentError } = requireErrors$3();\n\tconst util = requireUtil$c();\n\tconst { ReadableStreamFrom, toUSVString } = requireUtil$c();\n\n\tlet Blob;\n\n\tconst kConsume = Symbol('kConsume');\n\tconst kReading = Symbol('kReading');\n\tconst kBody = Symbol('kBody');\n\tconst kAbort = Symbol('abort');\n\tconst kContentType = Symbol('kContentType');\n\n\tconst noop = () => {};\n\n\treadable$2 = class BodyReadable extends Readable {\n\t  constructor ({\n\t    resume,\n\t    abort,\n\t    contentType = '',\n\t    highWaterMark = 64 * 1024 // Same as nodejs fs streams.\n\t  }) {\n\t    super({\n\t      autoDestroy: true,\n\t      read: resume,\n\t      highWaterMark\n\t    });\n\n\t    this._readableState.dataEmitted = false;\n\n\t    this[kAbort] = abort;\n\t    this[kConsume] = null;\n\t    this[kBody] = null;\n\t    this[kContentType] = contentType;\n\n\t    // Is stream being consumed through Readable API?\n\t    // This is an optimization so that we avoid checking\n\t    // for 'data' and 'readable' listeners in the hot path\n\t    // inside push().\n\t    this[kReading] = false;\n\t  }\n\n\t  destroy (err) {\n\t    if (this.destroyed) {\n\t      // Node < 16\n\t      return this\n\t    }\n\n\t    if (!err && !this._readableState.endEmitted) {\n\t      err = new RequestAbortedError();\n\t    }\n\n\t    if (err) {\n\t      this[kAbort]();\n\t    }\n\n\t    return super.destroy(err)\n\t  }\n\n\t  emit (ev, ...args) {\n\t    if (ev === 'data') {\n\t      // Node < 16.7\n\t      this._readableState.dataEmitted = true;\n\t    } else if (ev === 'error') {\n\t      // Node < 16\n\t      this._readableState.errorEmitted = true;\n\t    }\n\t    return super.emit(ev, ...args)\n\t  }\n\n\t  on (ev, ...args) {\n\t    if (ev === 'data' || ev === 'readable') {\n\t      this[kReading] = true;\n\t    }\n\t    return super.on(ev, ...args)\n\t  }\n\n\t  addListener (ev, ...args) {\n\t    return this.on(ev, ...args)\n\t  }\n\n\t  off (ev, ...args) {\n\t    const ret = super.off(ev, ...args);\n\t    if (ev === 'data' || ev === 'readable') {\n\t      this[kReading] = (\n\t        this.listenerCount('data') > 0 ||\n\t        this.listenerCount('readable') > 0\n\t      );\n\t    }\n\t    return ret\n\t  }\n\n\t  removeListener (ev, ...args) {\n\t    return this.off(ev, ...args)\n\t  }\n\n\t  push (chunk) {\n\t    if (this[kConsume] && chunk !== null && this.readableLength === 0) {\n\t      consumePush(this[kConsume], chunk);\n\t      return this[kReading] ? super.push(chunk) : true\n\t    }\n\t    return super.push(chunk)\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-body-text\n\t  async text () {\n\t    return consume(this, 'text')\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-body-json\n\t  async json () {\n\t    return consume(this, 'json')\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-body-blob\n\t  async blob () {\n\t    return consume(this, 'blob')\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-body-arraybuffer\n\t  async arrayBuffer () {\n\t    return consume(this, 'arrayBuffer')\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-body-formdata\n\t  async formData () {\n\t    // TODO: Implement.\n\t    throw new NotSupportedError()\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-body-bodyused\n\t  get bodyUsed () {\n\t    return util.isDisturbed(this)\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-body-body\n\t  get body () {\n\t    if (!this[kBody]) {\n\t      this[kBody] = ReadableStreamFrom(this);\n\t      if (this[kConsume]) {\n\t        // TODO: Is this the best way to force a lock?\n\t        this[kBody].getReader(); // Ensure stream is locked.\n\t        assert(this[kBody].locked);\n\t      }\n\t    }\n\t    return this[kBody]\n\t  }\n\n\t  dump (opts) {\n\t    let limit = opts && Number.isFinite(opts.limit) ? opts.limit : 262144;\n\t    const signal = opts && opts.signal;\n\n\t    if (signal) {\n\t      try {\n\t        if (typeof signal !== 'object' || !('aborted' in signal)) {\n\t          throw new InvalidArgumentError('signal must be an AbortSignal')\n\t        }\n\t        util.throwIfAborted(signal);\n\t      } catch (err) {\n\t        return Promise.reject(err)\n\t      }\n\t    }\n\n\t    if (this.closed) {\n\t      return Promise.resolve(null)\n\t    }\n\n\t    return new Promise((resolve, reject) => {\n\t      const signalListenerCleanup = signal\n\t        ? util.addAbortListener(signal, () => {\n\t          this.destroy();\n\t        })\n\t        : noop;\n\n\t      this\n\t        .on('close', function () {\n\t          signalListenerCleanup();\n\t          if (signal && signal.aborted) {\n\t            reject(signal.reason || Object.assign(new Error('The operation was aborted'), { name: 'AbortError' }));\n\t          } else {\n\t            resolve(null);\n\t          }\n\t        })\n\t        .on('error', noop)\n\t        .on('data', function (chunk) {\n\t          limit -= chunk.length;\n\t          if (limit <= 0) {\n\t            this.destroy();\n\t          }\n\t        })\n\t        .resume();\n\t    })\n\t  }\n\t};\n\n\t// https://streams.spec.whatwg.org/#readablestream-locked\n\tfunction isLocked (self) {\n\t  // Consume is an implicit lock.\n\t  return (self[kBody] && self[kBody].locked === true) || self[kConsume]\n\t}\n\n\t// https://fetch.spec.whatwg.org/#body-unusable\n\tfunction isUnusable (self) {\n\t  return util.isDisturbed(self) || isLocked(self)\n\t}\n\n\tasync function consume (stream, type) {\n\t  if (isUnusable(stream)) {\n\t    throw new TypeError('unusable')\n\t  }\n\n\t  assert(!stream[kConsume]);\n\n\t  return new Promise((resolve, reject) => {\n\t    stream[kConsume] = {\n\t      type,\n\t      stream,\n\t      resolve,\n\t      reject,\n\t      length: 0,\n\t      body: []\n\t    };\n\n\t    stream\n\t      .on('error', function (err) {\n\t        consumeFinish(this[kConsume], err);\n\t      })\n\t      .on('close', function () {\n\t        if (this[kConsume].body !== null) {\n\t          consumeFinish(this[kConsume], new RequestAbortedError());\n\t        }\n\t      });\n\n\t    process.nextTick(consumeStart, stream[kConsume]);\n\t  })\n\t}\n\n\tfunction consumeStart (consume) {\n\t  if (consume.body === null) {\n\t    return\n\t  }\n\n\t  const { _readableState: state } = consume.stream;\n\n\t  for (const chunk of state.buffer) {\n\t    consumePush(consume, chunk);\n\t  }\n\n\t  if (state.endEmitted) {\n\t    consumeEnd(this[kConsume]);\n\t  } else {\n\t    consume.stream.on('end', function () {\n\t      consumeEnd(this[kConsume]);\n\t    });\n\t  }\n\n\t  consume.stream.resume();\n\n\t  while (consume.stream.read() != null) {\n\t    // Loop\n\t  }\n\t}\n\n\tfunction consumeEnd (consume) {\n\t  const { type, body, resolve, stream, length } = consume;\n\n\t  try {\n\t    if (type === 'text') {\n\t      resolve(toUSVString(Buffer.concat(body)));\n\t    } else if (type === 'json') {\n\t      resolve(JSON.parse(Buffer.concat(body)));\n\t    } else if (type === 'arrayBuffer') {\n\t      const dst = new Uint8Array(length);\n\n\t      let pos = 0;\n\t      for (const buf of body) {\n\t        dst.set(buf, pos);\n\t        pos += buf.byteLength;\n\t      }\n\n\t      resolve(dst.buffer);\n\t    } else if (type === 'blob') {\n\t      if (!Blob) {\n\t        Blob = require('buffer').Blob;\n\t      }\n\t      resolve(new Blob(body, { type: stream[kContentType] }));\n\t    }\n\n\t    consumeFinish(consume);\n\t  } catch (err) {\n\t    stream.destroy(err);\n\t  }\n\t}\n\n\tfunction consumePush (consume, chunk) {\n\t  consume.length += chunk.length;\n\t  consume.body.push(chunk);\n\t}\n\n\tfunction consumeFinish (consume, err) {\n\t  if (consume.body === null) {\n\t    return\n\t  }\n\n\t  if (err) {\n\t    consume.reject(err);\n\t  } else {\n\t    consume.resolve();\n\t  }\n\n\t  consume.type = null;\n\t  consume.stream = null;\n\t  consume.resolve = null;\n\t  consume.reject = null;\n\t  consume.length = 0;\n\t  consume.body = null;\n\t}\n\treturn readable$2;\n}\n\nvar util$a;\nvar hasRequiredUtil$a;\n\nfunction requireUtil$a () {\n\tif (hasRequiredUtil$a) return util$a;\n\thasRequiredUtil$a = 1;\n\tconst assert = require$$0$9;\n\tconst {\n\t  ResponseStatusCodeError\n\t} = requireErrors$3();\n\tconst { toUSVString } = requireUtil$c();\n\n\tasync function getResolveErrorBodyCallback ({ callback, body, contentType, statusCode, statusMessage, headers }) {\n\t  assert(body);\n\n\t  let chunks = [];\n\t  let limit = 0;\n\n\t  for await (const chunk of body) {\n\t    chunks.push(chunk);\n\t    limit += chunk.length;\n\t    if (limit > 128 * 1024) {\n\t      chunks = null;\n\t      break\n\t    }\n\t  }\n\n\t  if (statusCode === 204 || !contentType || !chunks) {\n\t    process.nextTick(callback, new ResponseStatusCodeError(`Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`, statusCode, headers));\n\t    return\n\t  }\n\n\t  try {\n\t    if (contentType.startsWith('application/json')) {\n\t      const payload = JSON.parse(toUSVString(Buffer.concat(chunks)));\n\t      process.nextTick(callback, new ResponseStatusCodeError(`Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`, statusCode, headers, payload));\n\t      return\n\t    }\n\n\t    if (contentType.startsWith('text/')) {\n\t      const payload = toUSVString(Buffer.concat(chunks));\n\t      process.nextTick(callback, new ResponseStatusCodeError(`Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`, statusCode, headers, payload));\n\t      return\n\t    }\n\t  } catch (err) {\n\t    // Process in a fallback if error\n\t  }\n\n\t  process.nextTick(callback, new ResponseStatusCodeError(`Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`, statusCode, headers));\n\t}\n\n\tutil$a = { getResolveErrorBodyCallback };\n\treturn util$a;\n}\n\nvar abortSignal$2;\nvar hasRequiredAbortSignal;\n\nfunction requireAbortSignal () {\n\tif (hasRequiredAbortSignal) return abortSignal$2;\n\thasRequiredAbortSignal = 1;\n\tconst { addAbortListener } = requireUtil$c();\n\tconst { RequestAbortedError } = requireErrors$3();\n\n\tconst kListener = Symbol('kListener');\n\tconst kSignal = Symbol('kSignal');\n\n\tfunction abort (self) {\n\t  if (self.abort) {\n\t    self.abort();\n\t  } else {\n\t    self.onError(new RequestAbortedError());\n\t  }\n\t}\n\n\tfunction addSignal (self, signal) {\n\t  self[kSignal] = null;\n\t  self[kListener] = null;\n\n\t  if (!signal) {\n\t    return\n\t  }\n\n\t  if (signal.aborted) {\n\t    abort(self);\n\t    return\n\t  }\n\n\t  self[kSignal] = signal;\n\t  self[kListener] = () => {\n\t    abort(self);\n\t  };\n\n\t  addAbortListener(self[kSignal], self[kListener]);\n\t}\n\n\tfunction removeSignal (self) {\n\t  if (!self[kSignal]) {\n\t    return\n\t  }\n\n\t  if ('removeEventListener' in self[kSignal]) {\n\t    self[kSignal].removeEventListener('abort', self[kListener]);\n\t  } else {\n\t    self[kSignal].removeListener('abort', self[kListener]);\n\t  }\n\n\t  self[kSignal] = null;\n\t  self[kListener] = null;\n\t}\n\n\tabortSignal$2 = {\n\t  addSignal,\n\t  removeSignal\n\t};\n\treturn abortSignal$2;\n}\n\nvar hasRequiredApiRequest;\n\nfunction requireApiRequest () {\n\tif (hasRequiredApiRequest) return apiRequest.exports;\n\thasRequiredApiRequest = 1;\n\n\tconst Readable = requireReadable$2();\n\tconst {\n\t  InvalidArgumentError,\n\t  RequestAbortedError\n\t} = requireErrors$3();\n\tconst util = requireUtil$c();\n\tconst { getResolveErrorBodyCallback } = requireUtil$a();\n\tconst { AsyncResource } = require$$4$1;\n\tconst { addSignal, removeSignal } = requireAbortSignal();\n\n\tclass RequestHandler extends AsyncResource {\n\t  constructor (opts, callback) {\n\t    if (!opts || typeof opts !== 'object') {\n\t      throw new InvalidArgumentError('invalid opts')\n\t    }\n\n\t    const { signal, method, opaque, body, onInfo, responseHeaders, throwOnError, highWaterMark } = opts;\n\n\t    try {\n\t      if (typeof callback !== 'function') {\n\t        throw new InvalidArgumentError('invalid callback')\n\t      }\n\n\t      if (highWaterMark && (typeof highWaterMark !== 'number' || highWaterMark < 0)) {\n\t        throw new InvalidArgumentError('invalid highWaterMark')\n\t      }\n\n\t      if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {\n\t        throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')\n\t      }\n\n\t      if (method === 'CONNECT') {\n\t        throw new InvalidArgumentError('invalid method')\n\t      }\n\n\t      if (onInfo && typeof onInfo !== 'function') {\n\t        throw new InvalidArgumentError('invalid onInfo callback')\n\t      }\n\n\t      super('UNDICI_REQUEST');\n\t    } catch (err) {\n\t      if (util.isStream(body)) {\n\t        util.destroy(body.on('error', util.nop), err);\n\t      }\n\t      throw err\n\t    }\n\n\t    this.responseHeaders = responseHeaders || null;\n\t    this.opaque = opaque || null;\n\t    this.callback = callback;\n\t    this.res = null;\n\t    this.abort = null;\n\t    this.body = body;\n\t    this.trailers = {};\n\t    this.context = null;\n\t    this.onInfo = onInfo || null;\n\t    this.throwOnError = throwOnError;\n\t    this.highWaterMark = highWaterMark;\n\n\t    if (util.isStream(body)) {\n\t      body.on('error', (err) => {\n\t        this.onError(err);\n\t      });\n\t    }\n\n\t    addSignal(this, signal);\n\t  }\n\n\t  onConnect (abort, context) {\n\t    if (!this.callback) {\n\t      throw new RequestAbortedError()\n\t    }\n\n\t    this.abort = abort;\n\t    this.context = context;\n\t  }\n\n\t  onHeaders (statusCode, rawHeaders, resume, statusMessage) {\n\t    const { callback, opaque, abort, context, responseHeaders, highWaterMark } = this;\n\n\t    const headers = responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders);\n\n\t    if (statusCode < 200) {\n\t      if (this.onInfo) {\n\t        this.onInfo({ statusCode, headers });\n\t      }\n\t      return\n\t    }\n\n\t    const parsedHeaders = responseHeaders === 'raw' ? util.parseHeaders(rawHeaders) : headers;\n\t    const contentType = parsedHeaders['content-type'];\n\t    const body = new Readable({ resume, abort, contentType, highWaterMark });\n\n\t    this.callback = null;\n\t    this.res = body;\n\t    if (callback !== null) {\n\t      if (this.throwOnError && statusCode >= 400) {\n\t        this.runInAsyncScope(getResolveErrorBodyCallback, null,\n\t          { callback, body, contentType, statusCode, statusMessage, headers }\n\t        );\n\t      } else {\n\t        this.runInAsyncScope(callback, null, null, {\n\t          statusCode,\n\t          headers,\n\t          trailers: this.trailers,\n\t          opaque,\n\t          body,\n\t          context\n\t        });\n\t      }\n\t    }\n\t  }\n\n\t  onData (chunk) {\n\t    const { res } = this;\n\t    return res.push(chunk)\n\t  }\n\n\t  onComplete (trailers) {\n\t    const { res } = this;\n\n\t    removeSignal(this);\n\n\t    util.parseHeaders(trailers, this.trailers);\n\n\t    res.push(null);\n\t  }\n\n\t  onError (err) {\n\t    const { res, callback, body, opaque } = this;\n\n\t    removeSignal(this);\n\n\t    if (callback) {\n\t      // TODO: Does this need queueMicrotask?\n\t      this.callback = null;\n\t      queueMicrotask(() => {\n\t        this.runInAsyncScope(callback, null, err, { opaque });\n\t      });\n\t    }\n\n\t    if (res) {\n\t      this.res = null;\n\t      // Ensure all queued handlers are invoked before destroying res.\n\t      queueMicrotask(() => {\n\t        util.destroy(res, err);\n\t      });\n\t    }\n\n\t    if (body) {\n\t      this.body = null;\n\t      util.destroy(body, err);\n\t    }\n\t  }\n\t}\n\n\tfunction request (opts, callback) {\n\t  if (callback === undefined) {\n\t    return new Promise((resolve, reject) => {\n\t      request.call(this, opts, (err, data) => {\n\t        return err ? reject(err) : resolve(data)\n\t      });\n\t    })\n\t  }\n\n\t  try {\n\t    this.dispatch(opts, new RequestHandler(opts, callback));\n\t  } catch (err) {\n\t    if (typeof callback !== 'function') {\n\t      throw err\n\t    }\n\t    const opaque = opts && opts.opaque;\n\t    queueMicrotask(() => callback(err, { opaque }));\n\t  }\n\t}\n\n\tapiRequest.exports = request;\n\tapiRequest.exports.RequestHandler = RequestHandler;\n\treturn apiRequest.exports;\n}\n\nvar apiStream;\nvar hasRequiredApiStream;\n\nfunction requireApiStream () {\n\tif (hasRequiredApiStream) return apiStream;\n\thasRequiredApiStream = 1;\n\n\tconst { finished, PassThrough } = require$$0$b;\n\tconst {\n\t  InvalidArgumentError,\n\t  InvalidReturnValueError,\n\t  RequestAbortedError\n\t} = requireErrors$3();\n\tconst util = requireUtil$c();\n\tconst { getResolveErrorBodyCallback } = requireUtil$a();\n\tconst { AsyncResource } = require$$4$1;\n\tconst { addSignal, removeSignal } = requireAbortSignal();\n\n\tclass StreamHandler extends AsyncResource {\n\t  constructor (opts, factory, callback) {\n\t    if (!opts || typeof opts !== 'object') {\n\t      throw new InvalidArgumentError('invalid opts')\n\t    }\n\n\t    const { signal, method, opaque, body, onInfo, responseHeaders, throwOnError } = opts;\n\n\t    try {\n\t      if (typeof callback !== 'function') {\n\t        throw new InvalidArgumentError('invalid callback')\n\t      }\n\n\t      if (typeof factory !== 'function') {\n\t        throw new InvalidArgumentError('invalid factory')\n\t      }\n\n\t      if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {\n\t        throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')\n\t      }\n\n\t      if (method === 'CONNECT') {\n\t        throw new InvalidArgumentError('invalid method')\n\t      }\n\n\t      if (onInfo && typeof onInfo !== 'function') {\n\t        throw new InvalidArgumentError('invalid onInfo callback')\n\t      }\n\n\t      super('UNDICI_STREAM');\n\t    } catch (err) {\n\t      if (util.isStream(body)) {\n\t        util.destroy(body.on('error', util.nop), err);\n\t      }\n\t      throw err\n\t    }\n\n\t    this.responseHeaders = responseHeaders || null;\n\t    this.opaque = opaque || null;\n\t    this.factory = factory;\n\t    this.callback = callback;\n\t    this.res = null;\n\t    this.abort = null;\n\t    this.context = null;\n\t    this.trailers = null;\n\t    this.body = body;\n\t    this.onInfo = onInfo || null;\n\t    this.throwOnError = throwOnError || false;\n\n\t    if (util.isStream(body)) {\n\t      body.on('error', (err) => {\n\t        this.onError(err);\n\t      });\n\t    }\n\n\t    addSignal(this, signal);\n\t  }\n\n\t  onConnect (abort, context) {\n\t    if (!this.callback) {\n\t      throw new RequestAbortedError()\n\t    }\n\n\t    this.abort = abort;\n\t    this.context = context;\n\t  }\n\n\t  onHeaders (statusCode, rawHeaders, resume, statusMessage) {\n\t    const { factory, opaque, context, callback, responseHeaders } = this;\n\n\t    const headers = responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders);\n\n\t    if (statusCode < 200) {\n\t      if (this.onInfo) {\n\t        this.onInfo({ statusCode, headers });\n\t      }\n\t      return\n\t    }\n\n\t    this.factory = null;\n\n\t    let res;\n\n\t    if (this.throwOnError && statusCode >= 400) {\n\t      const parsedHeaders = responseHeaders === 'raw' ? util.parseHeaders(rawHeaders) : headers;\n\t      const contentType = parsedHeaders['content-type'];\n\t      res = new PassThrough();\n\n\t      this.callback = null;\n\t      this.runInAsyncScope(getResolveErrorBodyCallback, null,\n\t        { callback, body: res, contentType, statusCode, statusMessage, headers }\n\t      );\n\t    } else {\n\t      if (factory === null) {\n\t        return\n\t      }\n\n\t      res = this.runInAsyncScope(factory, null, {\n\t        statusCode,\n\t        headers,\n\t        opaque,\n\t        context\n\t      });\n\n\t      if (\n\t        !res ||\n\t        typeof res.write !== 'function' ||\n\t        typeof res.end !== 'function' ||\n\t        typeof res.on !== 'function'\n\t      ) {\n\t        throw new InvalidReturnValueError('expected Writable')\n\t      }\n\n\t      // TODO: Avoid finished. It registers an unnecessary amount of listeners.\n\t      finished(res, { readable: false }, (err) => {\n\t        const { callback, res, opaque, trailers, abort } = this;\n\n\t        this.res = null;\n\t        if (err || !res.readable) {\n\t          util.destroy(res, err);\n\t        }\n\n\t        this.callback = null;\n\t        this.runInAsyncScope(callback, null, err || null, { opaque, trailers });\n\n\t        if (err) {\n\t          abort();\n\t        }\n\t      });\n\t    }\n\n\t    res.on('drain', resume);\n\n\t    this.res = res;\n\n\t    const needDrain = res.writableNeedDrain !== undefined\n\t      ? res.writableNeedDrain\n\t      : res._writableState && res._writableState.needDrain;\n\n\t    return needDrain !== true\n\t  }\n\n\t  onData (chunk) {\n\t    const { res } = this;\n\n\t    return res ? res.write(chunk) : true\n\t  }\n\n\t  onComplete (trailers) {\n\t    const { res } = this;\n\n\t    removeSignal(this);\n\n\t    if (!res) {\n\t      return\n\t    }\n\n\t    this.trailers = util.parseHeaders(trailers);\n\n\t    res.end();\n\t  }\n\n\t  onError (err) {\n\t    const { res, callback, opaque, body } = this;\n\n\t    removeSignal(this);\n\n\t    this.factory = null;\n\n\t    if (res) {\n\t      this.res = null;\n\t      util.destroy(res, err);\n\t    } else if (callback) {\n\t      this.callback = null;\n\t      queueMicrotask(() => {\n\t        this.runInAsyncScope(callback, null, err, { opaque });\n\t      });\n\t    }\n\n\t    if (body) {\n\t      this.body = null;\n\t      util.destroy(body, err);\n\t    }\n\t  }\n\t}\n\n\tfunction stream (opts, factory, callback) {\n\t  if (callback === undefined) {\n\t    return new Promise((resolve, reject) => {\n\t      stream.call(this, opts, factory, (err, data) => {\n\t        return err ? reject(err) : resolve(data)\n\t      });\n\t    })\n\t  }\n\n\t  try {\n\t    this.dispatch(opts, new StreamHandler(opts, factory, callback));\n\t  } catch (err) {\n\t    if (typeof callback !== 'function') {\n\t      throw err\n\t    }\n\t    const opaque = opts && opts.opaque;\n\t    queueMicrotask(() => callback(err, { opaque }));\n\t  }\n\t}\n\n\tapiStream = stream;\n\treturn apiStream;\n}\n\nvar apiPipeline;\nvar hasRequiredApiPipeline;\n\nfunction requireApiPipeline () {\n\tif (hasRequiredApiPipeline) return apiPipeline;\n\thasRequiredApiPipeline = 1;\n\n\tconst {\n\t  Readable,\n\t  Duplex,\n\t  PassThrough\n\t} = require$$0$b;\n\tconst {\n\t  InvalidArgumentError,\n\t  InvalidReturnValueError,\n\t  RequestAbortedError\n\t} = requireErrors$3();\n\tconst util = requireUtil$c();\n\tconst { AsyncResource } = require$$4$1;\n\tconst { addSignal, removeSignal } = requireAbortSignal();\n\tconst assert = require$$0$9;\n\n\tconst kResume = Symbol('resume');\n\n\tclass PipelineRequest extends Readable {\n\t  constructor () {\n\t    super({ autoDestroy: true });\n\n\t    this[kResume] = null;\n\t  }\n\n\t  _read () {\n\t    const { [kResume]: resume } = this;\n\n\t    if (resume) {\n\t      this[kResume] = null;\n\t      resume();\n\t    }\n\t  }\n\n\t  _destroy (err, callback) {\n\t    this._read();\n\n\t    callback(err);\n\t  }\n\t}\n\n\tclass PipelineResponse extends Readable {\n\t  constructor (resume) {\n\t    super({ autoDestroy: true });\n\t    this[kResume] = resume;\n\t  }\n\n\t  _read () {\n\t    this[kResume]();\n\t  }\n\n\t  _destroy (err, callback) {\n\t    if (!err && !this._readableState.endEmitted) {\n\t      err = new RequestAbortedError();\n\t    }\n\n\t    callback(err);\n\t  }\n\t}\n\n\tclass PipelineHandler extends AsyncResource {\n\t  constructor (opts, handler) {\n\t    if (!opts || typeof opts !== 'object') {\n\t      throw new InvalidArgumentError('invalid opts')\n\t    }\n\n\t    if (typeof handler !== 'function') {\n\t      throw new InvalidArgumentError('invalid handler')\n\t    }\n\n\t    const { signal, method, opaque, onInfo, responseHeaders } = opts;\n\n\t    if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {\n\t      throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')\n\t    }\n\n\t    if (method === 'CONNECT') {\n\t      throw new InvalidArgumentError('invalid method')\n\t    }\n\n\t    if (onInfo && typeof onInfo !== 'function') {\n\t      throw new InvalidArgumentError('invalid onInfo callback')\n\t    }\n\n\t    super('UNDICI_PIPELINE');\n\n\t    this.opaque = opaque || null;\n\t    this.responseHeaders = responseHeaders || null;\n\t    this.handler = handler;\n\t    this.abort = null;\n\t    this.context = null;\n\t    this.onInfo = onInfo || null;\n\n\t    this.req = new PipelineRequest().on('error', util.nop);\n\n\t    this.ret = new Duplex({\n\t      readableObjectMode: opts.objectMode,\n\t      autoDestroy: true,\n\t      read: () => {\n\t        const { body } = this;\n\n\t        if (body && body.resume) {\n\t          body.resume();\n\t        }\n\t      },\n\t      write: (chunk, encoding, callback) => {\n\t        const { req } = this;\n\n\t        if (req.push(chunk, encoding) || req._readableState.destroyed) {\n\t          callback();\n\t        } else {\n\t          req[kResume] = callback;\n\t        }\n\t      },\n\t      destroy: (err, callback) => {\n\t        const { body, req, res, ret, abort } = this;\n\n\t        if (!err && !ret._readableState.endEmitted) {\n\t          err = new RequestAbortedError();\n\t        }\n\n\t        if (abort && err) {\n\t          abort();\n\t        }\n\n\t        util.destroy(body, err);\n\t        util.destroy(req, err);\n\t        util.destroy(res, err);\n\n\t        removeSignal(this);\n\n\t        callback(err);\n\t      }\n\t    }).on('prefinish', () => {\n\t      const { req } = this;\n\n\t      // Node < 15 does not call _final in same tick.\n\t      req.push(null);\n\t    });\n\n\t    this.res = null;\n\n\t    addSignal(this, signal);\n\t  }\n\n\t  onConnect (abort, context) {\n\t    const { ret, res } = this;\n\n\t    assert(!res, 'pipeline cannot be retried');\n\n\t    if (ret.destroyed) {\n\t      throw new RequestAbortedError()\n\t    }\n\n\t    this.abort = abort;\n\t    this.context = context;\n\t  }\n\n\t  onHeaders (statusCode, rawHeaders, resume) {\n\t    const { opaque, handler, context } = this;\n\n\t    if (statusCode < 200) {\n\t      if (this.onInfo) {\n\t        const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders);\n\t        this.onInfo({ statusCode, headers });\n\t      }\n\t      return\n\t    }\n\n\t    this.res = new PipelineResponse(resume);\n\n\t    let body;\n\t    try {\n\t      this.handler = null;\n\t      const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders);\n\t      body = this.runInAsyncScope(handler, null, {\n\t        statusCode,\n\t        headers,\n\t        opaque,\n\t        body: this.res,\n\t        context\n\t      });\n\t    } catch (err) {\n\t      this.res.on('error', util.nop);\n\t      throw err\n\t    }\n\n\t    if (!body || typeof body.on !== 'function') {\n\t      throw new InvalidReturnValueError('expected Readable')\n\t    }\n\n\t    body\n\t      .on('data', (chunk) => {\n\t        const { ret, body } = this;\n\n\t        if (!ret.push(chunk) && body.pause) {\n\t          body.pause();\n\t        }\n\t      })\n\t      .on('error', (err) => {\n\t        const { ret } = this;\n\n\t        util.destroy(ret, err);\n\t      })\n\t      .on('end', () => {\n\t        const { ret } = this;\n\n\t        ret.push(null);\n\t      })\n\t      .on('close', () => {\n\t        const { ret } = this;\n\n\t        if (!ret._readableState.ended) {\n\t          util.destroy(ret, new RequestAbortedError());\n\t        }\n\t      });\n\n\t    this.body = body;\n\t  }\n\n\t  onData (chunk) {\n\t    const { res } = this;\n\t    return res.push(chunk)\n\t  }\n\n\t  onComplete (trailers) {\n\t    const { res } = this;\n\t    res.push(null);\n\t  }\n\n\t  onError (err) {\n\t    const { ret } = this;\n\t    this.handler = null;\n\t    util.destroy(ret, err);\n\t  }\n\t}\n\n\tfunction pipeline (opts, handler) {\n\t  try {\n\t    const pipelineHandler = new PipelineHandler(opts, handler);\n\t    this.dispatch({ ...opts, body: pipelineHandler.req }, pipelineHandler);\n\t    return pipelineHandler.ret\n\t  } catch (err) {\n\t    return new PassThrough().destroy(err)\n\t  }\n\t}\n\n\tapiPipeline = pipeline;\n\treturn apiPipeline;\n}\n\nvar apiUpgrade;\nvar hasRequiredApiUpgrade;\n\nfunction requireApiUpgrade () {\n\tif (hasRequiredApiUpgrade) return apiUpgrade;\n\thasRequiredApiUpgrade = 1;\n\n\tconst { InvalidArgumentError, RequestAbortedError, SocketError } = requireErrors$3();\n\tconst { AsyncResource } = require$$4$1;\n\tconst util = requireUtil$c();\n\tconst { addSignal, removeSignal } = requireAbortSignal();\n\tconst assert = require$$0$9;\n\n\tclass UpgradeHandler extends AsyncResource {\n\t  constructor (opts, callback) {\n\t    if (!opts || typeof opts !== 'object') {\n\t      throw new InvalidArgumentError('invalid opts')\n\t    }\n\n\t    if (typeof callback !== 'function') {\n\t      throw new InvalidArgumentError('invalid callback')\n\t    }\n\n\t    const { signal, opaque, responseHeaders } = opts;\n\n\t    if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {\n\t      throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')\n\t    }\n\n\t    super('UNDICI_UPGRADE');\n\n\t    this.responseHeaders = responseHeaders || null;\n\t    this.opaque = opaque || null;\n\t    this.callback = callback;\n\t    this.abort = null;\n\t    this.context = null;\n\n\t    addSignal(this, signal);\n\t  }\n\n\t  onConnect (abort, context) {\n\t    if (!this.callback) {\n\t      throw new RequestAbortedError()\n\t    }\n\n\t    this.abort = abort;\n\t    this.context = null;\n\t  }\n\n\t  onHeaders () {\n\t    throw new SocketError('bad upgrade', null)\n\t  }\n\n\t  onUpgrade (statusCode, rawHeaders, socket) {\n\t    const { callback, opaque, context } = this;\n\n\t    assert.strictEqual(statusCode, 101);\n\n\t    removeSignal(this);\n\n\t    this.callback = null;\n\t    const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders);\n\t    this.runInAsyncScope(callback, null, null, {\n\t      headers,\n\t      socket,\n\t      opaque,\n\t      context\n\t    });\n\t  }\n\n\t  onError (err) {\n\t    const { callback, opaque } = this;\n\n\t    removeSignal(this);\n\n\t    if (callback) {\n\t      this.callback = null;\n\t      queueMicrotask(() => {\n\t        this.runInAsyncScope(callback, null, err, { opaque });\n\t      });\n\t    }\n\t  }\n\t}\n\n\tfunction upgrade (opts, callback) {\n\t  if (callback === undefined) {\n\t    return new Promise((resolve, reject) => {\n\t      upgrade.call(this, opts, (err, data) => {\n\t        return err ? reject(err) : resolve(data)\n\t      });\n\t    })\n\t  }\n\n\t  try {\n\t    const upgradeHandler = new UpgradeHandler(opts, callback);\n\t    this.dispatch({\n\t      ...opts,\n\t      method: opts.method || 'GET',\n\t      upgrade: opts.protocol || 'Websocket'\n\t    }, upgradeHandler);\n\t  } catch (err) {\n\t    if (typeof callback !== 'function') {\n\t      throw err\n\t    }\n\t    const opaque = opts && opts.opaque;\n\t    queueMicrotask(() => callback(err, { opaque }));\n\t  }\n\t}\n\n\tapiUpgrade = upgrade;\n\treturn apiUpgrade;\n}\n\nvar apiConnect;\nvar hasRequiredApiConnect;\n\nfunction requireApiConnect () {\n\tif (hasRequiredApiConnect) return apiConnect;\n\thasRequiredApiConnect = 1;\n\n\tconst { AsyncResource } = require$$4$1;\n\tconst { InvalidArgumentError, RequestAbortedError, SocketError } = requireErrors$3();\n\tconst util = requireUtil$c();\n\tconst { addSignal, removeSignal } = requireAbortSignal();\n\n\tclass ConnectHandler extends AsyncResource {\n\t  constructor (opts, callback) {\n\t    if (!opts || typeof opts !== 'object') {\n\t      throw new InvalidArgumentError('invalid opts')\n\t    }\n\n\t    if (typeof callback !== 'function') {\n\t      throw new InvalidArgumentError('invalid callback')\n\t    }\n\n\t    const { signal, opaque, responseHeaders } = opts;\n\n\t    if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {\n\t      throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')\n\t    }\n\n\t    super('UNDICI_CONNECT');\n\n\t    this.opaque = opaque || null;\n\t    this.responseHeaders = responseHeaders || null;\n\t    this.callback = callback;\n\t    this.abort = null;\n\n\t    addSignal(this, signal);\n\t  }\n\n\t  onConnect (abort, context) {\n\t    if (!this.callback) {\n\t      throw new RequestAbortedError()\n\t    }\n\n\t    this.abort = abort;\n\t    this.context = context;\n\t  }\n\n\t  onHeaders () {\n\t    throw new SocketError('bad connect', null)\n\t  }\n\n\t  onUpgrade (statusCode, rawHeaders, socket) {\n\t    const { callback, opaque, context } = this;\n\n\t    removeSignal(this);\n\n\t    this.callback = null;\n\n\t    let headers = rawHeaders;\n\t    // Indicates is an HTTP2Session\n\t    if (headers != null) {\n\t      headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders);\n\t    }\n\n\t    this.runInAsyncScope(callback, null, null, {\n\t      statusCode,\n\t      headers,\n\t      socket,\n\t      opaque,\n\t      context\n\t    });\n\t  }\n\n\t  onError (err) {\n\t    const { callback, opaque } = this;\n\n\t    removeSignal(this);\n\n\t    if (callback) {\n\t      this.callback = null;\n\t      queueMicrotask(() => {\n\t        this.runInAsyncScope(callback, null, err, { opaque });\n\t      });\n\t    }\n\t  }\n\t}\n\n\tfunction connect (opts, callback) {\n\t  if (callback === undefined) {\n\t    return new Promise((resolve, reject) => {\n\t      connect.call(this, opts, (err, data) => {\n\t        return err ? reject(err) : resolve(data)\n\t      });\n\t    })\n\t  }\n\n\t  try {\n\t    const connectHandler = new ConnectHandler(opts, callback);\n\t    this.dispatch({ ...opts, method: 'CONNECT' }, connectHandler);\n\t  } catch (err) {\n\t    if (typeof callback !== 'function') {\n\t      throw err\n\t    }\n\t    const opaque = opts && opts.opaque;\n\t    queueMicrotask(() => callback(err, { opaque }));\n\t  }\n\t}\n\n\tapiConnect = connect;\n\treturn apiConnect;\n}\n\nvar hasRequiredApi;\n\nfunction requireApi () {\n\tif (hasRequiredApi) return api;\n\thasRequiredApi = 1;\n\n\tapi.request = requireApiRequest();\n\tapi.stream = requireApiStream();\n\tapi.pipeline = requireApiPipeline();\n\tapi.upgrade = requireApiUpgrade();\n\tapi.connect = requireApiConnect();\n\treturn api;\n}\n\nvar mockErrors;\nvar hasRequiredMockErrors;\n\nfunction requireMockErrors () {\n\tif (hasRequiredMockErrors) return mockErrors;\n\thasRequiredMockErrors = 1;\n\n\tconst { UndiciError } = requireErrors$3();\n\n\tclass MockNotMatchedError extends UndiciError {\n\t  constructor (message) {\n\t    super(message);\n\t    Error.captureStackTrace(this, MockNotMatchedError);\n\t    this.name = 'MockNotMatchedError';\n\t    this.message = message || 'The request does not match any registered mock dispatches';\n\t    this.code = 'UND_MOCK_ERR_MOCK_NOT_MATCHED';\n\t  }\n\t}\n\n\tmockErrors = {\n\t  MockNotMatchedError\n\t};\n\treturn mockErrors;\n}\n\nvar mockSymbols;\nvar hasRequiredMockSymbols;\n\nfunction requireMockSymbols () {\n\tif (hasRequiredMockSymbols) return mockSymbols;\n\thasRequiredMockSymbols = 1;\n\n\tmockSymbols = {\n\t  kAgent: Symbol('agent'),\n\t  kOptions: Symbol('options'),\n\t  kFactory: Symbol('factory'),\n\t  kDispatches: Symbol('dispatches'),\n\t  kDispatchKey: Symbol('dispatch key'),\n\t  kDefaultHeaders: Symbol('default headers'),\n\t  kDefaultTrailers: Symbol('default trailers'),\n\t  kContentLength: Symbol('content length'),\n\t  kMockAgent: Symbol('mock agent'),\n\t  kMockAgentSet: Symbol('mock agent set'),\n\t  kMockAgentGet: Symbol('mock agent get'),\n\t  kMockDispatch: Symbol('mock dispatch'),\n\t  kClose: Symbol('close'),\n\t  kOriginalClose: Symbol('original agent close'),\n\t  kOrigin: Symbol('origin'),\n\t  kIsMockActive: Symbol('is mock active'),\n\t  kNetConnect: Symbol('net connect'),\n\t  kGetNetConnect: Symbol('get net connect'),\n\t  kConnected: Symbol('connected')\n\t};\n\treturn mockSymbols;\n}\n\nvar mockUtils;\nvar hasRequiredMockUtils;\n\nfunction requireMockUtils () {\n\tif (hasRequiredMockUtils) return mockUtils;\n\thasRequiredMockUtils = 1;\n\n\tconst { MockNotMatchedError } = requireMockErrors();\n\tconst {\n\t  kDispatches,\n\t  kMockAgent,\n\t  kOriginalDispatch,\n\t  kOrigin,\n\t  kGetNetConnect\n\t} = requireMockSymbols();\n\tconst { buildURL, nop } = requireUtil$c();\n\tconst { STATUS_CODES } = require$$2$3;\n\tconst {\n\t  types: {\n\t    isPromise\n\t  }\n\t} = require$$0__default$1;\n\n\tfunction matchValue (match, value) {\n\t  if (typeof match === 'string') {\n\t    return match === value\n\t  }\n\t  if (match instanceof RegExp) {\n\t    return match.test(value)\n\t  }\n\t  if (typeof match === 'function') {\n\t    return match(value) === true\n\t  }\n\t  return false\n\t}\n\n\tfunction lowerCaseEntries (headers) {\n\t  return Object.fromEntries(\n\t    Object.entries(headers).map(([headerName, headerValue]) => {\n\t      return [headerName.toLocaleLowerCase(), headerValue]\n\t    })\n\t  )\n\t}\n\n\t/**\n\t * @param {import('../../index').Headers|string[]|Record<string, string>} headers\n\t * @param {string} key\n\t */\n\tfunction getHeaderByName (headers, key) {\n\t  if (Array.isArray(headers)) {\n\t    for (let i = 0; i < headers.length; i += 2) {\n\t      if (headers[i].toLocaleLowerCase() === key.toLocaleLowerCase()) {\n\t        return headers[i + 1]\n\t      }\n\t    }\n\n\t    return undefined\n\t  } else if (typeof headers.get === 'function') {\n\t    return headers.get(key)\n\t  } else {\n\t    return lowerCaseEntries(headers)[key.toLocaleLowerCase()]\n\t  }\n\t}\n\n\t/** @param {string[]} headers */\n\tfunction buildHeadersFromArray (headers) { // fetch HeadersList\n\t  const clone = headers.slice();\n\t  const entries = [];\n\t  for (let index = 0; index < clone.length; index += 2) {\n\t    entries.push([clone[index], clone[index + 1]]);\n\t  }\n\t  return Object.fromEntries(entries)\n\t}\n\n\tfunction matchHeaders (mockDispatch, headers) {\n\t  if (typeof mockDispatch.headers === 'function') {\n\t    if (Array.isArray(headers)) { // fetch HeadersList\n\t      headers = buildHeadersFromArray(headers);\n\t    }\n\t    return mockDispatch.headers(headers ? lowerCaseEntries(headers) : {})\n\t  }\n\t  if (typeof mockDispatch.headers === 'undefined') {\n\t    return true\n\t  }\n\t  if (typeof headers !== 'object' || typeof mockDispatch.headers !== 'object') {\n\t    return false\n\t  }\n\n\t  for (const [matchHeaderName, matchHeaderValue] of Object.entries(mockDispatch.headers)) {\n\t    const headerValue = getHeaderByName(headers, matchHeaderName);\n\n\t    if (!matchValue(matchHeaderValue, headerValue)) {\n\t      return false\n\t    }\n\t  }\n\t  return true\n\t}\n\n\tfunction safeUrl (path) {\n\t  if (typeof path !== 'string') {\n\t    return path\n\t  }\n\n\t  const pathSegments = path.split('?');\n\n\t  if (pathSegments.length !== 2) {\n\t    return path\n\t  }\n\n\t  const qp = new URLSearchParams(pathSegments.pop());\n\t  qp.sort();\n\t  return [...pathSegments, qp.toString()].join('?')\n\t}\n\n\tfunction matchKey (mockDispatch, { path, method, body, headers }) {\n\t  const pathMatch = matchValue(mockDispatch.path, path);\n\t  const methodMatch = matchValue(mockDispatch.method, method);\n\t  const bodyMatch = typeof mockDispatch.body !== 'undefined' ? matchValue(mockDispatch.body, body) : true;\n\t  const headersMatch = matchHeaders(mockDispatch, headers);\n\t  return pathMatch && methodMatch && bodyMatch && headersMatch\n\t}\n\n\tfunction getResponseData (data) {\n\t  if (Buffer.isBuffer(data)) {\n\t    return data\n\t  } else if (typeof data === 'object') {\n\t    return JSON.stringify(data)\n\t  } else {\n\t    return data.toString()\n\t  }\n\t}\n\n\tfunction getMockDispatch (mockDispatches, key) {\n\t  const basePath = key.query ? buildURL(key.path, key.query) : key.path;\n\t  const resolvedPath = typeof basePath === 'string' ? safeUrl(basePath) : basePath;\n\n\t  // Match path\n\t  let matchedMockDispatches = mockDispatches.filter(({ consumed }) => !consumed).filter(({ path }) => matchValue(safeUrl(path), resolvedPath));\n\t  if (matchedMockDispatches.length === 0) {\n\t    throw new MockNotMatchedError(`Mock dispatch not matched for path '${resolvedPath}'`)\n\t  }\n\n\t  // Match method\n\t  matchedMockDispatches = matchedMockDispatches.filter(({ method }) => matchValue(method, key.method));\n\t  if (matchedMockDispatches.length === 0) {\n\t    throw new MockNotMatchedError(`Mock dispatch not matched for method '${key.method}'`)\n\t  }\n\n\t  // Match body\n\t  matchedMockDispatches = matchedMockDispatches.filter(({ body }) => typeof body !== 'undefined' ? matchValue(body, key.body) : true);\n\t  if (matchedMockDispatches.length === 0) {\n\t    throw new MockNotMatchedError(`Mock dispatch not matched for body '${key.body}'`)\n\t  }\n\n\t  // Match headers\n\t  matchedMockDispatches = matchedMockDispatches.filter((mockDispatch) => matchHeaders(mockDispatch, key.headers));\n\t  if (matchedMockDispatches.length === 0) {\n\t    throw new MockNotMatchedError(`Mock dispatch not matched for headers '${typeof key.headers === 'object' ? JSON.stringify(key.headers) : key.headers}'`)\n\t  }\n\n\t  return matchedMockDispatches[0]\n\t}\n\n\tfunction addMockDispatch (mockDispatches, key, data) {\n\t  const baseData = { timesInvoked: 0, times: 1, persist: false, consumed: false };\n\t  const replyData = typeof data === 'function' ? { callback: data } : { ...data };\n\t  const newMockDispatch = { ...baseData, ...key, pending: true, data: { error: null, ...replyData } };\n\t  mockDispatches.push(newMockDispatch);\n\t  return newMockDispatch\n\t}\n\n\tfunction deleteMockDispatch (mockDispatches, key) {\n\t  const index = mockDispatches.findIndex(dispatch => {\n\t    if (!dispatch.consumed) {\n\t      return false\n\t    }\n\t    return matchKey(dispatch, key)\n\t  });\n\t  if (index !== -1) {\n\t    mockDispatches.splice(index, 1);\n\t  }\n\t}\n\n\tfunction buildKey (opts) {\n\t  const { path, method, body, headers, query } = opts;\n\t  return {\n\t    path,\n\t    method,\n\t    body,\n\t    headers,\n\t    query\n\t  }\n\t}\n\n\tfunction generateKeyValues (data) {\n\t  return Object.entries(data).reduce((keyValuePairs, [key, value]) => [\n\t    ...keyValuePairs,\n\t    Buffer.from(`${key}`),\n\t    Array.isArray(value) ? value.map(x => Buffer.from(`${x}`)) : Buffer.from(`${value}`)\n\t  ], [])\n\t}\n\n\t/**\n\t * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status\n\t * @param {number} statusCode\n\t */\n\tfunction getStatusText (statusCode) {\n\t  return STATUS_CODES[statusCode] || 'unknown'\n\t}\n\n\tasync function getResponse (body) {\n\t  const buffers = [];\n\t  for await (const data of body) {\n\t    buffers.push(data);\n\t  }\n\t  return Buffer.concat(buffers).toString('utf8')\n\t}\n\n\t/**\n\t * Mock dispatch function used to simulate undici dispatches\n\t */\n\tfunction mockDispatch (opts, handler) {\n\t  // Get mock dispatch from built key\n\t  const key = buildKey(opts);\n\t  const mockDispatch = getMockDispatch(this[kDispatches], key);\n\n\t  mockDispatch.timesInvoked++;\n\n\t  // Here's where we resolve a callback if a callback is present for the dispatch data.\n\t  if (mockDispatch.data.callback) {\n\t    mockDispatch.data = { ...mockDispatch.data, ...mockDispatch.data.callback(opts) };\n\t  }\n\n\t  // Parse mockDispatch data\n\t  const { data: { statusCode, data, headers, trailers, error }, delay, persist } = mockDispatch;\n\t  const { timesInvoked, times } = mockDispatch;\n\n\t  // If it's used up and not persistent, mark as consumed\n\t  mockDispatch.consumed = !persist && timesInvoked >= times;\n\t  mockDispatch.pending = timesInvoked < times;\n\n\t  // If specified, trigger dispatch error\n\t  if (error !== null) {\n\t    deleteMockDispatch(this[kDispatches], key);\n\t    handler.onError(error);\n\t    return true\n\t  }\n\n\t  // Handle the request with a delay if necessary\n\t  if (typeof delay === 'number' && delay > 0) {\n\t    setTimeout(() => {\n\t      handleReply(this[kDispatches]);\n\t    }, delay);\n\t  } else {\n\t    handleReply(this[kDispatches]);\n\t  }\n\n\t  function handleReply (mockDispatches, _data = data) {\n\t    // fetch's HeadersList is a 1D string array\n\t    const optsHeaders = Array.isArray(opts.headers)\n\t      ? buildHeadersFromArray(opts.headers)\n\t      : opts.headers;\n\t    const body = typeof _data === 'function'\n\t      ? _data({ ...opts, headers: optsHeaders })\n\t      : _data;\n\n\t    // util.types.isPromise is likely needed for jest.\n\t    if (isPromise(body)) {\n\t      // If handleReply is asynchronous, throwing an error\n\t      // in the callback will reject the promise, rather than\n\t      // synchronously throw the error, which breaks some tests.\n\t      // Rather, we wait for the callback to resolve if it is a\n\t      // promise, and then re-run handleReply with the new body.\n\t      body.then((newData) => handleReply(mockDispatches, newData));\n\t      return\n\t    }\n\n\t    const responseData = getResponseData(body);\n\t    const responseHeaders = generateKeyValues(headers);\n\t    const responseTrailers = generateKeyValues(trailers);\n\n\t    handler.abort = nop;\n\t    handler.onHeaders(statusCode, responseHeaders, resume, getStatusText(statusCode));\n\t    handler.onData(Buffer.from(responseData));\n\t    handler.onComplete(responseTrailers);\n\t    deleteMockDispatch(mockDispatches, key);\n\t  }\n\n\t  function resume () {}\n\n\t  return true\n\t}\n\n\tfunction buildMockDispatch () {\n\t  const agent = this[kMockAgent];\n\t  const origin = this[kOrigin];\n\t  const originalDispatch = this[kOriginalDispatch];\n\n\t  return function dispatch (opts, handler) {\n\t    if (agent.isMockActive) {\n\t      try {\n\t        mockDispatch.call(this, opts, handler);\n\t      } catch (error) {\n\t        if (error instanceof MockNotMatchedError) {\n\t          const netConnect = agent[kGetNetConnect]();\n\t          if (netConnect === false) {\n\t            throw new MockNotMatchedError(`${error.message}: subsequent request to origin ${origin} was not allowed (net.connect disabled)`)\n\t          }\n\t          if (checkNetConnect(netConnect, origin)) {\n\t            originalDispatch.call(this, opts, handler);\n\t          } else {\n\t            throw new MockNotMatchedError(`${error.message}: subsequent request to origin ${origin} was not allowed (net.connect is not enabled for this origin)`)\n\t          }\n\t        } else {\n\t          throw error\n\t        }\n\t      }\n\t    } else {\n\t      originalDispatch.call(this, opts, handler);\n\t    }\n\t  }\n\t}\n\n\tfunction checkNetConnect (netConnect, origin) {\n\t  const url = new URL(origin);\n\t  if (netConnect === true) {\n\t    return true\n\t  } else if (Array.isArray(netConnect) && netConnect.some((matcher) => matchValue(matcher, url.host))) {\n\t    return true\n\t  }\n\t  return false\n\t}\n\n\tfunction buildMockOptions (opts) {\n\t  if (opts) {\n\t    const { agent, ...mockOptions } = opts;\n\t    return mockOptions\n\t  }\n\t}\n\n\tmockUtils = {\n\t  getResponseData,\n\t  getMockDispatch,\n\t  addMockDispatch,\n\t  deleteMockDispatch,\n\t  buildKey,\n\t  generateKeyValues,\n\t  matchValue,\n\t  getResponse,\n\t  getStatusText,\n\t  mockDispatch,\n\t  buildMockDispatch,\n\t  checkNetConnect,\n\t  buildMockOptions,\n\t  getHeaderByName\n\t};\n\treturn mockUtils;\n}\n\nvar mockInterceptor = {};\n\nvar hasRequiredMockInterceptor;\n\nfunction requireMockInterceptor () {\n\tif (hasRequiredMockInterceptor) return mockInterceptor;\n\thasRequiredMockInterceptor = 1;\n\n\tconst { getResponseData, buildKey, addMockDispatch } = requireMockUtils();\n\tconst {\n\t  kDispatches,\n\t  kDispatchKey,\n\t  kDefaultHeaders,\n\t  kDefaultTrailers,\n\t  kContentLength,\n\t  kMockDispatch\n\t} = requireMockSymbols();\n\tconst { InvalidArgumentError } = requireErrors$3();\n\tconst { buildURL } = requireUtil$c();\n\n\t/**\n\t * Defines the scope API for an interceptor reply\n\t */\n\tclass MockScope {\n\t  constructor (mockDispatch) {\n\t    this[kMockDispatch] = mockDispatch;\n\t  }\n\n\t  /**\n\t   * Delay a reply by a set amount in ms.\n\t   */\n\t  delay (waitInMs) {\n\t    if (typeof waitInMs !== 'number' || !Number.isInteger(waitInMs) || waitInMs <= 0) {\n\t      throw new InvalidArgumentError('waitInMs must be a valid integer > 0')\n\t    }\n\n\t    this[kMockDispatch].delay = waitInMs;\n\t    return this\n\t  }\n\n\t  /**\n\t   * For a defined reply, never mark as consumed.\n\t   */\n\t  persist () {\n\t    this[kMockDispatch].persist = true;\n\t    return this\n\t  }\n\n\t  /**\n\t   * Allow one to define a reply for a set amount of matching requests.\n\t   */\n\t  times (repeatTimes) {\n\t    if (typeof repeatTimes !== 'number' || !Number.isInteger(repeatTimes) || repeatTimes <= 0) {\n\t      throw new InvalidArgumentError('repeatTimes must be a valid integer > 0')\n\t    }\n\n\t    this[kMockDispatch].times = repeatTimes;\n\t    return this\n\t  }\n\t}\n\n\t/**\n\t * Defines an interceptor for a Mock\n\t */\n\tclass MockInterceptor {\n\t  constructor (opts, mockDispatches) {\n\t    if (typeof opts !== 'object') {\n\t      throw new InvalidArgumentError('opts must be an object')\n\t    }\n\t    if (typeof opts.path === 'undefined') {\n\t      throw new InvalidArgumentError('opts.path must be defined')\n\t    }\n\t    if (typeof opts.method === 'undefined') {\n\t      opts.method = 'GET';\n\t    }\n\t    // See https://github.com/nodejs/undici/issues/1245\n\t    // As per RFC 3986, clients are not supposed to send URI\n\t    // fragments to servers when they retrieve a document,\n\t    if (typeof opts.path === 'string') {\n\t      if (opts.query) {\n\t        opts.path = buildURL(opts.path, opts.query);\n\t      } else {\n\t        // Matches https://github.com/nodejs/undici/blob/main/lib/fetch/index.js#L1811\n\t        const parsedURL = new URL(opts.path, 'data://');\n\t        opts.path = parsedURL.pathname + parsedURL.search;\n\t      }\n\t    }\n\t    if (typeof opts.method === 'string') {\n\t      opts.method = opts.method.toUpperCase();\n\t    }\n\n\t    this[kDispatchKey] = buildKey(opts);\n\t    this[kDispatches] = mockDispatches;\n\t    this[kDefaultHeaders] = {};\n\t    this[kDefaultTrailers] = {};\n\t    this[kContentLength] = false;\n\t  }\n\n\t  createMockScopeDispatchData (statusCode, data, responseOptions = {}) {\n\t    const responseData = getResponseData(data);\n\t    const contentLength = this[kContentLength] ? { 'content-length': responseData.length } : {};\n\t    const headers = { ...this[kDefaultHeaders], ...contentLength, ...responseOptions.headers };\n\t    const trailers = { ...this[kDefaultTrailers], ...responseOptions.trailers };\n\n\t    return { statusCode, data, headers, trailers }\n\t  }\n\n\t  validateReplyParameters (statusCode, data, responseOptions) {\n\t    if (typeof statusCode === 'undefined') {\n\t      throw new InvalidArgumentError('statusCode must be defined')\n\t    }\n\t    if (typeof data === 'undefined') {\n\t      throw new InvalidArgumentError('data must be defined')\n\t    }\n\t    if (typeof responseOptions !== 'object') {\n\t      throw new InvalidArgumentError('responseOptions must be an object')\n\t    }\n\t  }\n\n\t  /**\n\t   * Mock an undici request with a defined reply.\n\t   */\n\t  reply (replyData) {\n\t    // Values of reply aren't available right now as they\n\t    // can only be available when the reply callback is invoked.\n\t    if (typeof replyData === 'function') {\n\t      // We'll first wrap the provided callback in another function,\n\t      // this function will properly resolve the data from the callback\n\t      // when invoked.\n\t      const wrappedDefaultsCallback = (opts) => {\n\t        // Our reply options callback contains the parameter for statusCode, data and options.\n\t        const resolvedData = replyData(opts);\n\n\t        // Check if it is in the right format\n\t        if (typeof resolvedData !== 'object') {\n\t          throw new InvalidArgumentError('reply options callback must return an object')\n\t        }\n\n\t        const { statusCode, data = '', responseOptions = {} } = resolvedData;\n\t        this.validateReplyParameters(statusCode, data, responseOptions);\n\t        // Since the values can be obtained immediately we return them\n\t        // from this higher order function that will be resolved later.\n\t        return {\n\t          ...this.createMockScopeDispatchData(statusCode, data, responseOptions)\n\t        }\n\t      };\n\n\t      // Add usual dispatch data, but this time set the data parameter to function that will eventually provide data.\n\t      const newMockDispatch = addMockDispatch(this[kDispatches], this[kDispatchKey], wrappedDefaultsCallback);\n\t      return new MockScope(newMockDispatch)\n\t    }\n\n\t    // We can have either one or three parameters, if we get here,\n\t    // we should have 1-3 parameters. So we spread the arguments of\n\t    // this function to obtain the parameters, since replyData will always\n\t    // just be the statusCode.\n\t    const [statusCode, data = '', responseOptions = {}] = [...arguments];\n\t    this.validateReplyParameters(statusCode, data, responseOptions);\n\n\t    // Send in-already provided data like usual\n\t    const dispatchData = this.createMockScopeDispatchData(statusCode, data, responseOptions);\n\t    const newMockDispatch = addMockDispatch(this[kDispatches], this[kDispatchKey], dispatchData);\n\t    return new MockScope(newMockDispatch)\n\t  }\n\n\t  /**\n\t   * Mock an undici request with a defined error.\n\t   */\n\t  replyWithError (error) {\n\t    if (typeof error === 'undefined') {\n\t      throw new InvalidArgumentError('error must be defined')\n\t    }\n\n\t    const newMockDispatch = addMockDispatch(this[kDispatches], this[kDispatchKey], { error });\n\t    return new MockScope(newMockDispatch)\n\t  }\n\n\t  /**\n\t   * Set default reply headers on the interceptor for subsequent replies\n\t   */\n\t  defaultReplyHeaders (headers) {\n\t    if (typeof headers === 'undefined') {\n\t      throw new InvalidArgumentError('headers must be defined')\n\t    }\n\n\t    this[kDefaultHeaders] = headers;\n\t    return this\n\t  }\n\n\t  /**\n\t   * Set default reply trailers on the interceptor for subsequent replies\n\t   */\n\t  defaultReplyTrailers (trailers) {\n\t    if (typeof trailers === 'undefined') {\n\t      throw new InvalidArgumentError('trailers must be defined')\n\t    }\n\n\t    this[kDefaultTrailers] = trailers;\n\t    return this\n\t  }\n\n\t  /**\n\t   * Set reply content length header for replies on the interceptor\n\t   */\n\t  replyContentLength () {\n\t    this[kContentLength] = true;\n\t    return this\n\t  }\n\t}\n\n\tmockInterceptor.MockInterceptor = MockInterceptor;\n\tmockInterceptor.MockScope = MockScope;\n\treturn mockInterceptor;\n}\n\nvar mockClient;\nvar hasRequiredMockClient;\n\nfunction requireMockClient () {\n\tif (hasRequiredMockClient) return mockClient;\n\thasRequiredMockClient = 1;\n\n\tconst { promisify } = require$$0__default$1;\n\tconst Client = requireClient$1();\n\tconst { buildMockDispatch } = requireMockUtils();\n\tconst {\n\t  kDispatches,\n\t  kMockAgent,\n\t  kClose,\n\t  kOriginalClose,\n\t  kOrigin,\n\t  kOriginalDispatch,\n\t  kConnected\n\t} = requireMockSymbols();\n\tconst { MockInterceptor } = requireMockInterceptor();\n\tconst Symbols = requireSymbols$4();\n\tconst { InvalidArgumentError } = requireErrors$3();\n\n\t/**\n\t * MockClient provides an API that extends the Client to influence the mockDispatches.\n\t */\n\tclass MockClient extends Client {\n\t  constructor (origin, opts) {\n\t    super(origin, opts);\n\n\t    if (!opts || !opts.agent || typeof opts.agent.dispatch !== 'function') {\n\t      throw new InvalidArgumentError('Argument opts.agent must implement Agent')\n\t    }\n\n\t    this[kMockAgent] = opts.agent;\n\t    this[kOrigin] = origin;\n\t    this[kDispatches] = [];\n\t    this[kConnected] = 1;\n\t    this[kOriginalDispatch] = this.dispatch;\n\t    this[kOriginalClose] = this.close.bind(this);\n\n\t    this.dispatch = buildMockDispatch.call(this);\n\t    this.close = this[kClose];\n\t  }\n\n\t  get [Symbols.kConnected] () {\n\t    return this[kConnected]\n\t  }\n\n\t  /**\n\t   * Sets up the base interceptor for mocking replies from undici.\n\t   */\n\t  intercept (opts) {\n\t    return new MockInterceptor(opts, this[kDispatches])\n\t  }\n\n\t  async [kClose] () {\n\t    await promisify(this[kOriginalClose])();\n\t    this[kConnected] = 0;\n\t    this[kMockAgent][Symbols.kClients].delete(this[kOrigin]);\n\t  }\n\t}\n\n\tmockClient = MockClient;\n\treturn mockClient;\n}\n\nvar mockPool;\nvar hasRequiredMockPool;\n\nfunction requireMockPool () {\n\tif (hasRequiredMockPool) return mockPool;\n\thasRequiredMockPool = 1;\n\n\tconst { promisify } = require$$0__default$1;\n\tconst Pool = requirePool();\n\tconst { buildMockDispatch } = requireMockUtils();\n\tconst {\n\t  kDispatches,\n\t  kMockAgent,\n\t  kClose,\n\t  kOriginalClose,\n\t  kOrigin,\n\t  kOriginalDispatch,\n\t  kConnected\n\t} = requireMockSymbols();\n\tconst { MockInterceptor } = requireMockInterceptor();\n\tconst Symbols = requireSymbols$4();\n\tconst { InvalidArgumentError } = requireErrors$3();\n\n\t/**\n\t * MockPool provides an API that extends the Pool to influence the mockDispatches.\n\t */\n\tclass MockPool extends Pool {\n\t  constructor (origin, opts) {\n\t    super(origin, opts);\n\n\t    if (!opts || !opts.agent || typeof opts.agent.dispatch !== 'function') {\n\t      throw new InvalidArgumentError('Argument opts.agent must implement Agent')\n\t    }\n\n\t    this[kMockAgent] = opts.agent;\n\t    this[kOrigin] = origin;\n\t    this[kDispatches] = [];\n\t    this[kConnected] = 1;\n\t    this[kOriginalDispatch] = this.dispatch;\n\t    this[kOriginalClose] = this.close.bind(this);\n\n\t    this.dispatch = buildMockDispatch.call(this);\n\t    this.close = this[kClose];\n\t  }\n\n\t  get [Symbols.kConnected] () {\n\t    return this[kConnected]\n\t  }\n\n\t  /**\n\t   * Sets up the base interceptor for mocking replies from undici.\n\t   */\n\t  intercept (opts) {\n\t    return new MockInterceptor(opts, this[kDispatches])\n\t  }\n\n\t  async [kClose] () {\n\t    await promisify(this[kOriginalClose])();\n\t    this[kConnected] = 0;\n\t    this[kMockAgent][Symbols.kClients].delete(this[kOrigin]);\n\t  }\n\t}\n\n\tmockPool = MockPool;\n\treturn mockPool;\n}\n\nvar pluralizer;\nvar hasRequiredPluralizer;\n\nfunction requirePluralizer () {\n\tif (hasRequiredPluralizer) return pluralizer;\n\thasRequiredPluralizer = 1;\n\n\tconst singulars = {\n\t  pronoun: 'it',\n\t  is: 'is',\n\t  was: 'was',\n\t  this: 'this'\n\t};\n\n\tconst plurals = {\n\t  pronoun: 'they',\n\t  is: 'are',\n\t  was: 'were',\n\t  this: 'these'\n\t};\n\n\tpluralizer = class Pluralizer {\n\t  constructor (singular, plural) {\n\t    this.singular = singular;\n\t    this.plural = plural;\n\t  }\n\n\t  pluralize (count) {\n\t    const one = count === 1;\n\t    const keys = one ? singulars : plurals;\n\t    const noun = one ? this.singular : this.plural;\n\t    return { ...keys, count, noun }\n\t  }\n\t};\n\treturn pluralizer;\n}\n\nvar pendingInterceptorsFormatter;\nvar hasRequiredPendingInterceptorsFormatter;\n\nfunction requirePendingInterceptorsFormatter () {\n\tif (hasRequiredPendingInterceptorsFormatter) return pendingInterceptorsFormatter;\n\thasRequiredPendingInterceptorsFormatter = 1;\n\n\tconst { Transform } = require$$0$b;\n\tconst { Console } = require$$1$7;\n\n\t/**\n\t * Gets the output of `console.table(…)` as a string.\n\t */\n\tpendingInterceptorsFormatter = class PendingInterceptorsFormatter {\n\t  constructor ({ disableColors } = {}) {\n\t    this.transform = new Transform({\n\t      transform (chunk, _enc, cb) {\n\t        cb(null, chunk);\n\t      }\n\t    });\n\n\t    this.logger = new Console({\n\t      stdout: this.transform,\n\t      inspectOptions: {\n\t        colors: !disableColors && !process.env.CI\n\t      }\n\t    });\n\t  }\n\n\t  format (pendingInterceptors) {\n\t    const withPrettyHeaders = pendingInterceptors.map(\n\t      ({ method, path, data: { statusCode }, persist, times, timesInvoked, origin }) => ({\n\t        Method: method,\n\t        Origin: origin,\n\t        Path: path,\n\t        'Status code': statusCode,\n\t        Persistent: persist ? '✅' : '❌',\n\t        Invocations: timesInvoked,\n\t        Remaining: persist ? Infinity : times - timesInvoked\n\t      }));\n\n\t    this.logger.table(withPrettyHeaders);\n\t    return this.transform.read().toString()\n\t  }\n\t};\n\treturn pendingInterceptorsFormatter;\n}\n\nvar mockAgent;\nvar hasRequiredMockAgent;\n\nfunction requireMockAgent () {\n\tif (hasRequiredMockAgent) return mockAgent;\n\thasRequiredMockAgent = 1;\n\n\tconst { kClients } = requireSymbols$4();\n\tconst Agent = requireAgent();\n\tconst {\n\t  kAgent,\n\t  kMockAgentSet,\n\t  kMockAgentGet,\n\t  kDispatches,\n\t  kIsMockActive,\n\t  kNetConnect,\n\t  kGetNetConnect,\n\t  kOptions,\n\t  kFactory\n\t} = requireMockSymbols();\n\tconst MockClient = requireMockClient();\n\tconst MockPool = requireMockPool();\n\tconst { matchValue, buildMockOptions } = requireMockUtils();\n\tconst { InvalidArgumentError, UndiciError } = requireErrors$3();\n\tconst Dispatcher = requireDispatcher();\n\tconst Pluralizer = requirePluralizer();\n\tconst PendingInterceptorsFormatter = requirePendingInterceptorsFormatter();\n\n\tclass FakeWeakRef {\n\t  constructor (value) {\n\t    this.value = value;\n\t  }\n\n\t  deref () {\n\t    return this.value\n\t  }\n\t}\n\n\tclass MockAgent extends Dispatcher {\n\t  constructor (opts) {\n\t    super(opts);\n\n\t    this[kNetConnect] = true;\n\t    this[kIsMockActive] = true;\n\n\t    // Instantiate Agent and encapsulate\n\t    if ((opts && opts.agent && typeof opts.agent.dispatch !== 'function')) {\n\t      throw new InvalidArgumentError('Argument opts.agent must implement Agent')\n\t    }\n\t    const agent = opts && opts.agent ? opts.agent : new Agent(opts);\n\t    this[kAgent] = agent;\n\n\t    this[kClients] = agent[kClients];\n\t    this[kOptions] = buildMockOptions(opts);\n\t  }\n\n\t  get (origin) {\n\t    let dispatcher = this[kMockAgentGet](origin);\n\n\t    if (!dispatcher) {\n\t      dispatcher = this[kFactory](origin);\n\t      this[kMockAgentSet](origin, dispatcher);\n\t    }\n\t    return dispatcher\n\t  }\n\n\t  dispatch (opts, handler) {\n\t    // Call MockAgent.get to perform additional setup before dispatching as normal\n\t    this.get(opts.origin);\n\t    return this[kAgent].dispatch(opts, handler)\n\t  }\n\n\t  async close () {\n\t    await this[kAgent].close();\n\t    this[kClients].clear();\n\t  }\n\n\t  deactivate () {\n\t    this[kIsMockActive] = false;\n\t  }\n\n\t  activate () {\n\t    this[kIsMockActive] = true;\n\t  }\n\n\t  enableNetConnect (matcher) {\n\t    if (typeof matcher === 'string' || typeof matcher === 'function' || matcher instanceof RegExp) {\n\t      if (Array.isArray(this[kNetConnect])) {\n\t        this[kNetConnect].push(matcher);\n\t      } else {\n\t        this[kNetConnect] = [matcher];\n\t      }\n\t    } else if (typeof matcher === 'undefined') {\n\t      this[kNetConnect] = true;\n\t    } else {\n\t      throw new InvalidArgumentError('Unsupported matcher. Must be one of String|Function|RegExp.')\n\t    }\n\t  }\n\n\t  disableNetConnect () {\n\t    this[kNetConnect] = false;\n\t  }\n\n\t  // This is required to bypass issues caused by using global symbols - see:\n\t  // https://github.com/nodejs/undici/issues/1447\n\t  get isMockActive () {\n\t    return this[kIsMockActive]\n\t  }\n\n\t  [kMockAgentSet] (origin, dispatcher) {\n\t    this[kClients].set(origin, new FakeWeakRef(dispatcher));\n\t  }\n\n\t  [kFactory] (origin) {\n\t    const mockOptions = Object.assign({ agent: this }, this[kOptions]);\n\t    return this[kOptions] && this[kOptions].connections === 1\n\t      ? new MockClient(origin, mockOptions)\n\t      : new MockPool(origin, mockOptions)\n\t  }\n\n\t  [kMockAgentGet] (origin) {\n\t    // First check if we can immediately find it\n\t    const ref = this[kClients].get(origin);\n\t    if (ref) {\n\t      return ref.deref()\n\t    }\n\n\t    // If the origin is not a string create a dummy parent pool and return to user\n\t    if (typeof origin !== 'string') {\n\t      const dispatcher = this[kFactory]('http://localhost:9999');\n\t      this[kMockAgentSet](origin, dispatcher);\n\t      return dispatcher\n\t    }\n\n\t    // If we match, create a pool and assign the same dispatches\n\t    for (const [keyMatcher, nonExplicitRef] of Array.from(this[kClients])) {\n\t      const nonExplicitDispatcher = nonExplicitRef.deref();\n\t      if (nonExplicitDispatcher && typeof keyMatcher !== 'string' && matchValue(keyMatcher, origin)) {\n\t        const dispatcher = this[kFactory](origin);\n\t        this[kMockAgentSet](origin, dispatcher);\n\t        dispatcher[kDispatches] = nonExplicitDispatcher[kDispatches];\n\t        return dispatcher\n\t      }\n\t    }\n\t  }\n\n\t  [kGetNetConnect] () {\n\t    return this[kNetConnect]\n\t  }\n\n\t  pendingInterceptors () {\n\t    const mockAgentClients = this[kClients];\n\n\t    return Array.from(mockAgentClients.entries())\n\t      .flatMap(([origin, scope]) => scope.deref()[kDispatches].map(dispatch => ({ ...dispatch, origin })))\n\t      .filter(({ pending }) => pending)\n\t  }\n\n\t  assertNoPendingInterceptors ({ pendingInterceptorsFormatter = new PendingInterceptorsFormatter() } = {}) {\n\t    const pending = this.pendingInterceptors();\n\n\t    if (pending.length === 0) {\n\t      return\n\t    }\n\n\t    const pluralizer = new Pluralizer('interceptor', 'interceptors').pluralize(pending.length);\n\n\t    throw new UndiciError(`\n${pluralizer.count} ${pluralizer.noun} ${pluralizer.is} pending:\n\n${pendingInterceptorsFormatter.format(pending)}\n`.trim())\n\t  }\n\t}\n\n\tmockAgent = MockAgent;\n\treturn mockAgent;\n}\n\nvar proxyAgent;\nvar hasRequiredProxyAgent;\n\nfunction requireProxyAgent () {\n\tif (hasRequiredProxyAgent) return proxyAgent;\n\thasRequiredProxyAgent = 1;\n\n\tconst { kProxy, kClose, kDestroy, kInterceptors } = requireSymbols$4();\n\tconst { URL } = Url;\n\tconst Agent = requireAgent();\n\tconst Pool = requirePool();\n\tconst DispatcherBase = requireDispatcherBase();\n\tconst { InvalidArgumentError, RequestAbortedError } = requireErrors$3();\n\tconst buildConnector = requireConnect();\n\n\tconst kAgent = Symbol('proxy agent');\n\tconst kClient = Symbol('proxy client');\n\tconst kProxyHeaders = Symbol('proxy headers');\n\tconst kRequestTls = Symbol('request tls settings');\n\tconst kProxyTls = Symbol('proxy tls settings');\n\tconst kConnectEndpoint = Symbol('connect endpoint function');\n\n\tfunction defaultProtocolPort (protocol) {\n\t  return protocol === 'https:' ? 443 : 80\n\t}\n\n\tfunction buildProxyOptions (opts) {\n\t  if (typeof opts === 'string') {\n\t    opts = { uri: opts };\n\t  }\n\n\t  if (!opts || !opts.uri) {\n\t    throw new InvalidArgumentError('Proxy opts.uri is mandatory')\n\t  }\n\n\t  return {\n\t    uri: opts.uri,\n\t    protocol: opts.protocol || 'https'\n\t  }\n\t}\n\n\tfunction defaultFactory (origin, opts) {\n\t  return new Pool(origin, opts)\n\t}\n\n\tclass ProxyAgent extends DispatcherBase {\n\t  constructor (opts) {\n\t    super(opts);\n\t    this[kProxy] = buildProxyOptions(opts);\n\t    this[kAgent] = new Agent(opts);\n\t    this[kInterceptors] = opts.interceptors && opts.interceptors.ProxyAgent && Array.isArray(opts.interceptors.ProxyAgent)\n\t      ? opts.interceptors.ProxyAgent\n\t      : [];\n\n\t    if (typeof opts === 'string') {\n\t      opts = { uri: opts };\n\t    }\n\n\t    if (!opts || !opts.uri) {\n\t      throw new InvalidArgumentError('Proxy opts.uri is mandatory')\n\t    }\n\n\t    const { clientFactory = defaultFactory } = opts;\n\n\t    if (typeof clientFactory !== 'function') {\n\t      throw new InvalidArgumentError('Proxy opts.clientFactory must be a function.')\n\t    }\n\n\t    this[kRequestTls] = opts.requestTls;\n\t    this[kProxyTls] = opts.proxyTls;\n\t    this[kProxyHeaders] = opts.headers || {};\n\n\t    const resolvedUrl = new URL(opts.uri);\n\t    const { origin, port, host, username, password } = resolvedUrl;\n\n\t    if (opts.auth && opts.token) {\n\t      throw new InvalidArgumentError('opts.auth cannot be used in combination with opts.token')\n\t    } else if (opts.auth) {\n\t      /* @deprecated in favour of opts.token */\n\t      this[kProxyHeaders]['proxy-authorization'] = `Basic ${opts.auth}`;\n\t    } else if (opts.token) {\n\t      this[kProxyHeaders]['proxy-authorization'] = opts.token;\n\t    } else if (username && password) {\n\t      this[kProxyHeaders]['proxy-authorization'] = `Basic ${Buffer.from(`${decodeURIComponent(username)}:${decodeURIComponent(password)}`).toString('base64')}`;\n\t    }\n\n\t    const connect = buildConnector({ ...opts.proxyTls });\n\t    this[kConnectEndpoint] = buildConnector({ ...opts.requestTls });\n\t    this[kClient] = clientFactory(resolvedUrl, { connect });\n\t    this[kAgent] = new Agent({\n\t      ...opts,\n\t      connect: async (opts, callback) => {\n\t        let requestedHost = opts.host;\n\t        if (!opts.port) {\n\t          requestedHost += `:${defaultProtocolPort(opts.protocol)}`;\n\t        }\n\t        try {\n\t          const { socket, statusCode } = await this[kClient].connect({\n\t            origin,\n\t            port,\n\t            path: requestedHost,\n\t            signal: opts.signal,\n\t            headers: {\n\t              ...this[kProxyHeaders],\n\t              host\n\t            }\n\t          });\n\t          if (statusCode !== 200) {\n\t            socket.on('error', () => {}).destroy();\n\t            callback(new RequestAbortedError(`Proxy response (${statusCode}) !== 200 when HTTP Tunneling`));\n\t          }\n\t          if (opts.protocol !== 'https:') {\n\t            callback(null, socket);\n\t            return\n\t          }\n\t          let servername;\n\t          if (this[kRequestTls]) {\n\t            servername = this[kRequestTls].servername;\n\t          } else {\n\t            servername = opts.servername;\n\t          }\n\t          this[kConnectEndpoint]({ ...opts, servername, httpSocket: socket }, callback);\n\t        } catch (err) {\n\t          callback(err);\n\t        }\n\t      }\n\t    });\n\t  }\n\n\t  dispatch (opts, handler) {\n\t    const { host } = new URL(opts.origin);\n\t    const headers = buildHeaders(opts.headers);\n\t    throwIfProxyAuthIsSent(headers);\n\t    return this[kAgent].dispatch(\n\t      {\n\t        ...opts,\n\t        headers: {\n\t          ...headers,\n\t          host\n\t        }\n\t      },\n\t      handler\n\t    )\n\t  }\n\n\t  async [kClose] () {\n\t    await this[kAgent].close();\n\t    await this[kClient].close();\n\t  }\n\n\t  async [kDestroy] () {\n\t    await this[kAgent].destroy();\n\t    await this[kClient].destroy();\n\t  }\n\t}\n\n\t/**\n\t * @param {string[] | Record<string, string>} headers\n\t * @returns {Record<string, string>}\n\t */\n\tfunction buildHeaders (headers) {\n\t  // When using undici.fetch, the headers list is stored\n\t  // as an array.\n\t  if (Array.isArray(headers)) {\n\t    /** @type {Record<string, string>} */\n\t    const headersPair = {};\n\n\t    for (let i = 0; i < headers.length; i += 2) {\n\t      headersPair[headers[i]] = headers[i + 1];\n\t    }\n\n\t    return headersPair\n\t  }\n\n\t  return headers\n\t}\n\n\t/**\n\t * @param {Record<string, string>} headers\n\t *\n\t * Previous versions of ProxyAgent suggests the Proxy-Authorization in request headers\n\t * Nevertheless, it was changed and to avoid a security vulnerability by end users\n\t * this check was created.\n\t * It should be removed in the next major version for performance reasons\n\t */\n\tfunction throwIfProxyAuthIsSent (headers) {\n\t  const existProxyAuth = headers && Object.keys(headers)\n\t    .find((key) => key.toLowerCase() === 'proxy-authorization');\n\t  if (existProxyAuth) {\n\t    throw new InvalidArgumentError('Proxy-Authorization should be sent in ProxyAgent constructor')\n\t  }\n\t}\n\n\tproxyAgent = ProxyAgent;\n\treturn proxyAgent;\n}\n\nvar RetryHandler_1;\nvar hasRequiredRetryHandler;\n\nfunction requireRetryHandler () {\n\tif (hasRequiredRetryHandler) return RetryHandler_1;\n\thasRequiredRetryHandler = 1;\n\tconst assert = require$$0$9;\n\n\tconst { kRetryHandlerDefaultRetry } = requireSymbols$4();\n\tconst { RequestRetryError } = requireErrors$3();\n\tconst { isDisturbed, parseHeaders, parseRangeHeader } = requireUtil$c();\n\n\tfunction calculateRetryAfterHeader (retryAfter) {\n\t  const current = Date.now();\n\t  const diff = new Date(retryAfter).getTime() - current;\n\n\t  return diff\n\t}\n\n\tclass RetryHandler {\n\t  constructor (opts, handlers) {\n\t    const { retryOptions, ...dispatchOpts } = opts;\n\t    const {\n\t      // Retry scoped\n\t      retry: retryFn,\n\t      maxRetries,\n\t      maxTimeout,\n\t      minTimeout,\n\t      timeoutFactor,\n\t      // Response scoped\n\t      methods,\n\t      errorCodes,\n\t      retryAfter,\n\t      statusCodes\n\t    } = retryOptions ?? {};\n\n\t    this.dispatch = handlers.dispatch;\n\t    this.handler = handlers.handler;\n\t    this.opts = dispatchOpts;\n\t    this.abort = null;\n\t    this.aborted = false;\n\t    this.retryOpts = {\n\t      retry: retryFn ?? RetryHandler[kRetryHandlerDefaultRetry],\n\t      retryAfter: retryAfter ?? true,\n\t      maxTimeout: maxTimeout ?? 30 * 1000, // 30s,\n\t      timeout: minTimeout ?? 500, // .5s\n\t      timeoutFactor: timeoutFactor ?? 2,\n\t      maxRetries: maxRetries ?? 5,\n\t      // What errors we should retry\n\t      methods: methods ?? ['GET', 'HEAD', 'OPTIONS', 'PUT', 'DELETE', 'TRACE'],\n\t      // Indicates which errors to retry\n\t      statusCodes: statusCodes ?? [500, 502, 503, 504, 429],\n\t      // List of errors to retry\n\t      errorCodes: errorCodes ?? [\n\t        'ECONNRESET',\n\t        'ECONNREFUSED',\n\t        'ENOTFOUND',\n\t        'ENETDOWN',\n\t        'ENETUNREACH',\n\t        'EHOSTDOWN',\n\t        'EHOSTUNREACH',\n\t        'EPIPE'\n\t      ]\n\t    };\n\n\t    this.retryCount = 0;\n\t    this.start = 0;\n\t    this.end = null;\n\t    this.etag = null;\n\t    this.resume = null;\n\n\t    // Handle possible onConnect duplication\n\t    this.handler.onConnect(reason => {\n\t      this.aborted = true;\n\t      if (this.abort) {\n\t        this.abort(reason);\n\t      } else {\n\t        this.reason = reason;\n\t      }\n\t    });\n\t  }\n\n\t  onRequestSent () {\n\t    if (this.handler.onRequestSent) {\n\t      this.handler.onRequestSent();\n\t    }\n\t  }\n\n\t  onUpgrade (statusCode, headers, socket) {\n\t    if (this.handler.onUpgrade) {\n\t      this.handler.onUpgrade(statusCode, headers, socket);\n\t    }\n\t  }\n\n\t  onConnect (abort) {\n\t    if (this.aborted) {\n\t      abort(this.reason);\n\t    } else {\n\t      this.abort = abort;\n\t    }\n\t  }\n\n\t  onBodySent (chunk) {\n\t    if (this.handler.onBodySent) return this.handler.onBodySent(chunk)\n\t  }\n\n\t  static [kRetryHandlerDefaultRetry] (err, { state, opts }, cb) {\n\t    const { statusCode, code, headers } = err;\n\t    const { method, retryOptions } = opts;\n\t    const {\n\t      maxRetries,\n\t      timeout,\n\t      maxTimeout,\n\t      timeoutFactor,\n\t      statusCodes,\n\t      errorCodes,\n\t      methods\n\t    } = retryOptions;\n\t    let { counter, currentTimeout } = state;\n\n\t    currentTimeout =\n\t      currentTimeout != null && currentTimeout > 0 ? currentTimeout : timeout;\n\n\t    // Any code that is not a Undici's originated and allowed to retry\n\t    if (\n\t      code &&\n\t      code !== 'UND_ERR_REQ_RETRY' &&\n\t      code !== 'UND_ERR_SOCKET' &&\n\t      !errorCodes.includes(code)\n\t    ) {\n\t      cb(err);\n\t      return\n\t    }\n\n\t    // If a set of method are provided and the current method is not in the list\n\t    if (Array.isArray(methods) && !methods.includes(method)) {\n\t      cb(err);\n\t      return\n\t    }\n\n\t    // If a set of status code are provided and the current status code is not in the list\n\t    if (\n\t      statusCode != null &&\n\t      Array.isArray(statusCodes) &&\n\t      !statusCodes.includes(statusCode)\n\t    ) {\n\t      cb(err);\n\t      return\n\t    }\n\n\t    // If we reached the max number of retries\n\t    if (counter > maxRetries) {\n\t      cb(err);\n\t      return\n\t    }\n\n\t    let retryAfterHeader = headers != null && headers['retry-after'];\n\t    if (retryAfterHeader) {\n\t      retryAfterHeader = Number(retryAfterHeader);\n\t      retryAfterHeader = isNaN(retryAfterHeader)\n\t        ? calculateRetryAfterHeader(retryAfterHeader)\n\t        : retryAfterHeader * 1e3; // Retry-After is in seconds\n\t    }\n\n\t    const retryTimeout =\n\t      retryAfterHeader > 0\n\t        ? Math.min(retryAfterHeader, maxTimeout)\n\t        : Math.min(currentTimeout * timeoutFactor ** counter, maxTimeout);\n\n\t    state.currentTimeout = retryTimeout;\n\n\t    setTimeout(() => cb(null), retryTimeout);\n\t  }\n\n\t  onHeaders (statusCode, rawHeaders, resume, statusMessage) {\n\t    const headers = parseHeaders(rawHeaders);\n\n\t    this.retryCount += 1;\n\n\t    if (statusCode >= 300) {\n\t      this.abort(\n\t        new RequestRetryError('Request failed', statusCode, {\n\t          headers,\n\t          count: this.retryCount\n\t        })\n\t      );\n\t      return false\n\t    }\n\n\t    // Checkpoint for resume from where we left it\n\t    if (this.resume != null) {\n\t      this.resume = null;\n\n\t      if (statusCode !== 206) {\n\t        return true\n\t      }\n\n\t      const contentRange = parseRangeHeader(headers['content-range']);\n\t      // If no content range\n\t      if (!contentRange) {\n\t        this.abort(\n\t          new RequestRetryError('Content-Range mismatch', statusCode, {\n\t            headers,\n\t            count: this.retryCount\n\t          })\n\t        );\n\t        return false\n\t      }\n\n\t      // Let's start with a weak etag check\n\t      if (this.etag != null && this.etag !== headers.etag) {\n\t        this.abort(\n\t          new RequestRetryError('ETag mismatch', statusCode, {\n\t            headers,\n\t            count: this.retryCount\n\t          })\n\t        );\n\t        return false\n\t      }\n\n\t      const { start, size, end = size } = contentRange;\n\n\t      assert(this.start === start, 'content-range mismatch');\n\t      assert(this.end == null || this.end === end, 'content-range mismatch');\n\n\t      this.resume = resume;\n\t      return true\n\t    }\n\n\t    if (this.end == null) {\n\t      if (statusCode === 206) {\n\t        // First time we receive 206\n\t        const range = parseRangeHeader(headers['content-range']);\n\n\t        if (range == null) {\n\t          return this.handler.onHeaders(\n\t            statusCode,\n\t            rawHeaders,\n\t            resume,\n\t            statusMessage\n\t          )\n\t        }\n\n\t        const { start, size, end = size } = range;\n\n\t        assert(\n\t          start != null && Number.isFinite(start) && this.start !== start,\n\t          'content-range mismatch'\n\t        );\n\t        assert(Number.isFinite(start));\n\t        assert(\n\t          end != null && Number.isFinite(end) && this.end !== end,\n\t          'invalid content-length'\n\t        );\n\n\t        this.start = start;\n\t        this.end = end;\n\t      }\n\n\t      // We make our best to checkpoint the body for further range headers\n\t      if (this.end == null) {\n\t        const contentLength = headers['content-length'];\n\t        this.end = contentLength != null ? Number(contentLength) : null;\n\t      }\n\n\t      assert(Number.isFinite(this.start));\n\t      assert(\n\t        this.end == null || Number.isFinite(this.end),\n\t        'invalid content-length'\n\t      );\n\n\t      this.resume = resume;\n\t      this.etag = headers.etag != null ? headers.etag : null;\n\n\t      return this.handler.onHeaders(\n\t        statusCode,\n\t        rawHeaders,\n\t        resume,\n\t        statusMessage\n\t      )\n\t    }\n\n\t    const err = new RequestRetryError('Request failed', statusCode, {\n\t      headers,\n\t      count: this.retryCount\n\t    });\n\n\t    this.abort(err);\n\n\t    return false\n\t  }\n\n\t  onData (chunk) {\n\t    this.start += chunk.length;\n\n\t    return this.handler.onData(chunk)\n\t  }\n\n\t  onComplete (rawTrailers) {\n\t    this.retryCount = 0;\n\t    return this.handler.onComplete(rawTrailers)\n\t  }\n\n\t  onError (err) {\n\t    if (this.aborted || isDisturbed(this.opts.body)) {\n\t      return this.handler.onError(err)\n\t    }\n\n\t    this.retryOpts.retry(\n\t      err,\n\t      {\n\t        state: { counter: this.retryCount++, currentTimeout: this.retryAfter },\n\t        opts: { retryOptions: this.retryOpts, ...this.opts }\n\t      },\n\t      onRetry.bind(this)\n\t    );\n\n\t    function onRetry (err) {\n\t      if (err != null || this.aborted || isDisturbed(this.opts.body)) {\n\t        return this.handler.onError(err)\n\t      }\n\n\t      if (this.start !== 0) {\n\t        this.opts = {\n\t          ...this.opts,\n\t          headers: {\n\t            ...this.opts.headers,\n\t            range: `bytes=${this.start}-${this.end ?? ''}`\n\t          }\n\t        };\n\t      }\n\n\t      try {\n\t        this.dispatch(this.opts, this);\n\t      } catch (err) {\n\t        this.handler.onError(err);\n\t      }\n\t    }\n\t  }\n\t}\n\n\tRetryHandler_1 = RetryHandler;\n\treturn RetryHandler_1;\n}\n\nvar global$1;\nvar hasRequiredGlobal;\n\nfunction requireGlobal () {\n\tif (hasRequiredGlobal) return global$1;\n\thasRequiredGlobal = 1;\n\n\t// We include a version number for the Dispatcher API. In case of breaking changes,\n\t// this version number must be increased to avoid conflicts.\n\tconst globalDispatcher = Symbol.for('undici.globalDispatcher.1');\n\tconst { InvalidArgumentError } = requireErrors$3();\n\tconst Agent = requireAgent();\n\n\tif (getGlobalDispatcher() === undefined) {\n\t  setGlobalDispatcher(new Agent());\n\t}\n\n\tfunction setGlobalDispatcher (agent) {\n\t  if (!agent || typeof agent.dispatch !== 'function') {\n\t    throw new InvalidArgumentError('Argument agent must implement Agent')\n\t  }\n\t  Object.defineProperty(globalThis, globalDispatcher, {\n\t    value: agent,\n\t    writable: true,\n\t    enumerable: false,\n\t    configurable: false\n\t  });\n\t}\n\n\tfunction getGlobalDispatcher () {\n\t  return globalThis[globalDispatcher]\n\t}\n\n\tglobal$1 = {\n\t  setGlobalDispatcher,\n\t  getGlobalDispatcher\n\t};\n\treturn global$1;\n}\n\nvar DecoratorHandler_1;\nvar hasRequiredDecoratorHandler;\n\nfunction requireDecoratorHandler () {\n\tif (hasRequiredDecoratorHandler) return DecoratorHandler_1;\n\thasRequiredDecoratorHandler = 1;\n\n\tDecoratorHandler_1 = class DecoratorHandler {\n\t  constructor (handler) {\n\t    this.handler = handler;\n\t  }\n\n\t  onConnect (...args) {\n\t    return this.handler.onConnect(...args)\n\t  }\n\n\t  onError (...args) {\n\t    return this.handler.onError(...args)\n\t  }\n\n\t  onUpgrade (...args) {\n\t    return this.handler.onUpgrade(...args)\n\t  }\n\n\t  onHeaders (...args) {\n\t    return this.handler.onHeaders(...args)\n\t  }\n\n\t  onData (...args) {\n\t    return this.handler.onData(...args)\n\t  }\n\n\t  onComplete (...args) {\n\t    return this.handler.onComplete(...args)\n\t  }\n\n\t  onBodySent (...args) {\n\t    return this.handler.onBodySent(...args)\n\t  }\n\t};\n\treturn DecoratorHandler_1;\n}\n\nvar headers$1;\nvar hasRequiredHeaders$1;\n\nfunction requireHeaders$1 () {\n\tif (hasRequiredHeaders$1) return headers$1;\n\thasRequiredHeaders$1 = 1;\n\n\tconst { kHeadersList, kConstruct } = requireSymbols$4();\n\tconst { kGuard } = requireSymbols$3();\n\tconst { kEnumerableProperty } = requireUtil$c();\n\tconst {\n\t  makeIterator,\n\t  isValidHeaderName,\n\t  isValidHeaderValue\n\t} = requireUtil$b();\n\tconst util = require$$0__default$1;\n\tconst { webidl } = requireWebidl();\n\tconst assert = require$$0$9;\n\n\tconst kHeadersMap = Symbol('headers map');\n\tconst kHeadersSortedMap = Symbol('headers map sorted');\n\n\t/**\n\t * @param {number} code\n\t */\n\tfunction isHTTPWhiteSpaceCharCode (code) {\n\t  return code === 0x00a || code === 0x00d || code === 0x009 || code === 0x020\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#concept-header-value-normalize\n\t * @param {string} potentialValue\n\t */\n\tfunction headerValueNormalize (potentialValue) {\n\t  //  To normalize a byte sequence potentialValue, remove\n\t  //  any leading and trailing HTTP whitespace bytes from\n\t  //  potentialValue.\n\t  let i = 0; let j = potentialValue.length;\n\n\t  while (j > i && isHTTPWhiteSpaceCharCode(potentialValue.charCodeAt(j - 1))) --j;\n\t  while (j > i && isHTTPWhiteSpaceCharCode(potentialValue.charCodeAt(i))) ++i;\n\n\t  return i === 0 && j === potentialValue.length ? potentialValue : potentialValue.substring(i, j)\n\t}\n\n\tfunction fill (headers, object) {\n\t  // To fill a Headers object headers with a given object object, run these steps:\n\n\t  // 1. If object is a sequence, then for each header in object:\n\t  // Note: webidl conversion to array has already been done.\n\t  if (Array.isArray(object)) {\n\t    for (let i = 0; i < object.length; ++i) {\n\t      const header = object[i];\n\t      // 1. If header does not contain exactly two items, then throw a TypeError.\n\t      if (header.length !== 2) {\n\t        throw webidl.errors.exception({\n\t          header: 'Headers constructor',\n\t          message: `expected name/value pair to be length 2, found ${header.length}.`\n\t        })\n\t      }\n\n\t      // 2. Append (header’s first item, header’s second item) to headers.\n\t      appendHeader(headers, header[0], header[1]);\n\t    }\n\t  } else if (typeof object === 'object' && object !== null) {\n\t    // Note: null should throw\n\n\t    // 2. Otherwise, object is a record, then for each key → value in object,\n\t    //    append (key, value) to headers\n\t    const keys = Object.keys(object);\n\t    for (let i = 0; i < keys.length; ++i) {\n\t      appendHeader(headers, keys[i], object[keys[i]]);\n\t    }\n\t  } else {\n\t    throw webidl.errors.conversionFailed({\n\t      prefix: 'Headers constructor',\n\t      argument: 'Argument 1',\n\t      types: ['sequence<sequence<ByteString>>', 'record<ByteString, ByteString>']\n\t    })\n\t  }\n\t}\n\n\t/**\n\t * @see https://fetch.spec.whatwg.org/#concept-headers-append\n\t */\n\tfunction appendHeader (headers, name, value) {\n\t  // 1. Normalize value.\n\t  value = headerValueNormalize(value);\n\n\t  // 2. If name is not a header name or value is not a\n\t  //    header value, then throw a TypeError.\n\t  if (!isValidHeaderName(name)) {\n\t    throw webidl.errors.invalidArgument({\n\t      prefix: 'Headers.append',\n\t      value: name,\n\t      type: 'header name'\n\t    })\n\t  } else if (!isValidHeaderValue(value)) {\n\t    throw webidl.errors.invalidArgument({\n\t      prefix: 'Headers.append',\n\t      value,\n\t      type: 'header value'\n\t    })\n\t  }\n\n\t  // 3. If headers’s guard is \"immutable\", then throw a TypeError.\n\t  // 4. Otherwise, if headers’s guard is \"request\" and name is a\n\t  //    forbidden header name, return.\n\t  // Note: undici does not implement forbidden header names\n\t  if (headers[kGuard] === 'immutable') {\n\t    throw new TypeError('immutable')\n\t  } else if (headers[kGuard] === 'request-no-cors') ;\n\n\t  // 6. Otherwise, if headers’s guard is \"response\" and name is a\n\t  //    forbidden response-header name, return.\n\n\t  // 7. Append (name, value) to headers’s header list.\n\t  return headers[kHeadersList].append(name, value)\n\n\t  // 8. If headers’s guard is \"request-no-cors\", then remove\n\t  //    privileged no-CORS request headers from headers\n\t}\n\n\tclass HeadersList {\n\t  /** @type {[string, string][]|null} */\n\t  cookies = null\n\n\t  constructor (init) {\n\t    if (init instanceof HeadersList) {\n\t      this[kHeadersMap] = new Map(init[kHeadersMap]);\n\t      this[kHeadersSortedMap] = init[kHeadersSortedMap];\n\t      this.cookies = init.cookies === null ? null : [...init.cookies];\n\t    } else {\n\t      this[kHeadersMap] = new Map(init);\n\t      this[kHeadersSortedMap] = null;\n\t    }\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#header-list-contains\n\t  contains (name) {\n\t    // A header list list contains a header name name if list\n\t    // contains a header whose name is a byte-case-insensitive\n\t    // match for name.\n\t    name = name.toLowerCase();\n\n\t    return this[kHeadersMap].has(name)\n\t  }\n\n\t  clear () {\n\t    this[kHeadersMap].clear();\n\t    this[kHeadersSortedMap] = null;\n\t    this.cookies = null;\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#concept-header-list-append\n\t  append (name, value) {\n\t    this[kHeadersSortedMap] = null;\n\n\t    // 1. If list contains name, then set name to the first such\n\t    //    header’s name.\n\t    const lowercaseName = name.toLowerCase();\n\t    const exists = this[kHeadersMap].get(lowercaseName);\n\n\t    // 2. Append (name, value) to list.\n\t    if (exists) {\n\t      const delimiter = lowercaseName === 'cookie' ? '; ' : ', ';\n\t      this[kHeadersMap].set(lowercaseName, {\n\t        name: exists.name,\n\t        value: `${exists.value}${delimiter}${value}`\n\t      });\n\t    } else {\n\t      this[kHeadersMap].set(lowercaseName, { name, value });\n\t    }\n\n\t    if (lowercaseName === 'set-cookie') {\n\t      this.cookies ??= [];\n\t      this.cookies.push(value);\n\t    }\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#concept-header-list-set\n\t  set (name, value) {\n\t    this[kHeadersSortedMap] = null;\n\t    const lowercaseName = name.toLowerCase();\n\n\t    if (lowercaseName === 'set-cookie') {\n\t      this.cookies = [value];\n\t    }\n\n\t    // 1. If list contains name, then set the value of\n\t    //    the first such header to value and remove the\n\t    //    others.\n\t    // 2. Otherwise, append header (name, value) to list.\n\t    this[kHeadersMap].set(lowercaseName, { name, value });\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#concept-header-list-delete\n\t  delete (name) {\n\t    this[kHeadersSortedMap] = null;\n\n\t    name = name.toLowerCase();\n\n\t    if (name === 'set-cookie') {\n\t      this.cookies = null;\n\t    }\n\n\t    this[kHeadersMap].delete(name);\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#concept-header-list-get\n\t  get (name) {\n\t    const value = this[kHeadersMap].get(name.toLowerCase());\n\n\t    // 1. If list does not contain name, then return null.\n\t    // 2. Return the values of all headers in list whose name\n\t    //    is a byte-case-insensitive match for name,\n\t    //    separated from each other by 0x2C 0x20, in order.\n\t    return value === undefined ? null : value.value\n\t  }\n\n\t  * [Symbol.iterator] () {\n\t    // use the lowercased name\n\t    for (const [name, { value }] of this[kHeadersMap]) {\n\t      yield [name, value];\n\t    }\n\t  }\n\n\t  get entries () {\n\t    const headers = {};\n\n\t    if (this[kHeadersMap].size) {\n\t      for (const { name, value } of this[kHeadersMap].values()) {\n\t        headers[name] = value;\n\t      }\n\t    }\n\n\t    return headers\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#headers-class\n\tclass Headers {\n\t  constructor (init = undefined) {\n\t    if (init === kConstruct) {\n\t      return\n\t    }\n\t    this[kHeadersList] = new HeadersList();\n\n\t    // The new Headers(init) constructor steps are:\n\n\t    // 1. Set this’s guard to \"none\".\n\t    this[kGuard] = 'none';\n\n\t    // 2. If init is given, then fill this with init.\n\t    if (init !== undefined) {\n\t      init = webidl.converters.HeadersInit(init);\n\t      fill(this, init);\n\t    }\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-headers-append\n\t  append (name, value) {\n\t    webidl.brandCheck(this, Headers);\n\n\t    webidl.argumentLengthCheck(arguments, 2, { header: 'Headers.append' });\n\n\t    name = webidl.converters.ByteString(name);\n\t    value = webidl.converters.ByteString(value);\n\n\t    return appendHeader(this, name, value)\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-headers-delete\n\t  delete (name) {\n\t    webidl.brandCheck(this, Headers);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Headers.delete' });\n\n\t    name = webidl.converters.ByteString(name);\n\n\t    // 1. If name is not a header name, then throw a TypeError.\n\t    if (!isValidHeaderName(name)) {\n\t      throw webidl.errors.invalidArgument({\n\t        prefix: 'Headers.delete',\n\t        value: name,\n\t        type: 'header name'\n\t      })\n\t    }\n\n\t    // 2. If this’s guard is \"immutable\", then throw a TypeError.\n\t    // 3. Otherwise, if this’s guard is \"request\" and name is a\n\t    //    forbidden header name, return.\n\t    // 4. Otherwise, if this’s guard is \"request-no-cors\", name\n\t    //    is not a no-CORS-safelisted request-header name, and\n\t    //    name is not a privileged no-CORS request-header name,\n\t    //    return.\n\t    // 5. Otherwise, if this’s guard is \"response\" and name is\n\t    //    a forbidden response-header name, return.\n\t    // Note: undici does not implement forbidden header names\n\t    if (this[kGuard] === 'immutable') {\n\t      throw new TypeError('immutable')\n\t    } else if (this[kGuard] === 'request-no-cors') ;\n\n\t    // 6. If this’s header list does not contain name, then\n\t    //    return.\n\t    if (!this[kHeadersList].contains(name)) {\n\t      return\n\t    }\n\n\t    // 7. Delete name from this’s header list.\n\t    // 8. If this’s guard is \"request-no-cors\", then remove\n\t    //    privileged no-CORS request headers from this.\n\t    this[kHeadersList].delete(name);\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-headers-get\n\t  get (name) {\n\t    webidl.brandCheck(this, Headers);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Headers.get' });\n\n\t    name = webidl.converters.ByteString(name);\n\n\t    // 1. If name is not a header name, then throw a TypeError.\n\t    if (!isValidHeaderName(name)) {\n\t      throw webidl.errors.invalidArgument({\n\t        prefix: 'Headers.get',\n\t        value: name,\n\t        type: 'header name'\n\t      })\n\t    }\n\n\t    // 2. Return the result of getting name from this’s header\n\t    //    list.\n\t    return this[kHeadersList].get(name)\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-headers-has\n\t  has (name) {\n\t    webidl.brandCheck(this, Headers);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Headers.has' });\n\n\t    name = webidl.converters.ByteString(name);\n\n\t    // 1. If name is not a header name, then throw a TypeError.\n\t    if (!isValidHeaderName(name)) {\n\t      throw webidl.errors.invalidArgument({\n\t        prefix: 'Headers.has',\n\t        value: name,\n\t        type: 'header name'\n\t      })\n\t    }\n\n\t    // 2. Return true if this’s header list contains name;\n\t    //    otherwise false.\n\t    return this[kHeadersList].contains(name)\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-headers-set\n\t  set (name, value) {\n\t    webidl.brandCheck(this, Headers);\n\n\t    webidl.argumentLengthCheck(arguments, 2, { header: 'Headers.set' });\n\n\t    name = webidl.converters.ByteString(name);\n\t    value = webidl.converters.ByteString(value);\n\n\t    // 1. Normalize value.\n\t    value = headerValueNormalize(value);\n\n\t    // 2. If name is not a header name or value is not a\n\t    //    header value, then throw a TypeError.\n\t    if (!isValidHeaderName(name)) {\n\t      throw webidl.errors.invalidArgument({\n\t        prefix: 'Headers.set',\n\t        value: name,\n\t        type: 'header name'\n\t      })\n\t    } else if (!isValidHeaderValue(value)) {\n\t      throw webidl.errors.invalidArgument({\n\t        prefix: 'Headers.set',\n\t        value,\n\t        type: 'header value'\n\t      })\n\t    }\n\n\t    // 3. If this’s guard is \"immutable\", then throw a TypeError.\n\t    // 4. Otherwise, if this’s guard is \"request\" and name is a\n\t    //    forbidden header name, return.\n\t    // 5. Otherwise, if this’s guard is \"request-no-cors\" and\n\t    //    name/value is not a no-CORS-safelisted request-header,\n\t    //    return.\n\t    // 6. Otherwise, if this’s guard is \"response\" and name is a\n\t    //    forbidden response-header name, return.\n\t    // Note: undici does not implement forbidden header names\n\t    if (this[kGuard] === 'immutable') {\n\t      throw new TypeError('immutable')\n\t    } else if (this[kGuard] === 'request-no-cors') ;\n\n\t    // 7. Set (name, value) in this’s header list.\n\t    // 8. If this’s guard is \"request-no-cors\", then remove\n\t    //    privileged no-CORS request headers from this\n\t    this[kHeadersList].set(name, value);\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-headers-getsetcookie\n\t  getSetCookie () {\n\t    webidl.brandCheck(this, Headers);\n\n\t    // 1. If this’s header list does not contain `Set-Cookie`, then return « ».\n\t    // 2. Return the values of all headers in this’s header list whose name is\n\t    //    a byte-case-insensitive match for `Set-Cookie`, in order.\n\n\t    const list = this[kHeadersList].cookies;\n\n\t    if (list) {\n\t      return [...list]\n\t    }\n\n\t    return []\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#concept-header-list-sort-and-combine\n\t  get [kHeadersSortedMap] () {\n\t    if (this[kHeadersList][kHeadersSortedMap]) {\n\t      return this[kHeadersList][kHeadersSortedMap]\n\t    }\n\n\t    // 1. Let headers be an empty list of headers with the key being the name\n\t    //    and value the value.\n\t    const headers = [];\n\n\t    // 2. Let names be the result of convert header names to a sorted-lowercase\n\t    //    set with all the names of the headers in list.\n\t    const names = [...this[kHeadersList]].sort((a, b) => a[0] < b[0] ? -1 : 1);\n\t    const cookies = this[kHeadersList].cookies;\n\n\t    // 3. For each name of names:\n\t    for (let i = 0; i < names.length; ++i) {\n\t      const [name, value] = names[i];\n\t      // 1. If name is `set-cookie`, then:\n\t      if (name === 'set-cookie') {\n\t        // 1. Let values be a list of all values of headers in list whose name\n\t        //    is a byte-case-insensitive match for name, in order.\n\n\t        // 2. For each value of values:\n\t        // 1. Append (name, value) to headers.\n\t        for (let j = 0; j < cookies.length; ++j) {\n\t          headers.push([name, cookies[j]]);\n\t        }\n\t      } else {\n\t        // 2. Otherwise:\n\n\t        // 1. Let value be the result of getting name from list.\n\n\t        // 2. Assert: value is non-null.\n\t        assert(value !== null);\n\n\t        // 3. Append (name, value) to headers.\n\t        headers.push([name, value]);\n\t      }\n\t    }\n\n\t    this[kHeadersList][kHeadersSortedMap] = headers;\n\n\t    // 4. Return headers.\n\t    return headers\n\t  }\n\n\t  keys () {\n\t    webidl.brandCheck(this, Headers);\n\n\t    if (this[kGuard] === 'immutable') {\n\t      const value = this[kHeadersSortedMap];\n\t      return makeIterator(() => value, 'Headers',\n\t        'key')\n\t    }\n\n\t    return makeIterator(\n\t      () => [...this[kHeadersSortedMap].values()],\n\t      'Headers',\n\t      'key'\n\t    )\n\t  }\n\n\t  values () {\n\t    webidl.brandCheck(this, Headers);\n\n\t    if (this[kGuard] === 'immutable') {\n\t      const value = this[kHeadersSortedMap];\n\t      return makeIterator(() => value, 'Headers',\n\t        'value')\n\t    }\n\n\t    return makeIterator(\n\t      () => [...this[kHeadersSortedMap].values()],\n\t      'Headers',\n\t      'value'\n\t    )\n\t  }\n\n\t  entries () {\n\t    webidl.brandCheck(this, Headers);\n\n\t    if (this[kGuard] === 'immutable') {\n\t      const value = this[kHeadersSortedMap];\n\t      return makeIterator(() => value, 'Headers',\n\t        'key+value')\n\t    }\n\n\t    return makeIterator(\n\t      () => [...this[kHeadersSortedMap].values()],\n\t      'Headers',\n\t      'key+value'\n\t    )\n\t  }\n\n\t  /**\n\t   * @param {(value: string, key: string, self: Headers) => void} callbackFn\n\t   * @param {unknown} thisArg\n\t   */\n\t  forEach (callbackFn, thisArg = globalThis) {\n\t    webidl.brandCheck(this, Headers);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Headers.forEach' });\n\n\t    if (typeof callbackFn !== 'function') {\n\t      throw new TypeError(\n\t        \"Failed to execute 'forEach' on 'Headers': parameter 1 is not of type 'Function'.\"\n\t      )\n\t    }\n\n\t    for (const [key, value] of this) {\n\t      callbackFn.apply(thisArg, [value, key, this]);\n\t    }\n\t  }\n\n\t  [Symbol.for('nodejs.util.inspect.custom')] () {\n\t    webidl.brandCheck(this, Headers);\n\n\t    return this[kHeadersList]\n\t  }\n\t}\n\n\tHeaders.prototype[Symbol.iterator] = Headers.prototype.entries;\n\n\tObject.defineProperties(Headers.prototype, {\n\t  append: kEnumerableProperty,\n\t  delete: kEnumerableProperty,\n\t  get: kEnumerableProperty,\n\t  has: kEnumerableProperty,\n\t  set: kEnumerableProperty,\n\t  getSetCookie: kEnumerableProperty,\n\t  keys: kEnumerableProperty,\n\t  values: kEnumerableProperty,\n\t  entries: kEnumerableProperty,\n\t  forEach: kEnumerableProperty,\n\t  [Symbol.iterator]: { enumerable: false },\n\t  [Symbol.toStringTag]: {\n\t    value: 'Headers',\n\t    configurable: true\n\t  },\n\t  [util.inspect.custom]: {\n\t    enumerable: false\n\t  }\n\t});\n\n\twebidl.converters.HeadersInit = function (V) {\n\t  if (webidl.util.Type(V) === 'Object') {\n\t    if (V[Symbol.iterator]) {\n\t      return webidl.converters['sequence<sequence<ByteString>>'](V)\n\t    }\n\n\t    return webidl.converters['record<ByteString, ByteString>'](V)\n\t  }\n\n\t  throw webidl.errors.conversionFailed({\n\t    prefix: 'Headers constructor',\n\t    argument: 'Argument 1',\n\t    types: ['sequence<sequence<ByteString>>', 'record<ByteString, ByteString>']\n\t  })\n\t};\n\n\theaders$1 = {\n\t  fill,\n\t  Headers,\n\t  HeadersList\n\t};\n\treturn headers$1;\n}\n\nvar response;\nvar hasRequiredResponse;\n\nfunction requireResponse () {\n\tif (hasRequiredResponse) return response;\n\thasRequiredResponse = 1;\n\n\tconst { Headers, HeadersList, fill } = requireHeaders$1();\n\tconst { extractBody, cloneBody, mixinBody } = requireBody();\n\tconst util = requireUtil$c();\n\tconst { kEnumerableProperty } = util;\n\tconst {\n\t  isValidReasonPhrase,\n\t  isCancelled,\n\t  isAborted,\n\t  isBlobLike,\n\t  serializeJavascriptValueToJSONString,\n\t  isErrorLike,\n\t  isomorphicEncode\n\t} = requireUtil$b();\n\tconst {\n\t  redirectStatusSet,\n\t  nullBodyStatus,\n\t  DOMException\n\t} = requireConstants$7();\n\tconst { kState, kHeaders, kGuard, kRealm } = requireSymbols$3();\n\tconst { webidl } = requireWebidl();\n\tconst { FormData } = requireFormdata();\n\tconst { getGlobalOrigin } = requireGlobal$1();\n\tconst { URLSerializer } = requireDataURL();\n\tconst { kHeadersList, kConstruct } = requireSymbols$4();\n\tconst assert = require$$0$9;\n\tconst { types } = require$$0__default$1;\n\n\tconst ReadableStream = globalThis.ReadableStream || require$$14.ReadableStream;\n\tconst textEncoder = new TextEncoder('utf-8');\n\n\t// https://fetch.spec.whatwg.org/#response-class\n\tclass Response {\n\t  // Creates network error Response.\n\t  static error () {\n\t    // TODO\n\t    const relevantRealm = { settingsObject: {} };\n\n\t    // The static error() method steps are to return the result of creating a\n\t    // Response object, given a new network error, \"immutable\", and this’s\n\t    // relevant Realm.\n\t    const responseObject = new Response();\n\t    responseObject[kState] = makeNetworkError();\n\t    responseObject[kRealm] = relevantRealm;\n\t    responseObject[kHeaders][kHeadersList] = responseObject[kState].headersList;\n\t    responseObject[kHeaders][kGuard] = 'immutable';\n\t    responseObject[kHeaders][kRealm] = relevantRealm;\n\t    return responseObject\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-response-json\n\t  static json (data, init = {}) {\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Response.json' });\n\n\t    if (init !== null) {\n\t      init = webidl.converters.ResponseInit(init);\n\t    }\n\n\t    // 1. Let bytes the result of running serialize a JavaScript value to JSON bytes on data.\n\t    const bytes = textEncoder.encode(\n\t      serializeJavascriptValueToJSONString(data)\n\t    );\n\n\t    // 2. Let body be the result of extracting bytes.\n\t    const body = extractBody(bytes);\n\n\t    // 3. Let responseObject be the result of creating a Response object, given a new response,\n\t    //    \"response\", and this’s relevant Realm.\n\t    const relevantRealm = { settingsObject: {} };\n\t    const responseObject = new Response();\n\t    responseObject[kRealm] = relevantRealm;\n\t    responseObject[kHeaders][kGuard] = 'response';\n\t    responseObject[kHeaders][kRealm] = relevantRealm;\n\n\t    // 4. Perform initialize a response given responseObject, init, and (body, \"application/json\").\n\t    initializeResponse(responseObject, init, { body: body[0], type: 'application/json' });\n\n\t    // 5. Return responseObject.\n\t    return responseObject\n\t  }\n\n\t  // Creates a redirect Response that redirects to url with status status.\n\t  static redirect (url, status = 302) {\n\t    const relevantRealm = { settingsObject: {} };\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Response.redirect' });\n\n\t    url = webidl.converters.USVString(url);\n\t    status = webidl.converters['unsigned short'](status);\n\n\t    // 1. Let parsedURL be the result of parsing url with current settings\n\t    // object’s API base URL.\n\t    // 2. If parsedURL is failure, then throw a TypeError.\n\t    // TODO: base-URL?\n\t    let parsedURL;\n\t    try {\n\t      parsedURL = new URL(url, getGlobalOrigin());\n\t    } catch (err) {\n\t      throw Object.assign(new TypeError('Failed to parse URL from ' + url), {\n\t        cause: err\n\t      })\n\t    }\n\n\t    // 3. If status is not a redirect status, then throw a RangeError.\n\t    if (!redirectStatusSet.has(status)) {\n\t      throw new RangeError('Invalid status code ' + status)\n\t    }\n\n\t    // 4. Let responseObject be the result of creating a Response object,\n\t    // given a new response, \"immutable\", and this’s relevant Realm.\n\t    const responseObject = new Response();\n\t    responseObject[kRealm] = relevantRealm;\n\t    responseObject[kHeaders][kGuard] = 'immutable';\n\t    responseObject[kHeaders][kRealm] = relevantRealm;\n\n\t    // 5. Set responseObject’s response’s status to status.\n\t    responseObject[kState].status = status;\n\n\t    // 6. Let value be parsedURL, serialized and isomorphic encoded.\n\t    const value = isomorphicEncode(URLSerializer(parsedURL));\n\n\t    // 7. Append `Location`/value to responseObject’s response’s header list.\n\t    responseObject[kState].headersList.append('location', value);\n\n\t    // 8. Return responseObject.\n\t    return responseObject\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#dom-response\n\t  constructor (body = null, init = {}) {\n\t    if (body !== null) {\n\t      body = webidl.converters.BodyInit(body);\n\t    }\n\n\t    init = webidl.converters.ResponseInit(init);\n\n\t    // TODO\n\t    this[kRealm] = { settingsObject: {} };\n\n\t    // 1. Set this’s response to a new response.\n\t    this[kState] = makeResponse({});\n\n\t    // 2. Set this’s headers to a new Headers object with this’s relevant\n\t    // Realm, whose header list is this’s response’s header list and guard\n\t    // is \"response\".\n\t    this[kHeaders] = new Headers(kConstruct);\n\t    this[kHeaders][kGuard] = 'response';\n\t    this[kHeaders][kHeadersList] = this[kState].headersList;\n\t    this[kHeaders][kRealm] = this[kRealm];\n\n\t    // 3. Let bodyWithType be null.\n\t    let bodyWithType = null;\n\n\t    // 4. If body is non-null, then set bodyWithType to the result of extracting body.\n\t    if (body != null) {\n\t      const [extractedBody, type] = extractBody(body);\n\t      bodyWithType = { body: extractedBody, type };\n\t    }\n\n\t    // 5. Perform initialize a response given this, init, and bodyWithType.\n\t    initializeResponse(this, init, bodyWithType);\n\t  }\n\n\t  // Returns response’s type, e.g., \"cors\".\n\t  get type () {\n\t    webidl.brandCheck(this, Response);\n\n\t    // The type getter steps are to return this’s response’s type.\n\t    return this[kState].type\n\t  }\n\n\t  // Returns response’s URL, if it has one; otherwise the empty string.\n\t  get url () {\n\t    webidl.brandCheck(this, Response);\n\n\t    const urlList = this[kState].urlList;\n\n\t    // The url getter steps are to return the empty string if this’s\n\t    // response’s URL is null; otherwise this’s response’s URL,\n\t    // serialized with exclude fragment set to true.\n\t    const url = urlList[urlList.length - 1] ?? null;\n\n\t    if (url === null) {\n\t      return ''\n\t    }\n\n\t    return URLSerializer(url, true)\n\t  }\n\n\t  // Returns whether response was obtained through a redirect.\n\t  get redirected () {\n\t    webidl.brandCheck(this, Response);\n\n\t    // The redirected getter steps are to return true if this’s response’s URL\n\t    // list has more than one item; otherwise false.\n\t    return this[kState].urlList.length > 1\n\t  }\n\n\t  // Returns response’s status.\n\t  get status () {\n\t    webidl.brandCheck(this, Response);\n\n\t    // The status getter steps are to return this’s response’s status.\n\t    return this[kState].status\n\t  }\n\n\t  // Returns whether response’s status is an ok status.\n\t  get ok () {\n\t    webidl.brandCheck(this, Response);\n\n\t    // The ok getter steps are to return true if this’s response’s status is an\n\t    // ok status; otherwise false.\n\t    return this[kState].status >= 200 && this[kState].status <= 299\n\t  }\n\n\t  // Returns response’s status message.\n\t  get statusText () {\n\t    webidl.brandCheck(this, Response);\n\n\t    // The statusText getter steps are to return this’s response’s status\n\t    // message.\n\t    return this[kState].statusText\n\t  }\n\n\t  // Returns response’s headers as Headers.\n\t  get headers () {\n\t    webidl.brandCheck(this, Response);\n\n\t    // The headers getter steps are to return this’s headers.\n\t    return this[kHeaders]\n\t  }\n\n\t  get body () {\n\t    webidl.brandCheck(this, Response);\n\n\t    return this[kState].body ? this[kState].body.stream : null\n\t  }\n\n\t  get bodyUsed () {\n\t    webidl.brandCheck(this, Response);\n\n\t    return !!this[kState].body && util.isDisturbed(this[kState].body.stream)\n\t  }\n\n\t  // Returns a clone of response.\n\t  clone () {\n\t    webidl.brandCheck(this, Response);\n\n\t    // 1. If this is unusable, then throw a TypeError.\n\t    if (this.bodyUsed || (this.body && this.body.locked)) {\n\t      throw webidl.errors.exception({\n\t        header: 'Response.clone',\n\t        message: 'Body has already been consumed.'\n\t      })\n\t    }\n\n\t    // 2. Let clonedResponse be the result of cloning this’s response.\n\t    const clonedResponse = cloneResponse(this[kState]);\n\n\t    // 3. Return the result of creating a Response object, given\n\t    // clonedResponse, this’s headers’s guard, and this’s relevant Realm.\n\t    const clonedResponseObject = new Response();\n\t    clonedResponseObject[kState] = clonedResponse;\n\t    clonedResponseObject[kRealm] = this[kRealm];\n\t    clonedResponseObject[kHeaders][kHeadersList] = clonedResponse.headersList;\n\t    clonedResponseObject[kHeaders][kGuard] = this[kHeaders][kGuard];\n\t    clonedResponseObject[kHeaders][kRealm] = this[kHeaders][kRealm];\n\n\t    return clonedResponseObject\n\t  }\n\t}\n\n\tmixinBody(Response);\n\n\tObject.defineProperties(Response.prototype, {\n\t  type: kEnumerableProperty,\n\t  url: kEnumerableProperty,\n\t  status: kEnumerableProperty,\n\t  ok: kEnumerableProperty,\n\t  redirected: kEnumerableProperty,\n\t  statusText: kEnumerableProperty,\n\t  headers: kEnumerableProperty,\n\t  clone: kEnumerableProperty,\n\t  body: kEnumerableProperty,\n\t  bodyUsed: kEnumerableProperty,\n\t  [Symbol.toStringTag]: {\n\t    value: 'Response',\n\t    configurable: true\n\t  }\n\t});\n\n\tObject.defineProperties(Response, {\n\t  json: kEnumerableProperty,\n\t  redirect: kEnumerableProperty,\n\t  error: kEnumerableProperty\n\t});\n\n\t// https://fetch.spec.whatwg.org/#concept-response-clone\n\tfunction cloneResponse (response) {\n\t  // To clone a response response, run these steps:\n\n\t  // 1. If response is a filtered response, then return a new identical\n\t  // filtered response whose internal response is a clone of response’s\n\t  // internal response.\n\t  if (response.internalResponse) {\n\t    return filterResponse(\n\t      cloneResponse(response.internalResponse),\n\t      response.type\n\t    )\n\t  }\n\n\t  // 2. Let newResponse be a copy of response, except for its body.\n\t  const newResponse = makeResponse({ ...response, body: null });\n\n\t  // 3. If response’s body is non-null, then set newResponse’s body to the\n\t  // result of cloning response’s body.\n\t  if (response.body != null) {\n\t    newResponse.body = cloneBody(response.body);\n\t  }\n\n\t  // 4. Return newResponse.\n\t  return newResponse\n\t}\n\n\tfunction makeResponse (init) {\n\t  return {\n\t    aborted: false,\n\t    rangeRequested: false,\n\t    timingAllowPassed: false,\n\t    requestIncludesCredentials: false,\n\t    type: 'default',\n\t    status: 200,\n\t    timingInfo: null,\n\t    cacheState: '',\n\t    statusText: '',\n\t    ...init,\n\t    headersList: init.headersList\n\t      ? new HeadersList(init.headersList)\n\t      : new HeadersList(),\n\t    urlList: init.urlList ? [...init.urlList] : []\n\t  }\n\t}\n\n\tfunction makeNetworkError (reason) {\n\t  const isError = isErrorLike(reason);\n\t  return makeResponse({\n\t    type: 'error',\n\t    status: 0,\n\t    error: isError\n\t      ? reason\n\t      : new Error(reason ? String(reason) : reason),\n\t    aborted: reason && reason.name === 'AbortError'\n\t  })\n\t}\n\n\tfunction makeFilteredResponse (response, state) {\n\t  state = {\n\t    internalResponse: response,\n\t    ...state\n\t  };\n\n\t  return new Proxy(response, {\n\t    get (target, p) {\n\t      return p in state ? state[p] : target[p]\n\t    },\n\t    set (target, p, value) {\n\t      assert(!(p in state));\n\t      target[p] = value;\n\t      return true\n\t    }\n\t  })\n\t}\n\n\t// https://fetch.spec.whatwg.org/#concept-filtered-response\n\tfunction filterResponse (response, type) {\n\t  // Set response to the following filtered response with response as its\n\t  // internal response, depending on request’s response tainting:\n\t  if (type === 'basic') {\n\t    // A basic filtered response is a filtered response whose type is \"basic\"\n\t    // and header list excludes any headers in internal response’s header list\n\t    // whose name is a forbidden response-header name.\n\n\t    // Note: undici does not implement forbidden response-header names\n\t    return makeFilteredResponse(response, {\n\t      type: 'basic',\n\t      headersList: response.headersList\n\t    })\n\t  } else if (type === 'cors') {\n\t    // A CORS filtered response is a filtered response whose type is \"cors\"\n\t    // and header list excludes any headers in internal response’s header\n\t    // list whose name is not a CORS-safelisted response-header name, given\n\t    // internal response’s CORS-exposed header-name list.\n\n\t    // Note: undici does not implement CORS-safelisted response-header names\n\t    return makeFilteredResponse(response, {\n\t      type: 'cors',\n\t      headersList: response.headersList\n\t    })\n\t  } else if (type === 'opaque') {\n\t    // An opaque filtered response is a filtered response whose type is\n\t    // \"opaque\", URL list is the empty list, status is 0, status message\n\t    // is the empty byte sequence, header list is empty, and body is null.\n\n\t    return makeFilteredResponse(response, {\n\t      type: 'opaque',\n\t      urlList: Object.freeze([]),\n\t      status: 0,\n\t      statusText: '',\n\t      body: null\n\t    })\n\t  } else if (type === 'opaqueredirect') {\n\t    // An opaque-redirect filtered response is a filtered response whose type\n\t    // is \"opaqueredirect\", status is 0, status message is the empty byte\n\t    // sequence, header list is empty, and body is null.\n\n\t    return makeFilteredResponse(response, {\n\t      type: 'opaqueredirect',\n\t      status: 0,\n\t      statusText: '',\n\t      headersList: [],\n\t      body: null\n\t    })\n\t  } else {\n\t    assert(false);\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#appropriate-network-error\n\tfunction makeAppropriateNetworkError (fetchParams, err = null) {\n\t  // 1. Assert: fetchParams is canceled.\n\t  assert(isCancelled(fetchParams));\n\n\t  // 2. Return an aborted network error if fetchParams is aborted;\n\t  // otherwise return a network error.\n\t  return isAborted(fetchParams)\n\t    ? makeNetworkError(Object.assign(new DOMException('The operation was aborted.', 'AbortError'), { cause: err }))\n\t    : makeNetworkError(Object.assign(new DOMException('Request was cancelled.'), { cause: err }))\n\t}\n\n\t// https://whatpr.org/fetch/1392.html#initialize-a-response\n\tfunction initializeResponse (response, init, body) {\n\t  // 1. If init[\"status\"] is not in the range 200 to 599, inclusive, then\n\t  //    throw a RangeError.\n\t  if (init.status !== null && (init.status < 200 || init.status > 599)) {\n\t    throw new RangeError('init[\"status\"] must be in the range of 200 to 599, inclusive.')\n\t  }\n\n\t  // 2. If init[\"statusText\"] does not match the reason-phrase token production,\n\t  //    then throw a TypeError.\n\t  if ('statusText' in init && init.statusText != null) {\n\t    // See, https://datatracker.ietf.org/doc/html/rfc7230#section-3.1.2:\n\t    //   reason-phrase  = *( HTAB / SP / VCHAR / obs-text )\n\t    if (!isValidReasonPhrase(String(init.statusText))) {\n\t      throw new TypeError('Invalid statusText')\n\t    }\n\t  }\n\n\t  // 3. Set response’s response’s status to init[\"status\"].\n\t  if ('status' in init && init.status != null) {\n\t    response[kState].status = init.status;\n\t  }\n\n\t  // 4. Set response’s response’s status message to init[\"statusText\"].\n\t  if ('statusText' in init && init.statusText != null) {\n\t    response[kState].statusText = init.statusText;\n\t  }\n\n\t  // 5. If init[\"headers\"] exists, then fill response’s headers with init[\"headers\"].\n\t  if ('headers' in init && init.headers != null) {\n\t    fill(response[kHeaders], init.headers);\n\t  }\n\n\t  // 6. If body was given, then:\n\t  if (body) {\n\t    // 1. If response's status is a null body status, then throw a TypeError.\n\t    if (nullBodyStatus.includes(response.status)) {\n\t      throw webidl.errors.exception({\n\t        header: 'Response constructor',\n\t        message: 'Invalid response status code ' + response.status\n\t      })\n\t    }\n\n\t    // 2. Set response's body to body's body.\n\t    response[kState].body = body.body;\n\n\t    // 3. If body's type is non-null and response's header list does not contain\n\t    //    `Content-Type`, then append (`Content-Type`, body's type) to response's header list.\n\t    if (body.type != null && !response[kState].headersList.contains('Content-Type')) {\n\t      response[kState].headersList.append('content-type', body.type);\n\t    }\n\t  }\n\t}\n\n\twebidl.converters.ReadableStream = webidl.interfaceConverter(\n\t  ReadableStream\n\t);\n\n\twebidl.converters.FormData = webidl.interfaceConverter(\n\t  FormData\n\t);\n\n\twebidl.converters.URLSearchParams = webidl.interfaceConverter(\n\t  URLSearchParams\n\t);\n\n\t// https://fetch.spec.whatwg.org/#typedefdef-xmlhttprequestbodyinit\n\twebidl.converters.XMLHttpRequestBodyInit = function (V) {\n\t  if (typeof V === 'string') {\n\t    return webidl.converters.USVString(V)\n\t  }\n\n\t  if (isBlobLike(V)) {\n\t    return webidl.converters.Blob(V, { strict: false })\n\t  }\n\n\t  if (types.isArrayBuffer(V) || types.isTypedArray(V) || types.isDataView(V)) {\n\t    return webidl.converters.BufferSource(V)\n\t  }\n\n\t  if (util.isFormDataLike(V)) {\n\t    return webidl.converters.FormData(V, { strict: false })\n\t  }\n\n\t  if (V instanceof URLSearchParams) {\n\t    return webidl.converters.URLSearchParams(V)\n\t  }\n\n\t  return webidl.converters.DOMString(V)\n\t};\n\n\t// https://fetch.spec.whatwg.org/#bodyinit\n\twebidl.converters.BodyInit = function (V) {\n\t  if (V instanceof ReadableStream) {\n\t    return webidl.converters.ReadableStream(V)\n\t  }\n\n\t  // Note: the spec doesn't include async iterables,\n\t  // this is an undici extension.\n\t  if (V?.[Symbol.asyncIterator]) {\n\t    return V\n\t  }\n\n\t  return webidl.converters.XMLHttpRequestBodyInit(V)\n\t};\n\n\twebidl.converters.ResponseInit = webidl.dictionaryConverter([\n\t  {\n\t    key: 'status',\n\t    converter: webidl.converters['unsigned short'],\n\t    defaultValue: 200\n\t  },\n\t  {\n\t    key: 'statusText',\n\t    converter: webidl.converters.ByteString,\n\t    defaultValue: ''\n\t  },\n\t  {\n\t    key: 'headers',\n\t    converter: webidl.converters.HeadersInit\n\t  }\n\t]);\n\n\tresponse = {\n\t  makeNetworkError,\n\t  makeResponse,\n\t  makeAppropriateNetworkError,\n\t  filterResponse,\n\t  Response,\n\t  cloneResponse\n\t};\n\treturn response;\n}\n\n/* globals AbortController */\n\nvar request$1;\nvar hasRequiredRequest;\n\nfunction requireRequest () {\n\tif (hasRequiredRequest) return request$1;\n\thasRequiredRequest = 1;\n\n\tconst { extractBody, mixinBody, cloneBody } = requireBody();\n\tconst { Headers, fill: fillHeaders, HeadersList } = requireHeaders$1();\n\tconst { FinalizationRegistry } = requireDispatcherWeakref()();\n\tconst util = requireUtil$c();\n\tconst {\n\t  isValidHTTPToken,\n\t  sameOrigin,\n\t  normalizeMethod,\n\t  makePolicyContainer,\n\t  normalizeMethodRecord\n\t} = requireUtil$b();\n\tconst {\n\t  forbiddenMethodsSet,\n\t  corsSafeListedMethodsSet,\n\t  referrerPolicy,\n\t  requestRedirect,\n\t  requestMode,\n\t  requestCredentials,\n\t  requestCache,\n\t  requestDuplex\n\t} = requireConstants$7();\n\tconst { kEnumerableProperty } = util;\n\tconst { kHeaders, kSignal, kState, kGuard, kRealm } = requireSymbols$3();\n\tconst { webidl } = requireWebidl();\n\tconst { getGlobalOrigin } = requireGlobal$1();\n\tconst { URLSerializer } = requireDataURL();\n\tconst { kHeadersList, kConstruct } = requireSymbols$4();\n\tconst assert = require$$0$9;\n\tconst { getMaxListeners, setMaxListeners, getEventListeners, defaultMaxListeners } = require$$1$4;\n\n\tlet TransformStream = globalThis.TransformStream;\n\n\tconst kAbortController = Symbol('abortController');\n\n\tconst requestFinalizer = new FinalizationRegistry(({ signal, abort }) => {\n\t  signal.removeEventListener('abort', abort);\n\t});\n\n\t// https://fetch.spec.whatwg.org/#request-class\n\tclass Request {\n\t  // https://fetch.spec.whatwg.org/#dom-request\n\t  constructor (input, init = {}) {\n\t    if (input === kConstruct) {\n\t      return\n\t    }\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Request constructor' });\n\n\t    input = webidl.converters.RequestInfo(input);\n\t    init = webidl.converters.RequestInit(init);\n\n\t    // https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object\n\t    this[kRealm] = {\n\t      settingsObject: {\n\t        baseUrl: getGlobalOrigin(),\n\t        get origin () {\n\t          return this.baseUrl?.origin\n\t        },\n\t        policyContainer: makePolicyContainer()\n\t      }\n\t    };\n\n\t    // 1. Let request be null.\n\t    let request = null;\n\n\t    // 2. Let fallbackMode be null.\n\t    let fallbackMode = null;\n\n\t    // 3. Let baseURL be this’s relevant settings object’s API base URL.\n\t    const baseUrl = this[kRealm].settingsObject.baseUrl;\n\n\t    // 4. Let signal be null.\n\t    let signal = null;\n\n\t    // 5. If input is a string, then:\n\t    if (typeof input === 'string') {\n\t      // 1. Let parsedURL be the result of parsing input with baseURL.\n\t      // 2. If parsedURL is failure, then throw a TypeError.\n\t      let parsedURL;\n\t      try {\n\t        parsedURL = new URL(input, baseUrl);\n\t      } catch (err) {\n\t        throw new TypeError('Failed to parse URL from ' + input, { cause: err })\n\t      }\n\n\t      // 3. If parsedURL includes credentials, then throw a TypeError.\n\t      if (parsedURL.username || parsedURL.password) {\n\t        throw new TypeError(\n\t          'Request cannot be constructed from a URL that includes credentials: ' +\n\t            input\n\t        )\n\t      }\n\n\t      // 4. Set request to a new request whose URL is parsedURL.\n\t      request = makeRequest({ urlList: [parsedURL] });\n\n\t      // 5. Set fallbackMode to \"cors\".\n\t      fallbackMode = 'cors';\n\t    } else {\n\t      // 6. Otherwise:\n\n\t      // 7. Assert: input is a Request object.\n\t      assert(input instanceof Request);\n\n\t      // 8. Set request to input’s request.\n\t      request = input[kState];\n\n\t      // 9. Set signal to input’s signal.\n\t      signal = input[kSignal];\n\t    }\n\n\t    // 7. Let origin be this’s relevant settings object’s origin.\n\t    const origin = this[kRealm].settingsObject.origin;\n\n\t    // 8. Let window be \"client\".\n\t    let window = 'client';\n\n\t    // 9. If request’s window is an environment settings object and its origin\n\t    // is same origin with origin, then set window to request’s window.\n\t    if (\n\t      request.window?.constructor?.name === 'EnvironmentSettingsObject' &&\n\t      sameOrigin(request.window, origin)\n\t    ) {\n\t      window = request.window;\n\t    }\n\n\t    // 10. If init[\"window\"] exists and is non-null, then throw a TypeError.\n\t    if (init.window != null) {\n\t      throw new TypeError(`'window' option '${window}' must be null`)\n\t    }\n\n\t    // 11. If init[\"window\"] exists, then set window to \"no-window\".\n\t    if ('window' in init) {\n\t      window = 'no-window';\n\t    }\n\n\t    // 12. Set request to a new request with the following properties:\n\t    request = makeRequest({\n\t      // URL request’s URL.\n\t      // undici implementation note: this is set as the first item in request's urlList in makeRequest\n\t      // method request’s method.\n\t      method: request.method,\n\t      // header list A copy of request’s header list.\n\t      // undici implementation note: headersList is cloned in makeRequest\n\t      headersList: request.headersList,\n\t      // unsafe-request flag Set.\n\t      unsafeRequest: request.unsafeRequest,\n\t      // client This’s relevant settings object.\n\t      client: this[kRealm].settingsObject,\n\t      // window window.\n\t      window,\n\t      // priority request’s priority.\n\t      priority: request.priority,\n\t      // origin request’s origin. The propagation of the origin is only significant for navigation requests\n\t      // being handled by a service worker. In this scenario a request can have an origin that is different\n\t      // from the current client.\n\t      origin: request.origin,\n\t      // referrer request’s referrer.\n\t      referrer: request.referrer,\n\t      // referrer policy request’s referrer policy.\n\t      referrerPolicy: request.referrerPolicy,\n\t      // mode request’s mode.\n\t      mode: request.mode,\n\t      // credentials mode request’s credentials mode.\n\t      credentials: request.credentials,\n\t      // cache mode request’s cache mode.\n\t      cache: request.cache,\n\t      // redirect mode request’s redirect mode.\n\t      redirect: request.redirect,\n\t      // integrity metadata request’s integrity metadata.\n\t      integrity: request.integrity,\n\t      // keepalive request’s keepalive.\n\t      keepalive: request.keepalive,\n\t      // reload-navigation flag request’s reload-navigation flag.\n\t      reloadNavigation: request.reloadNavigation,\n\t      // history-navigation flag request’s history-navigation flag.\n\t      historyNavigation: request.historyNavigation,\n\t      // URL list A clone of request’s URL list.\n\t      urlList: [...request.urlList]\n\t    });\n\n\t    const initHasKey = Object.keys(init).length !== 0;\n\n\t    // 13. If init is not empty, then:\n\t    if (initHasKey) {\n\t      // 1. If request’s mode is \"navigate\", then set it to \"same-origin\".\n\t      if (request.mode === 'navigate') {\n\t        request.mode = 'same-origin';\n\t      }\n\n\t      // 2. Unset request’s reload-navigation flag.\n\t      request.reloadNavigation = false;\n\n\t      // 3. Unset request’s history-navigation flag.\n\t      request.historyNavigation = false;\n\n\t      // 4. Set request’s origin to \"client\".\n\t      request.origin = 'client';\n\n\t      // 5. Set request’s referrer to \"client\"\n\t      request.referrer = 'client';\n\n\t      // 6. Set request’s referrer policy to the empty string.\n\t      request.referrerPolicy = '';\n\n\t      // 7. Set request’s URL to request’s current URL.\n\t      request.url = request.urlList[request.urlList.length - 1];\n\n\t      // 8. Set request’s URL list to « request’s URL ».\n\t      request.urlList = [request.url];\n\t    }\n\n\t    // 14. If init[\"referrer\"] exists, then:\n\t    if (init.referrer !== undefined) {\n\t      // 1. Let referrer be init[\"referrer\"].\n\t      const referrer = init.referrer;\n\n\t      // 2. If referrer is the empty string, then set request’s referrer to \"no-referrer\".\n\t      if (referrer === '') {\n\t        request.referrer = 'no-referrer';\n\t      } else {\n\t        // 1. Let parsedReferrer be the result of parsing referrer with\n\t        // baseURL.\n\t        // 2. If parsedReferrer is failure, then throw a TypeError.\n\t        let parsedReferrer;\n\t        try {\n\t          parsedReferrer = new URL(referrer, baseUrl);\n\t        } catch (err) {\n\t          throw new TypeError(`Referrer \"${referrer}\" is not a valid URL.`, { cause: err })\n\t        }\n\n\t        // 3. If one of the following is true\n\t        // - parsedReferrer’s scheme is \"about\" and path is the string \"client\"\n\t        // - parsedReferrer’s origin is not same origin with origin\n\t        // then set request’s referrer to \"client\".\n\t        if (\n\t          (parsedReferrer.protocol === 'about:' && parsedReferrer.hostname === 'client') ||\n\t          (origin && !sameOrigin(parsedReferrer, this[kRealm].settingsObject.baseUrl))\n\t        ) {\n\t          request.referrer = 'client';\n\t        } else {\n\t          // 4. Otherwise, set request’s referrer to parsedReferrer.\n\t          request.referrer = parsedReferrer;\n\t        }\n\t      }\n\t    }\n\n\t    // 15. If init[\"referrerPolicy\"] exists, then set request’s referrer policy\n\t    // to it.\n\t    if (init.referrerPolicy !== undefined) {\n\t      request.referrerPolicy = init.referrerPolicy;\n\t    }\n\n\t    // 16. Let mode be init[\"mode\"] if it exists, and fallbackMode otherwise.\n\t    let mode;\n\t    if (init.mode !== undefined) {\n\t      mode = init.mode;\n\t    } else {\n\t      mode = fallbackMode;\n\t    }\n\n\t    // 17. If mode is \"navigate\", then throw a TypeError.\n\t    if (mode === 'navigate') {\n\t      throw webidl.errors.exception({\n\t        header: 'Request constructor',\n\t        message: 'invalid request mode navigate.'\n\t      })\n\t    }\n\n\t    // 18. If mode is non-null, set request’s mode to mode.\n\t    if (mode != null) {\n\t      request.mode = mode;\n\t    }\n\n\t    // 19. If init[\"credentials\"] exists, then set request’s credentials mode\n\t    // to it.\n\t    if (init.credentials !== undefined) {\n\t      request.credentials = init.credentials;\n\t    }\n\n\t    // 18. If init[\"cache\"] exists, then set request’s cache mode to it.\n\t    if (init.cache !== undefined) {\n\t      request.cache = init.cache;\n\t    }\n\n\t    // 21. If request’s cache mode is \"only-if-cached\" and request’s mode is\n\t    // not \"same-origin\", then throw a TypeError.\n\t    if (request.cache === 'only-if-cached' && request.mode !== 'same-origin') {\n\t      throw new TypeError(\n\t        \"'only-if-cached' can be set only with 'same-origin' mode\"\n\t      )\n\t    }\n\n\t    // 22. If init[\"redirect\"] exists, then set request’s redirect mode to it.\n\t    if (init.redirect !== undefined) {\n\t      request.redirect = init.redirect;\n\t    }\n\n\t    // 23. If init[\"integrity\"] exists, then set request’s integrity metadata to it.\n\t    if (init.integrity != null) {\n\t      request.integrity = String(init.integrity);\n\t    }\n\n\t    // 24. If init[\"keepalive\"] exists, then set request’s keepalive to it.\n\t    if (init.keepalive !== undefined) {\n\t      request.keepalive = Boolean(init.keepalive);\n\t    }\n\n\t    // 25. If init[\"method\"] exists, then:\n\t    if (init.method !== undefined) {\n\t      // 1. Let method be init[\"method\"].\n\t      let method = init.method;\n\n\t      // 2. If method is not a method or method is a forbidden method, then\n\t      // throw a TypeError.\n\t      if (!isValidHTTPToken(method)) {\n\t        throw new TypeError(`'${method}' is not a valid HTTP method.`)\n\t      }\n\n\t      if (forbiddenMethodsSet.has(method.toUpperCase())) {\n\t        throw new TypeError(`'${method}' HTTP method is unsupported.`)\n\t      }\n\n\t      // 3. Normalize method.\n\t      method = normalizeMethodRecord[method] ?? normalizeMethod(method);\n\n\t      // 4. Set request’s method to method.\n\t      request.method = method;\n\t    }\n\n\t    // 26. If init[\"signal\"] exists, then set signal to it.\n\t    if (init.signal !== undefined) {\n\t      signal = init.signal;\n\t    }\n\n\t    // 27. Set this’s request to request.\n\t    this[kState] = request;\n\n\t    // 28. Set this’s signal to a new AbortSignal object with this’s relevant\n\t    // Realm.\n\t    // TODO: could this be simplified with AbortSignal.any\n\t    // (https://dom.spec.whatwg.org/#dom-abortsignal-any)\n\t    const ac = new AbortController();\n\t    this[kSignal] = ac.signal;\n\t    this[kSignal][kRealm] = this[kRealm];\n\n\t    // 29. If signal is not null, then make this’s signal follow signal.\n\t    if (signal != null) {\n\t      if (\n\t        !signal ||\n\t        typeof signal.aborted !== 'boolean' ||\n\t        typeof signal.addEventListener !== 'function'\n\t      ) {\n\t        throw new TypeError(\n\t          \"Failed to construct 'Request': member signal is not of type AbortSignal.\"\n\t        )\n\t      }\n\n\t      if (signal.aborted) {\n\t        ac.abort(signal.reason);\n\t      } else {\n\t        // Keep a strong ref to ac while request object\n\t        // is alive. This is needed to prevent AbortController\n\t        // from being prematurely garbage collected.\n\t        // See, https://github.com/nodejs/undici/issues/1926.\n\t        this[kAbortController] = ac;\n\n\t        const acRef = new WeakRef(ac);\n\t        const abort = function () {\n\t          const ac = acRef.deref();\n\t          if (ac !== undefined) {\n\t            ac.abort(this.reason);\n\t          }\n\t        };\n\n\t        // Third-party AbortControllers may not work with these.\n\t        // See, https://github.com/nodejs/undici/pull/1910#issuecomment-1464495619.\n\t        try {\n\t          // If the max amount of listeners is equal to the default, increase it\n\t          // This is only available in node >= v19.9.0\n\t          if (typeof getMaxListeners === 'function' && getMaxListeners(signal) === defaultMaxListeners) {\n\t            setMaxListeners(100, signal);\n\t          } else if (getEventListeners(signal, 'abort').length >= defaultMaxListeners) {\n\t            setMaxListeners(100, signal);\n\t          }\n\t        } catch {}\n\n\t        util.addAbortListener(signal, abort);\n\t        requestFinalizer.register(ac, { signal, abort });\n\t      }\n\t    }\n\n\t    // 30. Set this’s headers to a new Headers object with this’s relevant\n\t    // Realm, whose header list is request’s header list and guard is\n\t    // \"request\".\n\t    this[kHeaders] = new Headers(kConstruct);\n\t    this[kHeaders][kHeadersList] = request.headersList;\n\t    this[kHeaders][kGuard] = 'request';\n\t    this[kHeaders][kRealm] = this[kRealm];\n\n\t    // 31. If this’s request’s mode is \"no-cors\", then:\n\t    if (mode === 'no-cors') {\n\t      // 1. If this’s request’s method is not a CORS-safelisted method,\n\t      // then throw a TypeError.\n\t      if (!corsSafeListedMethodsSet.has(request.method)) {\n\t        throw new TypeError(\n\t          `'${request.method} is unsupported in no-cors mode.`\n\t        )\n\t      }\n\n\t      // 2. Set this’s headers’s guard to \"request-no-cors\".\n\t      this[kHeaders][kGuard] = 'request-no-cors';\n\t    }\n\n\t    // 32. If init is not empty, then:\n\t    if (initHasKey) {\n\t      /** @type {HeadersList} */\n\t      const headersList = this[kHeaders][kHeadersList];\n\t      // 1. Let headers be a copy of this’s headers and its associated header\n\t      // list.\n\t      // 2. If init[\"headers\"] exists, then set headers to init[\"headers\"].\n\t      const headers = init.headers !== undefined ? init.headers : new HeadersList(headersList);\n\n\t      // 3. Empty this’s headers’s header list.\n\t      headersList.clear();\n\n\t      // 4. If headers is a Headers object, then for each header in its header\n\t      // list, append header’s name/header’s value to this’s headers.\n\t      if (headers instanceof HeadersList) {\n\t        for (const [key, val] of headers) {\n\t          headersList.append(key, val);\n\t        }\n\t        // Note: Copy the `set-cookie` meta-data.\n\t        headersList.cookies = headers.cookies;\n\t      } else {\n\t        // 5. Otherwise, fill this’s headers with headers.\n\t        fillHeaders(this[kHeaders], headers);\n\t      }\n\t    }\n\n\t    // 33. Let inputBody be input’s request’s body if input is a Request\n\t    // object; otherwise null.\n\t    const inputBody = input instanceof Request ? input[kState].body : null;\n\n\t    // 34. If either init[\"body\"] exists and is non-null or inputBody is\n\t    // non-null, and request’s method is `GET` or `HEAD`, then throw a\n\t    // TypeError.\n\t    if (\n\t      (init.body != null || inputBody != null) &&\n\t      (request.method === 'GET' || request.method === 'HEAD')\n\t    ) {\n\t      throw new TypeError('Request with GET/HEAD method cannot have body.')\n\t    }\n\n\t    // 35. Let initBody be null.\n\t    let initBody = null;\n\n\t    // 36. If init[\"body\"] exists and is non-null, then:\n\t    if (init.body != null) {\n\t      // 1. Let Content-Type be null.\n\t      // 2. Set initBody and Content-Type to the result of extracting\n\t      // init[\"body\"], with keepalive set to request’s keepalive.\n\t      const [extractedBody, contentType] = extractBody(\n\t        init.body,\n\t        request.keepalive\n\t      );\n\t      initBody = extractedBody;\n\n\t      // 3, If Content-Type is non-null and this’s headers’s header list does\n\t      // not contain `Content-Type`, then append `Content-Type`/Content-Type to\n\t      // this’s headers.\n\t      if (contentType && !this[kHeaders][kHeadersList].contains('content-type')) {\n\t        this[kHeaders].append('content-type', contentType);\n\t      }\n\t    }\n\n\t    // 37. Let inputOrInitBody be initBody if it is non-null; otherwise\n\t    // inputBody.\n\t    const inputOrInitBody = initBody ?? inputBody;\n\n\t    // 38. If inputOrInitBody is non-null and inputOrInitBody’s source is\n\t    // null, then:\n\t    if (inputOrInitBody != null && inputOrInitBody.source == null) {\n\t      // 1. If initBody is non-null and init[\"duplex\"] does not exist,\n\t      //    then throw a TypeError.\n\t      if (initBody != null && init.duplex == null) {\n\t        throw new TypeError('RequestInit: duplex option is required when sending a body.')\n\t      }\n\n\t      // 2. If this’s request’s mode is neither \"same-origin\" nor \"cors\",\n\t      // then throw a TypeError.\n\t      if (request.mode !== 'same-origin' && request.mode !== 'cors') {\n\t        throw new TypeError(\n\t          'If request is made from ReadableStream, mode should be \"same-origin\" or \"cors\"'\n\t        )\n\t      }\n\n\t      // 3. Set this’s request’s use-CORS-preflight flag.\n\t      request.useCORSPreflightFlag = true;\n\t    }\n\n\t    // 39. Let finalBody be inputOrInitBody.\n\t    let finalBody = inputOrInitBody;\n\n\t    // 40. If initBody is null and inputBody is non-null, then:\n\t    if (initBody == null && inputBody != null) {\n\t      // 1. If input is unusable, then throw a TypeError.\n\t      if (util.isDisturbed(inputBody.stream) || inputBody.stream.locked) {\n\t        throw new TypeError(\n\t          'Cannot construct a Request with a Request object that has already been used.'\n\t        )\n\t      }\n\n\t      // 2. Set finalBody to the result of creating a proxy for inputBody.\n\t      if (!TransformStream) {\n\t        TransformStream = require$$14.TransformStream;\n\t      }\n\n\t      // https://streams.spec.whatwg.org/#readablestream-create-a-proxy\n\t      const identityTransform = new TransformStream();\n\t      inputBody.stream.pipeThrough(identityTransform);\n\t      finalBody = {\n\t        source: inputBody.source,\n\t        length: inputBody.length,\n\t        stream: identityTransform.readable\n\t      };\n\t    }\n\n\t    // 41. Set this’s request’s body to finalBody.\n\t    this[kState].body = finalBody;\n\t  }\n\n\t  // Returns request’s HTTP method, which is \"GET\" by default.\n\t  get method () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The method getter steps are to return this’s request’s method.\n\t    return this[kState].method\n\t  }\n\n\t  // Returns the URL of request as a string.\n\t  get url () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The url getter steps are to return this’s request’s URL, serialized.\n\t    return URLSerializer(this[kState].url)\n\t  }\n\n\t  // Returns a Headers object consisting of the headers associated with request.\n\t  // Note that headers added in the network layer by the user agent will not\n\t  // be accounted for in this object, e.g., the \"Host\" header.\n\t  get headers () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The headers getter steps are to return this’s headers.\n\t    return this[kHeaders]\n\t  }\n\n\t  // Returns the kind of resource requested by request, e.g., \"document\"\n\t  // or \"script\".\n\t  get destination () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The destination getter are to return this’s request’s destination.\n\t    return this[kState].destination\n\t  }\n\n\t  // Returns the referrer of request. Its value can be a same-origin URL if\n\t  // explicitly set in init, the empty string to indicate no referrer, and\n\t  // \"about:client\" when defaulting to the global’s default. This is used\n\t  // during fetching to determine the value of the `Referer` header of the\n\t  // request being made.\n\t  get referrer () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // 1. If this’s request’s referrer is \"no-referrer\", then return the\n\t    // empty string.\n\t    if (this[kState].referrer === 'no-referrer') {\n\t      return ''\n\t    }\n\n\t    // 2. If this’s request’s referrer is \"client\", then return\n\t    // \"about:client\".\n\t    if (this[kState].referrer === 'client') {\n\t      return 'about:client'\n\t    }\n\n\t    // Return this’s request’s referrer, serialized.\n\t    return this[kState].referrer.toString()\n\t  }\n\n\t  // Returns the referrer policy associated with request.\n\t  // This is used during fetching to compute the value of the request’s\n\t  // referrer.\n\t  get referrerPolicy () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The referrerPolicy getter steps are to return this’s request’s referrer policy.\n\t    return this[kState].referrerPolicy\n\t  }\n\n\t  // Returns the mode associated with request, which is a string indicating\n\t  // whether the request will use CORS, or will be restricted to same-origin\n\t  // URLs.\n\t  get mode () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The mode getter steps are to return this’s request’s mode.\n\t    return this[kState].mode\n\t  }\n\n\t  // Returns the credentials mode associated with request,\n\t  // which is a string indicating whether credentials will be sent with the\n\t  // request always, never, or only when sent to a same-origin URL.\n\t  get credentials () {\n\t    // The credentials getter steps are to return this’s request’s credentials mode.\n\t    return this[kState].credentials\n\t  }\n\n\t  // Returns the cache mode associated with request,\n\t  // which is a string indicating how the request will\n\t  // interact with the browser’s cache when fetching.\n\t  get cache () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The cache getter steps are to return this’s request’s cache mode.\n\t    return this[kState].cache\n\t  }\n\n\t  // Returns the redirect mode associated with request,\n\t  // which is a string indicating how redirects for the\n\t  // request will be handled during fetching. A request\n\t  // will follow redirects by default.\n\t  get redirect () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The redirect getter steps are to return this’s request’s redirect mode.\n\t    return this[kState].redirect\n\t  }\n\n\t  // Returns request’s subresource integrity metadata, which is a\n\t  // cryptographic hash of the resource being fetched. Its value\n\t  // consists of multiple hashes separated by whitespace. [SRI]\n\t  get integrity () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The integrity getter steps are to return this’s request’s integrity\n\t    // metadata.\n\t    return this[kState].integrity\n\t  }\n\n\t  // Returns a boolean indicating whether or not request can outlive the\n\t  // global in which it was created.\n\t  get keepalive () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The keepalive getter steps are to return this’s request’s keepalive.\n\t    return this[kState].keepalive\n\t  }\n\n\t  // Returns a boolean indicating whether or not request is for a reload\n\t  // navigation.\n\t  get isReloadNavigation () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The isReloadNavigation getter steps are to return true if this’s\n\t    // request’s reload-navigation flag is set; otherwise false.\n\t    return this[kState].reloadNavigation\n\t  }\n\n\t  // Returns a boolean indicating whether or not request is for a history\n\t  // navigation (a.k.a. back-foward navigation).\n\t  get isHistoryNavigation () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The isHistoryNavigation getter steps are to return true if this’s request’s\n\t    // history-navigation flag is set; otherwise false.\n\t    return this[kState].historyNavigation\n\t  }\n\n\t  // Returns the signal associated with request, which is an AbortSignal\n\t  // object indicating whether or not request has been aborted, and its\n\t  // abort event handler.\n\t  get signal () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // The signal getter steps are to return this’s signal.\n\t    return this[kSignal]\n\t  }\n\n\t  get body () {\n\t    webidl.brandCheck(this, Request);\n\n\t    return this[kState].body ? this[kState].body.stream : null\n\t  }\n\n\t  get bodyUsed () {\n\t    webidl.brandCheck(this, Request);\n\n\t    return !!this[kState].body && util.isDisturbed(this[kState].body.stream)\n\t  }\n\n\t  get duplex () {\n\t    webidl.brandCheck(this, Request);\n\n\t    return 'half'\n\t  }\n\n\t  // Returns a clone of request.\n\t  clone () {\n\t    webidl.brandCheck(this, Request);\n\n\t    // 1. If this is unusable, then throw a TypeError.\n\t    if (this.bodyUsed || this.body?.locked) {\n\t      throw new TypeError('unusable')\n\t    }\n\n\t    // 2. Let clonedRequest be the result of cloning this’s request.\n\t    const clonedRequest = cloneRequest(this[kState]);\n\n\t    // 3. Let clonedRequestObject be the result of creating a Request object,\n\t    // given clonedRequest, this’s headers’s guard, and this’s relevant Realm.\n\t    const clonedRequestObject = new Request(kConstruct);\n\t    clonedRequestObject[kState] = clonedRequest;\n\t    clonedRequestObject[kRealm] = this[kRealm];\n\t    clonedRequestObject[kHeaders] = new Headers(kConstruct);\n\t    clonedRequestObject[kHeaders][kHeadersList] = clonedRequest.headersList;\n\t    clonedRequestObject[kHeaders][kGuard] = this[kHeaders][kGuard];\n\t    clonedRequestObject[kHeaders][kRealm] = this[kHeaders][kRealm];\n\n\t    // 4. Make clonedRequestObject’s signal follow this’s signal.\n\t    const ac = new AbortController();\n\t    if (this.signal.aborted) {\n\t      ac.abort(this.signal.reason);\n\t    } else {\n\t      util.addAbortListener(\n\t        this.signal,\n\t        () => {\n\t          ac.abort(this.signal.reason);\n\t        }\n\t      );\n\t    }\n\t    clonedRequestObject[kSignal] = ac.signal;\n\n\t    // 4. Return clonedRequestObject.\n\t    return clonedRequestObject\n\t  }\n\t}\n\n\tmixinBody(Request);\n\n\tfunction makeRequest (init) {\n\t  // https://fetch.spec.whatwg.org/#requests\n\t  const request = {\n\t    method: 'GET',\n\t    localURLsOnly: false,\n\t    unsafeRequest: false,\n\t    body: null,\n\t    client: null,\n\t    reservedClient: null,\n\t    replacesClientId: '',\n\t    window: 'client',\n\t    keepalive: false,\n\t    serviceWorkers: 'all',\n\t    initiator: '',\n\t    destination: '',\n\t    priority: null,\n\t    origin: 'client',\n\t    policyContainer: 'client',\n\t    referrer: 'client',\n\t    referrerPolicy: '',\n\t    mode: 'no-cors',\n\t    useCORSPreflightFlag: false,\n\t    credentials: 'same-origin',\n\t    useCredentials: false,\n\t    cache: 'default',\n\t    redirect: 'follow',\n\t    integrity: '',\n\t    cryptoGraphicsNonceMetadata: '',\n\t    parserMetadata: '',\n\t    reloadNavigation: false,\n\t    historyNavigation: false,\n\t    userActivation: false,\n\t    taintedOrigin: false,\n\t    redirectCount: 0,\n\t    responseTainting: 'basic',\n\t    preventNoCacheCacheControlHeaderModification: false,\n\t    done: false,\n\t    timingAllowFailed: false,\n\t    ...init,\n\t    headersList: init.headersList\n\t      ? new HeadersList(init.headersList)\n\t      : new HeadersList()\n\t  };\n\t  request.url = request.urlList[0];\n\t  return request\n\t}\n\n\t// https://fetch.spec.whatwg.org/#concept-request-clone\n\tfunction cloneRequest (request) {\n\t  // To clone a request request, run these steps:\n\n\t  // 1. Let newRequest be a copy of request, except for its body.\n\t  const newRequest = makeRequest({ ...request, body: null });\n\n\t  // 2. If request’s body is non-null, set newRequest’s body to the\n\t  // result of cloning request’s body.\n\t  if (request.body != null) {\n\t    newRequest.body = cloneBody(request.body);\n\t  }\n\n\t  // 3. Return newRequest.\n\t  return newRequest\n\t}\n\n\tObject.defineProperties(Request.prototype, {\n\t  method: kEnumerableProperty,\n\t  url: kEnumerableProperty,\n\t  headers: kEnumerableProperty,\n\t  redirect: kEnumerableProperty,\n\t  clone: kEnumerableProperty,\n\t  signal: kEnumerableProperty,\n\t  duplex: kEnumerableProperty,\n\t  destination: kEnumerableProperty,\n\t  body: kEnumerableProperty,\n\t  bodyUsed: kEnumerableProperty,\n\t  isHistoryNavigation: kEnumerableProperty,\n\t  isReloadNavigation: kEnumerableProperty,\n\t  keepalive: kEnumerableProperty,\n\t  integrity: kEnumerableProperty,\n\t  cache: kEnumerableProperty,\n\t  credentials: kEnumerableProperty,\n\t  attribute: kEnumerableProperty,\n\t  referrerPolicy: kEnumerableProperty,\n\t  referrer: kEnumerableProperty,\n\t  mode: kEnumerableProperty,\n\t  [Symbol.toStringTag]: {\n\t    value: 'Request',\n\t    configurable: true\n\t  }\n\t});\n\n\twebidl.converters.Request = webidl.interfaceConverter(\n\t  Request\n\t);\n\n\t// https://fetch.spec.whatwg.org/#requestinfo\n\twebidl.converters.RequestInfo = function (V) {\n\t  if (typeof V === 'string') {\n\t    return webidl.converters.USVString(V)\n\t  }\n\n\t  if (V instanceof Request) {\n\t    return webidl.converters.Request(V)\n\t  }\n\n\t  return webidl.converters.USVString(V)\n\t};\n\n\twebidl.converters.AbortSignal = webidl.interfaceConverter(\n\t  AbortSignal\n\t);\n\n\t// https://fetch.spec.whatwg.org/#requestinit\n\twebidl.converters.RequestInit = webidl.dictionaryConverter([\n\t  {\n\t    key: 'method',\n\t    converter: webidl.converters.ByteString\n\t  },\n\t  {\n\t    key: 'headers',\n\t    converter: webidl.converters.HeadersInit\n\t  },\n\t  {\n\t    key: 'body',\n\t    converter: webidl.nullableConverter(\n\t      webidl.converters.BodyInit\n\t    )\n\t  },\n\t  {\n\t    key: 'referrer',\n\t    converter: webidl.converters.USVString\n\t  },\n\t  {\n\t    key: 'referrerPolicy',\n\t    converter: webidl.converters.DOMString,\n\t    // https://w3c.github.io/webappsec-referrer-policy/#referrer-policy\n\t    allowedValues: referrerPolicy\n\t  },\n\t  {\n\t    key: 'mode',\n\t    converter: webidl.converters.DOMString,\n\t    // https://fetch.spec.whatwg.org/#concept-request-mode\n\t    allowedValues: requestMode\n\t  },\n\t  {\n\t    key: 'credentials',\n\t    converter: webidl.converters.DOMString,\n\t    // https://fetch.spec.whatwg.org/#requestcredentials\n\t    allowedValues: requestCredentials\n\t  },\n\t  {\n\t    key: 'cache',\n\t    converter: webidl.converters.DOMString,\n\t    // https://fetch.spec.whatwg.org/#requestcache\n\t    allowedValues: requestCache\n\t  },\n\t  {\n\t    key: 'redirect',\n\t    converter: webidl.converters.DOMString,\n\t    // https://fetch.spec.whatwg.org/#requestredirect\n\t    allowedValues: requestRedirect\n\t  },\n\t  {\n\t    key: 'integrity',\n\t    converter: webidl.converters.DOMString\n\t  },\n\t  {\n\t    key: 'keepalive',\n\t    converter: webidl.converters.boolean\n\t  },\n\t  {\n\t    key: 'signal',\n\t    converter: webidl.nullableConverter(\n\t      (signal) => webidl.converters.AbortSignal(\n\t        signal,\n\t        { strict: false }\n\t      )\n\t    )\n\t  },\n\t  {\n\t    key: 'window',\n\t    converter: webidl.converters.any\n\t  },\n\t  {\n\t    key: 'duplex',\n\t    converter: webidl.converters.DOMString,\n\t    allowedValues: requestDuplex\n\t  }\n\t]);\n\n\trequest$1 = { Request, makeRequest };\n\treturn request$1;\n}\n\nvar fetch_1;\nvar hasRequiredFetch;\n\nfunction requireFetch () {\n\tif (hasRequiredFetch) return fetch_1;\n\thasRequiredFetch = 1;\n\n\tconst {\n\t  Response,\n\t  makeNetworkError,\n\t  makeAppropriateNetworkError,\n\t  filterResponse,\n\t  makeResponse\n\t} = requireResponse();\n\tconst { Headers } = requireHeaders$1();\n\tconst { Request, makeRequest } = requireRequest();\n\tconst zlib = zlib$1;\n\tconst {\n\t  bytesMatch,\n\t  makePolicyContainer,\n\t  clonePolicyContainer,\n\t  requestBadPort,\n\t  TAOCheck,\n\t  appendRequestOriginHeader,\n\t  responseLocationURL,\n\t  requestCurrentURL,\n\t  setRequestReferrerPolicyOnRedirect,\n\t  tryUpgradeRequestToAPotentiallyTrustworthyURL,\n\t  createOpaqueTimingInfo,\n\t  appendFetchMetadata,\n\t  corsCheck,\n\t  crossOriginResourcePolicyCheck,\n\t  determineRequestsReferrer,\n\t  coarsenedSharedCurrentTime,\n\t  createDeferredPromise,\n\t  isBlobLike,\n\t  sameOrigin,\n\t  isCancelled,\n\t  isAborted,\n\t  isErrorLike,\n\t  fullyReadBody,\n\t  readableStreamClose,\n\t  isomorphicEncode,\n\t  urlIsLocal,\n\t  urlIsHttpHttpsScheme,\n\t  urlHasHttpsScheme\n\t} = requireUtil$b();\n\tconst { kState, kHeaders, kGuard, kRealm } = requireSymbols$3();\n\tconst assert = require$$0$9;\n\tconst { safelyExtractBody } = requireBody();\n\tconst {\n\t  redirectStatusSet,\n\t  nullBodyStatus,\n\t  safeMethodsSet,\n\t  requestBodyHeader,\n\t  subresourceSet,\n\t  DOMException\n\t} = requireConstants$7();\n\tconst { kHeadersList } = requireSymbols$4();\n\tconst EE = require$$1$4;\n\tconst { Readable, pipeline } = require$$0$b;\n\tconst { addAbortListener, isErrored, isReadable, nodeMajor, nodeMinor } = requireUtil$c();\n\tconst { dataURLProcessor, serializeAMimeType } = requireDataURL();\n\tconst { TransformStream } = require$$14;\n\tconst { getGlobalDispatcher } = requireGlobal();\n\tconst { webidl } = requireWebidl();\n\tconst { STATUS_CODES } = require$$2$3;\n\tconst GET_OR_HEAD = ['GET', 'HEAD'];\n\n\t/** @type {import('buffer').resolveObjectURL} */\n\tlet resolveObjectURL;\n\tlet ReadableStream = globalThis.ReadableStream;\n\n\tclass Fetch extends EE {\n\t  constructor (dispatcher) {\n\t    super();\n\n\t    this.dispatcher = dispatcher;\n\t    this.connection = null;\n\t    this.dump = false;\n\t    this.state = 'ongoing';\n\t    // 2 terminated listeners get added per request,\n\t    // but only 1 gets removed. If there are 20 redirects,\n\t    // 21 listeners will be added.\n\t    // See https://github.com/nodejs/undici/issues/1711\n\t    // TODO (fix): Find and fix root cause for leaked listener.\n\t    this.setMaxListeners(21);\n\t  }\n\n\t  terminate (reason) {\n\t    if (this.state !== 'ongoing') {\n\t      return\n\t    }\n\n\t    this.state = 'terminated';\n\t    this.connection?.destroy(reason);\n\t    this.emit('terminated', reason);\n\t  }\n\n\t  // https://fetch.spec.whatwg.org/#fetch-controller-abort\n\t  abort (error) {\n\t    if (this.state !== 'ongoing') {\n\t      return\n\t    }\n\n\t    // 1. Set controller’s state to \"aborted\".\n\t    this.state = 'aborted';\n\n\t    // 2. Let fallbackError be an \"AbortError\" DOMException.\n\t    // 3. Set error to fallbackError if it is not given.\n\t    if (!error) {\n\t      error = new DOMException('The operation was aborted.', 'AbortError');\n\t    }\n\n\t    // 4. Let serializedError be StructuredSerialize(error).\n\t    //    If that threw an exception, catch it, and let\n\t    //    serializedError be StructuredSerialize(fallbackError).\n\n\t    // 5. Set controller’s serialized abort reason to serializedError.\n\t    this.serializedAbortReason = error;\n\n\t    this.connection?.destroy(error);\n\t    this.emit('terminated', error);\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#fetch-method\n\tfunction fetch (input, init = {}) {\n\t  webidl.argumentLengthCheck(arguments, 1, { header: 'globalThis.fetch' });\n\n\t  // 1. Let p be a new promise.\n\t  const p = createDeferredPromise();\n\n\t  // 2. Let requestObject be the result of invoking the initial value of\n\t  // Request as constructor with input and init as arguments. If this throws\n\t  // an exception, reject p with it and return p.\n\t  let requestObject;\n\n\t  try {\n\t    requestObject = new Request(input, init);\n\t  } catch (e) {\n\t    p.reject(e);\n\t    return p.promise\n\t  }\n\n\t  // 3. Let request be requestObject’s request.\n\t  const request = requestObject[kState];\n\n\t  // 4. If requestObject’s signal’s aborted flag is set, then:\n\t  if (requestObject.signal.aborted) {\n\t    // 1. Abort the fetch() call with p, request, null, and\n\t    //    requestObject’s signal’s abort reason.\n\t    abortFetch(p, request, null, requestObject.signal.reason);\n\n\t    // 2. Return p.\n\t    return p.promise\n\t  }\n\n\t  // 5. Let globalObject be request’s client’s global object.\n\t  const globalObject = request.client.globalObject;\n\n\t  // 6. If globalObject is a ServiceWorkerGlobalScope object, then set\n\t  // request’s service-workers mode to \"none\".\n\t  if (globalObject?.constructor?.name === 'ServiceWorkerGlobalScope') {\n\t    request.serviceWorkers = 'none';\n\t  }\n\n\t  // 7. Let responseObject be null.\n\t  let responseObject = null;\n\n\t  // 8. Let relevantRealm be this’s relevant Realm.\n\t  const relevantRealm = null;\n\n\t  // 9. Let locallyAborted be false.\n\t  let locallyAborted = false;\n\n\t  // 10. Let controller be null.\n\t  let controller = null;\n\n\t  // 11. Add the following abort steps to requestObject’s signal:\n\t  addAbortListener(\n\t    requestObject.signal,\n\t    () => {\n\t      // 1. Set locallyAborted to true.\n\t      locallyAborted = true;\n\n\t      // 2. Assert: controller is non-null.\n\t      assert(controller != null);\n\n\t      // 3. Abort controller with requestObject’s signal’s abort reason.\n\t      controller.abort(requestObject.signal.reason);\n\n\t      // 4. Abort the fetch() call with p, request, responseObject,\n\t      //    and requestObject’s signal’s abort reason.\n\t      abortFetch(p, request, responseObject, requestObject.signal.reason);\n\t    }\n\t  );\n\n\t  // 12. Let handleFetchDone given response response be to finalize and\n\t  // report timing with response, globalObject, and \"fetch\".\n\t  const handleFetchDone = (response) =>\n\t    finalizeAndReportTiming(response, 'fetch');\n\n\t  // 13. Set controller to the result of calling fetch given request,\n\t  // with processResponseEndOfBody set to handleFetchDone, and processResponse\n\t  // given response being these substeps:\n\n\t  const processResponse = (response) => {\n\t    // 1. If locallyAborted is true, terminate these substeps.\n\t    if (locallyAborted) {\n\t      return Promise.resolve()\n\t    }\n\n\t    // 2. If response’s aborted flag is set, then:\n\t    if (response.aborted) {\n\t      // 1. Let deserializedError be the result of deserialize a serialized\n\t      //    abort reason given controller’s serialized abort reason and\n\t      //    relevantRealm.\n\n\t      // 2. Abort the fetch() call with p, request, responseObject, and\n\t      //    deserializedError.\n\n\t      abortFetch(p, request, responseObject, controller.serializedAbortReason);\n\t      return Promise.resolve()\n\t    }\n\n\t    // 3. If response is a network error, then reject p with a TypeError\n\t    // and terminate these substeps.\n\t    if (response.type === 'error') {\n\t      p.reject(\n\t        Object.assign(new TypeError('fetch failed'), { cause: response.error })\n\t      );\n\t      return Promise.resolve()\n\t    }\n\n\t    // 4. Set responseObject to the result of creating a Response object,\n\t    // given response, \"immutable\", and relevantRealm.\n\t    responseObject = new Response();\n\t    responseObject[kState] = response;\n\t    responseObject[kRealm] = relevantRealm;\n\t    responseObject[kHeaders][kHeadersList] = response.headersList;\n\t    responseObject[kHeaders][kGuard] = 'immutable';\n\t    responseObject[kHeaders][kRealm] = relevantRealm;\n\n\t    // 5. Resolve p with responseObject.\n\t    p.resolve(responseObject);\n\t  };\n\n\t  controller = fetching({\n\t    request,\n\t    processResponseEndOfBody: handleFetchDone,\n\t    processResponse,\n\t    dispatcher: init.dispatcher ?? getGlobalDispatcher() // undici\n\t  });\n\n\t  // 14. Return p.\n\t  return p.promise\n\t}\n\n\t// https://fetch.spec.whatwg.org/#finalize-and-report-timing\n\tfunction finalizeAndReportTiming (response, initiatorType = 'other') {\n\t  // 1. If response is an aborted network error, then return.\n\t  if (response.type === 'error' && response.aborted) {\n\t    return\n\t  }\n\n\t  // 2. If response’s URL list is null or empty, then return.\n\t  if (!response.urlList?.length) {\n\t    return\n\t  }\n\n\t  // 3. Let originalURL be response’s URL list[0].\n\t  const originalURL = response.urlList[0];\n\n\t  // 4. Let timingInfo be response’s timing info.\n\t  let timingInfo = response.timingInfo;\n\n\t  // 5. Let cacheState be response’s cache state.\n\t  let cacheState = response.cacheState;\n\n\t  // 6. If originalURL’s scheme is not an HTTP(S) scheme, then return.\n\t  if (!urlIsHttpHttpsScheme(originalURL)) {\n\t    return\n\t  }\n\n\t  // 7. If timingInfo is null, then return.\n\t  if (timingInfo === null) {\n\t    return\n\t  }\n\n\t  // 8. If response’s timing allow passed flag is not set, then:\n\t  if (!response.timingAllowPassed) {\n\t    //  1. Set timingInfo to a the result of creating an opaque timing info for timingInfo.\n\t    timingInfo = createOpaqueTimingInfo({\n\t      startTime: timingInfo.startTime\n\t    });\n\n\t    //  2. Set cacheState to the empty string.\n\t    cacheState = '';\n\t  }\n\n\t  // 9. Set timingInfo’s end time to the coarsened shared current time\n\t  // given global’s relevant settings object’s cross-origin isolated\n\t  // capability.\n\t  // TODO: given global’s relevant settings object’s cross-origin isolated\n\t  // capability?\n\t  timingInfo.endTime = coarsenedSharedCurrentTime();\n\n\t  // 10. Set response’s timing info to timingInfo.\n\t  response.timingInfo = timingInfo;\n\n\t  // 11. Mark resource timing for timingInfo, originalURL, initiatorType,\n\t  // global, and cacheState.\n\t  markResourceTiming(\n\t    timingInfo,\n\t    originalURL,\n\t    initiatorType,\n\t    globalThis,\n\t    cacheState\n\t  );\n\t}\n\n\t// https://w3c.github.io/resource-timing/#dfn-mark-resource-timing\n\tfunction markResourceTiming (timingInfo, originalURL, initiatorType, globalThis, cacheState) {\n\t  if (nodeMajor > 18 || (nodeMajor === 18 && nodeMinor >= 2)) {\n\t    performance.markResourceTiming(timingInfo, originalURL.href, initiatorType, globalThis, cacheState);\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#abort-fetch\n\tfunction abortFetch (p, request, responseObject, error) {\n\t  // Note: AbortSignal.reason was added in node v17.2.0\n\t  // which would give us an undefined error to reject with.\n\t  // Remove this once node v16 is no longer supported.\n\t  if (!error) {\n\t    error = new DOMException('The operation was aborted.', 'AbortError');\n\t  }\n\n\t  // 1. Reject promise with error.\n\t  p.reject(error);\n\n\t  // 2. If request’s body is not null and is readable, then cancel request’s\n\t  // body with error.\n\t  if (request.body != null && isReadable(request.body?.stream)) {\n\t    request.body.stream.cancel(error).catch((err) => {\n\t      if (err.code === 'ERR_INVALID_STATE') {\n\t        // Node bug?\n\t        return\n\t      }\n\t      throw err\n\t    });\n\t  }\n\n\t  // 3. If responseObject is null, then return.\n\t  if (responseObject == null) {\n\t    return\n\t  }\n\n\t  // 4. Let response be responseObject’s response.\n\t  const response = responseObject[kState];\n\n\t  // 5. If response’s body is not null and is readable, then error response’s\n\t  // body with error.\n\t  if (response.body != null && isReadable(response.body?.stream)) {\n\t    response.body.stream.cancel(error).catch((err) => {\n\t      if (err.code === 'ERR_INVALID_STATE') {\n\t        // Node bug?\n\t        return\n\t      }\n\t      throw err\n\t    });\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#fetching\n\tfunction fetching ({\n\t  request,\n\t  processRequestBodyChunkLength,\n\t  processRequestEndOfBody,\n\t  processResponse,\n\t  processResponseEndOfBody,\n\t  processResponseConsumeBody,\n\t  useParallelQueue = false,\n\t  dispatcher // undici\n\t}) {\n\t  // 1. Let taskDestination be null.\n\t  let taskDestination = null;\n\n\t  // 2. Let crossOriginIsolatedCapability be false.\n\t  let crossOriginIsolatedCapability = false;\n\n\t  // 3. If request’s client is non-null, then:\n\t  if (request.client != null) {\n\t    // 1. Set taskDestination to request’s client’s global object.\n\t    taskDestination = request.client.globalObject;\n\n\t    // 2. Set crossOriginIsolatedCapability to request’s client’s cross-origin\n\t    // isolated capability.\n\t    crossOriginIsolatedCapability =\n\t      request.client.crossOriginIsolatedCapability;\n\t  }\n\n\t  // 4. If useParallelQueue is true, then set taskDestination to the result of\n\t  // starting a new parallel queue.\n\t  // TODO\n\n\t  // 5. Let timingInfo be a new fetch timing info whose start time and\n\t  // post-redirect start time are the coarsened shared current time given\n\t  // crossOriginIsolatedCapability.\n\t  const currenTime = coarsenedSharedCurrentTime(crossOriginIsolatedCapability);\n\t  const timingInfo = createOpaqueTimingInfo({\n\t    startTime: currenTime\n\t  });\n\n\t  // 6. Let fetchParams be a new fetch params whose\n\t  // request is request,\n\t  // timing info is timingInfo,\n\t  // process request body chunk length is processRequestBodyChunkLength,\n\t  // process request end-of-body is processRequestEndOfBody,\n\t  // process response is processResponse,\n\t  // process response consume body is processResponseConsumeBody,\n\t  // process response end-of-body is processResponseEndOfBody,\n\t  // task destination is taskDestination,\n\t  // and cross-origin isolated capability is crossOriginIsolatedCapability.\n\t  const fetchParams = {\n\t    controller: new Fetch(dispatcher),\n\t    request,\n\t    timingInfo,\n\t    processRequestBodyChunkLength,\n\t    processRequestEndOfBody,\n\t    processResponse,\n\t    processResponseConsumeBody,\n\t    processResponseEndOfBody,\n\t    taskDestination,\n\t    crossOriginIsolatedCapability\n\t  };\n\n\t  // 7. If request’s body is a byte sequence, then set request’s body to\n\t  //    request’s body as a body.\n\t  // NOTE: Since fetching is only called from fetch, body should already be\n\t  // extracted.\n\t  assert(!request.body || request.body.stream);\n\n\t  // 8. If request’s window is \"client\", then set request’s window to request’s\n\t  // client, if request’s client’s global object is a Window object; otherwise\n\t  // \"no-window\".\n\t  if (request.window === 'client') {\n\t    // TODO: What if request.client is null?\n\t    request.window =\n\t      request.client?.globalObject?.constructor?.name === 'Window'\n\t        ? request.client\n\t        : 'no-window';\n\t  }\n\n\t  // 9. If request’s origin is \"client\", then set request’s origin to request’s\n\t  // client’s origin.\n\t  if (request.origin === 'client') {\n\t    // TODO: What if request.client is null?\n\t    request.origin = request.client?.origin;\n\t  }\n\n\t  // 10. If all of the following conditions are true:\n\t  // TODO\n\n\t  // 11. If request’s policy container is \"client\", then:\n\t  if (request.policyContainer === 'client') {\n\t    // 1. If request’s client is non-null, then set request’s policy\n\t    // container to a clone of request’s client’s policy container. [HTML]\n\t    if (request.client != null) {\n\t      request.policyContainer = clonePolicyContainer(\n\t        request.client.policyContainer\n\t      );\n\t    } else {\n\t      // 2. Otherwise, set request’s policy container to a new policy\n\t      // container.\n\t      request.policyContainer = makePolicyContainer();\n\t    }\n\t  }\n\n\t  // 12. If request’s header list does not contain `Accept`, then:\n\t  if (!request.headersList.contains('accept')) {\n\t    // 1. Let value be `*/*`.\n\t    const value = '*/*';\n\n\t    // 2. A user agent should set value to the first matching statement, if\n\t    // any, switching on request’s destination:\n\t    // \"document\"\n\t    // \"frame\"\n\t    // \"iframe\"\n\t    // `text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8`\n\t    // \"image\"\n\t    // `image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5`\n\t    // \"style\"\n\t    // `text/css,*/*;q=0.1`\n\t    // TODO\n\n\t    // 3. Append `Accept`/value to request’s header list.\n\t    request.headersList.append('accept', value);\n\t  }\n\n\t  // 13. If request’s header list does not contain `Accept-Language`, then\n\t  // user agents should append `Accept-Language`/an appropriate value to\n\t  // request’s header list.\n\t  if (!request.headersList.contains('accept-language')) {\n\t    request.headersList.append('accept-language', '*');\n\t  }\n\n\t  // 14. If request’s priority is null, then use request’s initiator and\n\t  // destination appropriately in setting request’s priority to a\n\t  // user-agent-defined object.\n\t  if (request.priority === null) ;\n\n\t  // 15. If request is a subresource request, then:\n\t  if (subresourceSet.has(request.destination)) ;\n\n\t  // 16. Run main fetch given fetchParams.\n\t  mainFetch(fetchParams)\n\t    .catch(err => {\n\t      fetchParams.controller.terminate(err);\n\t    });\n\n\t  // 17. Return fetchParam's controller\n\t  return fetchParams.controller\n\t}\n\n\t// https://fetch.spec.whatwg.org/#concept-main-fetch\n\tasync function mainFetch (fetchParams, recursive = false) {\n\t  // 1. Let request be fetchParams’s request.\n\t  const request = fetchParams.request;\n\n\t  // 2. Let response be null.\n\t  let response = null;\n\n\t  // 3. If request’s local-URLs-only flag is set and request’s current URL is\n\t  // not local, then set response to a network error.\n\t  if (request.localURLsOnly && !urlIsLocal(requestCurrentURL(request))) {\n\t    response = makeNetworkError('local URLs only');\n\t  }\n\n\t  // 4. Run report Content Security Policy violations for request.\n\t  // TODO\n\n\t  // 5. Upgrade request to a potentially trustworthy URL, if appropriate.\n\t  tryUpgradeRequestToAPotentiallyTrustworthyURL(request);\n\n\t  // 6. If should request be blocked due to a bad port, should fetching request\n\t  // be blocked as mixed content, or should request be blocked by Content\n\t  // Security Policy returns blocked, then set response to a network error.\n\t  if (requestBadPort(request) === 'blocked') {\n\t    response = makeNetworkError('bad port');\n\t  }\n\t  // TODO: should fetching request be blocked as mixed content?\n\t  // TODO: should request be blocked by Content Security Policy?\n\n\t  // 7. If request’s referrer policy is the empty string, then set request’s\n\t  // referrer policy to request’s policy container’s referrer policy.\n\t  if (request.referrerPolicy === '') {\n\t    request.referrerPolicy = request.policyContainer.referrerPolicy;\n\t  }\n\n\t  // 8. If request’s referrer is not \"no-referrer\", then set request’s\n\t  // referrer to the result of invoking determine request’s referrer.\n\t  if (request.referrer !== 'no-referrer') {\n\t    request.referrer = determineRequestsReferrer(request);\n\t  }\n\n\t  // 9. Set request’s current URL’s scheme to \"https\" if all of the following\n\t  // conditions are true:\n\t  // - request’s current URL’s scheme is \"http\"\n\t  // - request’s current URL’s host is a domain\n\t  // - Matching request’s current URL’s host per Known HSTS Host Domain Name\n\t  //   Matching results in either a superdomain match with an asserted\n\t  //   includeSubDomains directive or a congruent match (with or without an\n\t  //   asserted includeSubDomains directive). [HSTS]\n\t  // TODO\n\n\t  // 10. If recursive is false, then run the remaining steps in parallel.\n\t  // TODO\n\n\t  // 11. If response is null, then set response to the result of running\n\t  // the steps corresponding to the first matching statement:\n\t  if (response === null) {\n\t    response = await (async () => {\n\t      const currentURL = requestCurrentURL(request);\n\n\t      if (\n\t        // - request’s current URL’s origin is same origin with request’s origin,\n\t        //   and request’s response tainting is \"basic\"\n\t        (sameOrigin(currentURL, request.url) && request.responseTainting === 'basic') ||\n\t        // request’s current URL’s scheme is \"data\"\n\t        (currentURL.protocol === 'data:') ||\n\t        // - request’s mode is \"navigate\" or \"websocket\"\n\t        (request.mode === 'navigate' || request.mode === 'websocket')\n\t      ) {\n\t        // 1. Set request’s response tainting to \"basic\".\n\t        request.responseTainting = 'basic';\n\n\t        // 2. Return the result of running scheme fetch given fetchParams.\n\t        return await schemeFetch(fetchParams)\n\t      }\n\n\t      // request’s mode is \"same-origin\"\n\t      if (request.mode === 'same-origin') {\n\t        // 1. Return a network error.\n\t        return makeNetworkError('request mode cannot be \"same-origin\"')\n\t      }\n\n\t      // request’s mode is \"no-cors\"\n\t      if (request.mode === 'no-cors') {\n\t        // 1. If request’s redirect mode is not \"follow\", then return a network\n\t        // error.\n\t        if (request.redirect !== 'follow') {\n\t          return makeNetworkError(\n\t            'redirect mode cannot be \"follow\" for \"no-cors\" request'\n\t          )\n\t        }\n\n\t        // 2. Set request’s response tainting to \"opaque\".\n\t        request.responseTainting = 'opaque';\n\n\t        // 3. Return the result of running scheme fetch given fetchParams.\n\t        return await schemeFetch(fetchParams)\n\t      }\n\n\t      // request’s current URL’s scheme is not an HTTP(S) scheme\n\t      if (!urlIsHttpHttpsScheme(requestCurrentURL(request))) {\n\t        // Return a network error.\n\t        return makeNetworkError('URL scheme must be a HTTP(S) scheme')\n\t      }\n\n\t      // - request’s use-CORS-preflight flag is set\n\t      // - request’s unsafe-request flag is set and either request’s method is\n\t      //   not a CORS-safelisted method or CORS-unsafe request-header names with\n\t      //   request’s header list is not empty\n\t      //    1. Set request’s response tainting to \"cors\".\n\t      //    2. Let corsWithPreflightResponse be the result of running HTTP fetch\n\t      //    given fetchParams and true.\n\t      //    3. If corsWithPreflightResponse is a network error, then clear cache\n\t      //    entries using request.\n\t      //    4. Return corsWithPreflightResponse.\n\t      // TODO\n\n\t      // Otherwise\n\t      //    1. Set request’s response tainting to \"cors\".\n\t      request.responseTainting = 'cors';\n\n\t      //    2. Return the result of running HTTP fetch given fetchParams.\n\t      return await httpFetch(fetchParams)\n\t    })();\n\t  }\n\n\t  // 12. If recursive is true, then return response.\n\t  if (recursive) {\n\t    return response\n\t  }\n\n\t  // 13. If response is not a network error and response is not a filtered\n\t  // response, then:\n\t  if (response.status !== 0 && !response.internalResponse) {\n\t    // If request’s response tainting is \"cors\", then:\n\t    if (request.responseTainting === 'cors') ;\n\n\t    // Set response to the following filtered response with response as its\n\t    // internal response, depending on request’s response tainting:\n\t    if (request.responseTainting === 'basic') {\n\t      response = filterResponse(response, 'basic');\n\t    } else if (request.responseTainting === 'cors') {\n\t      response = filterResponse(response, 'cors');\n\t    } else if (request.responseTainting === 'opaque') {\n\t      response = filterResponse(response, 'opaque');\n\t    } else {\n\t      assert(false);\n\t    }\n\t  }\n\n\t  // 14. Let internalResponse be response, if response is a network error,\n\t  // and response’s internal response otherwise.\n\t  let internalResponse =\n\t    response.status === 0 ? response : response.internalResponse;\n\n\t  // 15. If internalResponse’s URL list is empty, then set it to a clone of\n\t  // request’s URL list.\n\t  if (internalResponse.urlList.length === 0) {\n\t    internalResponse.urlList.push(...request.urlList);\n\t  }\n\n\t  // 16. If request’s timing allow failed flag is unset, then set\n\t  // internalResponse’s timing allow passed flag.\n\t  if (!request.timingAllowFailed) {\n\t    response.timingAllowPassed = true;\n\t  }\n\n\t  // 17. If response is not a network error and any of the following returns\n\t  // blocked\n\t  // - should internalResponse to request be blocked as mixed content\n\t  // - should internalResponse to request be blocked by Content Security Policy\n\t  // - should internalResponse to request be blocked due to its MIME type\n\t  // - should internalResponse to request be blocked due to nosniff\n\t  // TODO\n\n\t  // 18. If response’s type is \"opaque\", internalResponse’s status is 206,\n\t  // internalResponse’s range-requested flag is set, and request’s header\n\t  // list does not contain `Range`, then set response and internalResponse\n\t  // to a network error.\n\t  if (\n\t    response.type === 'opaque' &&\n\t    internalResponse.status === 206 &&\n\t    internalResponse.rangeRequested &&\n\t    !request.headers.contains('range')\n\t  ) {\n\t    response = internalResponse = makeNetworkError();\n\t  }\n\n\t  // 19. If response is not a network error and either request’s method is\n\t  // `HEAD` or `CONNECT`, or internalResponse’s status is a null body status,\n\t  // set internalResponse’s body to null and disregard any enqueuing toward\n\t  // it (if any).\n\t  if (\n\t    response.status !== 0 &&\n\t    (request.method === 'HEAD' ||\n\t      request.method === 'CONNECT' ||\n\t      nullBodyStatus.includes(internalResponse.status))\n\t  ) {\n\t    internalResponse.body = null;\n\t    fetchParams.controller.dump = true;\n\t  }\n\n\t  // 20. If request’s integrity metadata is not the empty string, then:\n\t  if (request.integrity) {\n\t    // 1. Let processBodyError be this step: run fetch finale given fetchParams\n\t    // and a network error.\n\t    const processBodyError = (reason) =>\n\t      fetchFinale(fetchParams, makeNetworkError(reason));\n\n\t    // 2. If request’s response tainting is \"opaque\", or response’s body is null,\n\t    // then run processBodyError and abort these steps.\n\t    if (request.responseTainting === 'opaque' || response.body == null) {\n\t      processBodyError(response.error);\n\t      return\n\t    }\n\n\t    // 3. Let processBody given bytes be these steps:\n\t    const processBody = (bytes) => {\n\t      // 1. If bytes do not match request’s integrity metadata,\n\t      // then run processBodyError and abort these steps. [SRI]\n\t      if (!bytesMatch(bytes, request.integrity)) {\n\t        processBodyError('integrity mismatch');\n\t        return\n\t      }\n\n\t      // 2. Set response’s body to bytes as a body.\n\t      response.body = safelyExtractBody(bytes)[0];\n\n\t      // 3. Run fetch finale given fetchParams and response.\n\t      fetchFinale(fetchParams, response);\n\t    };\n\n\t    // 4. Fully read response’s body given processBody and processBodyError.\n\t    await fullyReadBody(response.body, processBody, processBodyError);\n\t  } else {\n\t    // 21. Otherwise, run fetch finale given fetchParams and response.\n\t    fetchFinale(fetchParams, response);\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#concept-scheme-fetch\n\t// given a fetch params fetchParams\n\tfunction schemeFetch (fetchParams) {\n\t  // Note: since the connection is destroyed on redirect, which sets fetchParams to a\n\t  // cancelled state, we do not want this condition to trigger *unless* there have been\n\t  // no redirects. See https://github.com/nodejs/undici/issues/1776\n\t  // 1. If fetchParams is canceled, then return the appropriate network error for fetchParams.\n\t  if (isCancelled(fetchParams) && fetchParams.request.redirectCount === 0) {\n\t    return Promise.resolve(makeAppropriateNetworkError(fetchParams))\n\t  }\n\n\t  // 2. Let request be fetchParams’s request.\n\t  const { request } = fetchParams;\n\n\t  const { protocol: scheme } = requestCurrentURL(request);\n\n\t  // 3. Switch on request’s current URL’s scheme and run the associated steps:\n\t  switch (scheme) {\n\t    case 'about:': {\n\t      // If request’s current URL’s path is the string \"blank\", then return a new response\n\t      // whose status message is `OK`, header list is « (`Content-Type`, `text/html;charset=utf-8`) »,\n\t      // and body is the empty byte sequence as a body.\n\n\t      // Otherwise, return a network error.\n\t      return Promise.resolve(makeNetworkError('about scheme is not supported'))\n\t    }\n\t    case 'blob:': {\n\t      if (!resolveObjectURL) {\n\t        resolveObjectURL = require$$0$8.resolveObjectURL;\n\t      }\n\n\t      // 1. Let blobURLEntry be request’s current URL’s blob URL entry.\n\t      const blobURLEntry = requestCurrentURL(request);\n\n\t      // https://github.com/web-platform-tests/wpt/blob/7b0ebaccc62b566a1965396e5be7bb2bc06f841f/FileAPI/url/resources/fetch-tests.js#L52-L56\n\t      // Buffer.resolveObjectURL does not ignore URL queries.\n\t      if (blobURLEntry.search.length !== 0) {\n\t        return Promise.resolve(makeNetworkError('NetworkError when attempting to fetch resource.'))\n\t      }\n\n\t      const blobURLEntryObject = resolveObjectURL(blobURLEntry.toString());\n\n\t      // 2. If request’s method is not `GET`, blobURLEntry is null, or blobURLEntry’s\n\t      //    object is not a Blob object, then return a network error.\n\t      if (request.method !== 'GET' || !isBlobLike(blobURLEntryObject)) {\n\t        return Promise.resolve(makeNetworkError('invalid method'))\n\t      }\n\n\t      // 3. Let bodyWithType be the result of safely extracting blobURLEntry’s object.\n\t      const bodyWithType = safelyExtractBody(blobURLEntryObject);\n\n\t      // 4. Let body be bodyWithType’s body.\n\t      const body = bodyWithType[0];\n\n\t      // 5. Let length be body’s length, serialized and isomorphic encoded.\n\t      const length = isomorphicEncode(`${body.length}`);\n\n\t      // 6. Let type be bodyWithType’s type if it is non-null; otherwise the empty byte sequence.\n\t      const type = bodyWithType[1] ?? '';\n\n\t      // 7. Return a new response whose status message is `OK`, header list is\n\t      //    « (`Content-Length`, length), (`Content-Type`, type) », and body is body.\n\t      const response = makeResponse({\n\t        statusText: 'OK',\n\t        headersList: [\n\t          ['content-length', { name: 'Content-Length', value: length }],\n\t          ['content-type', { name: 'Content-Type', value: type }]\n\t        ]\n\t      });\n\n\t      response.body = body;\n\n\t      return Promise.resolve(response)\n\t    }\n\t    case 'data:': {\n\t      // 1. Let dataURLStruct be the result of running the\n\t      //    data: URL processor on request’s current URL.\n\t      const currentURL = requestCurrentURL(request);\n\t      const dataURLStruct = dataURLProcessor(currentURL);\n\n\t      // 2. If dataURLStruct is failure, then return a\n\t      //    network error.\n\t      if (dataURLStruct === 'failure') {\n\t        return Promise.resolve(makeNetworkError('failed to fetch the data URL'))\n\t      }\n\n\t      // 3. Let mimeType be dataURLStruct’s MIME type, serialized.\n\t      const mimeType = serializeAMimeType(dataURLStruct.mimeType);\n\n\t      // 4. Return a response whose status message is `OK`,\n\t      //    header list is « (`Content-Type`, mimeType) »,\n\t      //    and body is dataURLStruct’s body as a body.\n\t      return Promise.resolve(makeResponse({\n\t        statusText: 'OK',\n\t        headersList: [\n\t          ['content-type', { name: 'Content-Type', value: mimeType }]\n\t        ],\n\t        body: safelyExtractBody(dataURLStruct.body)[0]\n\t      }))\n\t    }\n\t    case 'file:': {\n\t      // For now, unfortunate as it is, file URLs are left as an exercise for the reader.\n\t      // When in doubt, return a network error.\n\t      return Promise.resolve(makeNetworkError('not implemented... yet...'))\n\t    }\n\t    case 'http:':\n\t    case 'https:': {\n\t      // Return the result of running HTTP fetch given fetchParams.\n\n\t      return httpFetch(fetchParams)\n\t        .catch((err) => makeNetworkError(err))\n\t    }\n\t    default: {\n\t      return Promise.resolve(makeNetworkError('unknown scheme'))\n\t    }\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#finalize-response\n\tfunction finalizeResponse (fetchParams, response) {\n\t  // 1. Set fetchParams’s request’s done flag.\n\t  fetchParams.request.done = true;\n\n\t  // 2, If fetchParams’s process response done is not null, then queue a fetch\n\t  // task to run fetchParams’s process response done given response, with\n\t  // fetchParams’s task destination.\n\t  if (fetchParams.processResponseDone != null) {\n\t    queueMicrotask(() => fetchParams.processResponseDone(response));\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#fetch-finale\n\tfunction fetchFinale (fetchParams, response) {\n\t  // 1. If response is a network error, then:\n\t  if (response.type === 'error') {\n\t    // 1. Set response’s URL list to « fetchParams’s request’s URL list[0] ».\n\t    response.urlList = [fetchParams.request.urlList[0]];\n\n\t    // 2. Set response’s timing info to the result of creating an opaque timing\n\t    // info for fetchParams’s timing info.\n\t    response.timingInfo = createOpaqueTimingInfo({\n\t      startTime: fetchParams.timingInfo.startTime\n\t    });\n\t  }\n\n\t  // 2. Let processResponseEndOfBody be the following steps:\n\t  const processResponseEndOfBody = () => {\n\t    // 1. Set fetchParams’s request’s done flag.\n\t    fetchParams.request.done = true;\n\n\t    // If fetchParams’s process response end-of-body is not null,\n\t    // then queue a fetch task to run fetchParams’s process response\n\t    // end-of-body given response with fetchParams’s task destination.\n\t    if (fetchParams.processResponseEndOfBody != null) {\n\t      queueMicrotask(() => fetchParams.processResponseEndOfBody(response));\n\t    }\n\t  };\n\n\t  // 3. If fetchParams’s process response is non-null, then queue a fetch task\n\t  // to run fetchParams’s process response given response, with fetchParams’s\n\t  // task destination.\n\t  if (fetchParams.processResponse != null) {\n\t    queueMicrotask(() => fetchParams.processResponse(response));\n\t  }\n\n\t  // 4. If response’s body is null, then run processResponseEndOfBody.\n\t  if (response.body == null) {\n\t    processResponseEndOfBody();\n\t  } else {\n\t  // 5. Otherwise:\n\n\t    // 1. Let transformStream be a new a TransformStream.\n\n\t    // 2. Let identityTransformAlgorithm be an algorithm which, given chunk,\n\t    // enqueues chunk in transformStream.\n\t    const identityTransformAlgorithm = (chunk, controller) => {\n\t      controller.enqueue(chunk);\n\t    };\n\n\t    // 3. Set up transformStream with transformAlgorithm set to identityTransformAlgorithm\n\t    // and flushAlgorithm set to processResponseEndOfBody.\n\t    const transformStream = new TransformStream({\n\t      start () {},\n\t      transform: identityTransformAlgorithm,\n\t      flush: processResponseEndOfBody\n\t    }, {\n\t      size () {\n\t        return 1\n\t      }\n\t    }, {\n\t      size () {\n\t        return 1\n\t      }\n\t    });\n\n\t    // 4. Set response’s body to the result of piping response’s body through transformStream.\n\t    response.body = { stream: response.body.stream.pipeThrough(transformStream) };\n\t  }\n\n\t  // 6. If fetchParams’s process response consume body is non-null, then:\n\t  if (fetchParams.processResponseConsumeBody != null) {\n\t    // 1. Let processBody given nullOrBytes be this step: run fetchParams’s\n\t    // process response consume body given response and nullOrBytes.\n\t    const processBody = (nullOrBytes) => fetchParams.processResponseConsumeBody(response, nullOrBytes);\n\n\t    // 2. Let processBodyError be this step: run fetchParams’s process\n\t    // response consume body given response and failure.\n\t    const processBodyError = (failure) => fetchParams.processResponseConsumeBody(response, failure);\n\n\t    // 3. If response’s body is null, then queue a fetch task to run processBody\n\t    // given null, with fetchParams’s task destination.\n\t    if (response.body == null) {\n\t      queueMicrotask(() => processBody(null));\n\t    } else {\n\t      // 4. Otherwise, fully read response’s body given processBody, processBodyError,\n\t      // and fetchParams’s task destination.\n\t      return fullyReadBody(response.body, processBody, processBodyError)\n\t    }\n\t    return Promise.resolve()\n\t  }\n\t}\n\n\t// https://fetch.spec.whatwg.org/#http-fetch\n\tasync function httpFetch (fetchParams) {\n\t  // 1. Let request be fetchParams’s request.\n\t  const request = fetchParams.request;\n\n\t  // 2. Let response be null.\n\t  let response = null;\n\n\t  // 3. Let actualResponse be null.\n\t  let actualResponse = null;\n\n\t  // 4. Let timingInfo be fetchParams’s timing info.\n\t  const timingInfo = fetchParams.timingInfo;\n\n\t  // 5. If request’s service-workers mode is \"all\", then:\n\t  if (request.serviceWorkers === 'all') ;\n\n\t  // 6. If response is null, then:\n\t  if (response === null) {\n\t    // 1. If makeCORSPreflight is true and one of these conditions is true:\n\t    // TODO\n\n\t    // 2. If request’s redirect mode is \"follow\", then set request’s\n\t    // service-workers mode to \"none\".\n\t    if (request.redirect === 'follow') {\n\t      request.serviceWorkers = 'none';\n\t    }\n\n\t    // 3. Set response and actualResponse to the result of running\n\t    // HTTP-network-or-cache fetch given fetchParams.\n\t    actualResponse = response = await httpNetworkOrCacheFetch(fetchParams);\n\n\t    // 4. If request’s response tainting is \"cors\" and a CORS check\n\t    // for request and response returns failure, then return a network error.\n\t    if (\n\t      request.responseTainting === 'cors' &&\n\t      corsCheck(request, response) === 'failure'\n\t    ) {\n\t      return makeNetworkError('cors failure')\n\t    }\n\n\t    // 5. If the TAO check for request and response returns failure, then set\n\t    // request’s timing allow failed flag.\n\t    if (TAOCheck(request, response) === 'failure') {\n\t      request.timingAllowFailed = true;\n\t    }\n\t  }\n\n\t  // 7. If either request’s response tainting or response’s type\n\t  // is \"opaque\", and the cross-origin resource policy check with\n\t  // request’s origin, request’s client, request’s destination,\n\t  // and actualResponse returns blocked, then return a network error.\n\t  if (\n\t    (request.responseTainting === 'opaque' || response.type === 'opaque') &&\n\t    crossOriginResourcePolicyCheck(\n\t      request.origin,\n\t      request.client,\n\t      request.destination,\n\t      actualResponse\n\t    ) === 'blocked'\n\t  ) {\n\t    return makeNetworkError('blocked')\n\t  }\n\n\t  // 8. If actualResponse’s status is a redirect status, then:\n\t  if (redirectStatusSet.has(actualResponse.status)) {\n\t    // 1. If actualResponse’s status is not 303, request’s body is not null,\n\t    // and the connection uses HTTP/2, then user agents may, and are even\n\t    // encouraged to, transmit an RST_STREAM frame.\n\t    // See, https://github.com/whatwg/fetch/issues/1288\n\t    if (request.redirect !== 'manual') {\n\t      fetchParams.controller.connection.destroy();\n\t    }\n\n\t    // 2. Switch on request’s redirect mode:\n\t    if (request.redirect === 'error') {\n\t      // Set response to a network error.\n\t      response = makeNetworkError('unexpected redirect');\n\t    } else if (request.redirect === 'manual') {\n\t      // Set response to an opaque-redirect filtered response whose internal\n\t      // response is actualResponse.\n\t      // NOTE(spec): On the web this would return an `opaqueredirect` response,\n\t      // but that doesn't make sense server side.\n\t      // See https://github.com/nodejs/undici/issues/1193.\n\t      response = actualResponse;\n\t    } else if (request.redirect === 'follow') {\n\t      // Set response to the result of running HTTP-redirect fetch given\n\t      // fetchParams and response.\n\t      response = await httpRedirectFetch(fetchParams, response);\n\t    } else {\n\t      assert(false);\n\t    }\n\t  }\n\n\t  // 9. Set response’s timing info to timingInfo.\n\t  response.timingInfo = timingInfo;\n\n\t  // 10. Return response.\n\t  return response\n\t}\n\n\t// https://fetch.spec.whatwg.org/#http-redirect-fetch\n\tfunction httpRedirectFetch (fetchParams, response) {\n\t  // 1. Let request be fetchParams’s request.\n\t  const request = fetchParams.request;\n\n\t  // 2. Let actualResponse be response, if response is not a filtered response,\n\t  // and response’s internal response otherwise.\n\t  const actualResponse = response.internalResponse\n\t    ? response.internalResponse\n\t    : response;\n\n\t  // 3. Let locationURL be actualResponse’s location URL given request’s current\n\t  // URL’s fragment.\n\t  let locationURL;\n\n\t  try {\n\t    locationURL = responseLocationURL(\n\t      actualResponse,\n\t      requestCurrentURL(request).hash\n\t    );\n\n\t    // 4. If locationURL is null, then return response.\n\t    if (locationURL == null) {\n\t      return response\n\t    }\n\t  } catch (err) {\n\t    // 5. If locationURL is failure, then return a network error.\n\t    return Promise.resolve(makeNetworkError(err))\n\t  }\n\n\t  // 6. If locationURL’s scheme is not an HTTP(S) scheme, then return a network\n\t  // error.\n\t  if (!urlIsHttpHttpsScheme(locationURL)) {\n\t    return Promise.resolve(makeNetworkError('URL scheme must be a HTTP(S) scheme'))\n\t  }\n\n\t  // 7. If request’s redirect count is 20, then return a network error.\n\t  if (request.redirectCount === 20) {\n\t    return Promise.resolve(makeNetworkError('redirect count exceeded'))\n\t  }\n\n\t  // 8. Increase request’s redirect count by 1.\n\t  request.redirectCount += 1;\n\n\t  // 9. If request’s mode is \"cors\", locationURL includes credentials, and\n\t  // request’s origin is not same origin with locationURL’s origin, then return\n\t  //  a network error.\n\t  if (\n\t    request.mode === 'cors' &&\n\t    (locationURL.username || locationURL.password) &&\n\t    !sameOrigin(request, locationURL)\n\t  ) {\n\t    return Promise.resolve(makeNetworkError('cross origin not allowed for request mode \"cors\"'))\n\t  }\n\n\t  // 10. If request’s response tainting is \"cors\" and locationURL includes\n\t  // credentials, then return a network error.\n\t  if (\n\t    request.responseTainting === 'cors' &&\n\t    (locationURL.username || locationURL.password)\n\t  ) {\n\t    return Promise.resolve(makeNetworkError(\n\t      'URL cannot contain credentials for request mode \"cors\"'\n\t    ))\n\t  }\n\n\t  // 11. If actualResponse’s status is not 303, request’s body is non-null,\n\t  // and request’s body’s source is null, then return a network error.\n\t  if (\n\t    actualResponse.status !== 303 &&\n\t    request.body != null &&\n\t    request.body.source == null\n\t  ) {\n\t    return Promise.resolve(makeNetworkError())\n\t  }\n\n\t  // 12. If one of the following is true\n\t  // - actualResponse’s status is 301 or 302 and request’s method is `POST`\n\t  // - actualResponse’s status is 303 and request’s method is not `GET` or `HEAD`\n\t  if (\n\t    ([301, 302].includes(actualResponse.status) && request.method === 'POST') ||\n\t    (actualResponse.status === 303 &&\n\t      !GET_OR_HEAD.includes(request.method))\n\t  ) {\n\t    // then:\n\t    // 1. Set request’s method to `GET` and request’s body to null.\n\t    request.method = 'GET';\n\t    request.body = null;\n\n\t    // 2. For each headerName of request-body-header name, delete headerName from\n\t    // request’s header list.\n\t    for (const headerName of requestBodyHeader) {\n\t      request.headersList.delete(headerName);\n\t    }\n\t  }\n\n\t  // 13. If request’s current URL’s origin is not same origin with locationURL’s\n\t  //     origin, then for each headerName of CORS non-wildcard request-header name,\n\t  //     delete headerName from request’s header list.\n\t  if (!sameOrigin(requestCurrentURL(request), locationURL)) {\n\t    // https://fetch.spec.whatwg.org/#cors-non-wildcard-request-header-name\n\t    request.headersList.delete('authorization');\n\n\t    // https://fetch.spec.whatwg.org/#authentication-entries\n\t    request.headersList.delete('proxy-authorization', true);\n\n\t    // \"Cookie\" and \"Host\" are forbidden request-headers, which undici doesn't implement.\n\t    request.headersList.delete('cookie');\n\t    request.headersList.delete('host');\n\t  }\n\n\t  // 14. If request’s body is non-null, then set request’s body to the first return\n\t  // value of safely extracting request’s body’s source.\n\t  if (request.body != null) {\n\t    assert(request.body.source != null);\n\t    request.body = safelyExtractBody(request.body.source)[0];\n\t  }\n\n\t  // 15. Let timingInfo be fetchParams’s timing info.\n\t  const timingInfo = fetchParams.timingInfo;\n\n\t  // 16. Set timingInfo’s redirect end time and post-redirect start time to the\n\t  // coarsened shared current time given fetchParams’s cross-origin isolated\n\t  // capability.\n\t  timingInfo.redirectEndTime = timingInfo.postRedirectStartTime =\n\t    coarsenedSharedCurrentTime(fetchParams.crossOriginIsolatedCapability);\n\n\t  // 17. If timingInfo’s redirect start time is 0, then set timingInfo’s\n\t  //  redirect start time to timingInfo’s start time.\n\t  if (timingInfo.redirectStartTime === 0) {\n\t    timingInfo.redirectStartTime = timingInfo.startTime;\n\t  }\n\n\t  // 18. Append locationURL to request’s URL list.\n\t  request.urlList.push(locationURL);\n\n\t  // 19. Invoke set request’s referrer policy on redirect on request and\n\t  // actualResponse.\n\t  setRequestReferrerPolicyOnRedirect(request, actualResponse);\n\n\t  // 20. Return the result of running main fetch given fetchParams and true.\n\t  return mainFetch(fetchParams, true)\n\t}\n\n\t// https://fetch.spec.whatwg.org/#http-network-or-cache-fetch\n\tasync function httpNetworkOrCacheFetch (\n\t  fetchParams,\n\t  isAuthenticationFetch = false,\n\t  isNewConnectionFetch = false\n\t) {\n\t  // 1. Let request be fetchParams’s request.\n\t  const request = fetchParams.request;\n\n\t  // 2. Let httpFetchParams be null.\n\t  let httpFetchParams = null;\n\n\t  // 3. Let httpRequest be null.\n\t  let httpRequest = null;\n\n\t  // 4. Let response be null.\n\t  let response = null;\n\n\t  // 8. Run these steps, but abort when the ongoing fetch is terminated:\n\n\t  //    1. If request’s window is \"no-window\" and request’s redirect mode is\n\t  //    \"error\", then set httpFetchParams to fetchParams and httpRequest to\n\t  //    request.\n\t  if (request.window === 'no-window' && request.redirect === 'error') {\n\t    httpFetchParams = fetchParams;\n\t    httpRequest = request;\n\t  } else {\n\t    // Otherwise:\n\n\t    // 1. Set httpRequest to a clone of request.\n\t    httpRequest = makeRequest(request);\n\n\t    // 2. Set httpFetchParams to a copy of fetchParams.\n\t    httpFetchParams = { ...fetchParams };\n\n\t    // 3. Set httpFetchParams’s request to httpRequest.\n\t    httpFetchParams.request = httpRequest;\n\t  }\n\n\t  //    3. Let includeCredentials be true if one of\n\t  const includeCredentials =\n\t    request.credentials === 'include' ||\n\t    (request.credentials === 'same-origin' &&\n\t      request.responseTainting === 'basic');\n\n\t  //    4. Let contentLength be httpRequest’s body’s length, if httpRequest’s\n\t  //    body is non-null; otherwise null.\n\t  const contentLength = httpRequest.body ? httpRequest.body.length : null;\n\n\t  //    5. Let contentLengthHeaderValue be null.\n\t  let contentLengthHeaderValue = null;\n\n\t  //    6. If httpRequest’s body is null and httpRequest’s method is `POST` or\n\t  //    `PUT`, then set contentLengthHeaderValue to `0`.\n\t  if (\n\t    httpRequest.body == null &&\n\t    ['POST', 'PUT'].includes(httpRequest.method)\n\t  ) {\n\t    contentLengthHeaderValue = '0';\n\t  }\n\n\t  //    7. If contentLength is non-null, then set contentLengthHeaderValue to\n\t  //    contentLength, serialized and isomorphic encoded.\n\t  if (contentLength != null) {\n\t    contentLengthHeaderValue = isomorphicEncode(`${contentLength}`);\n\t  }\n\n\t  //    8. If contentLengthHeaderValue is non-null, then append\n\t  //    `Content-Length`/contentLengthHeaderValue to httpRequest’s header\n\t  //    list.\n\t  if (contentLengthHeaderValue != null) {\n\t    httpRequest.headersList.append('content-length', contentLengthHeaderValue);\n\t  }\n\n\t  //    9. If contentLengthHeaderValue is non-null, then append (`Content-Length`,\n\t  //    contentLengthHeaderValue) to httpRequest’s header list.\n\n\t  //    10. If contentLength is non-null and httpRequest’s keepalive is true,\n\t  //    then:\n\t  if (contentLength != null && httpRequest.keepalive) ;\n\n\t  //    11. If httpRequest’s referrer is a URL, then append\n\t  //    `Referer`/httpRequest’s referrer, serialized and isomorphic encoded,\n\t  //     to httpRequest’s header list.\n\t  if (httpRequest.referrer instanceof URL) {\n\t    httpRequest.headersList.append('referer', isomorphicEncode(httpRequest.referrer.href));\n\t  }\n\n\t  //    12. Append a request `Origin` header for httpRequest.\n\t  appendRequestOriginHeader(httpRequest);\n\n\t  //    13. Append the Fetch metadata headers for httpRequest. [FETCH-METADATA]\n\t  appendFetchMetadata(httpRequest);\n\n\t  //    14. If httpRequest’s header list does not contain `User-Agent`, then\n\t  //    user agents should append `User-Agent`/default `User-Agent` value to\n\t  //    httpRequest’s header list.\n\t  if (!httpRequest.headersList.contains('user-agent')) {\n\t    httpRequest.headersList.append('user-agent', typeof esbuildDetection === 'undefined' ? 'undici' : 'node');\n\t  }\n\n\t  //    15. If httpRequest’s cache mode is \"default\" and httpRequest’s header\n\t  //    list contains `If-Modified-Since`, `If-None-Match`,\n\t  //    `If-Unmodified-Since`, `If-Match`, or `If-Range`, then set\n\t  //    httpRequest’s cache mode to \"no-store\".\n\t  if (\n\t    httpRequest.cache === 'default' &&\n\t    (httpRequest.headersList.contains('if-modified-since') ||\n\t      httpRequest.headersList.contains('if-none-match') ||\n\t      httpRequest.headersList.contains('if-unmodified-since') ||\n\t      httpRequest.headersList.contains('if-match') ||\n\t      httpRequest.headersList.contains('if-range'))\n\t  ) {\n\t    httpRequest.cache = 'no-store';\n\t  }\n\n\t  //    16. If httpRequest’s cache mode is \"no-cache\", httpRequest’s prevent\n\t  //    no-cache cache-control header modification flag is unset, and\n\t  //    httpRequest’s header list does not contain `Cache-Control`, then append\n\t  //    `Cache-Control`/`max-age=0` to httpRequest’s header list.\n\t  if (\n\t    httpRequest.cache === 'no-cache' &&\n\t    !httpRequest.preventNoCacheCacheControlHeaderModification &&\n\t    !httpRequest.headersList.contains('cache-control')\n\t  ) {\n\t    httpRequest.headersList.append('cache-control', 'max-age=0');\n\t  }\n\n\t  //    17. If httpRequest’s cache mode is \"no-store\" or \"reload\", then:\n\t  if (httpRequest.cache === 'no-store' || httpRequest.cache === 'reload') {\n\t    // 1. If httpRequest’s header list does not contain `Pragma`, then append\n\t    // `Pragma`/`no-cache` to httpRequest’s header list.\n\t    if (!httpRequest.headersList.contains('pragma')) {\n\t      httpRequest.headersList.append('pragma', 'no-cache');\n\t    }\n\n\t    // 2. If httpRequest’s header list does not contain `Cache-Control`,\n\t    // then append `Cache-Control`/`no-cache` to httpRequest’s header list.\n\t    if (!httpRequest.headersList.contains('cache-control')) {\n\t      httpRequest.headersList.append('cache-control', 'no-cache');\n\t    }\n\t  }\n\n\t  //    18. If httpRequest’s header list contains `Range`, then append\n\t  //    `Accept-Encoding`/`identity` to httpRequest’s header list.\n\t  if (httpRequest.headersList.contains('range')) {\n\t    httpRequest.headersList.append('accept-encoding', 'identity');\n\t  }\n\n\t  //    19. Modify httpRequest’s header list per HTTP. Do not append a given\n\t  //    header if httpRequest’s header list contains that header’s name.\n\t  //    TODO: https://github.com/whatwg/fetch/issues/1285#issuecomment-896560129\n\t  if (!httpRequest.headersList.contains('accept-encoding')) {\n\t    if (urlHasHttpsScheme(requestCurrentURL(httpRequest))) {\n\t      httpRequest.headersList.append('accept-encoding', 'br, gzip, deflate');\n\t    } else {\n\t      httpRequest.headersList.append('accept-encoding', 'gzip, deflate');\n\t    }\n\t  }\n\n\t  httpRequest.headersList.delete('host');\n\n\t  //    21. If there’s a proxy-authentication entry, use it as appropriate.\n\t  //    TODO: proxy-authentication\n\n\t  //    22. Set httpCache to the result of determining the HTTP cache\n\t  //    partition, given httpRequest.\n\t  //    TODO: cache\n\n\t  //    23. If httpCache is null, then set httpRequest’s cache mode to\n\t  //    \"no-store\".\n\t  {\n\t    httpRequest.cache = 'no-store';\n\t  }\n\n\t  //    24. If httpRequest’s cache mode is neither \"no-store\" nor \"reload\",\n\t  //    then:\n\t  if (httpRequest.mode !== 'no-store' && httpRequest.mode !== 'reload') ;\n\n\t  // 9. If aborted, then return the appropriate network error for fetchParams.\n\t  // TODO\n\n\t  // 10. If response is null, then:\n\t  if (response == null) {\n\t    // 1. If httpRequest’s cache mode is \"only-if-cached\", then return a\n\t    // network error.\n\t    if (httpRequest.mode === 'only-if-cached') {\n\t      return makeNetworkError('only if cached')\n\t    }\n\n\t    // 2. Let forwardResponse be the result of running HTTP-network fetch\n\t    // given httpFetchParams, includeCredentials, and isNewConnectionFetch.\n\t    const forwardResponse = await httpNetworkFetch(\n\t      httpFetchParams,\n\t      includeCredentials,\n\t      isNewConnectionFetch\n\t    );\n\n\t    // 3. If httpRequest’s method is unsafe and forwardResponse’s status is\n\t    // in the range 200 to 399, inclusive, invalidate appropriate stored\n\t    // responses in httpCache, as per the \"Invalidation\" chapter of HTTP\n\t    // Caching, and set storedResponse to null. [HTTP-CACHING]\n\t    if (\n\t      !safeMethodsSet.has(httpRequest.method) &&\n\t      forwardResponse.status >= 200 &&\n\t      forwardResponse.status <= 399\n\t    ) ;\n\n\t    // 5. If response is null, then:\n\t    if (response == null) {\n\t      // 1. Set response to forwardResponse.\n\t      response = forwardResponse;\n\n\t      // 2. Store httpRequest and forwardResponse in httpCache, as per the\n\t      // \"Storing Responses in Caches\" chapter of HTTP Caching. [HTTP-CACHING]\n\t      // TODO: cache\n\t    }\n\t  }\n\n\t  // 11. Set response’s URL list to a clone of httpRequest’s URL list.\n\t  response.urlList = [...httpRequest.urlList];\n\n\t  // 12. If httpRequest’s header list contains `Range`, then set response’s\n\t  // range-requested flag.\n\t  if (httpRequest.headersList.contains('range')) {\n\t    response.rangeRequested = true;\n\t  }\n\n\t  // 13. Set response’s request-includes-credentials to includeCredentials.\n\t  response.requestIncludesCredentials = includeCredentials;\n\n\t  // 14. If response’s status is 401, httpRequest’s response tainting is not\n\t  // \"cors\", includeCredentials is true, and request’s window is an environment\n\t  // settings object, then:\n\t  // TODO\n\n\t  // 15. If response’s status is 407, then:\n\t  if (response.status === 407) {\n\t    // 1. If request’s window is \"no-window\", then return a network error.\n\t    if (request.window === 'no-window') {\n\t      return makeNetworkError()\n\t    }\n\n\t    // 2. ???\n\n\t    // 3. If fetchParams is canceled, then return the appropriate network error for fetchParams.\n\t    if (isCancelled(fetchParams)) {\n\t      return makeAppropriateNetworkError(fetchParams)\n\t    }\n\n\t    // 4. Prompt the end user as appropriate in request’s window and store\n\t    // the result as a proxy-authentication entry. [HTTP-AUTH]\n\t    // TODO: Invoke some kind of callback?\n\n\t    // 5. Set response to the result of running HTTP-network-or-cache fetch given\n\t    // fetchParams.\n\t    // TODO\n\t    return makeNetworkError('proxy authentication required')\n\t  }\n\n\t  // 16. If all of the following are true\n\t  if (\n\t    // response’s status is 421\n\t    response.status === 421 &&\n\t    // isNewConnectionFetch is false\n\t    !isNewConnectionFetch &&\n\t    // request’s body is null, or request’s body is non-null and request’s body’s source is non-null\n\t    (request.body == null || request.body.source != null)\n\t  ) {\n\t    // then:\n\n\t    // 1. If fetchParams is canceled, then return the appropriate network error for fetchParams.\n\t    if (isCancelled(fetchParams)) {\n\t      return makeAppropriateNetworkError(fetchParams)\n\t    }\n\n\t    // 2. Set response to the result of running HTTP-network-or-cache\n\t    // fetch given fetchParams, isAuthenticationFetch, and true.\n\n\t    // TODO (spec): The spec doesn't specify this but we need to cancel\n\t    // the active response before we can start a new one.\n\t    // https://github.com/whatwg/fetch/issues/1293\n\t    fetchParams.controller.connection.destroy();\n\n\t    response = await httpNetworkOrCacheFetch(\n\t      fetchParams,\n\t      isAuthenticationFetch,\n\t      true\n\t    );\n\t  }\n\n\t  // 18. Return response.\n\t  return response\n\t}\n\n\t// https://fetch.spec.whatwg.org/#http-network-fetch\n\tasync function httpNetworkFetch (\n\t  fetchParams,\n\t  includeCredentials = false,\n\t  forceNewConnection = false\n\t) {\n\t  assert(!fetchParams.controller.connection || fetchParams.controller.connection.destroyed);\n\n\t  fetchParams.controller.connection = {\n\t    abort: null,\n\t    destroyed: false,\n\t    destroy (err) {\n\t      if (!this.destroyed) {\n\t        this.destroyed = true;\n\t        this.abort?.(err ?? new DOMException('The operation was aborted.', 'AbortError'));\n\t      }\n\t    }\n\t  };\n\n\t  // 1. Let request be fetchParams’s request.\n\t  const request = fetchParams.request;\n\n\t  // 2. Let response be null.\n\t  let response = null;\n\n\t  // 3. Let timingInfo be fetchParams’s timing info.\n\t  const timingInfo = fetchParams.timingInfo;\n\n\t  // 5. If httpCache is null, then set request’s cache mode to \"no-store\".\n\t  {\n\t    request.cache = 'no-store';\n\t  }\n\n\t  // 8. Switch on request’s mode:\n\t  if (request.mode === 'websocket') ;\n\n\t  // 9. Run these steps, but abort when the ongoing fetch is terminated:\n\n\t  //    1. If connection is failure, then return a network error.\n\n\t  //    2. Set timingInfo’s final connection timing info to the result of\n\t  //    calling clamp and coarsen connection timing info with connection’s\n\t  //    timing info, timingInfo’s post-redirect start time, and fetchParams’s\n\t  //    cross-origin isolated capability.\n\n\t  //    3. If connection is not an HTTP/2 connection, request’s body is non-null,\n\t  //    and request’s body’s source is null, then append (`Transfer-Encoding`,\n\t  //    `chunked`) to request’s header list.\n\n\t  //    4. Set timingInfo’s final network-request start time to the coarsened\n\t  //    shared current time given fetchParams’s cross-origin isolated\n\t  //    capability.\n\n\t  //    5. Set response to the result of making an HTTP request over connection\n\t  //    using request with the following caveats:\n\n\t  //        - Follow the relevant requirements from HTTP. [HTTP] [HTTP-SEMANTICS]\n\t  //        [HTTP-COND] [HTTP-CACHING] [HTTP-AUTH]\n\n\t  //        - If request’s body is non-null, and request’s body’s source is null,\n\t  //        then the user agent may have a buffer of up to 64 kibibytes and store\n\t  //        a part of request’s body in that buffer. If the user agent reads from\n\t  //        request’s body beyond that buffer’s size and the user agent needs to\n\t  //        resend request, then instead return a network error.\n\n\t  //        - Set timingInfo’s final network-response start time to the coarsened\n\t  //        shared current time given fetchParams’s cross-origin isolated capability,\n\t  //        immediately after the user agent’s HTTP parser receives the first byte\n\t  //        of the response (e.g., frame header bytes for HTTP/2 or response status\n\t  //        line for HTTP/1.x).\n\n\t  //        - Wait until all the headers are transmitted.\n\n\t  //        - Any responses whose status is in the range 100 to 199, inclusive,\n\t  //        and is not 101, are to be ignored, except for the purposes of setting\n\t  //        timingInfo’s final network-response start time above.\n\n\t  //    - If request’s header list contains `Transfer-Encoding`/`chunked` and\n\t  //    response is transferred via HTTP/1.0 or older, then return a network\n\t  //    error.\n\n\t  //    - If the HTTP request results in a TLS client certificate dialog, then:\n\n\t  //        1. If request’s window is an environment settings object, make the\n\t  //        dialog available in request’s window.\n\n\t  //        2. Otherwise, return a network error.\n\n\t  // To transmit request’s body body, run these steps:\n\t  let requestBody = null;\n\t  // 1. If body is null and fetchParams’s process request end-of-body is\n\t  // non-null, then queue a fetch task given fetchParams’s process request\n\t  // end-of-body and fetchParams’s task destination.\n\t  if (request.body == null && fetchParams.processRequestEndOfBody) {\n\t    queueMicrotask(() => fetchParams.processRequestEndOfBody());\n\t  } else if (request.body != null) {\n\t    // 2. Otherwise, if body is non-null:\n\n\t    //    1. Let processBodyChunk given bytes be these steps:\n\t    const processBodyChunk = async function * (bytes) {\n\t      // 1. If the ongoing fetch is terminated, then abort these steps.\n\t      if (isCancelled(fetchParams)) {\n\t        return\n\t      }\n\n\t      // 2. Run this step in parallel: transmit bytes.\n\t      yield bytes;\n\n\t      // 3. If fetchParams’s process request body is non-null, then run\n\t      // fetchParams’s process request body given bytes’s length.\n\t      fetchParams.processRequestBodyChunkLength?.(bytes.byteLength);\n\t    };\n\n\t    // 2. Let processEndOfBody be these steps:\n\t    const processEndOfBody = () => {\n\t      // 1. If fetchParams is canceled, then abort these steps.\n\t      if (isCancelled(fetchParams)) {\n\t        return\n\t      }\n\n\t      // 2. If fetchParams’s process request end-of-body is non-null,\n\t      // then run fetchParams’s process request end-of-body.\n\t      if (fetchParams.processRequestEndOfBody) {\n\t        fetchParams.processRequestEndOfBody();\n\t      }\n\t    };\n\n\t    // 3. Let processBodyError given e be these steps:\n\t    const processBodyError = (e) => {\n\t      // 1. If fetchParams is canceled, then abort these steps.\n\t      if (isCancelled(fetchParams)) {\n\t        return\n\t      }\n\n\t      // 2. If e is an \"AbortError\" DOMException, then abort fetchParams’s controller.\n\t      if (e.name === 'AbortError') {\n\t        fetchParams.controller.abort();\n\t      } else {\n\t        fetchParams.controller.terminate(e);\n\t      }\n\t    };\n\n\t    // 4. Incrementally read request’s body given processBodyChunk, processEndOfBody,\n\t    // processBodyError, and fetchParams’s task destination.\n\t    requestBody = (async function * () {\n\t      try {\n\t        for await (const bytes of request.body.stream) {\n\t          yield * processBodyChunk(bytes);\n\t        }\n\t        processEndOfBody();\n\t      } catch (err) {\n\t        processBodyError(err);\n\t      }\n\t    })();\n\t  }\n\n\t  try {\n\t    // socket is only provided for websockets\n\t    const { body, status, statusText, headersList, socket } = await dispatch({ body: requestBody });\n\n\t    if (socket) {\n\t      response = makeResponse({ status, statusText, headersList, socket });\n\t    } else {\n\t      const iterator = body[Symbol.asyncIterator]();\n\t      fetchParams.controller.next = () => iterator.next();\n\n\t      response = makeResponse({ status, statusText, headersList });\n\t    }\n\t  } catch (err) {\n\t    // 10. If aborted, then:\n\t    if (err.name === 'AbortError') {\n\t      // 1. If connection uses HTTP/2, then transmit an RST_STREAM frame.\n\t      fetchParams.controller.connection.destroy();\n\n\t      // 2. Return the appropriate network error for fetchParams.\n\t      return makeAppropriateNetworkError(fetchParams, err)\n\t    }\n\n\t    return makeNetworkError(err)\n\t  }\n\n\t  // 11. Let pullAlgorithm be an action that resumes the ongoing fetch\n\t  // if it is suspended.\n\t  const pullAlgorithm = () => {\n\t    fetchParams.controller.resume();\n\t  };\n\n\t  // 12. Let cancelAlgorithm be an algorithm that aborts fetchParams’s\n\t  // controller with reason, given reason.\n\t  const cancelAlgorithm = (reason) => {\n\t    fetchParams.controller.abort(reason);\n\t  };\n\n\t  // 13. Let highWaterMark be a non-negative, non-NaN number, chosen by\n\t  // the user agent.\n\t  // TODO\n\n\t  // 14. Let sizeAlgorithm be an algorithm that accepts a chunk object\n\t  // and returns a non-negative, non-NaN, non-infinite number, chosen by the user agent.\n\t  // TODO\n\n\t  // 15. Let stream be a new ReadableStream.\n\t  // 16. Set up stream with pullAlgorithm set to pullAlgorithm,\n\t  // cancelAlgorithm set to cancelAlgorithm, highWaterMark set to\n\t  // highWaterMark, and sizeAlgorithm set to sizeAlgorithm.\n\t  if (!ReadableStream) {\n\t    ReadableStream = require$$14.ReadableStream;\n\t  }\n\n\t  const stream = new ReadableStream(\n\t    {\n\t      async start (controller) {\n\t        fetchParams.controller.controller = controller;\n\t      },\n\t      async pull (controller) {\n\t        await pullAlgorithm();\n\t      },\n\t      async cancel (reason) {\n\t        await cancelAlgorithm(reason);\n\t      }\n\t    },\n\t    {\n\t      highWaterMark: 0,\n\t      size () {\n\t        return 1\n\t      }\n\t    }\n\t  );\n\n\t  // 17. Run these steps, but abort when the ongoing fetch is terminated:\n\n\t  //    1. Set response’s body to a new body whose stream is stream.\n\t  response.body = { stream };\n\n\t  //    2. If response is not a network error and request’s cache mode is\n\t  //    not \"no-store\", then update response in httpCache for request.\n\t  //    TODO\n\n\t  //    3. If includeCredentials is true and the user agent is not configured\n\t  //    to block cookies for request (see section 7 of [COOKIES]), then run the\n\t  //    \"set-cookie-string\" parsing algorithm (see section 5.2 of [COOKIES]) on\n\t  //    the value of each header whose name is a byte-case-insensitive match for\n\t  //    `Set-Cookie` in response’s header list, if any, and request’s current URL.\n\t  //    TODO\n\n\t  // 18. If aborted, then:\n\t  // TODO\n\n\t  // 19. Run these steps in parallel:\n\n\t  //    1. Run these steps, but abort when fetchParams is canceled:\n\t  fetchParams.controller.on('terminated', onAborted);\n\t  fetchParams.controller.resume = async () => {\n\t    // 1. While true\n\t    while (true) {\n\t      // 1-3. See onData...\n\n\t      // 4. Set bytes to the result of handling content codings given\n\t      // codings and bytes.\n\t      let bytes;\n\t      let isFailure;\n\t      try {\n\t        const { done, value } = await fetchParams.controller.next();\n\n\t        if (isAborted(fetchParams)) {\n\t          break\n\t        }\n\n\t        bytes = done ? undefined : value;\n\t      } catch (err) {\n\t        if (fetchParams.controller.ended && !timingInfo.encodedBodySize) {\n\t          // zlib doesn't like empty streams.\n\t          bytes = undefined;\n\t        } else {\n\t          bytes = err;\n\n\t          // err may be propagated from the result of calling readablestream.cancel,\n\t          // which might not be an error. https://github.com/nodejs/undici/issues/2009\n\t          isFailure = true;\n\t        }\n\t      }\n\n\t      if (bytes === undefined) {\n\t        // 2. Otherwise, if the bytes transmission for response’s message\n\t        // body is done normally and stream is readable, then close\n\t        // stream, finalize response for fetchParams and response, and\n\t        // abort these in-parallel steps.\n\t        readableStreamClose(fetchParams.controller.controller);\n\n\t        finalizeResponse(fetchParams, response);\n\n\t        return\n\t      }\n\n\t      // 5. Increase timingInfo’s decoded body size by bytes’s length.\n\t      timingInfo.decodedBodySize += bytes?.byteLength ?? 0;\n\n\t      // 6. If bytes is failure, then terminate fetchParams’s controller.\n\t      if (isFailure) {\n\t        fetchParams.controller.terminate(bytes);\n\t        return\n\t      }\n\n\t      // 7. Enqueue a Uint8Array wrapping an ArrayBuffer containing bytes\n\t      // into stream.\n\t      fetchParams.controller.controller.enqueue(new Uint8Array(bytes));\n\n\t      // 8. If stream is errored, then terminate the ongoing fetch.\n\t      if (isErrored(stream)) {\n\t        fetchParams.controller.terminate();\n\t        return\n\t      }\n\n\t      // 9. If stream doesn’t need more data ask the user agent to suspend\n\t      // the ongoing fetch.\n\t      if (!fetchParams.controller.controller.desiredSize) {\n\t        return\n\t      }\n\t    }\n\t  };\n\n\t  //    2. If aborted, then:\n\t  function onAborted (reason) {\n\t    // 2. If fetchParams is aborted, then:\n\t    if (isAborted(fetchParams)) {\n\t      // 1. Set response’s aborted flag.\n\t      response.aborted = true;\n\n\t      // 2. If stream is readable, then error stream with the result of\n\t      //    deserialize a serialized abort reason given fetchParams’s\n\t      //    controller’s serialized abort reason and an\n\t      //    implementation-defined realm.\n\t      if (isReadable(stream)) {\n\t        fetchParams.controller.controller.error(\n\t          fetchParams.controller.serializedAbortReason\n\t        );\n\t      }\n\t    } else {\n\t      // 3. Otherwise, if stream is readable, error stream with a TypeError.\n\t      if (isReadable(stream)) {\n\t        fetchParams.controller.controller.error(new TypeError('terminated', {\n\t          cause: isErrorLike(reason) ? reason : undefined\n\t        }));\n\t      }\n\t    }\n\n\t    // 4. If connection uses HTTP/2, then transmit an RST_STREAM frame.\n\t    // 5. Otherwise, the user agent should close connection unless it would be bad for performance to do so.\n\t    fetchParams.controller.connection.destroy();\n\t  }\n\n\t  // 20. Return response.\n\t  return response\n\n\t  async function dispatch ({ body }) {\n\t    const url = requestCurrentURL(request);\n\t    /** @type {import('../..').Agent} */\n\t    const agent = fetchParams.controller.dispatcher;\n\n\t    return new Promise((resolve, reject) => agent.dispatch(\n\t      {\n\t        path: url.pathname + url.search,\n\t        origin: url.origin,\n\t        method: request.method,\n\t        body: fetchParams.controller.dispatcher.isMockActive ? request.body && (request.body.source || request.body.stream) : body,\n\t        headers: request.headersList.entries,\n\t        maxRedirections: 0,\n\t        upgrade: request.mode === 'websocket' ? 'websocket' : undefined\n\t      },\n\t      {\n\t        body: null,\n\t        abort: null,\n\n\t        onConnect (abort) {\n\t          // TODO (fix): Do we need connection here?\n\t          const { connection } = fetchParams.controller;\n\n\t          if (connection.destroyed) {\n\t            abort(new DOMException('The operation was aborted.', 'AbortError'));\n\t          } else {\n\t            fetchParams.controller.on('terminated', abort);\n\t            this.abort = connection.abort = abort;\n\t          }\n\t        },\n\n\t        onHeaders (status, headersList, resume, statusText) {\n\t          if (status < 200) {\n\t            return\n\t          }\n\n\t          let codings = [];\n\t          let location = '';\n\n\t          const headers = new Headers();\n\n\t          // For H2, the headers are a plain JS object\n\t          // We distinguish between them and iterate accordingly\n\t          if (Array.isArray(headersList)) {\n\t            for (let n = 0; n < headersList.length; n += 2) {\n\t              const key = headersList[n + 0].toString('latin1');\n\t              const val = headersList[n + 1].toString('latin1');\n\t              if (key.toLowerCase() === 'content-encoding') {\n\t                // https://www.rfc-editor.org/rfc/rfc7231#section-3.1.2.1\n\t                // \"All content-coding values are case-insensitive...\"\n\t                codings = val.toLowerCase().split(',').map((x) => x.trim());\n\t              } else if (key.toLowerCase() === 'location') {\n\t                location = val;\n\t              }\n\n\t              headers[kHeadersList].append(key, val);\n\t            }\n\t          } else {\n\t            const keys = Object.keys(headersList);\n\t            for (const key of keys) {\n\t              const val = headersList[key];\n\t              if (key.toLowerCase() === 'content-encoding') {\n\t                // https://www.rfc-editor.org/rfc/rfc7231#section-3.1.2.1\n\t                // \"All content-coding values are case-insensitive...\"\n\t                codings = val.toLowerCase().split(',').map((x) => x.trim()).reverse();\n\t              } else if (key.toLowerCase() === 'location') {\n\t                location = val;\n\t              }\n\n\t              headers[kHeadersList].append(key, val);\n\t            }\n\t          }\n\n\t          this.body = new Readable({ read: resume });\n\n\t          const decoders = [];\n\n\t          const willFollow = request.redirect === 'follow' &&\n\t            location &&\n\t            redirectStatusSet.has(status);\n\n\t          // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding\n\t          if (request.method !== 'HEAD' && request.method !== 'CONNECT' && !nullBodyStatus.includes(status) && !willFollow) {\n\t            for (const coding of codings) {\n\t              // https://www.rfc-editor.org/rfc/rfc9112.html#section-7.2\n\t              if (coding === 'x-gzip' || coding === 'gzip') {\n\t                decoders.push(zlib.createGunzip({\n\t                  // Be less strict when decoding compressed responses, since sometimes\n\t                  // servers send slightly invalid responses that are still accepted\n\t                  // by common browsers.\n\t                  // Always using Z_SYNC_FLUSH is what cURL does.\n\t                  flush: zlib.constants.Z_SYNC_FLUSH,\n\t                  finishFlush: zlib.constants.Z_SYNC_FLUSH\n\t                }));\n\t              } else if (coding === 'deflate') {\n\t                decoders.push(zlib.createInflate());\n\t              } else if (coding === 'br') {\n\t                decoders.push(zlib.createBrotliDecompress());\n\t              } else {\n\t                decoders.length = 0;\n\t                break\n\t              }\n\t            }\n\t          }\n\n\t          resolve({\n\t            status,\n\t            statusText,\n\t            headersList: headers[kHeadersList],\n\t            body: decoders.length\n\t              ? pipeline(this.body, ...decoders, () => { })\n\t              : this.body.on('error', () => {})\n\t          });\n\n\t          return true\n\t        },\n\n\t        onData (chunk) {\n\t          if (fetchParams.controller.dump) {\n\t            return\n\t          }\n\n\t          // 1. If one or more bytes have been transmitted from response’s\n\t          // message body, then:\n\n\t          //  1. Let bytes be the transmitted bytes.\n\t          const bytes = chunk;\n\n\t          //  2. Let codings be the result of extracting header list values\n\t          //  given `Content-Encoding` and response’s header list.\n\t          //  See pullAlgorithm.\n\n\t          //  3. Increase timingInfo’s encoded body size by bytes’s length.\n\t          timingInfo.encodedBodySize += bytes.byteLength;\n\n\t          //  4. See pullAlgorithm...\n\n\t          return this.body.push(bytes)\n\t        },\n\n\t        onComplete () {\n\t          if (this.abort) {\n\t            fetchParams.controller.off('terminated', this.abort);\n\t          }\n\n\t          fetchParams.controller.ended = true;\n\n\t          this.body.push(null);\n\t        },\n\n\t        onError (error) {\n\t          if (this.abort) {\n\t            fetchParams.controller.off('terminated', this.abort);\n\t          }\n\n\t          this.body?.destroy(error);\n\n\t          fetchParams.controller.terminate(error);\n\n\t          reject(error);\n\t        },\n\n\t        onUpgrade (status, headersList, socket) {\n\t          if (status !== 101) {\n\t            return\n\t          }\n\n\t          const headers = new Headers();\n\n\t          for (let n = 0; n < headersList.length; n += 2) {\n\t            const key = headersList[n + 0].toString('latin1');\n\t            const val = headersList[n + 1].toString('latin1');\n\n\t            headers[kHeadersList].append(key, val);\n\t          }\n\n\t          resolve({\n\t            status,\n\t            statusText: STATUS_CODES[status],\n\t            headersList: headers[kHeadersList],\n\t            socket\n\t          });\n\n\t          return true\n\t        }\n\t      }\n\t    ))\n\t  }\n\t}\n\n\tfetch_1 = {\n\t  fetch,\n\t  Fetch,\n\t  fetching,\n\t  finalizeAndReportTiming\n\t};\n\treturn fetch_1;\n}\n\nvar symbols$2;\nvar hasRequiredSymbols$2;\n\nfunction requireSymbols$2 () {\n\tif (hasRequiredSymbols$2) return symbols$2;\n\thasRequiredSymbols$2 = 1;\n\n\tsymbols$2 = {\n\t  kState: Symbol('FileReader state'),\n\t  kResult: Symbol('FileReader result'),\n\t  kError: Symbol('FileReader error'),\n\t  kLastProgressEventFired: Symbol('FileReader last progress event fired timestamp'),\n\t  kEvents: Symbol('FileReader events'),\n\t  kAborted: Symbol('FileReader aborted')\n\t};\n\treturn symbols$2;\n}\n\nvar progressevent;\nvar hasRequiredProgressevent;\n\nfunction requireProgressevent () {\n\tif (hasRequiredProgressevent) return progressevent;\n\thasRequiredProgressevent = 1;\n\n\tconst { webidl } = requireWebidl();\n\n\tconst kState = Symbol('ProgressEvent state');\n\n\t/**\n\t * @see https://xhr.spec.whatwg.org/#progressevent\n\t */\n\tclass ProgressEvent extends Event {\n\t  constructor (type, eventInitDict = {}) {\n\t    type = webidl.converters.DOMString(type);\n\t    eventInitDict = webidl.converters.ProgressEventInit(eventInitDict ?? {});\n\n\t    super(type, eventInitDict);\n\n\t    this[kState] = {\n\t      lengthComputable: eventInitDict.lengthComputable,\n\t      loaded: eventInitDict.loaded,\n\t      total: eventInitDict.total\n\t    };\n\t  }\n\n\t  get lengthComputable () {\n\t    webidl.brandCheck(this, ProgressEvent);\n\n\t    return this[kState].lengthComputable\n\t  }\n\n\t  get loaded () {\n\t    webidl.brandCheck(this, ProgressEvent);\n\n\t    return this[kState].loaded\n\t  }\n\n\t  get total () {\n\t    webidl.brandCheck(this, ProgressEvent);\n\n\t    return this[kState].total\n\t  }\n\t}\n\n\twebidl.converters.ProgressEventInit = webidl.dictionaryConverter([\n\t  {\n\t    key: 'lengthComputable',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  },\n\t  {\n\t    key: 'loaded',\n\t    converter: webidl.converters['unsigned long long'],\n\t    defaultValue: 0\n\t  },\n\t  {\n\t    key: 'total',\n\t    converter: webidl.converters['unsigned long long'],\n\t    defaultValue: 0\n\t  },\n\t  {\n\t    key: 'bubbles',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  },\n\t  {\n\t    key: 'cancelable',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  },\n\t  {\n\t    key: 'composed',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  }\n\t]);\n\n\tprogressevent = {\n\t  ProgressEvent\n\t};\n\treturn progressevent;\n}\n\nvar encoding;\nvar hasRequiredEncoding;\n\nfunction requireEncoding () {\n\tif (hasRequiredEncoding) return encoding;\n\thasRequiredEncoding = 1;\n\n\t/**\n\t * @see https://encoding.spec.whatwg.org/#concept-encoding-get\n\t * @param {string|undefined} label\n\t */\n\tfunction getEncoding (label) {\n\t  if (!label) {\n\t    return 'failure'\n\t  }\n\n\t  // 1. Remove any leading and trailing ASCII whitespace from label.\n\t  // 2. If label is an ASCII case-insensitive match for any of the\n\t  //    labels listed in the table below, then return the\n\t  //    corresponding encoding; otherwise return failure.\n\t  switch (label.trim().toLowerCase()) {\n\t    case 'unicode-1-1-utf-8':\n\t    case 'unicode11utf8':\n\t    case 'unicode20utf8':\n\t    case 'utf-8':\n\t    case 'utf8':\n\t    case 'x-unicode20utf8':\n\t      return 'UTF-8'\n\t    case '866':\n\t    case 'cp866':\n\t    case 'csibm866':\n\t    case 'ibm866':\n\t      return 'IBM866'\n\t    case 'csisolatin2':\n\t    case 'iso-8859-2':\n\t    case 'iso-ir-101':\n\t    case 'iso8859-2':\n\t    case 'iso88592':\n\t    case 'iso_8859-2':\n\t    case 'iso_8859-2:1987':\n\t    case 'l2':\n\t    case 'latin2':\n\t      return 'ISO-8859-2'\n\t    case 'csisolatin3':\n\t    case 'iso-8859-3':\n\t    case 'iso-ir-109':\n\t    case 'iso8859-3':\n\t    case 'iso88593':\n\t    case 'iso_8859-3':\n\t    case 'iso_8859-3:1988':\n\t    case 'l3':\n\t    case 'latin3':\n\t      return 'ISO-8859-3'\n\t    case 'csisolatin4':\n\t    case 'iso-8859-4':\n\t    case 'iso-ir-110':\n\t    case 'iso8859-4':\n\t    case 'iso88594':\n\t    case 'iso_8859-4':\n\t    case 'iso_8859-4:1988':\n\t    case 'l4':\n\t    case 'latin4':\n\t      return 'ISO-8859-4'\n\t    case 'csisolatincyrillic':\n\t    case 'cyrillic':\n\t    case 'iso-8859-5':\n\t    case 'iso-ir-144':\n\t    case 'iso8859-5':\n\t    case 'iso88595':\n\t    case 'iso_8859-5':\n\t    case 'iso_8859-5:1988':\n\t      return 'ISO-8859-5'\n\t    case 'arabic':\n\t    case 'asmo-708':\n\t    case 'csiso88596e':\n\t    case 'csiso88596i':\n\t    case 'csisolatinarabic':\n\t    case 'ecma-114':\n\t    case 'iso-8859-6':\n\t    case 'iso-8859-6-e':\n\t    case 'iso-8859-6-i':\n\t    case 'iso-ir-127':\n\t    case 'iso8859-6':\n\t    case 'iso88596':\n\t    case 'iso_8859-6':\n\t    case 'iso_8859-6:1987':\n\t      return 'ISO-8859-6'\n\t    case 'csisolatingreek':\n\t    case 'ecma-118':\n\t    case 'elot_928':\n\t    case 'greek':\n\t    case 'greek8':\n\t    case 'iso-8859-7':\n\t    case 'iso-ir-126':\n\t    case 'iso8859-7':\n\t    case 'iso88597':\n\t    case 'iso_8859-7':\n\t    case 'iso_8859-7:1987':\n\t    case 'sun_eu_greek':\n\t      return 'ISO-8859-7'\n\t    case 'csiso88598e':\n\t    case 'csisolatinhebrew':\n\t    case 'hebrew':\n\t    case 'iso-8859-8':\n\t    case 'iso-8859-8-e':\n\t    case 'iso-ir-138':\n\t    case 'iso8859-8':\n\t    case 'iso88598':\n\t    case 'iso_8859-8':\n\t    case 'iso_8859-8:1988':\n\t    case 'visual':\n\t      return 'ISO-8859-8'\n\t    case 'csiso88598i':\n\t    case 'iso-8859-8-i':\n\t    case 'logical':\n\t      return 'ISO-8859-8-I'\n\t    case 'csisolatin6':\n\t    case 'iso-8859-10':\n\t    case 'iso-ir-157':\n\t    case 'iso8859-10':\n\t    case 'iso885910':\n\t    case 'l6':\n\t    case 'latin6':\n\t      return 'ISO-8859-10'\n\t    case 'iso-8859-13':\n\t    case 'iso8859-13':\n\t    case 'iso885913':\n\t      return 'ISO-8859-13'\n\t    case 'iso-8859-14':\n\t    case 'iso8859-14':\n\t    case 'iso885914':\n\t      return 'ISO-8859-14'\n\t    case 'csisolatin9':\n\t    case 'iso-8859-15':\n\t    case 'iso8859-15':\n\t    case 'iso885915':\n\t    case 'iso_8859-15':\n\t    case 'l9':\n\t      return 'ISO-8859-15'\n\t    case 'iso-8859-16':\n\t      return 'ISO-8859-16'\n\t    case 'cskoi8r':\n\t    case 'koi':\n\t    case 'koi8':\n\t    case 'koi8-r':\n\t    case 'koi8_r':\n\t      return 'KOI8-R'\n\t    case 'koi8-ru':\n\t    case 'koi8-u':\n\t      return 'KOI8-U'\n\t    case 'csmacintosh':\n\t    case 'mac':\n\t    case 'macintosh':\n\t    case 'x-mac-roman':\n\t      return 'macintosh'\n\t    case 'iso-8859-11':\n\t    case 'iso8859-11':\n\t    case 'iso885911':\n\t    case 'tis-620':\n\t    case 'windows-874':\n\t      return 'windows-874'\n\t    case 'cp1250':\n\t    case 'windows-1250':\n\t    case 'x-cp1250':\n\t      return 'windows-1250'\n\t    case 'cp1251':\n\t    case 'windows-1251':\n\t    case 'x-cp1251':\n\t      return 'windows-1251'\n\t    case 'ansi_x3.4-1968':\n\t    case 'ascii':\n\t    case 'cp1252':\n\t    case 'cp819':\n\t    case 'csisolatin1':\n\t    case 'ibm819':\n\t    case 'iso-8859-1':\n\t    case 'iso-ir-100':\n\t    case 'iso8859-1':\n\t    case 'iso88591':\n\t    case 'iso_8859-1':\n\t    case 'iso_8859-1:1987':\n\t    case 'l1':\n\t    case 'latin1':\n\t    case 'us-ascii':\n\t    case 'windows-1252':\n\t    case 'x-cp1252':\n\t      return 'windows-1252'\n\t    case 'cp1253':\n\t    case 'windows-1253':\n\t    case 'x-cp1253':\n\t      return 'windows-1253'\n\t    case 'cp1254':\n\t    case 'csisolatin5':\n\t    case 'iso-8859-9':\n\t    case 'iso-ir-148':\n\t    case 'iso8859-9':\n\t    case 'iso88599':\n\t    case 'iso_8859-9':\n\t    case 'iso_8859-9:1989':\n\t    case 'l5':\n\t    case 'latin5':\n\t    case 'windows-1254':\n\t    case 'x-cp1254':\n\t      return 'windows-1254'\n\t    case 'cp1255':\n\t    case 'windows-1255':\n\t    case 'x-cp1255':\n\t      return 'windows-1255'\n\t    case 'cp1256':\n\t    case 'windows-1256':\n\t    case 'x-cp1256':\n\t      return 'windows-1256'\n\t    case 'cp1257':\n\t    case 'windows-1257':\n\t    case 'x-cp1257':\n\t      return 'windows-1257'\n\t    case 'cp1258':\n\t    case 'windows-1258':\n\t    case 'x-cp1258':\n\t      return 'windows-1258'\n\t    case 'x-mac-cyrillic':\n\t    case 'x-mac-ukrainian':\n\t      return 'x-mac-cyrillic'\n\t    case 'chinese':\n\t    case 'csgb2312':\n\t    case 'csiso58gb231280':\n\t    case 'gb2312':\n\t    case 'gb_2312':\n\t    case 'gb_2312-80':\n\t    case 'gbk':\n\t    case 'iso-ir-58':\n\t    case 'x-gbk':\n\t      return 'GBK'\n\t    case 'gb18030':\n\t      return 'gb18030'\n\t    case 'big5':\n\t    case 'big5-hkscs':\n\t    case 'cn-big5':\n\t    case 'csbig5':\n\t    case 'x-x-big5':\n\t      return 'Big5'\n\t    case 'cseucpkdfmtjapanese':\n\t    case 'euc-jp':\n\t    case 'x-euc-jp':\n\t      return 'EUC-JP'\n\t    case 'csiso2022jp':\n\t    case 'iso-2022-jp':\n\t      return 'ISO-2022-JP'\n\t    case 'csshiftjis':\n\t    case 'ms932':\n\t    case 'ms_kanji':\n\t    case 'shift-jis':\n\t    case 'shift_jis':\n\t    case 'sjis':\n\t    case 'windows-31j':\n\t    case 'x-sjis':\n\t      return 'Shift_JIS'\n\t    case 'cseuckr':\n\t    case 'csksc56011987':\n\t    case 'euc-kr':\n\t    case 'iso-ir-149':\n\t    case 'korean':\n\t    case 'ks_c_5601-1987':\n\t    case 'ks_c_5601-1989':\n\t    case 'ksc5601':\n\t    case 'ksc_5601':\n\t    case 'windows-949':\n\t      return 'EUC-KR'\n\t    case 'csiso2022kr':\n\t    case 'hz-gb-2312':\n\t    case 'iso-2022-cn':\n\t    case 'iso-2022-cn-ext':\n\t    case 'iso-2022-kr':\n\t    case 'replacement':\n\t      return 'replacement'\n\t    case 'unicodefffe':\n\t    case 'utf-16be':\n\t      return 'UTF-16BE'\n\t    case 'csunicode':\n\t    case 'iso-10646-ucs-2':\n\t    case 'ucs-2':\n\t    case 'unicode':\n\t    case 'unicodefeff':\n\t    case 'utf-16':\n\t    case 'utf-16le':\n\t      return 'UTF-16LE'\n\t    case 'x-user-defined':\n\t      return 'x-user-defined'\n\t    default: return 'failure'\n\t  }\n\t}\n\n\tencoding = {\n\t  getEncoding\n\t};\n\treturn encoding;\n}\n\nvar util$9;\nvar hasRequiredUtil$9;\n\nfunction requireUtil$9 () {\n\tif (hasRequiredUtil$9) return util$9;\n\thasRequiredUtil$9 = 1;\n\n\tconst {\n\t  kState,\n\t  kError,\n\t  kResult,\n\t  kAborted,\n\t  kLastProgressEventFired\n\t} = requireSymbols$2();\n\tconst { ProgressEvent } = requireProgressevent();\n\tconst { getEncoding } = requireEncoding();\n\tconst { DOMException } = requireConstants$7();\n\tconst { serializeAMimeType, parseMIMEType } = requireDataURL();\n\tconst { types } = require$$0__default$1;\n\tconst { StringDecoder } = require$$6$1;\n\tconst { btoa } = require$$0$8;\n\n\t/** @type {PropertyDescriptor} */\n\tconst staticPropertyDescriptors = {\n\t  enumerable: true,\n\t  writable: false,\n\t  configurable: false\n\t};\n\n\t/**\n\t * @see https://w3c.github.io/FileAPI/#readOperation\n\t * @param {import('./filereader').FileReader} fr\n\t * @param {import('buffer').Blob} blob\n\t * @param {string} type\n\t * @param {string?} encodingName\n\t */\n\tfunction readOperation (fr, blob, type, encodingName) {\n\t  // 1. If fr’s state is \"loading\", throw an InvalidStateError\n\t  //    DOMException.\n\t  if (fr[kState] === 'loading') {\n\t    throw new DOMException('Invalid state', 'InvalidStateError')\n\t  }\n\n\t  // 2. Set fr’s state to \"loading\".\n\t  fr[kState] = 'loading';\n\n\t  // 3. Set fr’s result to null.\n\t  fr[kResult] = null;\n\n\t  // 4. Set fr’s error to null.\n\t  fr[kError] = null;\n\n\t  // 5. Let stream be the result of calling get stream on blob.\n\t  /** @type {import('stream/web').ReadableStream} */\n\t  const stream = blob.stream();\n\n\t  // 6. Let reader be the result of getting a reader from stream.\n\t  const reader = stream.getReader();\n\n\t  // 7. Let bytes be an empty byte sequence.\n\t  /** @type {Uint8Array[]} */\n\t  const bytes = [];\n\n\t  // 8. Let chunkPromise be the result of reading a chunk from\n\t  //    stream with reader.\n\t  let chunkPromise = reader.read();\n\n\t  // 9. Let isFirstChunk be true.\n\t  let isFirstChunk = true\n\n\t  // 10. In parallel, while true:\n\t  // Note: \"In parallel\" just means non-blocking\n\t  // Note 2: readOperation itself cannot be async as double\n\t  // reading the body would then reject the promise, instead\n\t  // of throwing an error.\n\t  ;(async () => {\n\t    while (!fr[kAborted]) {\n\t      // 1. Wait for chunkPromise to be fulfilled or rejected.\n\t      try {\n\t        const { done, value } = await chunkPromise;\n\n\t        // 2. If chunkPromise is fulfilled, and isFirstChunk is\n\t        //    true, queue a task to fire a progress event called\n\t        //    loadstart at fr.\n\t        if (isFirstChunk && !fr[kAborted]) {\n\t          queueMicrotask(() => {\n\t            fireAProgressEvent('loadstart', fr);\n\t          });\n\t        }\n\n\t        // 3. Set isFirstChunk to false.\n\t        isFirstChunk = false;\n\n\t        // 4. If chunkPromise is fulfilled with an object whose\n\t        //    done property is false and whose value property is\n\t        //    a Uint8Array object, run these steps:\n\t        if (!done && types.isUint8Array(value)) {\n\t          // 1. Let bs be the byte sequence represented by the\n\t          //    Uint8Array object.\n\n\t          // 2. Append bs to bytes.\n\t          bytes.push(value);\n\n\t          // 3. If roughly 50ms have passed since these steps\n\t          //    were last invoked, queue a task to fire a\n\t          //    progress event called progress at fr.\n\t          if (\n\t            (\n\t              fr[kLastProgressEventFired] === undefined ||\n\t              Date.now() - fr[kLastProgressEventFired] >= 50\n\t            ) &&\n\t            !fr[kAborted]\n\t          ) {\n\t            fr[kLastProgressEventFired] = Date.now();\n\t            queueMicrotask(() => {\n\t              fireAProgressEvent('progress', fr);\n\t            });\n\t          }\n\n\t          // 4. Set chunkPromise to the result of reading a\n\t          //    chunk from stream with reader.\n\t          chunkPromise = reader.read();\n\t        } else if (done) {\n\t          // 5. Otherwise, if chunkPromise is fulfilled with an\n\t          //    object whose done property is true, queue a task\n\t          //    to run the following steps and abort this algorithm:\n\t          queueMicrotask(() => {\n\t            // 1. Set fr’s state to \"done\".\n\t            fr[kState] = 'done';\n\n\t            // 2. Let result be the result of package data given\n\t            //    bytes, type, blob’s type, and encodingName.\n\t            try {\n\t              const result = packageData(bytes, type, blob.type, encodingName);\n\n\t              // 4. Else:\n\n\t              if (fr[kAborted]) {\n\t                return\n\t              }\n\n\t              // 1. Set fr’s result to result.\n\t              fr[kResult] = result;\n\n\t              // 2. Fire a progress event called load at the fr.\n\t              fireAProgressEvent('load', fr);\n\t            } catch (error) {\n\t              // 3. If package data threw an exception error:\n\n\t              // 1. Set fr’s error to error.\n\t              fr[kError] = error;\n\n\t              // 2. Fire a progress event called error at fr.\n\t              fireAProgressEvent('error', fr);\n\t            }\n\n\t            // 5. If fr’s state is not \"loading\", fire a progress\n\t            //    event called loadend at the fr.\n\t            if (fr[kState] !== 'loading') {\n\t              fireAProgressEvent('loadend', fr);\n\t            }\n\t          });\n\n\t          break\n\t        }\n\t      } catch (error) {\n\t        if (fr[kAborted]) {\n\t          return\n\t        }\n\n\t        // 6. Otherwise, if chunkPromise is rejected with an\n\t        //    error error, queue a task to run the following\n\t        //    steps and abort this algorithm:\n\t        queueMicrotask(() => {\n\t          // 1. Set fr’s state to \"done\".\n\t          fr[kState] = 'done';\n\n\t          // 2. Set fr’s error to error.\n\t          fr[kError] = error;\n\n\t          // 3. Fire a progress event called error at fr.\n\t          fireAProgressEvent('error', fr);\n\n\t          // 4. If fr’s state is not \"loading\", fire a progress\n\t          //    event called loadend at fr.\n\t          if (fr[kState] !== 'loading') {\n\t            fireAProgressEvent('loadend', fr);\n\t          }\n\t        });\n\n\t        break\n\t      }\n\t    }\n\t  })();\n\t}\n\n\t/**\n\t * @see https://w3c.github.io/FileAPI/#fire-a-progress-event\n\t * @see https://dom.spec.whatwg.org/#concept-event-fire\n\t * @param {string} e The name of the event\n\t * @param {import('./filereader').FileReader} reader\n\t */\n\tfunction fireAProgressEvent (e, reader) {\n\t  // The progress event e does not bubble. e.bubbles must be false\n\t  // The progress event e is NOT cancelable. e.cancelable must be false\n\t  const event = new ProgressEvent(e, {\n\t    bubbles: false,\n\t    cancelable: false\n\t  });\n\n\t  reader.dispatchEvent(event);\n\t}\n\n\t/**\n\t * @see https://w3c.github.io/FileAPI/#blob-package-data\n\t * @param {Uint8Array[]} bytes\n\t * @param {string} type\n\t * @param {string?} mimeType\n\t * @param {string?} encodingName\n\t */\n\tfunction packageData (bytes, type, mimeType, encodingName) {\n\t  // 1. A Blob has an associated package data algorithm, given\n\t  //    bytes, a type, a optional mimeType, and a optional\n\t  //    encodingName, which switches on type and runs the\n\t  //    associated steps:\n\n\t  switch (type) {\n\t    case 'DataURL': {\n\t      // 1. Return bytes as a DataURL [RFC2397] subject to\n\t      //    the considerations below:\n\t      //  * Use mimeType as part of the Data URL if it is\n\t      //    available in keeping with the Data URL\n\t      //    specification [RFC2397].\n\t      //  * If mimeType is not available return a Data URL\n\t      //    without a media-type. [RFC2397].\n\n\t      // https://datatracker.ietf.org/doc/html/rfc2397#section-3\n\t      // dataurl    := \"data:\" [ mediatype ] [ \";base64\" ] \",\" data\n\t      // mediatype  := [ type \"/\" subtype ] *( \";\" parameter )\n\t      // data       := *urlchar\n\t      // parameter  := attribute \"=\" value\n\t      let dataURL = 'data:';\n\n\t      const parsed = parseMIMEType(mimeType || 'application/octet-stream');\n\n\t      if (parsed !== 'failure') {\n\t        dataURL += serializeAMimeType(parsed);\n\t      }\n\n\t      dataURL += ';base64,';\n\n\t      const decoder = new StringDecoder('latin1');\n\n\t      for (const chunk of bytes) {\n\t        dataURL += btoa(decoder.write(chunk));\n\t      }\n\n\t      dataURL += btoa(decoder.end());\n\n\t      return dataURL\n\t    }\n\t    case 'Text': {\n\t      // 1. Let encoding be failure\n\t      let encoding = 'failure';\n\n\t      // 2. If the encodingName is present, set encoding to the\n\t      //    result of getting an encoding from encodingName.\n\t      if (encodingName) {\n\t        encoding = getEncoding(encodingName);\n\t      }\n\n\t      // 3. If encoding is failure, and mimeType is present:\n\t      if (encoding === 'failure' && mimeType) {\n\t        // 1. Let type be the result of parse a MIME type\n\t        //    given mimeType.\n\t        const type = parseMIMEType(mimeType);\n\n\t        // 2. If type is not failure, set encoding to the result\n\t        //    of getting an encoding from type’s parameters[\"charset\"].\n\t        if (type !== 'failure') {\n\t          encoding = getEncoding(type.parameters.get('charset'));\n\t        }\n\t      }\n\n\t      // 4. If encoding is failure, then set encoding to UTF-8.\n\t      if (encoding === 'failure') {\n\t        encoding = 'UTF-8';\n\t      }\n\n\t      // 5. Decode bytes using fallback encoding encoding, and\n\t      //    return the result.\n\t      return decode(bytes, encoding)\n\t    }\n\t    case 'ArrayBuffer': {\n\t      // Return a new ArrayBuffer whose contents are bytes.\n\t      const sequence = combineByteSequences(bytes);\n\n\t      return sequence.buffer\n\t    }\n\t    case 'BinaryString': {\n\t      // Return bytes as a binary string, in which every byte\n\t      //  is represented by a code unit of equal value [0..255].\n\t      let binaryString = '';\n\n\t      const decoder = new StringDecoder('latin1');\n\n\t      for (const chunk of bytes) {\n\t        binaryString += decoder.write(chunk);\n\t      }\n\n\t      binaryString += decoder.end();\n\n\t      return binaryString\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * @see https://encoding.spec.whatwg.org/#decode\n\t * @param {Uint8Array[]} ioQueue\n\t * @param {string} encoding\n\t */\n\tfunction decode (ioQueue, encoding) {\n\t  const bytes = combineByteSequences(ioQueue);\n\n\t  // 1. Let BOMEncoding be the result of BOM sniffing ioQueue.\n\t  const BOMEncoding = BOMSniffing(bytes);\n\n\t  let slice = 0;\n\n\t  // 2. If BOMEncoding is non-null:\n\t  if (BOMEncoding !== null) {\n\t    // 1. Set encoding to BOMEncoding.\n\t    encoding = BOMEncoding;\n\n\t    // 2. Read three bytes from ioQueue, if BOMEncoding is\n\t    //    UTF-8; otherwise read two bytes.\n\t    //    (Do nothing with those bytes.)\n\t    slice = BOMEncoding === 'UTF-8' ? 3 : 2;\n\t  }\n\n\t  // 3. Process a queue with an instance of encoding’s\n\t  //    decoder, ioQueue, output, and \"replacement\".\n\n\t  // 4. Return output.\n\n\t  const sliced = bytes.slice(slice);\n\t  return new TextDecoder(encoding).decode(sliced)\n\t}\n\n\t/**\n\t * @see https://encoding.spec.whatwg.org/#bom-sniff\n\t * @param {Uint8Array} ioQueue\n\t */\n\tfunction BOMSniffing (ioQueue) {\n\t  // 1. Let BOM be the result of peeking 3 bytes from ioQueue,\n\t  //    converted to a byte sequence.\n\t  const [a, b, c] = ioQueue;\n\n\t  // 2. For each of the rows in the table below, starting with\n\t  //    the first one and going down, if BOM starts with the\n\t  //    bytes given in the first column, then return the\n\t  //    encoding given in the cell in the second column of that\n\t  //    row. Otherwise, return null.\n\t  if (a === 0xEF && b === 0xBB && c === 0xBF) {\n\t    return 'UTF-8'\n\t  } else if (a === 0xFE && b === 0xFF) {\n\t    return 'UTF-16BE'\n\t  } else if (a === 0xFF && b === 0xFE) {\n\t    return 'UTF-16LE'\n\t  }\n\n\t  return null\n\t}\n\n\t/**\n\t * @param {Uint8Array[]} sequences\n\t */\n\tfunction combineByteSequences (sequences) {\n\t  const size = sequences.reduce((a, b) => {\n\t    return a + b.byteLength\n\t  }, 0);\n\n\t  let offset = 0;\n\n\t  return sequences.reduce((a, b) => {\n\t    a.set(b, offset);\n\t    offset += b.byteLength;\n\t    return a\n\t  }, new Uint8Array(size))\n\t}\n\n\tutil$9 = {\n\t  staticPropertyDescriptors,\n\t  readOperation,\n\t  fireAProgressEvent\n\t};\n\treturn util$9;\n}\n\nvar filereader;\nvar hasRequiredFilereader;\n\nfunction requireFilereader () {\n\tif (hasRequiredFilereader) return filereader;\n\thasRequiredFilereader = 1;\n\n\tconst {\n\t  staticPropertyDescriptors,\n\t  readOperation,\n\t  fireAProgressEvent\n\t} = requireUtil$9();\n\tconst {\n\t  kState,\n\t  kError,\n\t  kResult,\n\t  kEvents,\n\t  kAborted\n\t} = requireSymbols$2();\n\tconst { webidl } = requireWebidl();\n\tconst { kEnumerableProperty } = requireUtil$c();\n\n\tclass FileReader extends EventTarget {\n\t  constructor () {\n\t    super();\n\n\t    this[kState] = 'empty';\n\t    this[kResult] = null;\n\t    this[kError] = null;\n\t    this[kEvents] = {\n\t      loadend: null,\n\t      error: null,\n\t      abort: null,\n\t      load: null,\n\t      progress: null,\n\t      loadstart: null\n\t    };\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/FileAPI/#dfn-readAsArrayBuffer\n\t   * @param {import('buffer').Blob} blob\n\t   */\n\t  readAsArrayBuffer (blob) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FileReader.readAsArrayBuffer' });\n\n\t    blob = webidl.converters.Blob(blob, { strict: false });\n\n\t    // The readAsArrayBuffer(blob) method, when invoked,\n\t    // must initiate a read operation for blob with ArrayBuffer.\n\t    readOperation(this, blob, 'ArrayBuffer');\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/FileAPI/#readAsBinaryString\n\t   * @param {import('buffer').Blob} blob\n\t   */\n\t  readAsBinaryString (blob) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FileReader.readAsBinaryString' });\n\n\t    blob = webidl.converters.Blob(blob, { strict: false });\n\n\t    // The readAsBinaryString(blob) method, when invoked,\n\t    // must initiate a read operation for blob with BinaryString.\n\t    readOperation(this, blob, 'BinaryString');\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/FileAPI/#readAsDataText\n\t   * @param {import('buffer').Blob} blob\n\t   * @param {string?} encoding\n\t   */\n\t  readAsText (blob, encoding = undefined) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FileReader.readAsText' });\n\n\t    blob = webidl.converters.Blob(blob, { strict: false });\n\n\t    if (encoding !== undefined) {\n\t      encoding = webidl.converters.DOMString(encoding);\n\t    }\n\n\t    // The readAsText(blob, encoding) method, when invoked,\n\t    // must initiate a read operation for blob with Text and encoding.\n\t    readOperation(this, blob, 'Text', encoding);\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/FileAPI/#dfn-readAsDataURL\n\t   * @param {import('buffer').Blob} blob\n\t   */\n\t  readAsDataURL (blob) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'FileReader.readAsDataURL' });\n\n\t    blob = webidl.converters.Blob(blob, { strict: false });\n\n\t    // The readAsDataURL(blob) method, when invoked, must\n\t    // initiate a read operation for blob with DataURL.\n\t    readOperation(this, blob, 'DataURL');\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/FileAPI/#dfn-abort\n\t   */\n\t  abort () {\n\t    // 1. If this's state is \"empty\" or if this's state is\n\t    //    \"done\" set this's result to null and terminate\n\t    //    this algorithm.\n\t    if (this[kState] === 'empty' || this[kState] === 'done') {\n\t      this[kResult] = null;\n\t      return\n\t    }\n\n\t    // 2. If this's state is \"loading\" set this's state to\n\t    //    \"done\" and set this's result to null.\n\t    if (this[kState] === 'loading') {\n\t      this[kState] = 'done';\n\t      this[kResult] = null;\n\t    }\n\n\t    // 3. If there are any tasks from this on the file reading\n\t    //    task source in an affiliated task queue, then remove\n\t    //    those tasks from that task queue.\n\t    this[kAborted] = true;\n\n\t    // 4. Terminate the algorithm for the read method being processed.\n\t    // TODO\n\n\t    // 5. Fire a progress event called abort at this.\n\t    fireAProgressEvent('abort', this);\n\n\t    // 6. If this's state is not \"loading\", fire a progress\n\t    //    event called loadend at this.\n\t    if (this[kState] !== 'loading') {\n\t      fireAProgressEvent('loadend', this);\n\t    }\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/FileAPI/#dom-filereader-readystate\n\t   */\n\t  get readyState () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    switch (this[kState]) {\n\t      case 'empty': return this.EMPTY\n\t      case 'loading': return this.LOADING\n\t      case 'done': return this.DONE\n\t    }\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/FileAPI/#dom-filereader-result\n\t   */\n\t  get result () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    // The result attribute’s getter, when invoked, must return\n\t    // this's result.\n\t    return this[kResult]\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/FileAPI/#dom-filereader-error\n\t   */\n\t  get error () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    // The error attribute’s getter, when invoked, must return\n\t    // this's error.\n\t    return this[kError]\n\t  }\n\n\t  get onloadend () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    return this[kEvents].loadend\n\t  }\n\n\t  set onloadend (fn) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    if (this[kEvents].loadend) {\n\t      this.removeEventListener('loadend', this[kEvents].loadend);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this[kEvents].loadend = fn;\n\t      this.addEventListener('loadend', fn);\n\t    } else {\n\t      this[kEvents].loadend = null;\n\t    }\n\t  }\n\n\t  get onerror () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    return this[kEvents].error\n\t  }\n\n\t  set onerror (fn) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    if (this[kEvents].error) {\n\t      this.removeEventListener('error', this[kEvents].error);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this[kEvents].error = fn;\n\t      this.addEventListener('error', fn);\n\t    } else {\n\t      this[kEvents].error = null;\n\t    }\n\t  }\n\n\t  get onloadstart () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    return this[kEvents].loadstart\n\t  }\n\n\t  set onloadstart (fn) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    if (this[kEvents].loadstart) {\n\t      this.removeEventListener('loadstart', this[kEvents].loadstart);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this[kEvents].loadstart = fn;\n\t      this.addEventListener('loadstart', fn);\n\t    } else {\n\t      this[kEvents].loadstart = null;\n\t    }\n\t  }\n\n\t  get onprogress () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    return this[kEvents].progress\n\t  }\n\n\t  set onprogress (fn) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    if (this[kEvents].progress) {\n\t      this.removeEventListener('progress', this[kEvents].progress);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this[kEvents].progress = fn;\n\t      this.addEventListener('progress', fn);\n\t    } else {\n\t      this[kEvents].progress = null;\n\t    }\n\t  }\n\n\t  get onload () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    return this[kEvents].load\n\t  }\n\n\t  set onload (fn) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    if (this[kEvents].load) {\n\t      this.removeEventListener('load', this[kEvents].load);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this[kEvents].load = fn;\n\t      this.addEventListener('load', fn);\n\t    } else {\n\t      this[kEvents].load = null;\n\t    }\n\t  }\n\n\t  get onabort () {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    return this[kEvents].abort\n\t  }\n\n\t  set onabort (fn) {\n\t    webidl.brandCheck(this, FileReader);\n\n\t    if (this[kEvents].abort) {\n\t      this.removeEventListener('abort', this[kEvents].abort);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this[kEvents].abort = fn;\n\t      this.addEventListener('abort', fn);\n\t    } else {\n\t      this[kEvents].abort = null;\n\t    }\n\t  }\n\t}\n\n\t// https://w3c.github.io/FileAPI/#dom-filereader-empty\n\tFileReader.EMPTY = FileReader.prototype.EMPTY = 0;\n\t// https://w3c.github.io/FileAPI/#dom-filereader-loading\n\tFileReader.LOADING = FileReader.prototype.LOADING = 1;\n\t// https://w3c.github.io/FileAPI/#dom-filereader-done\n\tFileReader.DONE = FileReader.prototype.DONE = 2;\n\n\tObject.defineProperties(FileReader.prototype, {\n\t  EMPTY: staticPropertyDescriptors,\n\t  LOADING: staticPropertyDescriptors,\n\t  DONE: staticPropertyDescriptors,\n\t  readAsArrayBuffer: kEnumerableProperty,\n\t  readAsBinaryString: kEnumerableProperty,\n\t  readAsText: kEnumerableProperty,\n\t  readAsDataURL: kEnumerableProperty,\n\t  abort: kEnumerableProperty,\n\t  readyState: kEnumerableProperty,\n\t  result: kEnumerableProperty,\n\t  error: kEnumerableProperty,\n\t  onloadstart: kEnumerableProperty,\n\t  onprogress: kEnumerableProperty,\n\t  onload: kEnumerableProperty,\n\t  onabort: kEnumerableProperty,\n\t  onerror: kEnumerableProperty,\n\t  onloadend: kEnumerableProperty,\n\t  [Symbol.toStringTag]: {\n\t    value: 'FileReader',\n\t    writable: false,\n\t    enumerable: false,\n\t    configurable: true\n\t  }\n\t});\n\n\tObject.defineProperties(FileReader, {\n\t  EMPTY: staticPropertyDescriptors,\n\t  LOADING: staticPropertyDescriptors,\n\t  DONE: staticPropertyDescriptors\n\t});\n\n\tfilereader = {\n\t  FileReader\n\t};\n\treturn filereader;\n}\n\nvar symbols$1;\nvar hasRequiredSymbols$1;\n\nfunction requireSymbols$1 () {\n\tif (hasRequiredSymbols$1) return symbols$1;\n\thasRequiredSymbols$1 = 1;\n\n\tsymbols$1 = {\n\t  kConstruct: requireSymbols$4().kConstruct\n\t};\n\treturn symbols$1;\n}\n\nvar util$8;\nvar hasRequiredUtil$8;\n\nfunction requireUtil$8 () {\n\tif (hasRequiredUtil$8) return util$8;\n\thasRequiredUtil$8 = 1;\n\n\tconst assert = require$$0$9;\n\tconst { URLSerializer } = requireDataURL();\n\tconst { isValidHeaderName } = requireUtil$b();\n\n\t/**\n\t * @see https://url.spec.whatwg.org/#concept-url-equals\n\t * @param {URL} A\n\t * @param {URL} B\n\t * @param {boolean | undefined} excludeFragment\n\t * @returns {boolean}\n\t */\n\tfunction urlEquals (A, B, excludeFragment = false) {\n\t  const serializedA = URLSerializer(A, excludeFragment);\n\n\t  const serializedB = URLSerializer(B, excludeFragment);\n\n\t  return serializedA === serializedB\n\t}\n\n\t/**\n\t * @see https://github.com/chromium/chromium/blob/694d20d134cb553d8d89e5500b9148012b1ba299/content/browser/cache_storage/cache_storage_cache.cc#L260-L262\n\t * @param {string} header\n\t */\n\tfunction fieldValues (header) {\n\t  assert(header !== null);\n\n\t  const values = [];\n\n\t  for (let value of header.split(',')) {\n\t    value = value.trim();\n\n\t    if (!value.length) {\n\t      continue\n\t    } else if (!isValidHeaderName(value)) {\n\t      continue\n\t    }\n\n\t    values.push(value);\n\t  }\n\n\t  return values\n\t}\n\n\tutil$8 = {\n\t  urlEquals,\n\t  fieldValues\n\t};\n\treturn util$8;\n}\n\nvar cache$2;\nvar hasRequiredCache$2;\n\nfunction requireCache$2 () {\n\tif (hasRequiredCache$2) return cache$2;\n\thasRequiredCache$2 = 1;\n\n\tconst { kConstruct } = requireSymbols$1();\n\tconst { urlEquals, fieldValues: getFieldValues } = requireUtil$8();\n\tconst { kEnumerableProperty, isDisturbed } = requireUtil$c();\n\tconst { kHeadersList } = requireSymbols$4();\n\tconst { webidl } = requireWebidl();\n\tconst { Response, cloneResponse } = requireResponse();\n\tconst { Request } = requireRequest();\n\tconst { kState, kHeaders, kGuard, kRealm } = requireSymbols$3();\n\tconst { fetching } = requireFetch();\n\tconst { urlIsHttpHttpsScheme, createDeferredPromise, readAllBytes } = requireUtil$b();\n\tconst assert = require$$0$9;\n\tconst { getGlobalDispatcher } = requireGlobal();\n\n\t/**\n\t * @see https://w3c.github.io/ServiceWorker/#dfn-cache-batch-operation\n\t * @typedef {Object} CacheBatchOperation\n\t * @property {'delete' | 'put'} type\n\t * @property {any} request\n\t * @property {any} response\n\t * @property {import('../../types/cache').CacheQueryOptions} options\n\t */\n\n\t/**\n\t * @see https://w3c.github.io/ServiceWorker/#dfn-request-response-list\n\t * @typedef {[any, any][]} requestResponseList\n\t */\n\n\tclass Cache {\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#dfn-relevant-request-response-list\n\t   * @type {requestResponseList}\n\t   */\n\t  #relevantRequestResponseList\n\n\t  constructor () {\n\t    if (arguments[0] !== kConstruct) {\n\t      webidl.illegalConstructor();\n\t    }\n\n\t    this.#relevantRequestResponseList = arguments[1];\n\t  }\n\n\t  async match (request, options = {}) {\n\t    webidl.brandCheck(this, Cache);\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Cache.match' });\n\n\t    request = webidl.converters.RequestInfo(request);\n\t    options = webidl.converters.CacheQueryOptions(options);\n\n\t    const p = await this.matchAll(request, options);\n\n\t    if (p.length === 0) {\n\t      return\n\t    }\n\n\t    return p[0]\n\t  }\n\n\t  async matchAll (request = undefined, options = {}) {\n\t    webidl.brandCheck(this, Cache);\n\n\t    if (request !== undefined) request = webidl.converters.RequestInfo(request);\n\t    options = webidl.converters.CacheQueryOptions(options);\n\n\t    // 1.\n\t    let r = null;\n\n\t    // 2.\n\t    if (request !== undefined) {\n\t      if (request instanceof Request) {\n\t        // 2.1.1\n\t        r = request[kState];\n\n\t        // 2.1.2\n\t        if (r.method !== 'GET' && !options.ignoreMethod) {\n\t          return []\n\t        }\n\t      } else if (typeof request === 'string') {\n\t        // 2.2.1\n\t        r = new Request(request)[kState];\n\t      }\n\t    }\n\n\t    // 5.\n\t    // 5.1\n\t    const responses = [];\n\n\t    // 5.2\n\t    if (request === undefined) {\n\t      // 5.2.1\n\t      for (const requestResponse of this.#relevantRequestResponseList) {\n\t        responses.push(requestResponse[1]);\n\t      }\n\t    } else { // 5.3\n\t      // 5.3.1\n\t      const requestResponses = this.#queryCache(r, options);\n\n\t      // 5.3.2\n\t      for (const requestResponse of requestResponses) {\n\t        responses.push(requestResponse[1]);\n\t      }\n\t    }\n\n\t    // 5.4\n\t    // We don't implement CORs so we don't need to loop over the responses, yay!\n\n\t    // 5.5.1\n\t    const responseList = [];\n\n\t    // 5.5.2\n\t    for (const response of responses) {\n\t      // 5.5.2.1\n\t      const responseObject = new Response(response.body?.source ?? null);\n\t      const body = responseObject[kState].body;\n\t      responseObject[kState] = response;\n\t      responseObject[kState].body = body;\n\t      responseObject[kHeaders][kHeadersList] = response.headersList;\n\t      responseObject[kHeaders][kGuard] = 'immutable';\n\n\t      responseList.push(responseObject);\n\t    }\n\n\t    // 6.\n\t    return Object.freeze(responseList)\n\t  }\n\n\t  async add (request) {\n\t    webidl.brandCheck(this, Cache);\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Cache.add' });\n\n\t    request = webidl.converters.RequestInfo(request);\n\n\t    // 1.\n\t    const requests = [request];\n\n\t    // 2.\n\t    const responseArrayPromise = this.addAll(requests);\n\n\t    // 3.\n\t    return await responseArrayPromise\n\t  }\n\n\t  async addAll (requests) {\n\t    webidl.brandCheck(this, Cache);\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Cache.addAll' });\n\n\t    requests = webidl.converters['sequence<RequestInfo>'](requests);\n\n\t    // 1.\n\t    const responsePromises = [];\n\n\t    // 2.\n\t    const requestList = [];\n\n\t    // 3.\n\t    for (const request of requests) {\n\t      if (typeof request === 'string') {\n\t        continue\n\t      }\n\n\t      // 3.1\n\t      const r = request[kState];\n\n\t      // 3.2\n\t      if (!urlIsHttpHttpsScheme(r.url) || r.method !== 'GET') {\n\t        throw webidl.errors.exception({\n\t          header: 'Cache.addAll',\n\t          message: 'Expected http/s scheme when method is not GET.'\n\t        })\n\t      }\n\t    }\n\n\t    // 4.\n\t    /** @type {ReturnType<typeof fetching>[]} */\n\t    const fetchControllers = [];\n\n\t    // 5.\n\t    for (const request of requests) {\n\t      // 5.1\n\t      const r = new Request(request)[kState];\n\n\t      // 5.2\n\t      if (!urlIsHttpHttpsScheme(r.url)) {\n\t        throw webidl.errors.exception({\n\t          header: 'Cache.addAll',\n\t          message: 'Expected http/s scheme.'\n\t        })\n\t      }\n\n\t      // 5.4\n\t      r.initiator = 'fetch';\n\t      r.destination = 'subresource';\n\n\t      // 5.5\n\t      requestList.push(r);\n\n\t      // 5.6\n\t      const responsePromise = createDeferredPromise();\n\n\t      // 5.7\n\t      fetchControllers.push(fetching({\n\t        request: r,\n\t        dispatcher: getGlobalDispatcher(),\n\t        processResponse (response) {\n\t          // 1.\n\t          if (response.type === 'error' || response.status === 206 || response.status < 200 || response.status > 299) {\n\t            responsePromise.reject(webidl.errors.exception({\n\t              header: 'Cache.addAll',\n\t              message: 'Received an invalid status code or the request failed.'\n\t            }));\n\t          } else if (response.headersList.contains('vary')) { // 2.\n\t            // 2.1\n\t            const fieldValues = getFieldValues(response.headersList.get('vary'));\n\n\t            // 2.2\n\t            for (const fieldValue of fieldValues) {\n\t              // 2.2.1\n\t              if (fieldValue === '*') {\n\t                responsePromise.reject(webidl.errors.exception({\n\t                  header: 'Cache.addAll',\n\t                  message: 'invalid vary field value'\n\t                }));\n\n\t                for (const controller of fetchControllers) {\n\t                  controller.abort();\n\t                }\n\n\t                return\n\t              }\n\t            }\n\t          }\n\t        },\n\t        processResponseEndOfBody (response) {\n\t          // 1.\n\t          if (response.aborted) {\n\t            responsePromise.reject(new DOMException('aborted', 'AbortError'));\n\t            return\n\t          }\n\n\t          // 2.\n\t          responsePromise.resolve(response);\n\t        }\n\t      }));\n\n\t      // 5.8\n\t      responsePromises.push(responsePromise.promise);\n\t    }\n\n\t    // 6.\n\t    const p = Promise.all(responsePromises);\n\n\t    // 7.\n\t    const responses = await p;\n\n\t    // 7.1\n\t    const operations = [];\n\n\t    // 7.2\n\t    let index = 0;\n\n\t    // 7.3\n\t    for (const response of responses) {\n\t      // 7.3.1\n\t      /** @type {CacheBatchOperation} */\n\t      const operation = {\n\t        type: 'put', // 7.3.2\n\t        request: requestList[index], // 7.3.3\n\t        response // 7.3.4\n\t      };\n\n\t      operations.push(operation); // 7.3.5\n\n\t      index++; // 7.3.6\n\t    }\n\n\t    // 7.5\n\t    const cacheJobPromise = createDeferredPromise();\n\n\t    // 7.6.1\n\t    let errorData = null;\n\n\t    // 7.6.2\n\t    try {\n\t      this.#batchCacheOperations(operations);\n\t    } catch (e) {\n\t      errorData = e;\n\t    }\n\n\t    // 7.6.3\n\t    queueMicrotask(() => {\n\t      // 7.6.3.1\n\t      if (errorData === null) {\n\t        cacheJobPromise.resolve(undefined);\n\t      } else {\n\t        // 7.6.3.2\n\t        cacheJobPromise.reject(errorData);\n\t      }\n\t    });\n\n\t    // 7.7\n\t    return cacheJobPromise.promise\n\t  }\n\n\t  async put (request, response) {\n\t    webidl.brandCheck(this, Cache);\n\t    webidl.argumentLengthCheck(arguments, 2, { header: 'Cache.put' });\n\n\t    request = webidl.converters.RequestInfo(request);\n\t    response = webidl.converters.Response(response);\n\n\t    // 1.\n\t    let innerRequest = null;\n\n\t    // 2.\n\t    if (request instanceof Request) {\n\t      innerRequest = request[kState];\n\t    } else { // 3.\n\t      innerRequest = new Request(request)[kState];\n\t    }\n\n\t    // 4.\n\t    if (!urlIsHttpHttpsScheme(innerRequest.url) || innerRequest.method !== 'GET') {\n\t      throw webidl.errors.exception({\n\t        header: 'Cache.put',\n\t        message: 'Expected an http/s scheme when method is not GET'\n\t      })\n\t    }\n\n\t    // 5.\n\t    const innerResponse = response[kState];\n\n\t    // 6.\n\t    if (innerResponse.status === 206) {\n\t      throw webidl.errors.exception({\n\t        header: 'Cache.put',\n\t        message: 'Got 206 status'\n\t      })\n\t    }\n\n\t    // 7.\n\t    if (innerResponse.headersList.contains('vary')) {\n\t      // 7.1.\n\t      const fieldValues = getFieldValues(innerResponse.headersList.get('vary'));\n\n\t      // 7.2.\n\t      for (const fieldValue of fieldValues) {\n\t        // 7.2.1\n\t        if (fieldValue === '*') {\n\t          throw webidl.errors.exception({\n\t            header: 'Cache.put',\n\t            message: 'Got * vary field value'\n\t          })\n\t        }\n\t      }\n\t    }\n\n\t    // 8.\n\t    if (innerResponse.body && (isDisturbed(innerResponse.body.stream) || innerResponse.body.stream.locked)) {\n\t      throw webidl.errors.exception({\n\t        header: 'Cache.put',\n\t        message: 'Response body is locked or disturbed'\n\t      })\n\t    }\n\n\t    // 9.\n\t    const clonedResponse = cloneResponse(innerResponse);\n\n\t    // 10.\n\t    const bodyReadPromise = createDeferredPromise();\n\n\t    // 11.\n\t    if (innerResponse.body != null) {\n\t      // 11.1\n\t      const stream = innerResponse.body.stream;\n\n\t      // 11.2\n\t      const reader = stream.getReader();\n\n\t      // 11.3\n\t      readAllBytes(reader).then(bodyReadPromise.resolve, bodyReadPromise.reject);\n\t    } else {\n\t      bodyReadPromise.resolve(undefined);\n\t    }\n\n\t    // 12.\n\t    /** @type {CacheBatchOperation[]} */\n\t    const operations = [];\n\n\t    // 13.\n\t    /** @type {CacheBatchOperation} */\n\t    const operation = {\n\t      type: 'put', // 14.\n\t      request: innerRequest, // 15.\n\t      response: clonedResponse // 16.\n\t    };\n\n\t    // 17.\n\t    operations.push(operation);\n\n\t    // 19.\n\t    const bytes = await bodyReadPromise.promise;\n\n\t    if (clonedResponse.body != null) {\n\t      clonedResponse.body.source = bytes;\n\t    }\n\n\t    // 19.1\n\t    const cacheJobPromise = createDeferredPromise();\n\n\t    // 19.2.1\n\t    let errorData = null;\n\n\t    // 19.2.2\n\t    try {\n\t      this.#batchCacheOperations(operations);\n\t    } catch (e) {\n\t      errorData = e;\n\t    }\n\n\t    // 19.2.3\n\t    queueMicrotask(() => {\n\t      // 19.2.3.1\n\t      if (errorData === null) {\n\t        cacheJobPromise.resolve();\n\t      } else { // 19.2.3.2\n\t        cacheJobPromise.reject(errorData);\n\t      }\n\t    });\n\n\t    return cacheJobPromise.promise\n\t  }\n\n\t  async delete (request, options = {}) {\n\t    webidl.brandCheck(this, Cache);\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'Cache.delete' });\n\n\t    request = webidl.converters.RequestInfo(request);\n\t    options = webidl.converters.CacheQueryOptions(options);\n\n\t    /**\n\t     * @type {Request}\n\t     */\n\t    let r = null;\n\n\t    if (request instanceof Request) {\n\t      r = request[kState];\n\n\t      if (r.method !== 'GET' && !options.ignoreMethod) {\n\t        return false\n\t      }\n\t    } else {\n\t      assert(typeof request === 'string');\n\n\t      r = new Request(request)[kState];\n\t    }\n\n\t    /** @type {CacheBatchOperation[]} */\n\t    const operations = [];\n\n\t    /** @type {CacheBatchOperation} */\n\t    const operation = {\n\t      type: 'delete',\n\t      request: r,\n\t      options\n\t    };\n\n\t    operations.push(operation);\n\n\t    const cacheJobPromise = createDeferredPromise();\n\n\t    let errorData = null;\n\t    let requestResponses;\n\n\t    try {\n\t      requestResponses = this.#batchCacheOperations(operations);\n\t    } catch (e) {\n\t      errorData = e;\n\t    }\n\n\t    queueMicrotask(() => {\n\t      if (errorData === null) {\n\t        cacheJobPromise.resolve(!!requestResponses?.length);\n\t      } else {\n\t        cacheJobPromise.reject(errorData);\n\t      }\n\t    });\n\n\t    return cacheJobPromise.promise\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#dom-cache-keys\n\t   * @param {any} request\n\t   * @param {import('../../types/cache').CacheQueryOptions} options\n\t   * @returns {readonly Request[]}\n\t   */\n\t  async keys (request = undefined, options = {}) {\n\t    webidl.brandCheck(this, Cache);\n\n\t    if (request !== undefined) request = webidl.converters.RequestInfo(request);\n\t    options = webidl.converters.CacheQueryOptions(options);\n\n\t    // 1.\n\t    let r = null;\n\n\t    // 2.\n\t    if (request !== undefined) {\n\t      // 2.1\n\t      if (request instanceof Request) {\n\t        // 2.1.1\n\t        r = request[kState];\n\n\t        // 2.1.2\n\t        if (r.method !== 'GET' && !options.ignoreMethod) {\n\t          return []\n\t        }\n\t      } else if (typeof request === 'string') { // 2.2\n\t        r = new Request(request)[kState];\n\t      }\n\t    }\n\n\t    // 4.\n\t    const promise = createDeferredPromise();\n\n\t    // 5.\n\t    // 5.1\n\t    const requests = [];\n\n\t    // 5.2\n\t    if (request === undefined) {\n\t      // 5.2.1\n\t      for (const requestResponse of this.#relevantRequestResponseList) {\n\t        // 5.2.1.1\n\t        requests.push(requestResponse[0]);\n\t      }\n\t    } else { // 5.3\n\t      // 5.3.1\n\t      const requestResponses = this.#queryCache(r, options);\n\n\t      // 5.3.2\n\t      for (const requestResponse of requestResponses) {\n\t        // 5.3.2.1\n\t        requests.push(requestResponse[0]);\n\t      }\n\t    }\n\n\t    // 5.4\n\t    queueMicrotask(() => {\n\t      // 5.4.1\n\t      const requestList = [];\n\n\t      // 5.4.2\n\t      for (const request of requests) {\n\t        const requestObject = new Request('https://a');\n\t        requestObject[kState] = request;\n\t        requestObject[kHeaders][kHeadersList] = request.headersList;\n\t        requestObject[kHeaders][kGuard] = 'immutable';\n\t        requestObject[kRealm] = request.client;\n\n\t        // 5.4.2.1\n\t        requestList.push(requestObject);\n\t      }\n\n\t      // 5.4.3\n\t      promise.resolve(Object.freeze(requestList));\n\t    });\n\n\t    return promise.promise\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#batch-cache-operations-algorithm\n\t   * @param {CacheBatchOperation[]} operations\n\t   * @returns {requestResponseList}\n\t   */\n\t  #batchCacheOperations (operations) {\n\t    // 1.\n\t    const cache = this.#relevantRequestResponseList;\n\n\t    // 2.\n\t    const backupCache = [...cache];\n\n\t    // 3.\n\t    const addedItems = [];\n\n\t    // 4.1\n\t    const resultList = [];\n\n\t    try {\n\t      // 4.2\n\t      for (const operation of operations) {\n\t        // 4.2.1\n\t        if (operation.type !== 'delete' && operation.type !== 'put') {\n\t          throw webidl.errors.exception({\n\t            header: 'Cache.#batchCacheOperations',\n\t            message: 'operation type does not match \"delete\" or \"put\"'\n\t          })\n\t        }\n\n\t        // 4.2.2\n\t        if (operation.type === 'delete' && operation.response != null) {\n\t          throw webidl.errors.exception({\n\t            header: 'Cache.#batchCacheOperations',\n\t            message: 'delete operation should not have an associated response'\n\t          })\n\t        }\n\n\t        // 4.2.3\n\t        if (this.#queryCache(operation.request, operation.options, addedItems).length) {\n\t          throw new DOMException('???', 'InvalidStateError')\n\t        }\n\n\t        // 4.2.4\n\t        let requestResponses;\n\n\t        // 4.2.5\n\t        if (operation.type === 'delete') {\n\t          // 4.2.5.1\n\t          requestResponses = this.#queryCache(operation.request, operation.options);\n\n\t          // TODO: the spec is wrong, this is needed to pass WPTs\n\t          if (requestResponses.length === 0) {\n\t            return []\n\t          }\n\n\t          // 4.2.5.2\n\t          for (const requestResponse of requestResponses) {\n\t            const idx = cache.indexOf(requestResponse);\n\t            assert(idx !== -1);\n\n\t            // 4.2.5.2.1\n\t            cache.splice(idx, 1);\n\t          }\n\t        } else if (operation.type === 'put') { // 4.2.6\n\t          // 4.2.6.1\n\t          if (operation.response == null) {\n\t            throw webidl.errors.exception({\n\t              header: 'Cache.#batchCacheOperations',\n\t              message: 'put operation should have an associated response'\n\t            })\n\t          }\n\n\t          // 4.2.6.2\n\t          const r = operation.request;\n\n\t          // 4.2.6.3\n\t          if (!urlIsHttpHttpsScheme(r.url)) {\n\t            throw webidl.errors.exception({\n\t              header: 'Cache.#batchCacheOperations',\n\t              message: 'expected http or https scheme'\n\t            })\n\t          }\n\n\t          // 4.2.6.4\n\t          if (r.method !== 'GET') {\n\t            throw webidl.errors.exception({\n\t              header: 'Cache.#batchCacheOperations',\n\t              message: 'not get method'\n\t            })\n\t          }\n\n\t          // 4.2.6.5\n\t          if (operation.options != null) {\n\t            throw webidl.errors.exception({\n\t              header: 'Cache.#batchCacheOperations',\n\t              message: 'options must not be defined'\n\t            })\n\t          }\n\n\t          // 4.2.6.6\n\t          requestResponses = this.#queryCache(operation.request);\n\n\t          // 4.2.6.7\n\t          for (const requestResponse of requestResponses) {\n\t            const idx = cache.indexOf(requestResponse);\n\t            assert(idx !== -1);\n\n\t            // 4.2.6.7.1\n\t            cache.splice(idx, 1);\n\t          }\n\n\t          // 4.2.6.8\n\t          cache.push([operation.request, operation.response]);\n\n\t          // 4.2.6.10\n\t          addedItems.push([operation.request, operation.response]);\n\t        }\n\n\t        // 4.2.7\n\t        resultList.push([operation.request, operation.response]);\n\t      }\n\n\t      // 4.3\n\t      return resultList\n\t    } catch (e) { // 5.\n\t      // 5.1\n\t      this.#relevantRequestResponseList.length = 0;\n\n\t      // 5.2\n\t      this.#relevantRequestResponseList = backupCache;\n\n\t      // 5.3\n\t      throw e\n\t    }\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#query-cache\n\t   * @param {any} requestQuery\n\t   * @param {import('../../types/cache').CacheQueryOptions} options\n\t   * @param {requestResponseList} targetStorage\n\t   * @returns {requestResponseList}\n\t   */\n\t  #queryCache (requestQuery, options, targetStorage) {\n\t    /** @type {requestResponseList} */\n\t    const resultList = [];\n\n\t    const storage = targetStorage ?? this.#relevantRequestResponseList;\n\n\t    for (const requestResponse of storage) {\n\t      const [cachedRequest, cachedResponse] = requestResponse;\n\t      if (this.#requestMatchesCachedItem(requestQuery, cachedRequest, cachedResponse, options)) {\n\t        resultList.push(requestResponse);\n\t      }\n\t    }\n\n\t    return resultList\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#request-matches-cached-item-algorithm\n\t   * @param {any} requestQuery\n\t   * @param {any} request\n\t   * @param {any | null} response\n\t   * @param {import('../../types/cache').CacheQueryOptions | undefined} options\n\t   * @returns {boolean}\n\t   */\n\t  #requestMatchesCachedItem (requestQuery, request, response = null, options) {\n\t    // if (options?.ignoreMethod === false && request.method === 'GET') {\n\t    //   return false\n\t    // }\n\n\t    const queryURL = new URL(requestQuery.url);\n\n\t    const cachedURL = new URL(request.url);\n\n\t    if (options?.ignoreSearch) {\n\t      cachedURL.search = '';\n\n\t      queryURL.search = '';\n\t    }\n\n\t    if (!urlEquals(queryURL, cachedURL, true)) {\n\t      return false\n\t    }\n\n\t    if (\n\t      response == null ||\n\t      options?.ignoreVary ||\n\t      !response.headersList.contains('vary')\n\t    ) {\n\t      return true\n\t    }\n\n\t    const fieldValues = getFieldValues(response.headersList.get('vary'));\n\n\t    for (const fieldValue of fieldValues) {\n\t      if (fieldValue === '*') {\n\t        return false\n\t      }\n\n\t      const requestValue = request.headersList.get(fieldValue);\n\t      const queryValue = requestQuery.headersList.get(fieldValue);\n\n\t      // If one has the header and the other doesn't, or one has\n\t      // a different value than the other, return false\n\t      if (requestValue !== queryValue) {\n\t        return false\n\t      }\n\t    }\n\n\t    return true\n\t  }\n\t}\n\n\tObject.defineProperties(Cache.prototype, {\n\t  [Symbol.toStringTag]: {\n\t    value: 'Cache',\n\t    configurable: true\n\t  },\n\t  match: kEnumerableProperty,\n\t  matchAll: kEnumerableProperty,\n\t  add: kEnumerableProperty,\n\t  addAll: kEnumerableProperty,\n\t  put: kEnumerableProperty,\n\t  delete: kEnumerableProperty,\n\t  keys: kEnumerableProperty\n\t});\n\n\tconst cacheQueryOptionConverters = [\n\t  {\n\t    key: 'ignoreSearch',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  },\n\t  {\n\t    key: 'ignoreMethod',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  },\n\t  {\n\t    key: 'ignoreVary',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  }\n\t];\n\n\twebidl.converters.CacheQueryOptions = webidl.dictionaryConverter(cacheQueryOptionConverters);\n\n\twebidl.converters.MultiCacheQueryOptions = webidl.dictionaryConverter([\n\t  ...cacheQueryOptionConverters,\n\t  {\n\t    key: 'cacheName',\n\t    converter: webidl.converters.DOMString\n\t  }\n\t]);\n\n\twebidl.converters.Response = webidl.interfaceConverter(Response);\n\n\twebidl.converters['sequence<RequestInfo>'] = webidl.sequenceConverter(\n\t  webidl.converters.RequestInfo\n\t);\n\n\tcache$2 = {\n\t  Cache\n\t};\n\treturn cache$2;\n}\n\nvar cachestorage;\nvar hasRequiredCachestorage;\n\nfunction requireCachestorage () {\n\tif (hasRequiredCachestorage) return cachestorage;\n\thasRequiredCachestorage = 1;\n\n\tconst { kConstruct } = requireSymbols$1();\n\tconst { Cache } = requireCache$2();\n\tconst { webidl } = requireWebidl();\n\tconst { kEnumerableProperty } = requireUtil$c();\n\n\tclass CacheStorage {\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#dfn-relevant-name-to-cache-map\n\t   * @type {Map<string, import('./cache').requestResponseList}\n\t   */\n\t  #caches = new Map()\n\n\t  constructor () {\n\t    if (arguments[0] !== kConstruct) {\n\t      webidl.illegalConstructor();\n\t    }\n\t  }\n\n\t  async match (request, options = {}) {\n\t    webidl.brandCheck(this, CacheStorage);\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'CacheStorage.match' });\n\n\t    request = webidl.converters.RequestInfo(request);\n\t    options = webidl.converters.MultiCacheQueryOptions(options);\n\n\t    // 1.\n\t    if (options.cacheName != null) {\n\t      // 1.1.1.1\n\t      if (this.#caches.has(options.cacheName)) {\n\t        // 1.1.1.1.1\n\t        const cacheList = this.#caches.get(options.cacheName);\n\t        const cache = new Cache(kConstruct, cacheList);\n\n\t        return await cache.match(request, options)\n\t      }\n\t    } else { // 2.\n\t      // 2.2\n\t      for (const cacheList of this.#caches.values()) {\n\t        const cache = new Cache(kConstruct, cacheList);\n\n\t        // 2.2.1.2\n\t        const response = await cache.match(request, options);\n\n\t        if (response !== undefined) {\n\t          return response\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#cache-storage-has\n\t   * @param {string} cacheName\n\t   * @returns {Promise<boolean>}\n\t   */\n\t  async has (cacheName) {\n\t    webidl.brandCheck(this, CacheStorage);\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'CacheStorage.has' });\n\n\t    cacheName = webidl.converters.DOMString(cacheName);\n\n\t    // 2.1.1\n\t    // 2.2\n\t    return this.#caches.has(cacheName)\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#dom-cachestorage-open\n\t   * @param {string} cacheName\n\t   * @returns {Promise<Cache>}\n\t   */\n\t  async open (cacheName) {\n\t    webidl.brandCheck(this, CacheStorage);\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'CacheStorage.open' });\n\n\t    cacheName = webidl.converters.DOMString(cacheName);\n\n\t    // 2.1\n\t    if (this.#caches.has(cacheName)) {\n\t      // await caches.open('v1') !== await caches.open('v1')\n\n\t      // 2.1.1\n\t      const cache = this.#caches.get(cacheName);\n\n\t      // 2.1.1.1\n\t      return new Cache(kConstruct, cache)\n\t    }\n\n\t    // 2.2\n\t    const cache = [];\n\n\t    // 2.3\n\t    this.#caches.set(cacheName, cache);\n\n\t    // 2.4\n\t    return new Cache(kConstruct, cache)\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#cache-storage-delete\n\t   * @param {string} cacheName\n\t   * @returns {Promise<boolean>}\n\t   */\n\t  async delete (cacheName) {\n\t    webidl.brandCheck(this, CacheStorage);\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'CacheStorage.delete' });\n\n\t    cacheName = webidl.converters.DOMString(cacheName);\n\n\t    return this.#caches.delete(cacheName)\n\t  }\n\n\t  /**\n\t   * @see https://w3c.github.io/ServiceWorker/#cache-storage-keys\n\t   * @returns {string[]}\n\t   */\n\t  async keys () {\n\t    webidl.brandCheck(this, CacheStorage);\n\n\t    // 2.1\n\t    const keys = this.#caches.keys();\n\n\t    // 2.2\n\t    return [...keys]\n\t  }\n\t}\n\n\tObject.defineProperties(CacheStorage.prototype, {\n\t  [Symbol.toStringTag]: {\n\t    value: 'CacheStorage',\n\t    configurable: true\n\t  },\n\t  match: kEnumerableProperty,\n\t  has: kEnumerableProperty,\n\t  open: kEnumerableProperty,\n\t  delete: kEnumerableProperty,\n\t  keys: kEnumerableProperty\n\t});\n\n\tcachestorage = {\n\t  CacheStorage\n\t};\n\treturn cachestorage;\n}\n\nvar constants$5;\nvar hasRequiredConstants$5;\n\nfunction requireConstants$5 () {\n\tif (hasRequiredConstants$5) return constants$5;\n\thasRequiredConstants$5 = 1;\n\n\t// https://wicg.github.io/cookie-store/#cookie-maximum-attribute-value-size\n\tconst maxAttributeValueSize = 1024;\n\n\t// https://wicg.github.io/cookie-store/#cookie-maximum-name-value-pair-size\n\tconst maxNameValuePairSize = 4096;\n\n\tconstants$5 = {\n\t  maxAttributeValueSize,\n\t  maxNameValuePairSize\n\t};\n\treturn constants$5;\n}\n\nvar util$7;\nvar hasRequiredUtil$7;\n\nfunction requireUtil$7 () {\n\tif (hasRequiredUtil$7) return util$7;\n\thasRequiredUtil$7 = 1;\n\n\t/**\n\t * @param {string} value\n\t * @returns {boolean}\n\t */\n\tfunction isCTLExcludingHtab (value) {\n\t  if (value.length === 0) {\n\t    return false\n\t  }\n\n\t  for (const char of value) {\n\t    const code = char.charCodeAt(0);\n\n\t    if (\n\t      (code >= 0x00 || code <= 0x08) ||\n\t      (code >= 0x0A || code <= 0x1F) ||\n\t      code === 0x7F\n\t    ) {\n\t      return false\n\t    }\n\t  }\n\t}\n\n\t/**\n\t CHAR           = <any US-ASCII character (octets 0 - 127)>\n\t token          = 1*<any CHAR except CTLs or separators>\n\t separators     = \"(\" | \")\" | \"<\" | \">\" | \"@\"\n\t                | \",\" | \";\" | \":\" | \"\\\" | <\">\n\t                | \"/\" | \"[\" | \"]\" | \"?\" | \"=\"\n\t                | \"{\" | \"}\" | SP | HT\n\t * @param {string} name\n\t */\n\tfunction validateCookieName (name) {\n\t  for (const char of name) {\n\t    const code = char.charCodeAt(0);\n\n\t    if (\n\t      (code <= 0x20 || code > 0x7F) ||\n\t      char === '(' ||\n\t      char === ')' ||\n\t      char === '>' ||\n\t      char === '<' ||\n\t      char === '@' ||\n\t      char === ',' ||\n\t      char === ';' ||\n\t      char === ':' ||\n\t      char === '\\\\' ||\n\t      char === '\"' ||\n\t      char === '/' ||\n\t      char === '[' ||\n\t      char === ']' ||\n\t      char === '?' ||\n\t      char === '=' ||\n\t      char === '{' ||\n\t      char === '}'\n\t    ) {\n\t      throw new Error('Invalid cookie name')\n\t    }\n\t  }\n\t}\n\n\t/**\n\t cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )\n\t cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E\n\t                       ; US-ASCII characters excluding CTLs,\n\t                       ; whitespace DQUOTE, comma, semicolon,\n\t                       ; and backslash\n\t * @param {string} value\n\t */\n\tfunction validateCookieValue (value) {\n\t  for (const char of value) {\n\t    const code = char.charCodeAt(0);\n\n\t    if (\n\t      code < 0x21 || // exclude CTLs (0-31)\n\t      code === 0x22 ||\n\t      code === 0x2C ||\n\t      code === 0x3B ||\n\t      code === 0x5C ||\n\t      code > 0x7E // non-ascii\n\t    ) {\n\t      throw new Error('Invalid header value')\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * path-value        = <any CHAR except CTLs or \";\">\n\t * @param {string} path\n\t */\n\tfunction validateCookiePath (path) {\n\t  for (const char of path) {\n\t    const code = char.charCodeAt(0);\n\n\t    if (code < 0x21 || char === ';') {\n\t      throw new Error('Invalid cookie path')\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * I have no idea why these values aren't allowed to be honest,\n\t * but Deno tests these. - Khafra\n\t * @param {string} domain\n\t */\n\tfunction validateCookieDomain (domain) {\n\t  if (\n\t    domain.startsWith('-') ||\n\t    domain.endsWith('.') ||\n\t    domain.endsWith('-')\n\t  ) {\n\t    throw new Error('Invalid cookie domain')\n\t  }\n\t}\n\n\t/**\n\t * @see https://www.rfc-editor.org/rfc/rfc7231#section-7.1.1.1\n\t * @param {number|Date} date\n\t  IMF-fixdate  = day-name \",\" SP date1 SP time-of-day SP GMT\n\t  ; fixed length/zone/capitalization subset of the format\n\t  ; see Section 3.3 of [RFC5322]\n\n\t  day-name     = %x4D.6F.6E ; \"Mon\", case-sensitive\n\t              / %x54.75.65 ; \"Tue\", case-sensitive\n\t              / %x57.65.64 ; \"Wed\", case-sensitive\n\t              / %x54.68.75 ; \"Thu\", case-sensitive\n\t              / %x46.72.69 ; \"Fri\", case-sensitive\n\t              / %x53.61.74 ; \"Sat\", case-sensitive\n\t              / %x53.75.6E ; \"Sun\", case-sensitive\n\t  date1        = day SP month SP year\n\t                  ; e.g., 02 Jun 1982\n\n\t  day          = 2DIGIT\n\t  month        = %x4A.61.6E ; \"Jan\", case-sensitive\n\t              / %x46.65.62 ; \"Feb\", case-sensitive\n\t              / %x4D.61.72 ; \"Mar\", case-sensitive\n\t              / %x41.70.72 ; \"Apr\", case-sensitive\n\t              / %x4D.61.79 ; \"May\", case-sensitive\n\t              / %x4A.75.6E ; \"Jun\", case-sensitive\n\t              / %x4A.75.6C ; \"Jul\", case-sensitive\n\t              / %x41.75.67 ; \"Aug\", case-sensitive\n\t              / %x53.65.70 ; \"Sep\", case-sensitive\n\t              / %x4F.63.74 ; \"Oct\", case-sensitive\n\t              / %x4E.6F.76 ; \"Nov\", case-sensitive\n\t              / %x44.65.63 ; \"Dec\", case-sensitive\n\t  year         = 4DIGIT\n\n\t  GMT          = %x47.4D.54 ; \"GMT\", case-sensitive\n\n\t  time-of-day  = hour \":\" minute \":\" second\n\t              ; 00:00:00 - 23:59:60 (leap second)\n\n\t  hour         = 2DIGIT\n\t  minute       = 2DIGIT\n\t  second       = 2DIGIT\n\t */\n\tfunction toIMFDate (date) {\n\t  if (typeof date === 'number') {\n\t    date = new Date(date);\n\t  }\n\n\t  const days = [\n\t    'Sun', 'Mon', 'Tue', 'Wed',\n\t    'Thu', 'Fri', 'Sat'\n\t  ];\n\n\t  const months = [\n\t    'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',\n\t    'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'\n\t  ];\n\n\t  const dayName = days[date.getUTCDay()];\n\t  const day = date.getUTCDate().toString().padStart(2, '0');\n\t  const month = months[date.getUTCMonth()];\n\t  const year = date.getUTCFullYear();\n\t  const hour = date.getUTCHours().toString().padStart(2, '0');\n\t  const minute = date.getUTCMinutes().toString().padStart(2, '0');\n\t  const second = date.getUTCSeconds().toString().padStart(2, '0');\n\n\t  return `${dayName}, ${day} ${month} ${year} ${hour}:${minute}:${second} GMT`\n\t}\n\n\t/**\n\t max-age-av        = \"Max-Age=\" non-zero-digit *DIGIT\n\t                       ; In practice, both expires-av and max-age-av\n\t                       ; are limited to dates representable by the\n\t                       ; user agent.\n\t * @param {number} maxAge\n\t */\n\tfunction validateCookieMaxAge (maxAge) {\n\t  if (maxAge < 0) {\n\t    throw new Error('Invalid cookie max-age')\n\t  }\n\t}\n\n\t/**\n\t * @see https://www.rfc-editor.org/rfc/rfc6265#section-4.1.1\n\t * @param {import('./index').Cookie} cookie\n\t */\n\tfunction stringify (cookie) {\n\t  if (cookie.name.length === 0) {\n\t    return null\n\t  }\n\n\t  validateCookieName(cookie.name);\n\t  validateCookieValue(cookie.value);\n\n\t  const out = [`${cookie.name}=${cookie.value}`];\n\n\t  // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-prefixes-00#section-3.1\n\t  // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-prefixes-00#section-3.2\n\t  if (cookie.name.startsWith('__Secure-')) {\n\t    cookie.secure = true;\n\t  }\n\n\t  if (cookie.name.startsWith('__Host-')) {\n\t    cookie.secure = true;\n\t    cookie.domain = null;\n\t    cookie.path = '/';\n\t  }\n\n\t  if (cookie.secure) {\n\t    out.push('Secure');\n\t  }\n\n\t  if (cookie.httpOnly) {\n\t    out.push('HttpOnly');\n\t  }\n\n\t  if (typeof cookie.maxAge === 'number') {\n\t    validateCookieMaxAge(cookie.maxAge);\n\t    out.push(`Max-Age=${cookie.maxAge}`);\n\t  }\n\n\t  if (cookie.domain) {\n\t    validateCookieDomain(cookie.domain);\n\t    out.push(`Domain=${cookie.domain}`);\n\t  }\n\n\t  if (cookie.path) {\n\t    validateCookiePath(cookie.path);\n\t    out.push(`Path=${cookie.path}`);\n\t  }\n\n\t  if (cookie.expires && cookie.expires.toString() !== 'Invalid Date') {\n\t    out.push(`Expires=${toIMFDate(cookie.expires)}`);\n\t  }\n\n\t  if (cookie.sameSite) {\n\t    out.push(`SameSite=${cookie.sameSite}`);\n\t  }\n\n\t  for (const part of cookie.unparsed) {\n\t    if (!part.includes('=')) {\n\t      throw new Error('Invalid unparsed')\n\t    }\n\n\t    const [key, ...value] = part.split('=');\n\n\t    out.push(`${key.trim()}=${value.join('=')}`);\n\t  }\n\n\t  return out.join('; ')\n\t}\n\n\tutil$7 = {\n\t  isCTLExcludingHtab,\n\t  validateCookieName,\n\t  validateCookiePath,\n\t  validateCookieValue,\n\t  toIMFDate,\n\t  stringify\n\t};\n\treturn util$7;\n}\n\nvar parse$2;\nvar hasRequiredParse$1;\n\nfunction requireParse$1 () {\n\tif (hasRequiredParse$1) return parse$2;\n\thasRequiredParse$1 = 1;\n\n\tconst { maxNameValuePairSize, maxAttributeValueSize } = requireConstants$5();\n\tconst { isCTLExcludingHtab } = requireUtil$7();\n\tconst { collectASequenceOfCodePointsFast } = requireDataURL();\n\tconst assert = require$$0$9;\n\n\t/**\n\t * @description Parses the field-value attributes of a set-cookie header string.\n\t * @see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4\n\t * @param {string} header\n\t * @returns if the header is invalid, null will be returned\n\t */\n\tfunction parseSetCookie (header) {\n\t  // 1. If the set-cookie-string contains a %x00-08 / %x0A-1F / %x7F\n\t  //    character (CTL characters excluding HTAB): Abort these steps and\n\t  //    ignore the set-cookie-string entirely.\n\t  if (isCTLExcludingHtab(header)) {\n\t    return null\n\t  }\n\n\t  let nameValuePair = '';\n\t  let unparsedAttributes = '';\n\t  let name = '';\n\t  let value = '';\n\n\t  // 2. If the set-cookie-string contains a %x3B (\";\") character:\n\t  if (header.includes(';')) {\n\t    // 1. The name-value-pair string consists of the characters up to,\n\t    //    but not including, the first %x3B (\";\"), and the unparsed-\n\t    //    attributes consist of the remainder of the set-cookie-string\n\t    //    (including the %x3B (\";\") in question).\n\t    const position = { position: 0 };\n\n\t    nameValuePair = collectASequenceOfCodePointsFast(';', header, position);\n\t    unparsedAttributes = header.slice(position.position);\n\t  } else {\n\t    // Otherwise:\n\n\t    // 1. The name-value-pair string consists of all the characters\n\t    //    contained in the set-cookie-string, and the unparsed-\n\t    //    attributes is the empty string.\n\t    nameValuePair = header;\n\t  }\n\n\t  // 3. If the name-value-pair string lacks a %x3D (\"=\") character, then\n\t  //    the name string is empty, and the value string is the value of\n\t  //    name-value-pair.\n\t  if (!nameValuePair.includes('=')) {\n\t    value = nameValuePair;\n\t  } else {\n\t    //    Otherwise, the name string consists of the characters up to, but\n\t    //    not including, the first %x3D (\"=\") character, and the (possibly\n\t    //    empty) value string consists of the characters after the first\n\t    //    %x3D (\"=\") character.\n\t    const position = { position: 0 };\n\t    name = collectASequenceOfCodePointsFast(\n\t      '=',\n\t      nameValuePair,\n\t      position\n\t    );\n\t    value = nameValuePair.slice(position.position + 1);\n\t  }\n\n\t  // 4. Remove any leading or trailing WSP characters from the name\n\t  //    string and the value string.\n\t  name = name.trim();\n\t  value = value.trim();\n\n\t  // 5. If the sum of the lengths of the name string and the value string\n\t  //    is more than 4096 octets, abort these steps and ignore the set-\n\t  //    cookie-string entirely.\n\t  if (name.length + value.length > maxNameValuePairSize) {\n\t    return null\n\t  }\n\n\t  // 6. The cookie-name is the name string, and the cookie-value is the\n\t  //    value string.\n\t  return {\n\t    name, value, ...parseUnparsedAttributes(unparsedAttributes)\n\t  }\n\t}\n\n\t/**\n\t * Parses the remaining attributes of a set-cookie header\n\t * @see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4\n\t * @param {string} unparsedAttributes\n\t * @param {[Object.<string, unknown>]={}} cookieAttributeList\n\t */\n\tfunction parseUnparsedAttributes (unparsedAttributes, cookieAttributeList = {}) {\n\t  // 1. If the unparsed-attributes string is empty, skip the rest of\n\t  //    these steps.\n\t  if (unparsedAttributes.length === 0) {\n\t    return cookieAttributeList\n\t  }\n\n\t  // 2. Discard the first character of the unparsed-attributes (which\n\t  //    will be a %x3B (\";\") character).\n\t  assert(unparsedAttributes[0] === ';');\n\t  unparsedAttributes = unparsedAttributes.slice(1);\n\n\t  let cookieAv = '';\n\n\t  // 3. If the remaining unparsed-attributes contains a %x3B (\";\")\n\t  //    character:\n\t  if (unparsedAttributes.includes(';')) {\n\t    // 1. Consume the characters of the unparsed-attributes up to, but\n\t    //    not including, the first %x3B (\";\") character.\n\t    cookieAv = collectASequenceOfCodePointsFast(\n\t      ';',\n\t      unparsedAttributes,\n\t      { position: 0 }\n\t    );\n\t    unparsedAttributes = unparsedAttributes.slice(cookieAv.length);\n\t  } else {\n\t    // Otherwise:\n\n\t    // 1. Consume the remainder of the unparsed-attributes.\n\t    cookieAv = unparsedAttributes;\n\t    unparsedAttributes = '';\n\t  }\n\n\t  // Let the cookie-av string be the characters consumed in this step.\n\n\t  let attributeName = '';\n\t  let attributeValue = '';\n\n\t  // 4. If the cookie-av string contains a %x3D (\"=\") character:\n\t  if (cookieAv.includes('=')) {\n\t    // 1. The (possibly empty) attribute-name string consists of the\n\t    //    characters up to, but not including, the first %x3D (\"=\")\n\t    //    character, and the (possibly empty) attribute-value string\n\t    //    consists of the characters after the first %x3D (\"=\")\n\t    //    character.\n\t    const position = { position: 0 };\n\n\t    attributeName = collectASequenceOfCodePointsFast(\n\t      '=',\n\t      cookieAv,\n\t      position\n\t    );\n\t    attributeValue = cookieAv.slice(position.position + 1);\n\t  } else {\n\t    // Otherwise:\n\n\t    // 1. The attribute-name string consists of the entire cookie-av\n\t    //    string, and the attribute-value string is empty.\n\t    attributeName = cookieAv;\n\t  }\n\n\t  // 5. Remove any leading or trailing WSP characters from the attribute-\n\t  //    name string and the attribute-value string.\n\t  attributeName = attributeName.trim();\n\t  attributeValue = attributeValue.trim();\n\n\t  // 6. If the attribute-value is longer than 1024 octets, ignore the\n\t  //    cookie-av string and return to Step 1 of this algorithm.\n\t  if (attributeValue.length > maxAttributeValueSize) {\n\t    return parseUnparsedAttributes(unparsedAttributes, cookieAttributeList)\n\t  }\n\n\t  // 7. Process the attribute-name and attribute-value according to the\n\t  //    requirements in the following subsections.  (Notice that\n\t  //    attributes with unrecognized attribute-names are ignored.)\n\t  const attributeNameLowercase = attributeName.toLowerCase();\n\n\t  // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.1\n\t  // If the attribute-name case-insensitively matches the string\n\t  // \"Expires\", the user agent MUST process the cookie-av as follows.\n\t  if (attributeNameLowercase === 'expires') {\n\t    // 1. Let the expiry-time be the result of parsing the attribute-value\n\t    //    as cookie-date (see Section 5.1.1).\n\t    const expiryTime = new Date(attributeValue);\n\n\t    // 2. If the attribute-value failed to parse as a cookie date, ignore\n\t    //    the cookie-av.\n\n\t    cookieAttributeList.expires = expiryTime;\n\t  } else if (attributeNameLowercase === 'max-age') {\n\t    // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.2\n\t    // If the attribute-name case-insensitively matches the string \"Max-\n\t    // Age\", the user agent MUST process the cookie-av as follows.\n\n\t    // 1. If the first character of the attribute-value is not a DIGIT or a\n\t    //    \"-\" character, ignore the cookie-av.\n\t    const charCode = attributeValue.charCodeAt(0);\n\n\t    if ((charCode < 48 || charCode > 57) && attributeValue[0] !== '-') {\n\t      return parseUnparsedAttributes(unparsedAttributes, cookieAttributeList)\n\t    }\n\n\t    // 2. If the remainder of attribute-value contains a non-DIGIT\n\t    //    character, ignore the cookie-av.\n\t    if (!/^\\d+$/.test(attributeValue)) {\n\t      return parseUnparsedAttributes(unparsedAttributes, cookieAttributeList)\n\t    }\n\n\t    // 3. Let delta-seconds be the attribute-value converted to an integer.\n\t    const deltaSeconds = Number(attributeValue);\n\n\t    // 4. Let cookie-age-limit be the maximum age of the cookie (which\n\t    //    SHOULD be 400 days or less, see Section 4.1.2.2).\n\n\t    // 5. Set delta-seconds to the smaller of its present value and cookie-\n\t    //    age-limit.\n\t    // deltaSeconds = Math.min(deltaSeconds * 1000, maxExpiresMs)\n\n\t    // 6. If delta-seconds is less than or equal to zero (0), let expiry-\n\t    //    time be the earliest representable date and time.  Otherwise, let\n\t    //    the expiry-time be the current date and time plus delta-seconds\n\t    //    seconds.\n\t    // const expiryTime = deltaSeconds <= 0 ? Date.now() : Date.now() + deltaSeconds\n\n\t    // 7. Append an attribute to the cookie-attribute-list with an\n\t    //    attribute-name of Max-Age and an attribute-value of expiry-time.\n\t    cookieAttributeList.maxAge = deltaSeconds;\n\t  } else if (attributeNameLowercase === 'domain') {\n\t    // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.3\n\t    // If the attribute-name case-insensitively matches the string \"Domain\",\n\t    // the user agent MUST process the cookie-av as follows.\n\n\t    // 1. Let cookie-domain be the attribute-value.\n\t    let cookieDomain = attributeValue;\n\n\t    // 2. If cookie-domain starts with %x2E (\".\"), let cookie-domain be\n\t    //    cookie-domain without its leading %x2E (\".\").\n\t    if (cookieDomain[0] === '.') {\n\t      cookieDomain = cookieDomain.slice(1);\n\t    }\n\n\t    // 3. Convert the cookie-domain to lower case.\n\t    cookieDomain = cookieDomain.toLowerCase();\n\n\t    // 4. Append an attribute to the cookie-attribute-list with an\n\t    //    attribute-name of Domain and an attribute-value of cookie-domain.\n\t    cookieAttributeList.domain = cookieDomain;\n\t  } else if (attributeNameLowercase === 'path') {\n\t    // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.4\n\t    // If the attribute-name case-insensitively matches the string \"Path\",\n\t    // the user agent MUST process the cookie-av as follows.\n\n\t    // 1. If the attribute-value is empty or if the first character of the\n\t    //    attribute-value is not %x2F (\"/\"):\n\t    let cookiePath = '';\n\t    if (attributeValue.length === 0 || attributeValue[0] !== '/') {\n\t      // 1. Let cookie-path be the default-path.\n\t      cookiePath = '/';\n\t    } else {\n\t      // Otherwise:\n\n\t      // 1. Let cookie-path be the attribute-value.\n\t      cookiePath = attributeValue;\n\t    }\n\n\t    // 2. Append an attribute to the cookie-attribute-list with an\n\t    //    attribute-name of Path and an attribute-value of cookie-path.\n\t    cookieAttributeList.path = cookiePath;\n\t  } else if (attributeNameLowercase === 'secure') {\n\t    // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.5\n\t    // If the attribute-name case-insensitively matches the string \"Secure\",\n\t    // the user agent MUST append an attribute to the cookie-attribute-list\n\t    // with an attribute-name of Secure and an empty attribute-value.\n\n\t    cookieAttributeList.secure = true;\n\t  } else if (attributeNameLowercase === 'httponly') {\n\t    // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.6\n\t    // If the attribute-name case-insensitively matches the string\n\t    // \"HttpOnly\", the user agent MUST append an attribute to the cookie-\n\t    // attribute-list with an attribute-name of HttpOnly and an empty\n\t    // attribute-value.\n\n\t    cookieAttributeList.httpOnly = true;\n\t  } else if (attributeNameLowercase === 'samesite') {\n\t    // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.7\n\t    // If the attribute-name case-insensitively matches the string\n\t    // \"SameSite\", the user agent MUST process the cookie-av as follows:\n\n\t    // 1. Let enforcement be \"Default\".\n\t    let enforcement = 'Default';\n\n\t    const attributeValueLowercase = attributeValue.toLowerCase();\n\t    // 2. If cookie-av's attribute-value is a case-insensitive match for\n\t    //    \"None\", set enforcement to \"None\".\n\t    if (attributeValueLowercase.includes('none')) {\n\t      enforcement = 'None';\n\t    }\n\n\t    // 3. If cookie-av's attribute-value is a case-insensitive match for\n\t    //    \"Strict\", set enforcement to \"Strict\".\n\t    if (attributeValueLowercase.includes('strict')) {\n\t      enforcement = 'Strict';\n\t    }\n\n\t    // 4. If cookie-av's attribute-value is a case-insensitive match for\n\t    //    \"Lax\", set enforcement to \"Lax\".\n\t    if (attributeValueLowercase.includes('lax')) {\n\t      enforcement = 'Lax';\n\t    }\n\n\t    // 5. Append an attribute to the cookie-attribute-list with an\n\t    //    attribute-name of \"SameSite\" and an attribute-value of\n\t    //    enforcement.\n\t    cookieAttributeList.sameSite = enforcement;\n\t  } else {\n\t    cookieAttributeList.unparsed ??= [];\n\n\t    cookieAttributeList.unparsed.push(`${attributeName}=${attributeValue}`);\n\t  }\n\n\t  // 8. Return to Step 1 of this algorithm.\n\t  return parseUnparsedAttributes(unparsedAttributes, cookieAttributeList)\n\t}\n\n\tparse$2 = {\n\t  parseSetCookie,\n\t  parseUnparsedAttributes\n\t};\n\treturn parse$2;\n}\n\nvar cookies;\nvar hasRequiredCookies;\n\nfunction requireCookies () {\n\tif (hasRequiredCookies) return cookies;\n\thasRequiredCookies = 1;\n\n\tconst { parseSetCookie } = requireParse$1();\n\tconst { stringify } = requireUtil$7();\n\tconst { webidl } = requireWebidl();\n\tconst { Headers } = requireHeaders$1();\n\n\t/**\n\t * @typedef {Object} Cookie\n\t * @property {string} name\n\t * @property {string} value\n\t * @property {Date|number|undefined} expires\n\t * @property {number|undefined} maxAge\n\t * @property {string|undefined} domain\n\t * @property {string|undefined} path\n\t * @property {boolean|undefined} secure\n\t * @property {boolean|undefined} httpOnly\n\t * @property {'Strict'|'Lax'|'None'} sameSite\n\t * @property {string[]} unparsed\n\t */\n\n\t/**\n\t * @param {Headers} headers\n\t * @returns {Record<string, string>}\n\t */\n\tfunction getCookies (headers) {\n\t  webidl.argumentLengthCheck(arguments, 1, { header: 'getCookies' });\n\n\t  webidl.brandCheck(headers, Headers, { strict: false });\n\n\t  const cookie = headers.get('cookie');\n\t  const out = {};\n\n\t  if (!cookie) {\n\t    return out\n\t  }\n\n\t  for (const piece of cookie.split(';')) {\n\t    const [name, ...value] = piece.split('=');\n\n\t    out[name.trim()] = value.join('=');\n\t  }\n\n\t  return out\n\t}\n\n\t/**\n\t * @param {Headers} headers\n\t * @param {string} name\n\t * @param {{ path?: string, domain?: string }|undefined} attributes\n\t * @returns {void}\n\t */\n\tfunction deleteCookie (headers, name, attributes) {\n\t  webidl.argumentLengthCheck(arguments, 2, { header: 'deleteCookie' });\n\n\t  webidl.brandCheck(headers, Headers, { strict: false });\n\n\t  name = webidl.converters.DOMString(name);\n\t  attributes = webidl.converters.DeleteCookieAttributes(attributes);\n\n\t  // Matches behavior of\n\t  // https://github.com/denoland/deno_std/blob/63827b16330b82489a04614027c33b7904e08be5/http/cookie.ts#L278\n\t  setCookie(headers, {\n\t    name,\n\t    value: '',\n\t    expires: new Date(0),\n\t    ...attributes\n\t  });\n\t}\n\n\t/**\n\t * @param {Headers} headers\n\t * @returns {Cookie[]}\n\t */\n\tfunction getSetCookies (headers) {\n\t  webidl.argumentLengthCheck(arguments, 1, { header: 'getSetCookies' });\n\n\t  webidl.brandCheck(headers, Headers, { strict: false });\n\n\t  const cookies = headers.getSetCookie();\n\n\t  if (!cookies) {\n\t    return []\n\t  }\n\n\t  return cookies.map((pair) => parseSetCookie(pair))\n\t}\n\n\t/**\n\t * @param {Headers} headers\n\t * @param {Cookie} cookie\n\t * @returns {void}\n\t */\n\tfunction setCookie (headers, cookie) {\n\t  webidl.argumentLengthCheck(arguments, 2, { header: 'setCookie' });\n\n\t  webidl.brandCheck(headers, Headers, { strict: false });\n\n\t  cookie = webidl.converters.Cookie(cookie);\n\n\t  const str = stringify(cookie);\n\n\t  if (str) {\n\t    headers.append('Set-Cookie', stringify(cookie));\n\t  }\n\t}\n\n\twebidl.converters.DeleteCookieAttributes = webidl.dictionaryConverter([\n\t  {\n\t    converter: webidl.nullableConverter(webidl.converters.DOMString),\n\t    key: 'path',\n\t    defaultValue: null\n\t  },\n\t  {\n\t    converter: webidl.nullableConverter(webidl.converters.DOMString),\n\t    key: 'domain',\n\t    defaultValue: null\n\t  }\n\t]);\n\n\twebidl.converters.Cookie = webidl.dictionaryConverter([\n\t  {\n\t    converter: webidl.converters.DOMString,\n\t    key: 'name'\n\t  },\n\t  {\n\t    converter: webidl.converters.DOMString,\n\t    key: 'value'\n\t  },\n\t  {\n\t    converter: webidl.nullableConverter((value) => {\n\t      if (typeof value === 'number') {\n\t        return webidl.converters['unsigned long long'](value)\n\t      }\n\n\t      return new Date(value)\n\t    }),\n\t    key: 'expires',\n\t    defaultValue: null\n\t  },\n\t  {\n\t    converter: webidl.nullableConverter(webidl.converters['long long']),\n\t    key: 'maxAge',\n\t    defaultValue: null\n\t  },\n\t  {\n\t    converter: webidl.nullableConverter(webidl.converters.DOMString),\n\t    key: 'domain',\n\t    defaultValue: null\n\t  },\n\t  {\n\t    converter: webidl.nullableConverter(webidl.converters.DOMString),\n\t    key: 'path',\n\t    defaultValue: null\n\t  },\n\t  {\n\t    converter: webidl.nullableConverter(webidl.converters.boolean),\n\t    key: 'secure',\n\t    defaultValue: null\n\t  },\n\t  {\n\t    converter: webidl.nullableConverter(webidl.converters.boolean),\n\t    key: 'httpOnly',\n\t    defaultValue: null\n\t  },\n\t  {\n\t    converter: webidl.converters.USVString,\n\t    key: 'sameSite',\n\t    allowedValues: ['Strict', 'Lax', 'None']\n\t  },\n\t  {\n\t    converter: webidl.sequenceConverter(webidl.converters.DOMString),\n\t    key: 'unparsed',\n\t    defaultValue: []\n\t  }\n\t]);\n\n\tcookies = {\n\t  getCookies,\n\t  deleteCookie,\n\t  getSetCookies,\n\t  setCookie\n\t};\n\treturn cookies;\n}\n\nvar constants$4;\nvar hasRequiredConstants$4;\n\nfunction requireConstants$4 () {\n\tif (hasRequiredConstants$4) return constants$4;\n\thasRequiredConstants$4 = 1;\n\n\t// This is a Globally Unique Identifier unique used\n\t// to validate that the endpoint accepts websocket\n\t// connections.\n\t// See https://www.rfc-editor.org/rfc/rfc6455.html#section-1.3\n\tconst uid = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11';\n\n\t/** @type {PropertyDescriptor} */\n\tconst staticPropertyDescriptors = {\n\t  enumerable: true,\n\t  writable: false,\n\t  configurable: false\n\t};\n\n\tconst states = {\n\t  CONNECTING: 0,\n\t  OPEN: 1,\n\t  CLOSING: 2,\n\t  CLOSED: 3\n\t};\n\n\tconst opcodes = {\n\t  CONTINUATION: 0x0,\n\t  TEXT: 0x1,\n\t  BINARY: 0x2,\n\t  CLOSE: 0x8,\n\t  PING: 0x9,\n\t  PONG: 0xA\n\t};\n\n\tconst maxUnsigned16Bit = 2 ** 16 - 1; // 65535\n\n\tconst parserStates = {\n\t  INFO: 0,\n\t  PAYLOADLENGTH_16: 2,\n\t  PAYLOADLENGTH_64: 3,\n\t  READ_DATA: 4\n\t};\n\n\tconst emptyBuffer = Buffer.allocUnsafe(0);\n\n\tconstants$4 = {\n\t  uid,\n\t  staticPropertyDescriptors,\n\t  states,\n\t  opcodes,\n\t  maxUnsigned16Bit,\n\t  parserStates,\n\t  emptyBuffer\n\t};\n\treturn constants$4;\n}\n\nvar symbols;\nvar hasRequiredSymbols;\n\nfunction requireSymbols () {\n\tif (hasRequiredSymbols) return symbols;\n\thasRequiredSymbols = 1;\n\n\tsymbols = {\n\t  kWebSocketURL: Symbol('url'),\n\t  kReadyState: Symbol('ready state'),\n\t  kController: Symbol('controller'),\n\t  kResponse: Symbol('response'),\n\t  kBinaryType: Symbol('binary type'),\n\t  kSentClose: Symbol('sent close'),\n\t  kReceivedClose: Symbol('received close'),\n\t  kByteParser: Symbol('byte parser')\n\t};\n\treturn symbols;\n}\n\nvar events;\nvar hasRequiredEvents;\n\nfunction requireEvents () {\n\tif (hasRequiredEvents) return events;\n\thasRequiredEvents = 1;\n\n\tconst { webidl } = requireWebidl();\n\tconst { kEnumerableProperty } = requireUtil$c();\n\tconst { MessagePort } = require$$0$e;\n\n\t/**\n\t * @see https://html.spec.whatwg.org/multipage/comms.html#messageevent\n\t */\n\tclass MessageEvent extends Event {\n\t  #eventInit\n\n\t  constructor (type, eventInitDict = {}) {\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'MessageEvent constructor' });\n\n\t    type = webidl.converters.DOMString(type);\n\t    eventInitDict = webidl.converters.MessageEventInit(eventInitDict);\n\n\t    super(type, eventInitDict);\n\n\t    this.#eventInit = eventInitDict;\n\t  }\n\n\t  get data () {\n\t    webidl.brandCheck(this, MessageEvent);\n\n\t    return this.#eventInit.data\n\t  }\n\n\t  get origin () {\n\t    webidl.brandCheck(this, MessageEvent);\n\n\t    return this.#eventInit.origin\n\t  }\n\n\t  get lastEventId () {\n\t    webidl.brandCheck(this, MessageEvent);\n\n\t    return this.#eventInit.lastEventId\n\t  }\n\n\t  get source () {\n\t    webidl.brandCheck(this, MessageEvent);\n\n\t    return this.#eventInit.source\n\t  }\n\n\t  get ports () {\n\t    webidl.brandCheck(this, MessageEvent);\n\n\t    if (!Object.isFrozen(this.#eventInit.ports)) {\n\t      Object.freeze(this.#eventInit.ports);\n\t    }\n\n\t    return this.#eventInit.ports\n\t  }\n\n\t  initMessageEvent (\n\t    type,\n\t    bubbles = false,\n\t    cancelable = false,\n\t    data = null,\n\t    origin = '',\n\t    lastEventId = '',\n\t    source = null,\n\t    ports = []\n\t  ) {\n\t    webidl.brandCheck(this, MessageEvent);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'MessageEvent.initMessageEvent' });\n\n\t    return new MessageEvent(type, {\n\t      bubbles, cancelable, data, origin, lastEventId, source, ports\n\t    })\n\t  }\n\t}\n\n\t/**\n\t * @see https://websockets.spec.whatwg.org/#the-closeevent-interface\n\t */\n\tclass CloseEvent extends Event {\n\t  #eventInit\n\n\t  constructor (type, eventInitDict = {}) {\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'CloseEvent constructor' });\n\n\t    type = webidl.converters.DOMString(type);\n\t    eventInitDict = webidl.converters.CloseEventInit(eventInitDict);\n\n\t    super(type, eventInitDict);\n\n\t    this.#eventInit = eventInitDict;\n\t  }\n\n\t  get wasClean () {\n\t    webidl.brandCheck(this, CloseEvent);\n\n\t    return this.#eventInit.wasClean\n\t  }\n\n\t  get code () {\n\t    webidl.brandCheck(this, CloseEvent);\n\n\t    return this.#eventInit.code\n\t  }\n\n\t  get reason () {\n\t    webidl.brandCheck(this, CloseEvent);\n\n\t    return this.#eventInit.reason\n\t  }\n\t}\n\n\t// https://html.spec.whatwg.org/multipage/webappapis.html#the-errorevent-interface\n\tclass ErrorEvent extends Event {\n\t  #eventInit\n\n\t  constructor (type, eventInitDict) {\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'ErrorEvent constructor' });\n\n\t    super(type, eventInitDict);\n\n\t    type = webidl.converters.DOMString(type);\n\t    eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {});\n\n\t    this.#eventInit = eventInitDict;\n\t  }\n\n\t  get message () {\n\t    webidl.brandCheck(this, ErrorEvent);\n\n\t    return this.#eventInit.message\n\t  }\n\n\t  get filename () {\n\t    webidl.brandCheck(this, ErrorEvent);\n\n\t    return this.#eventInit.filename\n\t  }\n\n\t  get lineno () {\n\t    webidl.brandCheck(this, ErrorEvent);\n\n\t    return this.#eventInit.lineno\n\t  }\n\n\t  get colno () {\n\t    webidl.brandCheck(this, ErrorEvent);\n\n\t    return this.#eventInit.colno\n\t  }\n\n\t  get error () {\n\t    webidl.brandCheck(this, ErrorEvent);\n\n\t    return this.#eventInit.error\n\t  }\n\t}\n\n\tObject.defineProperties(MessageEvent.prototype, {\n\t  [Symbol.toStringTag]: {\n\t    value: 'MessageEvent',\n\t    configurable: true\n\t  },\n\t  data: kEnumerableProperty,\n\t  origin: kEnumerableProperty,\n\t  lastEventId: kEnumerableProperty,\n\t  source: kEnumerableProperty,\n\t  ports: kEnumerableProperty,\n\t  initMessageEvent: kEnumerableProperty\n\t});\n\n\tObject.defineProperties(CloseEvent.prototype, {\n\t  [Symbol.toStringTag]: {\n\t    value: 'CloseEvent',\n\t    configurable: true\n\t  },\n\t  reason: kEnumerableProperty,\n\t  code: kEnumerableProperty,\n\t  wasClean: kEnumerableProperty\n\t});\n\n\tObject.defineProperties(ErrorEvent.prototype, {\n\t  [Symbol.toStringTag]: {\n\t    value: 'ErrorEvent',\n\t    configurable: true\n\t  },\n\t  message: kEnumerableProperty,\n\t  filename: kEnumerableProperty,\n\t  lineno: kEnumerableProperty,\n\t  colno: kEnumerableProperty,\n\t  error: kEnumerableProperty\n\t});\n\n\twebidl.converters.MessagePort = webidl.interfaceConverter(MessagePort);\n\n\twebidl.converters['sequence<MessagePort>'] = webidl.sequenceConverter(\n\t  webidl.converters.MessagePort\n\t);\n\n\tconst eventInit = [\n\t  {\n\t    key: 'bubbles',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  },\n\t  {\n\t    key: 'cancelable',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  },\n\t  {\n\t    key: 'composed',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  }\n\t];\n\n\twebidl.converters.MessageEventInit = webidl.dictionaryConverter([\n\t  ...eventInit,\n\t  {\n\t    key: 'data',\n\t    converter: webidl.converters.any,\n\t    defaultValue: null\n\t  },\n\t  {\n\t    key: 'origin',\n\t    converter: webidl.converters.USVString,\n\t    defaultValue: ''\n\t  },\n\t  {\n\t    key: 'lastEventId',\n\t    converter: webidl.converters.DOMString,\n\t    defaultValue: ''\n\t  },\n\t  {\n\t    key: 'source',\n\t    // Node doesn't implement WindowProxy or ServiceWorker, so the only\n\t    // valid value for source is a MessagePort.\n\t    converter: webidl.nullableConverter(webidl.converters.MessagePort),\n\t    defaultValue: null\n\t  },\n\t  {\n\t    key: 'ports',\n\t    converter: webidl.converters['sequence<MessagePort>'],\n\t    get defaultValue () {\n\t      return []\n\t    }\n\t  }\n\t]);\n\n\twebidl.converters.CloseEventInit = webidl.dictionaryConverter([\n\t  ...eventInit,\n\t  {\n\t    key: 'wasClean',\n\t    converter: webidl.converters.boolean,\n\t    defaultValue: false\n\t  },\n\t  {\n\t    key: 'code',\n\t    converter: webidl.converters['unsigned short'],\n\t    defaultValue: 0\n\t  },\n\t  {\n\t    key: 'reason',\n\t    converter: webidl.converters.USVString,\n\t    defaultValue: ''\n\t  }\n\t]);\n\n\twebidl.converters.ErrorEventInit = webidl.dictionaryConverter([\n\t  ...eventInit,\n\t  {\n\t    key: 'message',\n\t    converter: webidl.converters.DOMString,\n\t    defaultValue: ''\n\t  },\n\t  {\n\t    key: 'filename',\n\t    converter: webidl.converters.USVString,\n\t    defaultValue: ''\n\t  },\n\t  {\n\t    key: 'lineno',\n\t    converter: webidl.converters['unsigned long'],\n\t    defaultValue: 0\n\t  },\n\t  {\n\t    key: 'colno',\n\t    converter: webidl.converters['unsigned long'],\n\t    defaultValue: 0\n\t  },\n\t  {\n\t    key: 'error',\n\t    converter: webidl.converters.any\n\t  }\n\t]);\n\n\tevents = {\n\t  MessageEvent,\n\t  CloseEvent,\n\t  ErrorEvent\n\t};\n\treturn events;\n}\n\nvar util$6;\nvar hasRequiredUtil$6;\n\nfunction requireUtil$6 () {\n\tif (hasRequiredUtil$6) return util$6;\n\thasRequiredUtil$6 = 1;\n\n\tconst { kReadyState, kController, kResponse, kBinaryType, kWebSocketURL } = requireSymbols();\n\tconst { states, opcodes } = requireConstants$4();\n\tconst { MessageEvent, ErrorEvent } = requireEvents();\n\n\t/* globals Blob */\n\n\t/**\n\t * @param {import('./websocket').WebSocket} ws\n\t */\n\tfunction isEstablished (ws) {\n\t  // If the server's response is validated as provided for above, it is\n\t  // said that _The WebSocket Connection is Established_ and that the\n\t  // WebSocket Connection is in the OPEN state.\n\t  return ws[kReadyState] === states.OPEN\n\t}\n\n\t/**\n\t * @param {import('./websocket').WebSocket} ws\n\t */\n\tfunction isClosing (ws) {\n\t  // Upon either sending or receiving a Close control frame, it is said\n\t  // that _The WebSocket Closing Handshake is Started_ and that the\n\t  // WebSocket connection is in the CLOSING state.\n\t  return ws[kReadyState] === states.CLOSING\n\t}\n\n\t/**\n\t * @param {import('./websocket').WebSocket} ws\n\t */\n\tfunction isClosed (ws) {\n\t  return ws[kReadyState] === states.CLOSED\n\t}\n\n\t/**\n\t * @see https://dom.spec.whatwg.org/#concept-event-fire\n\t * @param {string} e\n\t * @param {EventTarget} target\n\t * @param {EventInit | undefined} eventInitDict\n\t */\n\tfunction fireEvent (e, target, eventConstructor = Event, eventInitDict) {\n\t  // 1. If eventConstructor is not given, then let eventConstructor be Event.\n\n\t  // 2. Let event be the result of creating an event given eventConstructor,\n\t  //    in the relevant realm of target.\n\t  // 3. Initialize event’s type attribute to e.\n\t  const event = new eventConstructor(e, eventInitDict); // eslint-disable-line new-cap\n\n\t  // 4. Initialize any other IDL attributes of event as described in the\n\t  //    invocation of this algorithm.\n\n\t  // 5. Return the result of dispatching event at target, with legacy target\n\t  //    override flag set if set.\n\t  target.dispatchEvent(event);\n\t}\n\n\t/**\n\t * @see https://websockets.spec.whatwg.org/#feedback-from-the-protocol\n\t * @param {import('./websocket').WebSocket} ws\n\t * @param {number} type Opcode\n\t * @param {Buffer} data application data\n\t */\n\tfunction websocketMessageReceived (ws, type, data) {\n\t  // 1. If ready state is not OPEN (1), then return.\n\t  if (ws[kReadyState] !== states.OPEN) {\n\t    return\n\t  }\n\n\t  // 2. Let dataForEvent be determined by switching on type and binary type:\n\t  let dataForEvent;\n\n\t  if (type === opcodes.TEXT) {\n\t    // -> type indicates that the data is Text\n\t    //      a new DOMString containing data\n\t    try {\n\t      dataForEvent = new TextDecoder('utf-8', { fatal: true }).decode(data);\n\t    } catch {\n\t      failWebsocketConnection(ws, 'Received invalid UTF-8 in text frame.');\n\t      return\n\t    }\n\t  } else if (type === opcodes.BINARY) {\n\t    if (ws[kBinaryType] === 'blob') {\n\t      // -> type indicates that the data is Binary and binary type is \"blob\"\n\t      //      a new Blob object, created in the relevant Realm of the WebSocket\n\t      //      object, that represents data as its raw data\n\t      dataForEvent = new Blob([data]);\n\t    } else {\n\t      // -> type indicates that the data is Binary and binary type is \"arraybuffer\"\n\t      //      a new ArrayBuffer object, created in the relevant Realm of the\n\t      //      WebSocket object, whose contents are data\n\t      dataForEvent = new Uint8Array(data).buffer;\n\t    }\n\t  }\n\n\t  // 3. Fire an event named message at the WebSocket object, using MessageEvent,\n\t  //    with the origin attribute initialized to the serialization of the WebSocket\n\t  //    object’s url's origin, and the data attribute initialized to dataForEvent.\n\t  fireEvent('message', ws, MessageEvent, {\n\t    origin: ws[kWebSocketURL].origin,\n\t    data: dataForEvent\n\t  });\n\t}\n\n\t/**\n\t * @see https://datatracker.ietf.org/doc/html/rfc6455\n\t * @see https://datatracker.ietf.org/doc/html/rfc2616\n\t * @see https://bugs.chromium.org/p/chromium/issues/detail?id=398407\n\t * @param {string} protocol\n\t */\n\tfunction isValidSubprotocol (protocol) {\n\t  // If present, this value indicates one\n\t  // or more comma-separated subprotocol the client wishes to speak,\n\t  // ordered by preference.  The elements that comprise this value\n\t  // MUST be non-empty strings with characters in the range U+0021 to\n\t  // U+007E not including separator characters as defined in\n\t  // [RFC2616] and MUST all be unique strings.\n\t  if (protocol.length === 0) {\n\t    return false\n\t  }\n\n\t  for (const char of protocol) {\n\t    const code = char.charCodeAt(0);\n\n\t    if (\n\t      code < 0x21 ||\n\t      code > 0x7E ||\n\t      char === '(' ||\n\t      char === ')' ||\n\t      char === '<' ||\n\t      char === '>' ||\n\t      char === '@' ||\n\t      char === ',' ||\n\t      char === ';' ||\n\t      char === ':' ||\n\t      char === '\\\\' ||\n\t      char === '\"' ||\n\t      char === '/' ||\n\t      char === '[' ||\n\t      char === ']' ||\n\t      char === '?' ||\n\t      char === '=' ||\n\t      char === '{' ||\n\t      char === '}' ||\n\t      code === 32 || // SP\n\t      code === 9 // HT\n\t    ) {\n\t      return false\n\t    }\n\t  }\n\n\t  return true\n\t}\n\n\t/**\n\t * @see https://datatracker.ietf.org/doc/html/rfc6455#section-7-4\n\t * @param {number} code\n\t */\n\tfunction isValidStatusCode (code) {\n\t  if (code >= 1000 && code < 1015) {\n\t    return (\n\t      code !== 1004 && // reserved\n\t      code !== 1005 && // \"MUST NOT be set as a status code\"\n\t      code !== 1006 // \"MUST NOT be set as a status code\"\n\t    )\n\t  }\n\n\t  return code >= 3000 && code <= 4999\n\t}\n\n\t/**\n\t * @param {import('./websocket').WebSocket} ws\n\t * @param {string|undefined} reason\n\t */\n\tfunction failWebsocketConnection (ws, reason) {\n\t  const { [kController]: controller, [kResponse]: response } = ws;\n\n\t  controller.abort();\n\n\t  if (response?.socket && !response.socket.destroyed) {\n\t    response.socket.destroy();\n\t  }\n\n\t  if (reason) {\n\t    fireEvent('error', ws, ErrorEvent, {\n\t      error: new Error(reason)\n\t    });\n\t  }\n\t}\n\n\tutil$6 = {\n\t  isEstablished,\n\t  isClosing,\n\t  isClosed,\n\t  fireEvent,\n\t  isValidSubprotocol,\n\t  isValidStatusCode,\n\t  failWebsocketConnection,\n\t  websocketMessageReceived\n\t};\n\treturn util$6;\n}\n\nvar connection;\nvar hasRequiredConnection;\n\nfunction requireConnection () {\n\tif (hasRequiredConnection) return connection;\n\thasRequiredConnection = 1;\n\n\tconst diagnosticsChannel = require$$0$f;\n\tconst { uid, states } = requireConstants$4();\n\tconst {\n\t  kReadyState,\n\t  kSentClose,\n\t  kByteParser,\n\t  kReceivedClose\n\t} = requireSymbols();\n\tconst { fireEvent, failWebsocketConnection } = requireUtil$6();\n\tconst { CloseEvent } = requireEvents();\n\tconst { makeRequest } = requireRequest();\n\tconst { fetching } = requireFetch();\n\tconst { Headers } = requireHeaders$1();\n\tconst { getGlobalDispatcher } = requireGlobal();\n\tconst { kHeadersList } = requireSymbols$4();\n\n\tconst channels = {};\n\tchannels.open = diagnosticsChannel.channel('undici:websocket:open');\n\tchannels.close = diagnosticsChannel.channel('undici:websocket:close');\n\tchannels.socketError = diagnosticsChannel.channel('undici:websocket:socket_error');\n\n\t/** @type {import('crypto')} */\n\tlet crypto;\n\ttry {\n\t  crypto = require('crypto');\n\t} catch {\n\n\t}\n\n\t/**\n\t * @see https://websockets.spec.whatwg.org/#concept-websocket-establish\n\t * @param {URL} url\n\t * @param {string|string[]} protocols\n\t * @param {import('./websocket').WebSocket} ws\n\t * @param {(response: any) => void} onEstablish\n\t * @param {Partial<import('../../types/websocket').WebSocketInit>} options\n\t */\n\tfunction establishWebSocketConnection (url, protocols, ws, onEstablish, options) {\n\t  // 1. Let requestURL be a copy of url, with its scheme set to \"http\", if url’s\n\t  //    scheme is \"ws\", and to \"https\" otherwise.\n\t  const requestURL = url;\n\n\t  requestURL.protocol = url.protocol === 'ws:' ? 'http:' : 'https:';\n\n\t  // 2. Let request be a new request, whose URL is requestURL, client is client,\n\t  //    service-workers mode is \"none\", referrer is \"no-referrer\", mode is\n\t  //    \"websocket\", credentials mode is \"include\", cache mode is \"no-store\" ,\n\t  //    and redirect mode is \"error\".\n\t  const request = makeRequest({\n\t    urlList: [requestURL],\n\t    serviceWorkers: 'none',\n\t    referrer: 'no-referrer',\n\t    mode: 'websocket',\n\t    credentials: 'include',\n\t    cache: 'no-store',\n\t    redirect: 'error'\n\t  });\n\n\t  // Note: undici extension, allow setting custom headers.\n\t  if (options.headers) {\n\t    const headersList = new Headers(options.headers)[kHeadersList];\n\n\t    request.headersList = headersList;\n\t  }\n\n\t  // 3. Append (`Upgrade`, `websocket`) to request’s header list.\n\t  // 4. Append (`Connection`, `Upgrade`) to request’s header list.\n\t  // Note: both of these are handled by undici currently.\n\t  // https://github.com/nodejs/undici/blob/68c269c4144c446f3f1220951338daef4a6b5ec4/lib/client.js#L1397\n\n\t  // 5. Let keyValue be a nonce consisting of a randomly selected\n\t  //    16-byte value that has been forgiving-base64-encoded and\n\t  //    isomorphic encoded.\n\t  const keyValue = crypto.randomBytes(16).toString('base64');\n\n\t  // 6. Append (`Sec-WebSocket-Key`, keyValue) to request’s\n\t  //    header list.\n\t  request.headersList.append('sec-websocket-key', keyValue);\n\n\t  // 7. Append (`Sec-WebSocket-Version`, `13`) to request’s\n\t  //    header list.\n\t  request.headersList.append('sec-websocket-version', '13');\n\n\t  // 8. For each protocol in protocols, combine\n\t  //    (`Sec-WebSocket-Protocol`, protocol) in request’s header\n\t  //    list.\n\t  for (const protocol of protocols) {\n\t    request.headersList.append('sec-websocket-protocol', protocol);\n\t  }\n\n\t  // 9. Let permessageDeflate be a user-agent defined\n\t  //    \"permessage-deflate\" extension header value.\n\t  // https://github.com/mozilla/gecko-dev/blob/ce78234f5e653a5d3916813ff990f053510227bc/netwerk/protocol/websocket/WebSocketChannel.cpp#L2673\n\t  // TODO: enable once permessage-deflate is supported\n\t  const permessageDeflate = ''; // 'permessage-deflate; 15'\n\n\t  // 10. Append (`Sec-WebSocket-Extensions`, permessageDeflate) to\n\t  //     request’s header list.\n\t  // request.headersList.append('sec-websocket-extensions', permessageDeflate)\n\n\t  // 11. Fetch request with useParallelQueue set to true, and\n\t  //     processResponse given response being these steps:\n\t  const controller = fetching({\n\t    request,\n\t    useParallelQueue: true,\n\t    dispatcher: options.dispatcher ?? getGlobalDispatcher(),\n\t    processResponse (response) {\n\t      // 1. If response is a network error or its status is not 101,\n\t      //    fail the WebSocket connection.\n\t      if (response.type === 'error' || response.status !== 101) {\n\t        failWebsocketConnection(ws, 'Received network error or non-101 status code.');\n\t        return\n\t      }\n\n\t      // 2. If protocols is not the empty list and extracting header\n\t      //    list values given `Sec-WebSocket-Protocol` and response’s\n\t      //    header list results in null, failure, or the empty byte\n\t      //    sequence, then fail the WebSocket connection.\n\t      if (protocols.length !== 0 && !response.headersList.get('Sec-WebSocket-Protocol')) {\n\t        failWebsocketConnection(ws, 'Server did not respond with sent protocols.');\n\t        return\n\t      }\n\n\t      // 3. Follow the requirements stated step 2 to step 6, inclusive,\n\t      //    of the last set of steps in section 4.1 of The WebSocket\n\t      //    Protocol to validate response. This either results in fail\n\t      //    the WebSocket connection or the WebSocket connection is\n\t      //    established.\n\n\t      // 2. If the response lacks an |Upgrade| header field or the |Upgrade|\n\t      //    header field contains a value that is not an ASCII case-\n\t      //    insensitive match for the value \"websocket\", the client MUST\n\t      //    _Fail the WebSocket Connection_.\n\t      if (response.headersList.get('Upgrade')?.toLowerCase() !== 'websocket') {\n\t        failWebsocketConnection(ws, 'Server did not set Upgrade header to \"websocket\".');\n\t        return\n\t      }\n\n\t      // 3. If the response lacks a |Connection| header field or the\n\t      //    |Connection| header field doesn't contain a token that is an\n\t      //    ASCII case-insensitive match for the value \"Upgrade\", the client\n\t      //    MUST _Fail the WebSocket Connection_.\n\t      if (response.headersList.get('Connection')?.toLowerCase() !== 'upgrade') {\n\t        failWebsocketConnection(ws, 'Server did not set Connection header to \"upgrade\".');\n\t        return\n\t      }\n\n\t      // 4. If the response lacks a |Sec-WebSocket-Accept| header field or\n\t      //    the |Sec-WebSocket-Accept| contains a value other than the\n\t      //    base64-encoded SHA-1 of the concatenation of the |Sec-WebSocket-\n\t      //    Key| (as a string, not base64-decoded) with the string \"258EAFA5-\n\t      //    E914-47DA-95CA-C5AB0DC85B11\" but ignoring any leading and\n\t      //    trailing whitespace, the client MUST _Fail the WebSocket\n\t      //    Connection_.\n\t      const secWSAccept = response.headersList.get('Sec-WebSocket-Accept');\n\t      const digest = crypto.createHash('sha1').update(keyValue + uid).digest('base64');\n\t      if (secWSAccept !== digest) {\n\t        failWebsocketConnection(ws, 'Incorrect hash received in Sec-WebSocket-Accept header.');\n\t        return\n\t      }\n\n\t      // 5. If the response includes a |Sec-WebSocket-Extensions| header\n\t      //    field and this header field indicates the use of an extension\n\t      //    that was not present in the client's handshake (the server has\n\t      //    indicated an extension not requested by the client), the client\n\t      //    MUST _Fail the WebSocket Connection_.  (The parsing of this\n\t      //    header field to determine which extensions are requested is\n\t      //    discussed in Section 9.1.)\n\t      const secExtension = response.headersList.get('Sec-WebSocket-Extensions');\n\n\t      if (secExtension !== null && secExtension !== permessageDeflate) {\n\t        failWebsocketConnection(ws, 'Received different permessage-deflate than the one set.');\n\t        return\n\t      }\n\n\t      // 6. If the response includes a |Sec-WebSocket-Protocol| header field\n\t      //    and this header field indicates the use of a subprotocol that was\n\t      //    not present in the client's handshake (the server has indicated a\n\t      //    subprotocol not requested by the client), the client MUST _Fail\n\t      //    the WebSocket Connection_.\n\t      const secProtocol = response.headersList.get('Sec-WebSocket-Protocol');\n\n\t      if (secProtocol !== null && secProtocol !== request.headersList.get('Sec-WebSocket-Protocol')) {\n\t        failWebsocketConnection(ws, 'Protocol was not set in the opening handshake.');\n\t        return\n\t      }\n\n\t      response.socket.on('data', onSocketData);\n\t      response.socket.on('close', onSocketClose);\n\t      response.socket.on('error', onSocketError);\n\n\t      if (channels.open.hasSubscribers) {\n\t        channels.open.publish({\n\t          address: response.socket.address(),\n\t          protocol: secProtocol,\n\t          extensions: secExtension\n\t        });\n\t      }\n\n\t      onEstablish(response);\n\t    }\n\t  });\n\n\t  return controller\n\t}\n\n\t/**\n\t * @param {Buffer} chunk\n\t */\n\tfunction onSocketData (chunk) {\n\t  if (!this.ws[kByteParser].write(chunk)) {\n\t    this.pause();\n\t  }\n\t}\n\n\t/**\n\t * @see https://websockets.spec.whatwg.org/#feedback-from-the-protocol\n\t * @see https://datatracker.ietf.org/doc/html/rfc6455#section-7.1.4\n\t */\n\tfunction onSocketClose () {\n\t  const { ws } = this;\n\n\t  // If the TCP connection was closed after the\n\t  // WebSocket closing handshake was completed, the WebSocket connection\n\t  // is said to have been closed _cleanly_.\n\t  const wasClean = ws[kSentClose] && ws[kReceivedClose];\n\n\t  let code = 1005;\n\t  let reason = '';\n\n\t  const result = ws[kByteParser].closingInfo;\n\n\t  if (result) {\n\t    code = result.code ?? 1005;\n\t    reason = result.reason;\n\t  } else if (!ws[kSentClose]) {\n\t    // If _The WebSocket\n\t    // Connection is Closed_ and no Close control frame was received by the\n\t    // endpoint (such as could occur if the underlying transport connection\n\t    // is lost), _The WebSocket Connection Close Code_ is considered to be\n\t    // 1006.\n\t    code = 1006;\n\t  }\n\n\t  // 1. Change the ready state to CLOSED (3).\n\t  ws[kReadyState] = states.CLOSED;\n\n\t  // 2. If the user agent was required to fail the WebSocket\n\t  //    connection, or if the WebSocket connection was closed\n\t  //    after being flagged as full, fire an event named error\n\t  //    at the WebSocket object.\n\t  // TODO\n\n\t  // 3. Fire an event named close at the WebSocket object,\n\t  //    using CloseEvent, with the wasClean attribute\n\t  //    initialized to true if the connection closed cleanly\n\t  //    and false otherwise, the code attribute initialized to\n\t  //    the WebSocket connection close code, and the reason\n\t  //    attribute initialized to the result of applying UTF-8\n\t  //    decode without BOM to the WebSocket connection close\n\t  //    reason.\n\t  fireEvent('close', ws, CloseEvent, {\n\t    wasClean, code, reason\n\t  });\n\n\t  if (channels.close.hasSubscribers) {\n\t    channels.close.publish({\n\t      websocket: ws,\n\t      code,\n\t      reason\n\t    });\n\t  }\n\t}\n\n\tfunction onSocketError (error) {\n\t  const { ws } = this;\n\n\t  ws[kReadyState] = states.CLOSING;\n\n\t  if (channels.socketError.hasSubscribers) {\n\t    channels.socketError.publish(error);\n\t  }\n\n\t  this.destroy();\n\t}\n\n\tconnection = {\n\t  establishWebSocketConnection\n\t};\n\treturn connection;\n}\n\nvar frame;\nvar hasRequiredFrame;\n\nfunction requireFrame () {\n\tif (hasRequiredFrame) return frame;\n\thasRequiredFrame = 1;\n\n\tconst { maxUnsigned16Bit } = requireConstants$4();\n\n\t/** @type {import('crypto')} */\n\tlet crypto;\n\ttry {\n\t  crypto = require('crypto');\n\t} catch {\n\n\t}\n\n\tclass WebsocketFrameSend {\n\t  /**\n\t   * @param {Buffer|undefined} data\n\t   */\n\t  constructor (data) {\n\t    this.frameData = data;\n\t    this.maskKey = crypto.randomBytes(4);\n\t  }\n\n\t  createFrame (opcode) {\n\t    const bodyLength = this.frameData?.byteLength ?? 0;\n\n\t    /** @type {number} */\n\t    let payloadLength = bodyLength; // 0-125\n\t    let offset = 6;\n\n\t    if (bodyLength > maxUnsigned16Bit) {\n\t      offset += 8; // payload length is next 8 bytes\n\t      payloadLength = 127;\n\t    } else if (bodyLength > 125) {\n\t      offset += 2; // payload length is next 2 bytes\n\t      payloadLength = 126;\n\t    }\n\n\t    const buffer = Buffer.allocUnsafe(bodyLength + offset);\n\n\t    // Clear first 2 bytes, everything else is overwritten\n\t    buffer[0] = buffer[1] = 0;\n\t    buffer[0] |= 0x80; // FIN\n\t    buffer[0] = (buffer[0] & 0xF0) + opcode; // opcode\n\n\t    /*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> */\n\t    buffer[offset - 4] = this.maskKey[0];\n\t    buffer[offset - 3] = this.maskKey[1];\n\t    buffer[offset - 2] = this.maskKey[2];\n\t    buffer[offset - 1] = this.maskKey[3];\n\n\t    buffer[1] = payloadLength;\n\n\t    if (payloadLength === 126) {\n\t      buffer.writeUInt16BE(bodyLength, 2);\n\t    } else if (payloadLength === 127) {\n\t      // Clear extended payload length\n\t      buffer[2] = buffer[3] = 0;\n\t      buffer.writeUIntBE(bodyLength, 4, 6);\n\t    }\n\n\t    buffer[1] |= 0x80; // MASK\n\n\t    // mask body\n\t    for (let i = 0; i < bodyLength; i++) {\n\t      buffer[offset + i] = this.frameData[i] ^ this.maskKey[i % 4];\n\t    }\n\n\t    return buffer\n\t  }\n\t}\n\n\tframe = {\n\t  WebsocketFrameSend\n\t};\n\treturn frame;\n}\n\nvar receiver;\nvar hasRequiredReceiver;\n\nfunction requireReceiver () {\n\tif (hasRequiredReceiver) return receiver;\n\thasRequiredReceiver = 1;\n\n\tconst { Writable } = require$$0$b;\n\tconst diagnosticsChannel = require$$0$f;\n\tconst { parserStates, opcodes, states, emptyBuffer } = requireConstants$4();\n\tconst { kReadyState, kSentClose, kResponse, kReceivedClose } = requireSymbols();\n\tconst { isValidStatusCode, failWebsocketConnection, websocketMessageReceived } = requireUtil$6();\n\tconst { WebsocketFrameSend } = requireFrame();\n\n\t// This code was influenced by ws released under the MIT license.\n\t// Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>\n\t// Copyright (c) 2013 Arnout Kazemier and contributors\n\t// Copyright (c) 2016 Luigi Pinca and contributors\n\n\tconst channels = {};\n\tchannels.ping = diagnosticsChannel.channel('undici:websocket:ping');\n\tchannels.pong = diagnosticsChannel.channel('undici:websocket:pong');\n\n\tclass ByteParser extends Writable {\n\t  #buffers = []\n\t  #byteOffset = 0\n\n\t  #state = parserStates.INFO\n\n\t  #info = {}\n\t  #fragments = []\n\n\t  constructor (ws) {\n\t    super();\n\n\t    this.ws = ws;\n\t  }\n\n\t  /**\n\t   * @param {Buffer} chunk\n\t   * @param {() => void} callback\n\t   */\n\t  _write (chunk, _, callback) {\n\t    this.#buffers.push(chunk);\n\t    this.#byteOffset += chunk.length;\n\n\t    this.run(callback);\n\t  }\n\n\t  /**\n\t   * Runs whenever a new chunk is received.\n\t   * Callback is called whenever there are no more chunks buffering,\n\t   * or not enough bytes are buffered to parse.\n\t   */\n\t  run (callback) {\n\t    while (true) {\n\t      if (this.#state === parserStates.INFO) {\n\t        // If there aren't enough bytes to parse the payload length, etc.\n\t        if (this.#byteOffset < 2) {\n\t          return callback()\n\t        }\n\n\t        const buffer = this.consume(2);\n\n\t        this.#info.fin = (buffer[0] & 0x80) !== 0;\n\t        this.#info.opcode = buffer[0] & 0x0F;\n\n\t        // If we receive a fragmented message, we use the type of the first\n\t        // frame to parse the full message as binary/text, when it's terminated\n\t        this.#info.originalOpcode ??= this.#info.opcode;\n\n\t        this.#info.fragmented = !this.#info.fin && this.#info.opcode !== opcodes.CONTINUATION;\n\n\t        if (this.#info.fragmented && this.#info.opcode !== opcodes.BINARY && this.#info.opcode !== opcodes.TEXT) {\n\t          // Only text and binary frames can be fragmented\n\t          failWebsocketConnection(this.ws, 'Invalid frame type was fragmented.');\n\t          return\n\t        }\n\n\t        const payloadLength = buffer[1] & 0x7F;\n\n\t        if (payloadLength <= 125) {\n\t          this.#info.payloadLength = payloadLength;\n\t          this.#state = parserStates.READ_DATA;\n\t        } else if (payloadLength === 126) {\n\t          this.#state = parserStates.PAYLOADLENGTH_16;\n\t        } else if (payloadLength === 127) {\n\t          this.#state = parserStates.PAYLOADLENGTH_64;\n\t        }\n\n\t        if (this.#info.fragmented && payloadLength > 125) {\n\t          // A fragmented frame can't be fragmented itself\n\t          failWebsocketConnection(this.ws, 'Fragmented frame exceeded 125 bytes.');\n\t          return\n\t        } else if (\n\t          (this.#info.opcode === opcodes.PING ||\n\t            this.#info.opcode === opcodes.PONG ||\n\t            this.#info.opcode === opcodes.CLOSE) &&\n\t          payloadLength > 125\n\t        ) {\n\t          // Control frames can have a payload length of 125 bytes MAX\n\t          failWebsocketConnection(this.ws, 'Payload length for control frame exceeded 125 bytes.');\n\t          return\n\t        } else if (this.#info.opcode === opcodes.CLOSE) {\n\t          if (payloadLength === 1) {\n\t            failWebsocketConnection(this.ws, 'Received close frame with a 1-byte body.');\n\t            return\n\t          }\n\n\t          const body = this.consume(payloadLength);\n\n\t          this.#info.closeInfo = this.parseCloseBody(false, body);\n\n\t          if (!this.ws[kSentClose]) {\n\t            // If an endpoint receives a Close frame and did not previously send a\n\t            // Close frame, the endpoint MUST send a Close frame in response.  (When\n\t            // sending a Close frame in response, the endpoint typically echos the\n\t            // status code it received.)\n\t            const body = Buffer.allocUnsafe(2);\n\t            body.writeUInt16BE(this.#info.closeInfo.code, 0);\n\t            const closeFrame = new WebsocketFrameSend(body);\n\n\t            this.ws[kResponse].socket.write(\n\t              closeFrame.createFrame(opcodes.CLOSE),\n\t              (err) => {\n\t                if (!err) {\n\t                  this.ws[kSentClose] = true;\n\t                }\n\t              }\n\t            );\n\t          }\n\n\t          // Upon either sending or receiving a Close control frame, it is said\n\t          // that _The WebSocket Closing Handshake is Started_ and that the\n\t          // WebSocket connection is in the CLOSING state.\n\t          this.ws[kReadyState] = states.CLOSING;\n\t          this.ws[kReceivedClose] = true;\n\n\t          this.end();\n\n\t          return\n\t        } else if (this.#info.opcode === opcodes.PING) {\n\t          // Upon receipt of a Ping frame, an endpoint MUST send a Pong frame in\n\t          // response, unless it already received a Close frame.\n\t          // A Pong frame sent in response to a Ping frame must have identical\n\t          // \"Application data\"\n\n\t          const body = this.consume(payloadLength);\n\n\t          if (!this.ws[kReceivedClose]) {\n\t            const frame = new WebsocketFrameSend(body);\n\n\t            this.ws[kResponse].socket.write(frame.createFrame(opcodes.PONG));\n\n\t            if (channels.ping.hasSubscribers) {\n\t              channels.ping.publish({\n\t                payload: body\n\t              });\n\t            }\n\t          }\n\n\t          this.#state = parserStates.INFO;\n\n\t          if (this.#byteOffset > 0) {\n\t            continue\n\t          } else {\n\t            callback();\n\t            return\n\t          }\n\t        } else if (this.#info.opcode === opcodes.PONG) {\n\t          // A Pong frame MAY be sent unsolicited.  This serves as a\n\t          // unidirectional heartbeat.  A response to an unsolicited Pong frame is\n\t          // not expected.\n\n\t          const body = this.consume(payloadLength);\n\n\t          if (channels.pong.hasSubscribers) {\n\t            channels.pong.publish({\n\t              payload: body\n\t            });\n\t          }\n\n\t          if (this.#byteOffset > 0) {\n\t            continue\n\t          } else {\n\t            callback();\n\t            return\n\t          }\n\t        }\n\t      } else if (this.#state === parserStates.PAYLOADLENGTH_16) {\n\t        if (this.#byteOffset < 2) {\n\t          return callback()\n\t        }\n\n\t        const buffer = this.consume(2);\n\n\t        this.#info.payloadLength = buffer.readUInt16BE(0);\n\t        this.#state = parserStates.READ_DATA;\n\t      } else if (this.#state === parserStates.PAYLOADLENGTH_64) {\n\t        if (this.#byteOffset < 8) {\n\t          return callback()\n\t        }\n\n\t        const buffer = this.consume(8);\n\t        const upper = buffer.readUInt32BE(0);\n\n\t        // 2^31 is the maxinimum bytes an arraybuffer can contain\n\t        // on 32-bit systems. Although, on 64-bit systems, this is\n\t        // 2^53-1 bytes.\n\t        // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Invalid_array_length\n\t        // https://source.chromium.org/chromium/chromium/src/+/main:v8/src/common/globals.h;drc=1946212ac0100668f14eb9e2843bdd846e510a1e;bpv=1;bpt=1;l=1275\n\t        // https://source.chromium.org/chromium/chromium/src/+/main:v8/src/objects/js-array-buffer.h;l=34;drc=1946212ac0100668f14eb9e2843bdd846e510a1e\n\t        if (upper > 2 ** 31 - 1) {\n\t          failWebsocketConnection(this.ws, 'Received payload length > 2^31 bytes.');\n\t          return\n\t        }\n\n\t        const lower = buffer.readUInt32BE(4);\n\n\t        this.#info.payloadLength = (upper << 8) + lower;\n\t        this.#state = parserStates.READ_DATA;\n\t      } else if (this.#state === parserStates.READ_DATA) {\n\t        if (this.#byteOffset < this.#info.payloadLength) {\n\t          // If there is still more data in this chunk that needs to be read\n\t          return callback()\n\t        } else if (this.#byteOffset >= this.#info.payloadLength) {\n\t          // If the server sent multiple frames in a single chunk\n\n\t          const body = this.consume(this.#info.payloadLength);\n\n\t          this.#fragments.push(body);\n\n\t          // If the frame is unfragmented, or a fragmented frame was terminated,\n\t          // a message was received\n\t          if (!this.#info.fragmented || (this.#info.fin && this.#info.opcode === opcodes.CONTINUATION)) {\n\t            const fullMessage = Buffer.concat(this.#fragments);\n\n\t            websocketMessageReceived(this.ws, this.#info.originalOpcode, fullMessage);\n\n\t            this.#info = {};\n\t            this.#fragments.length = 0;\n\t          }\n\n\t          this.#state = parserStates.INFO;\n\t        }\n\t      }\n\n\t      if (this.#byteOffset > 0) {\n\t        continue\n\t      } else {\n\t        callback();\n\t        break\n\t      }\n\t    }\n\t  }\n\n\t  /**\n\t   * Take n bytes from the buffered Buffers\n\t   * @param {number} n\n\t   * @returns {Buffer|null}\n\t   */\n\t  consume (n) {\n\t    if (n > this.#byteOffset) {\n\t      return null\n\t    } else if (n === 0) {\n\t      return emptyBuffer\n\t    }\n\n\t    if (this.#buffers[0].length === n) {\n\t      this.#byteOffset -= this.#buffers[0].length;\n\t      return this.#buffers.shift()\n\t    }\n\n\t    const buffer = Buffer.allocUnsafe(n);\n\t    let offset = 0;\n\n\t    while (offset !== n) {\n\t      const next = this.#buffers[0];\n\t      const { length } = next;\n\n\t      if (length + offset === n) {\n\t        buffer.set(this.#buffers.shift(), offset);\n\t        break\n\t      } else if (length + offset > n) {\n\t        buffer.set(next.subarray(0, n - offset), offset);\n\t        this.#buffers[0] = next.subarray(n - offset);\n\t        break\n\t      } else {\n\t        buffer.set(this.#buffers.shift(), offset);\n\t        offset += next.length;\n\t      }\n\t    }\n\n\t    this.#byteOffset -= n;\n\n\t    return buffer\n\t  }\n\n\t  parseCloseBody (onlyCode, data) {\n\t    // https://datatracker.ietf.org/doc/html/rfc6455#section-7.1.5\n\t    /** @type {number|undefined} */\n\t    let code;\n\n\t    if (data.length >= 2) {\n\t      // _The WebSocket Connection Close Code_ is\n\t      // defined as the status code (Section 7.4) contained in the first Close\n\t      // control frame received by the application\n\t      code = data.readUInt16BE(0);\n\t    }\n\n\t    if (onlyCode) {\n\t      if (!isValidStatusCode(code)) {\n\t        return null\n\t      }\n\n\t      return { code }\n\t    }\n\n\t    // https://datatracker.ietf.org/doc/html/rfc6455#section-7.1.6\n\t    /** @type {Buffer} */\n\t    let reason = data.subarray(2);\n\n\t    // Remove BOM\n\t    if (reason[0] === 0xEF && reason[1] === 0xBB && reason[2] === 0xBF) {\n\t      reason = reason.subarray(3);\n\t    }\n\n\t    if (code !== undefined && !isValidStatusCode(code)) {\n\t      return null\n\t    }\n\n\t    try {\n\t      // TODO: optimize this\n\t      reason = new TextDecoder('utf-8', { fatal: true }).decode(reason);\n\t    } catch {\n\t      return null\n\t    }\n\n\t    return { code, reason }\n\t  }\n\n\t  get closingInfo () {\n\t    return this.#info.closeInfo\n\t  }\n\t}\n\n\treceiver = {\n\t  ByteParser\n\t};\n\treturn receiver;\n}\n\nvar websocket;\nvar hasRequiredWebsocket;\n\nfunction requireWebsocket () {\n\tif (hasRequiredWebsocket) return websocket;\n\thasRequiredWebsocket = 1;\n\n\tconst { webidl } = requireWebidl();\n\tconst { DOMException } = requireConstants$7();\n\tconst { URLSerializer } = requireDataURL();\n\tconst { getGlobalOrigin } = requireGlobal$1();\n\tconst { staticPropertyDescriptors, states, opcodes, emptyBuffer } = requireConstants$4();\n\tconst {\n\t  kWebSocketURL,\n\t  kReadyState,\n\t  kController,\n\t  kBinaryType,\n\t  kResponse,\n\t  kSentClose,\n\t  kByteParser\n\t} = requireSymbols();\n\tconst { isEstablished, isClosing, isValidSubprotocol, failWebsocketConnection, fireEvent } = requireUtil$6();\n\tconst { establishWebSocketConnection } = requireConnection();\n\tconst { WebsocketFrameSend } = requireFrame();\n\tconst { ByteParser } = requireReceiver();\n\tconst { kEnumerableProperty, isBlobLike } = requireUtil$c();\n\tconst { getGlobalDispatcher } = requireGlobal();\n\tconst { types } = require$$0__default$1;\n\n\tlet experimentalWarned = false;\n\n\t// https://websockets.spec.whatwg.org/#interface-definition\n\tclass WebSocket extends EventTarget {\n\t  #events = {\n\t    open: null,\n\t    error: null,\n\t    close: null,\n\t    message: null\n\t  }\n\n\t  #bufferedAmount = 0\n\t  #protocol = ''\n\t  #extensions = ''\n\n\t  /**\n\t   * @param {string} url\n\t   * @param {string|string[]} protocols\n\t   */\n\t  constructor (url, protocols = []) {\n\t    super();\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'WebSocket constructor' });\n\n\t    if (!experimentalWarned) {\n\t      experimentalWarned = true;\n\t      process.emitWarning('WebSockets are experimental, expect them to change at any time.', {\n\t        code: 'UNDICI-WS'\n\t      });\n\t    }\n\n\t    const options = webidl.converters['DOMString or sequence<DOMString> or WebSocketInit'](protocols);\n\n\t    url = webidl.converters.USVString(url);\n\t    protocols = options.protocols;\n\n\t    // 1. Let baseURL be this's relevant settings object's API base URL.\n\t    const baseURL = getGlobalOrigin();\n\n\t    // 1. Let urlRecord be the result of applying the URL parser to url with baseURL.\n\t    let urlRecord;\n\n\t    try {\n\t      urlRecord = new URL(url, baseURL);\n\t    } catch (e) {\n\t      // 3. If urlRecord is failure, then throw a \"SyntaxError\" DOMException.\n\t      throw new DOMException(e, 'SyntaxError')\n\t    }\n\n\t    // 4. If urlRecord’s scheme is \"http\", then set urlRecord’s scheme to \"ws\".\n\t    if (urlRecord.protocol === 'http:') {\n\t      urlRecord.protocol = 'ws:';\n\t    } else if (urlRecord.protocol === 'https:') {\n\t      // 5. Otherwise, if urlRecord’s scheme is \"https\", set urlRecord’s scheme to \"wss\".\n\t      urlRecord.protocol = 'wss:';\n\t    }\n\n\t    // 6. If urlRecord’s scheme is not \"ws\" or \"wss\", then throw a \"SyntaxError\" DOMException.\n\t    if (urlRecord.protocol !== 'ws:' && urlRecord.protocol !== 'wss:') {\n\t      throw new DOMException(\n\t        `Expected a ws: or wss: protocol, got ${urlRecord.protocol}`,\n\t        'SyntaxError'\n\t      )\n\t    }\n\n\t    // 7. If urlRecord’s fragment is non-null, then throw a \"SyntaxError\"\n\t    //    DOMException.\n\t    if (urlRecord.hash || urlRecord.href.endsWith('#')) {\n\t      throw new DOMException('Got fragment', 'SyntaxError')\n\t    }\n\n\t    // 8. If protocols is a string, set protocols to a sequence consisting\n\t    //    of just that string.\n\t    if (typeof protocols === 'string') {\n\t      protocols = [protocols];\n\t    }\n\n\t    // 9. If any of the values in protocols occur more than once or otherwise\n\t    //    fail to match the requirements for elements that comprise the value\n\t    //    of `Sec-WebSocket-Protocol` fields as defined by The WebSocket\n\t    //    protocol, then throw a \"SyntaxError\" DOMException.\n\t    if (protocols.length !== new Set(protocols.map(p => p.toLowerCase())).size) {\n\t      throw new DOMException('Invalid Sec-WebSocket-Protocol value', 'SyntaxError')\n\t    }\n\n\t    if (protocols.length > 0 && !protocols.every(p => isValidSubprotocol(p))) {\n\t      throw new DOMException('Invalid Sec-WebSocket-Protocol value', 'SyntaxError')\n\t    }\n\n\t    // 10. Set this's url to urlRecord.\n\t    this[kWebSocketURL] = new URL(urlRecord.href);\n\n\t    // 11. Let client be this's relevant settings object.\n\n\t    // 12. Run this step in parallel:\n\n\t    //    1. Establish a WebSocket connection given urlRecord, protocols,\n\t    //       and client.\n\t    this[kController] = establishWebSocketConnection(\n\t      urlRecord,\n\t      protocols,\n\t      this,\n\t      (response) => this.#onConnectionEstablished(response),\n\t      options\n\t    );\n\n\t    // Each WebSocket object has an associated ready state, which is a\n\t    // number representing the state of the connection. Initially it must\n\t    // be CONNECTING (0).\n\t    this[kReadyState] = WebSocket.CONNECTING;\n\n\t    // The extensions attribute must initially return the empty string.\n\n\t    // The protocol attribute must initially return the empty string.\n\n\t    // Each WebSocket object has an associated binary type, which is a\n\t    // BinaryType. Initially it must be \"blob\".\n\t    this[kBinaryType] = 'blob';\n\t  }\n\n\t  /**\n\t   * @see https://websockets.spec.whatwg.org/#dom-websocket-close\n\t   * @param {number|undefined} code\n\t   * @param {string|undefined} reason\n\t   */\n\t  close (code = undefined, reason = undefined) {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    if (code !== undefined) {\n\t      code = webidl.converters['unsigned short'](code, { clamp: true });\n\t    }\n\n\t    if (reason !== undefined) {\n\t      reason = webidl.converters.USVString(reason);\n\t    }\n\n\t    // 1. If code is present, but is neither an integer equal to 1000 nor an\n\t    //    integer in the range 3000 to 4999, inclusive, throw an\n\t    //    \"InvalidAccessError\" DOMException.\n\t    if (code !== undefined) {\n\t      if (code !== 1000 && (code < 3000 || code > 4999)) {\n\t        throw new DOMException('invalid code', 'InvalidAccessError')\n\t      }\n\t    }\n\n\t    let reasonByteLength = 0;\n\n\t    // 2. If reason is present, then run these substeps:\n\t    if (reason !== undefined) {\n\t      // 1. Let reasonBytes be the result of encoding reason.\n\t      // 2. If reasonBytes is longer than 123 bytes, then throw a\n\t      //    \"SyntaxError\" DOMException.\n\t      reasonByteLength = Buffer.byteLength(reason);\n\n\t      if (reasonByteLength > 123) {\n\t        throw new DOMException(\n\t          `Reason must be less than 123 bytes; received ${reasonByteLength}`,\n\t          'SyntaxError'\n\t        )\n\t      }\n\t    }\n\n\t    // 3. Run the first matching steps from the following list:\n\t    if (this[kReadyState] === WebSocket.CLOSING || this[kReadyState] === WebSocket.CLOSED) ; else if (!isEstablished(this)) {\n\t      // If the WebSocket connection is not yet established\n\t      // Fail the WebSocket connection and set this's ready state\n\t      // to CLOSING (2).\n\t      failWebsocketConnection(this, 'Connection was closed before it was established.');\n\t      this[kReadyState] = WebSocket.CLOSING;\n\t    } else if (!isClosing(this)) {\n\t      // If the WebSocket closing handshake has not yet been started\n\t      // Start the WebSocket closing handshake and set this's ready\n\t      // state to CLOSING (2).\n\t      // - If neither code nor reason is present, the WebSocket Close\n\t      //   message must not have a body.\n\t      // - If code is present, then the status code to use in the\n\t      //   WebSocket Close message must be the integer given by code.\n\t      // - If reason is also present, then reasonBytes must be\n\t      //   provided in the Close message after the status code.\n\n\t      const frame = new WebsocketFrameSend();\n\n\t      // If neither code nor reason is present, the WebSocket Close\n\t      // message must not have a body.\n\n\t      // If code is present, then the status code to use in the\n\t      // WebSocket Close message must be the integer given by code.\n\t      if (code !== undefined && reason === undefined) {\n\t        frame.frameData = Buffer.allocUnsafe(2);\n\t        frame.frameData.writeUInt16BE(code, 0);\n\t      } else if (code !== undefined && reason !== undefined) {\n\t        // If reason is also present, then reasonBytes must be\n\t        // provided in the Close message after the status code.\n\t        frame.frameData = Buffer.allocUnsafe(2 + reasonByteLength);\n\t        frame.frameData.writeUInt16BE(code, 0);\n\t        // the body MAY contain UTF-8-encoded data with value /reason/\n\t        frame.frameData.write(reason, 2, 'utf-8');\n\t      } else {\n\t        frame.frameData = emptyBuffer;\n\t      }\n\n\t      /** @type {import('stream').Duplex} */\n\t      const socket = this[kResponse].socket;\n\n\t      socket.write(frame.createFrame(opcodes.CLOSE), (err) => {\n\t        if (!err) {\n\t          this[kSentClose] = true;\n\t        }\n\t      });\n\n\t      // Upon either sending or receiving a Close control frame, it is said\n\t      // that _The WebSocket Closing Handshake is Started_ and that the\n\t      // WebSocket connection is in the CLOSING state.\n\t      this[kReadyState] = states.CLOSING;\n\t    } else {\n\t      // Otherwise\n\t      // Set this's ready state to CLOSING (2).\n\t      this[kReadyState] = WebSocket.CLOSING;\n\t    }\n\t  }\n\n\t  /**\n\t   * @see https://websockets.spec.whatwg.org/#dom-websocket-send\n\t   * @param {NodeJS.TypedArray|ArrayBuffer|Blob|string} data\n\t   */\n\t  send (data) {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    webidl.argumentLengthCheck(arguments, 1, { header: 'WebSocket.send' });\n\n\t    data = webidl.converters.WebSocketSendData(data);\n\n\t    // 1. If this's ready state is CONNECTING, then throw an\n\t    //    \"InvalidStateError\" DOMException.\n\t    if (this[kReadyState] === WebSocket.CONNECTING) {\n\t      throw new DOMException('Sent before connected.', 'InvalidStateError')\n\t    }\n\n\t    // 2. Run the appropriate set of steps from the following list:\n\t    // https://datatracker.ietf.org/doc/html/rfc6455#section-6.1\n\t    // https://datatracker.ietf.org/doc/html/rfc6455#section-5.2\n\n\t    if (!isEstablished(this) || isClosing(this)) {\n\t      return\n\t    }\n\n\t    /** @type {import('stream').Duplex} */\n\t    const socket = this[kResponse].socket;\n\n\t    // If data is a string\n\t    if (typeof data === 'string') {\n\t      // If the WebSocket connection is established and the WebSocket\n\t      // closing handshake has not yet started, then the user agent\n\t      // must send a WebSocket Message comprised of the data argument\n\t      // using a text frame opcode; if the data cannot be sent, e.g.\n\t      // because it would need to be buffered but the buffer is full,\n\t      // the user agent must flag the WebSocket as full and then close\n\t      // the WebSocket connection. Any invocation of this method with a\n\t      // string argument that does not throw an exception must increase\n\t      // the bufferedAmount attribute by the number of bytes needed to\n\t      // express the argument as UTF-8.\n\n\t      const value = Buffer.from(data);\n\t      const frame = new WebsocketFrameSend(value);\n\t      const buffer = frame.createFrame(opcodes.TEXT);\n\n\t      this.#bufferedAmount += value.byteLength;\n\t      socket.write(buffer, () => {\n\t        this.#bufferedAmount -= value.byteLength;\n\t      });\n\t    } else if (types.isArrayBuffer(data)) {\n\t      // If the WebSocket connection is established, and the WebSocket\n\t      // closing handshake has not yet started, then the user agent must\n\t      // send a WebSocket Message comprised of data using a binary frame\n\t      // opcode; if the data cannot be sent, e.g. because it would need\n\t      // to be buffered but the buffer is full, the user agent must flag\n\t      // the WebSocket as full and then close the WebSocket connection.\n\t      // The data to be sent is the data stored in the buffer described\n\t      // by the ArrayBuffer object. Any invocation of this method with an\n\t      // ArrayBuffer argument that does not throw an exception must\n\t      // increase the bufferedAmount attribute by the length of the\n\t      // ArrayBuffer in bytes.\n\n\t      const value = Buffer.from(data);\n\t      const frame = new WebsocketFrameSend(value);\n\t      const buffer = frame.createFrame(opcodes.BINARY);\n\n\t      this.#bufferedAmount += value.byteLength;\n\t      socket.write(buffer, () => {\n\t        this.#bufferedAmount -= value.byteLength;\n\t      });\n\t    } else if (ArrayBuffer.isView(data)) {\n\t      // If the WebSocket connection is established, and the WebSocket\n\t      // closing handshake has not yet started, then the user agent must\n\t      // send a WebSocket Message comprised of data using a binary frame\n\t      // opcode; if the data cannot be sent, e.g. because it would need to\n\t      // be buffered but the buffer is full, the user agent must flag the\n\t      // WebSocket as full and then close the WebSocket connection. The\n\t      // data to be sent is the data stored in the section of the buffer\n\t      // described by the ArrayBuffer object that data references. Any\n\t      // invocation of this method with this kind of argument that does\n\t      // not throw an exception must increase the bufferedAmount attribute\n\t      // by the length of data’s buffer in bytes.\n\n\t      const ab = Buffer.from(data, data.byteOffset, data.byteLength);\n\n\t      const frame = new WebsocketFrameSend(ab);\n\t      const buffer = frame.createFrame(opcodes.BINARY);\n\n\t      this.#bufferedAmount += ab.byteLength;\n\t      socket.write(buffer, () => {\n\t        this.#bufferedAmount -= ab.byteLength;\n\t      });\n\t    } else if (isBlobLike(data)) {\n\t      // If the WebSocket connection is established, and the WebSocket\n\t      // closing handshake has not yet started, then the user agent must\n\t      // send a WebSocket Message comprised of data using a binary frame\n\t      // opcode; if the data cannot be sent, e.g. because it would need to\n\t      // be buffered but the buffer is full, the user agent must flag the\n\t      // WebSocket as full and then close the WebSocket connection. The data\n\t      // to be sent is the raw data represented by the Blob object. Any\n\t      // invocation of this method with a Blob argument that does not throw\n\t      // an exception must increase the bufferedAmount attribute by the size\n\t      // of the Blob object’s raw data, in bytes.\n\n\t      const frame = new WebsocketFrameSend();\n\n\t      data.arrayBuffer().then((ab) => {\n\t        const value = Buffer.from(ab);\n\t        frame.frameData = value;\n\t        const buffer = frame.createFrame(opcodes.BINARY);\n\n\t        this.#bufferedAmount += value.byteLength;\n\t        socket.write(buffer, () => {\n\t          this.#bufferedAmount -= value.byteLength;\n\t        });\n\t      });\n\t    }\n\t  }\n\n\t  get readyState () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    // The readyState getter steps are to return this's ready state.\n\t    return this[kReadyState]\n\t  }\n\n\t  get bufferedAmount () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    return this.#bufferedAmount\n\t  }\n\n\t  get url () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    // The url getter steps are to return this's url, serialized.\n\t    return URLSerializer(this[kWebSocketURL])\n\t  }\n\n\t  get extensions () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    return this.#extensions\n\t  }\n\n\t  get protocol () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    return this.#protocol\n\t  }\n\n\t  get onopen () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    return this.#events.open\n\t  }\n\n\t  set onopen (fn) {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    if (this.#events.open) {\n\t      this.removeEventListener('open', this.#events.open);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this.#events.open = fn;\n\t      this.addEventListener('open', fn);\n\t    } else {\n\t      this.#events.open = null;\n\t    }\n\t  }\n\n\t  get onerror () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    return this.#events.error\n\t  }\n\n\t  set onerror (fn) {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    if (this.#events.error) {\n\t      this.removeEventListener('error', this.#events.error);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this.#events.error = fn;\n\t      this.addEventListener('error', fn);\n\t    } else {\n\t      this.#events.error = null;\n\t    }\n\t  }\n\n\t  get onclose () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    return this.#events.close\n\t  }\n\n\t  set onclose (fn) {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    if (this.#events.close) {\n\t      this.removeEventListener('close', this.#events.close);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this.#events.close = fn;\n\t      this.addEventListener('close', fn);\n\t    } else {\n\t      this.#events.close = null;\n\t    }\n\t  }\n\n\t  get onmessage () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    return this.#events.message\n\t  }\n\n\t  set onmessage (fn) {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    if (this.#events.message) {\n\t      this.removeEventListener('message', this.#events.message);\n\t    }\n\n\t    if (typeof fn === 'function') {\n\t      this.#events.message = fn;\n\t      this.addEventListener('message', fn);\n\t    } else {\n\t      this.#events.message = null;\n\t    }\n\t  }\n\n\t  get binaryType () {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    return this[kBinaryType]\n\t  }\n\n\t  set binaryType (type) {\n\t    webidl.brandCheck(this, WebSocket);\n\n\t    if (type !== 'blob' && type !== 'arraybuffer') {\n\t      this[kBinaryType] = 'blob';\n\t    } else {\n\t      this[kBinaryType] = type;\n\t    }\n\t  }\n\n\t  /**\n\t   * @see https://websockets.spec.whatwg.org/#feedback-from-the-protocol\n\t   */\n\t  #onConnectionEstablished (response) {\n\t    // processResponse is called when the \"response’s header list has been received and initialized.\"\n\t    // once this happens, the connection is open\n\t    this[kResponse] = response;\n\n\t    const parser = new ByteParser(this);\n\t    parser.on('drain', function onParserDrain () {\n\t      this.ws[kResponse].socket.resume();\n\t    });\n\n\t    response.socket.ws = this;\n\t    this[kByteParser] = parser;\n\n\t    // 1. Change the ready state to OPEN (1).\n\t    this[kReadyState] = states.OPEN;\n\n\t    // 2. Change the extensions attribute’s value to the extensions in use, if\n\t    //    it is not the null value.\n\t    // https://datatracker.ietf.org/doc/html/rfc6455#section-9.1\n\t    const extensions = response.headersList.get('sec-websocket-extensions');\n\n\t    if (extensions !== null) {\n\t      this.#extensions = extensions;\n\t    }\n\n\t    // 3. Change the protocol attribute’s value to the subprotocol in use, if\n\t    //    it is not the null value.\n\t    // https://datatracker.ietf.org/doc/html/rfc6455#section-1.9\n\t    const protocol = response.headersList.get('sec-websocket-protocol');\n\n\t    if (protocol !== null) {\n\t      this.#protocol = protocol;\n\t    }\n\n\t    // 4. Fire an event named open at the WebSocket object.\n\t    fireEvent('open', this);\n\t  }\n\t}\n\n\t// https://websockets.spec.whatwg.org/#dom-websocket-connecting\n\tWebSocket.CONNECTING = WebSocket.prototype.CONNECTING = states.CONNECTING;\n\t// https://websockets.spec.whatwg.org/#dom-websocket-open\n\tWebSocket.OPEN = WebSocket.prototype.OPEN = states.OPEN;\n\t// https://websockets.spec.whatwg.org/#dom-websocket-closing\n\tWebSocket.CLOSING = WebSocket.prototype.CLOSING = states.CLOSING;\n\t// https://websockets.spec.whatwg.org/#dom-websocket-closed\n\tWebSocket.CLOSED = WebSocket.prototype.CLOSED = states.CLOSED;\n\n\tObject.defineProperties(WebSocket.prototype, {\n\t  CONNECTING: staticPropertyDescriptors,\n\t  OPEN: staticPropertyDescriptors,\n\t  CLOSING: staticPropertyDescriptors,\n\t  CLOSED: staticPropertyDescriptors,\n\t  url: kEnumerableProperty,\n\t  readyState: kEnumerableProperty,\n\t  bufferedAmount: kEnumerableProperty,\n\t  onopen: kEnumerableProperty,\n\t  onerror: kEnumerableProperty,\n\t  onclose: kEnumerableProperty,\n\t  close: kEnumerableProperty,\n\t  onmessage: kEnumerableProperty,\n\t  binaryType: kEnumerableProperty,\n\t  send: kEnumerableProperty,\n\t  extensions: kEnumerableProperty,\n\t  protocol: kEnumerableProperty,\n\t  [Symbol.toStringTag]: {\n\t    value: 'WebSocket',\n\t    writable: false,\n\t    enumerable: false,\n\t    configurable: true\n\t  }\n\t});\n\n\tObject.defineProperties(WebSocket, {\n\t  CONNECTING: staticPropertyDescriptors,\n\t  OPEN: staticPropertyDescriptors,\n\t  CLOSING: staticPropertyDescriptors,\n\t  CLOSED: staticPropertyDescriptors\n\t});\n\n\twebidl.converters['sequence<DOMString>'] = webidl.sequenceConverter(\n\t  webidl.converters.DOMString\n\t);\n\n\twebidl.converters['DOMString or sequence<DOMString>'] = function (V) {\n\t  if (webidl.util.Type(V) === 'Object' && Symbol.iterator in V) {\n\t    return webidl.converters['sequence<DOMString>'](V)\n\t  }\n\n\t  return webidl.converters.DOMString(V)\n\t};\n\n\t// This implements the propsal made in https://github.com/whatwg/websockets/issues/42\n\twebidl.converters.WebSocketInit = webidl.dictionaryConverter([\n\t  {\n\t    key: 'protocols',\n\t    converter: webidl.converters['DOMString or sequence<DOMString>'],\n\t    get defaultValue () {\n\t      return []\n\t    }\n\t  },\n\t  {\n\t    key: 'dispatcher',\n\t    converter: (V) => V,\n\t    get defaultValue () {\n\t      return getGlobalDispatcher()\n\t    }\n\t  },\n\t  {\n\t    key: 'headers',\n\t    converter: webidl.nullableConverter(webidl.converters.HeadersInit)\n\t  }\n\t]);\n\n\twebidl.converters['DOMString or sequence<DOMString> or WebSocketInit'] = function (V) {\n\t  if (webidl.util.Type(V) === 'Object' && !(Symbol.iterator in V)) {\n\t    return webidl.converters.WebSocketInit(V)\n\t  }\n\n\t  return { protocols: webidl.converters['DOMString or sequence<DOMString>'](V) }\n\t};\n\n\twebidl.converters.WebSocketSendData = function (V) {\n\t  if (webidl.util.Type(V) === 'Object') {\n\t    if (isBlobLike(V)) {\n\t      return webidl.converters.Blob(V, { strict: false })\n\t    }\n\n\t    if (ArrayBuffer.isView(V) || types.isAnyArrayBuffer(V)) {\n\t      return webidl.converters.BufferSource(V)\n\t    }\n\t  }\n\n\t  return webidl.converters.USVString(V)\n\t};\n\n\twebsocket = {\n\t  WebSocket\n\t};\n\treturn websocket;\n}\n\nvar hasRequiredUndici;\n\nfunction requireUndici () {\n\tif (hasRequiredUndici) return undici;\n\thasRequiredUndici = 1;\n\n\tconst Client = requireClient$1();\n\tconst Dispatcher = requireDispatcher();\n\tconst errors = requireErrors$3();\n\tconst Pool = requirePool();\n\tconst BalancedPool = requireBalancedPool();\n\tconst Agent = requireAgent();\n\tconst util = requireUtil$c();\n\tconst { InvalidArgumentError } = errors;\n\tconst api = requireApi();\n\tconst buildConnector = requireConnect();\n\tconst MockClient = requireMockClient();\n\tconst MockAgent = requireMockAgent();\n\tconst MockPool = requireMockPool();\n\tconst mockErrors = requireMockErrors();\n\tconst ProxyAgent = requireProxyAgent();\n\tconst RetryHandler = requireRetryHandler();\n\tconst { getGlobalDispatcher, setGlobalDispatcher } = requireGlobal();\n\tconst DecoratorHandler = requireDecoratorHandler();\n\tconst RedirectHandler = requireRedirectHandler();\n\tconst createRedirectInterceptor = requireRedirectInterceptor();\n\n\tlet hasCrypto;\n\ttry {\n\t  require('crypto');\n\t  hasCrypto = true;\n\t} catch {\n\t  hasCrypto = false;\n\t}\n\n\tObject.assign(Dispatcher.prototype, api);\n\n\tundici.Dispatcher = Dispatcher;\n\tundici.Client = Client;\n\tundici.Pool = Pool;\n\tundici.BalancedPool = BalancedPool;\n\tundici.Agent = Agent;\n\tundici.ProxyAgent = ProxyAgent;\n\tundici.RetryHandler = RetryHandler;\n\n\tundici.DecoratorHandler = DecoratorHandler;\n\tundici.RedirectHandler = RedirectHandler;\n\tundici.createRedirectInterceptor = createRedirectInterceptor;\n\n\tundici.buildConnector = buildConnector;\n\tundici.errors = errors;\n\n\tfunction makeDispatcher (fn) {\n\t  return (url, opts, handler) => {\n\t    if (typeof opts === 'function') {\n\t      handler = opts;\n\t      opts = null;\n\t    }\n\n\t    if (!url || (typeof url !== 'string' && typeof url !== 'object' && !(url instanceof URL))) {\n\t      throw new InvalidArgumentError('invalid url')\n\t    }\n\n\t    if (opts != null && typeof opts !== 'object') {\n\t      throw new InvalidArgumentError('invalid opts')\n\t    }\n\n\t    if (opts && opts.path != null) {\n\t      if (typeof opts.path !== 'string') {\n\t        throw new InvalidArgumentError('invalid opts.path')\n\t      }\n\n\t      let path = opts.path;\n\t      if (!opts.path.startsWith('/')) {\n\t        path = `/${path}`;\n\t      }\n\n\t      url = new URL(util.parseOrigin(url).origin + path);\n\t    } else {\n\t      if (!opts) {\n\t        opts = typeof url === 'object' ? url : {};\n\t      }\n\n\t      url = util.parseURL(url);\n\t    }\n\n\t    const { agent, dispatcher = getGlobalDispatcher() } = opts;\n\n\t    if (agent) {\n\t      throw new InvalidArgumentError('unsupported opts.agent. Did you mean opts.client?')\n\t    }\n\n\t    return fn.call(dispatcher, {\n\t      ...opts,\n\t      origin: url.origin,\n\t      path: url.search ? `${url.pathname}${url.search}` : url.pathname,\n\t      method: opts.method || (opts.body ? 'PUT' : 'GET')\n\t    }, handler)\n\t  }\n\t}\n\n\tundici.setGlobalDispatcher = setGlobalDispatcher;\n\tundici.getGlobalDispatcher = getGlobalDispatcher;\n\n\tif (util.nodeMajor > 16 || (util.nodeMajor === 16 && util.nodeMinor >= 8)) {\n\t  let fetchImpl = null;\n\t  undici.fetch = async function fetch (resource) {\n\t    if (!fetchImpl) {\n\t      fetchImpl = requireFetch().fetch;\n\t    }\n\n\t    try {\n\t      return await fetchImpl(...arguments)\n\t    } catch (err) {\n\t      if (typeof err === 'object') {\n\t        Error.captureStackTrace(err, this);\n\t      }\n\n\t      throw err\n\t    }\n\t  };\n\t  undici.Headers = requireHeaders$1().Headers;\n\t  undici.Response = requireResponse().Response;\n\t  undici.Request = requireRequest().Request;\n\t  undici.FormData = requireFormdata().FormData;\n\t  undici.File = requireFile$1().File;\n\t  undici.FileReader = requireFilereader().FileReader;\n\n\t  const { setGlobalOrigin, getGlobalOrigin } = requireGlobal$1();\n\n\t  undici.setGlobalOrigin = setGlobalOrigin;\n\t  undici.getGlobalOrigin = getGlobalOrigin;\n\n\t  const { CacheStorage } = requireCachestorage();\n\t  const { kConstruct } = requireSymbols$1();\n\n\t  // Cache & CacheStorage are tightly coupled with fetch. Even if it may run\n\t  // in an older version of Node, it doesn't have any use without fetch.\n\t  undici.caches = new CacheStorage(kConstruct);\n\t}\n\n\tif (util.nodeMajor >= 16) {\n\t  const { deleteCookie, getCookies, getSetCookies, setCookie } = requireCookies();\n\n\t  undici.deleteCookie = deleteCookie;\n\t  undici.getCookies = getCookies;\n\t  undici.getSetCookies = getSetCookies;\n\t  undici.setCookie = setCookie;\n\n\t  const { parseMIMEType, serializeAMimeType } = requireDataURL();\n\n\t  undici.parseMIMEType = parseMIMEType;\n\t  undici.serializeAMimeType = serializeAMimeType;\n\t}\n\n\tif (util.nodeMajor >= 18 && hasCrypto) {\n\t  const { WebSocket } = requireWebsocket();\n\n\t  undici.WebSocket = WebSocket;\n\t}\n\n\tundici.request = makeDispatcher(api.request);\n\tundici.stream = makeDispatcher(api.stream);\n\tundici.pipeline = makeDispatcher(api.pipeline);\n\tundici.connect = makeDispatcher(api.connect);\n\tundici.upgrade = makeDispatcher(api.upgrade);\n\n\tundici.MockClient = MockClient;\n\tundici.MockPool = MockPool;\n\tundici.MockAgent = MockAgent;\n\tundici.mockErrors = mockErrors;\n\treturn undici;\n}\n\nvar hasRequiredLib$2;\n\nfunction requireLib$2 () {\n\tif (hasRequiredLib$2) return lib$2;\n\thasRequiredLib$2 = 1;\n\t/* eslint-disable @typescript-eslint/no-explicit-any */\n\tvar __createBinding = (lib$2 && lib$2.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (lib$2 && lib$2.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (lib$2 && lib$2.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (lib$2 && lib$2.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(lib$2, \"__esModule\", { value: true });\n\tlib$2.HttpClient = lib$2.isHttps = lib$2.HttpClientResponse = lib$2.HttpClientError = lib$2.getProxyUrl = lib$2.MediaTypes = lib$2.Headers = lib$2.HttpCodes = void 0;\n\tconst http = __importStar(require$$2$3);\n\tconst https = __importStar(require$$1$3);\n\tconst pm = __importStar(requireProxy());\n\tconst tunnel = __importStar(requireTunnel());\n\tconst undici_1 = requireUndici();\n\tvar HttpCodes;\n\t(function (HttpCodes) {\n\t    HttpCodes[HttpCodes[\"OK\"] = 200] = \"OK\";\n\t    HttpCodes[HttpCodes[\"MultipleChoices\"] = 300] = \"MultipleChoices\";\n\t    HttpCodes[HttpCodes[\"MovedPermanently\"] = 301] = \"MovedPermanently\";\n\t    HttpCodes[HttpCodes[\"ResourceMoved\"] = 302] = \"ResourceMoved\";\n\t    HttpCodes[HttpCodes[\"SeeOther\"] = 303] = \"SeeOther\";\n\t    HttpCodes[HttpCodes[\"NotModified\"] = 304] = \"NotModified\";\n\t    HttpCodes[HttpCodes[\"UseProxy\"] = 305] = \"UseProxy\";\n\t    HttpCodes[HttpCodes[\"SwitchProxy\"] = 306] = \"SwitchProxy\";\n\t    HttpCodes[HttpCodes[\"TemporaryRedirect\"] = 307] = \"TemporaryRedirect\";\n\t    HttpCodes[HttpCodes[\"PermanentRedirect\"] = 308] = \"PermanentRedirect\";\n\t    HttpCodes[HttpCodes[\"BadRequest\"] = 400] = \"BadRequest\";\n\t    HttpCodes[HttpCodes[\"Unauthorized\"] = 401] = \"Unauthorized\";\n\t    HttpCodes[HttpCodes[\"PaymentRequired\"] = 402] = \"PaymentRequired\";\n\t    HttpCodes[HttpCodes[\"Forbidden\"] = 403] = \"Forbidden\";\n\t    HttpCodes[HttpCodes[\"NotFound\"] = 404] = \"NotFound\";\n\t    HttpCodes[HttpCodes[\"MethodNotAllowed\"] = 405] = \"MethodNotAllowed\";\n\t    HttpCodes[HttpCodes[\"NotAcceptable\"] = 406] = \"NotAcceptable\";\n\t    HttpCodes[HttpCodes[\"ProxyAuthenticationRequired\"] = 407] = \"ProxyAuthenticationRequired\";\n\t    HttpCodes[HttpCodes[\"RequestTimeout\"] = 408] = \"RequestTimeout\";\n\t    HttpCodes[HttpCodes[\"Conflict\"] = 409] = \"Conflict\";\n\t    HttpCodes[HttpCodes[\"Gone\"] = 410] = \"Gone\";\n\t    HttpCodes[HttpCodes[\"TooManyRequests\"] = 429] = \"TooManyRequests\";\n\t    HttpCodes[HttpCodes[\"InternalServerError\"] = 500] = \"InternalServerError\";\n\t    HttpCodes[HttpCodes[\"NotImplemented\"] = 501] = \"NotImplemented\";\n\t    HttpCodes[HttpCodes[\"BadGateway\"] = 502] = \"BadGateway\";\n\t    HttpCodes[HttpCodes[\"ServiceUnavailable\"] = 503] = \"ServiceUnavailable\";\n\t    HttpCodes[HttpCodes[\"GatewayTimeout\"] = 504] = \"GatewayTimeout\";\n\t})(HttpCodes || (lib$2.HttpCodes = HttpCodes = {}));\n\tvar Headers;\n\t(function (Headers) {\n\t    Headers[\"Accept\"] = \"accept\";\n\t    Headers[\"ContentType\"] = \"content-type\";\n\t})(Headers || (lib$2.Headers = Headers = {}));\n\tvar MediaTypes;\n\t(function (MediaTypes) {\n\t    MediaTypes[\"ApplicationJson\"] = \"application/json\";\n\t})(MediaTypes || (lib$2.MediaTypes = MediaTypes = {}));\n\t/**\n\t * Returns the proxy URL, depending upon the supplied url and proxy environment variables.\n\t * @param serverUrl  The server URL where the request will be sent. For example, https://api.github.com\n\t */\n\tfunction getProxyUrl(serverUrl) {\n\t    const proxyUrl = pm.getProxyUrl(new URL(serverUrl));\n\t    return proxyUrl ? proxyUrl.href : '';\n\t}\n\tlib$2.getProxyUrl = getProxyUrl;\n\tconst HttpRedirectCodes = [\n\t    HttpCodes.MovedPermanently,\n\t    HttpCodes.ResourceMoved,\n\t    HttpCodes.SeeOther,\n\t    HttpCodes.TemporaryRedirect,\n\t    HttpCodes.PermanentRedirect\n\t];\n\tconst HttpResponseRetryCodes = [\n\t    HttpCodes.BadGateway,\n\t    HttpCodes.ServiceUnavailable,\n\t    HttpCodes.GatewayTimeout\n\t];\n\tconst RetryableHttpVerbs = ['OPTIONS', 'GET', 'DELETE', 'HEAD'];\n\tconst ExponentialBackoffCeiling = 10;\n\tconst ExponentialBackoffTimeSlice = 5;\n\tclass HttpClientError extends Error {\n\t    constructor(message, statusCode) {\n\t        super(message);\n\t        this.name = 'HttpClientError';\n\t        this.statusCode = statusCode;\n\t        Object.setPrototypeOf(this, HttpClientError.prototype);\n\t    }\n\t}\n\tlib$2.HttpClientError = HttpClientError;\n\tclass HttpClientResponse {\n\t    constructor(message) {\n\t        this.message = message;\n\t    }\n\t    readBody() {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {\n\t                let output = Buffer.alloc(0);\n\t                this.message.on('data', (chunk) => {\n\t                    output = Buffer.concat([output, chunk]);\n\t                });\n\t                this.message.on('end', () => {\n\t                    resolve(output.toString());\n\t                });\n\t            }));\n\t        });\n\t    }\n\t    readBodyBuffer() {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {\n\t                const chunks = [];\n\t                this.message.on('data', (chunk) => {\n\t                    chunks.push(chunk);\n\t                });\n\t                this.message.on('end', () => {\n\t                    resolve(Buffer.concat(chunks));\n\t                });\n\t            }));\n\t        });\n\t    }\n\t}\n\tlib$2.HttpClientResponse = HttpClientResponse;\n\tfunction isHttps(requestUrl) {\n\t    const parsedUrl = new URL(requestUrl);\n\t    return parsedUrl.protocol === 'https:';\n\t}\n\tlib$2.isHttps = isHttps;\n\tclass HttpClient {\n\t    constructor(userAgent, handlers, requestOptions) {\n\t        this._ignoreSslError = false;\n\t        this._allowRedirects = true;\n\t        this._allowRedirectDowngrade = false;\n\t        this._maxRedirects = 50;\n\t        this._allowRetries = false;\n\t        this._maxRetries = 1;\n\t        this._keepAlive = false;\n\t        this._disposed = false;\n\t        this.userAgent = userAgent;\n\t        this.handlers = handlers || [];\n\t        this.requestOptions = requestOptions;\n\t        if (requestOptions) {\n\t            if (requestOptions.ignoreSslError != null) {\n\t                this._ignoreSslError = requestOptions.ignoreSslError;\n\t            }\n\t            this._socketTimeout = requestOptions.socketTimeout;\n\t            if (requestOptions.allowRedirects != null) {\n\t                this._allowRedirects = requestOptions.allowRedirects;\n\t            }\n\t            if (requestOptions.allowRedirectDowngrade != null) {\n\t                this._allowRedirectDowngrade = requestOptions.allowRedirectDowngrade;\n\t            }\n\t            if (requestOptions.maxRedirects != null) {\n\t                this._maxRedirects = Math.max(requestOptions.maxRedirects, 0);\n\t            }\n\t            if (requestOptions.keepAlive != null) {\n\t                this._keepAlive = requestOptions.keepAlive;\n\t            }\n\t            if (requestOptions.allowRetries != null) {\n\t                this._allowRetries = requestOptions.allowRetries;\n\t            }\n\t            if (requestOptions.maxRetries != null) {\n\t                this._maxRetries = requestOptions.maxRetries;\n\t            }\n\t        }\n\t    }\n\t    options(requestUrl, additionalHeaders) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return this.request('OPTIONS', requestUrl, null, additionalHeaders || {});\n\t        });\n\t    }\n\t    get(requestUrl, additionalHeaders) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return this.request('GET', requestUrl, null, additionalHeaders || {});\n\t        });\n\t    }\n\t    del(requestUrl, additionalHeaders) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return this.request('DELETE', requestUrl, null, additionalHeaders || {});\n\t        });\n\t    }\n\t    post(requestUrl, data, additionalHeaders) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return this.request('POST', requestUrl, data, additionalHeaders || {});\n\t        });\n\t    }\n\t    patch(requestUrl, data, additionalHeaders) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return this.request('PATCH', requestUrl, data, additionalHeaders || {});\n\t        });\n\t    }\n\t    put(requestUrl, data, additionalHeaders) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return this.request('PUT', requestUrl, data, additionalHeaders || {});\n\t        });\n\t    }\n\t    head(requestUrl, additionalHeaders) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return this.request('HEAD', requestUrl, null, additionalHeaders || {});\n\t        });\n\t    }\n\t    sendStream(verb, requestUrl, stream, additionalHeaders) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return this.request(verb, requestUrl, stream, additionalHeaders);\n\t        });\n\t    }\n\t    /**\n\t     * Gets a typed object from an endpoint\n\t     * Be aware that not found returns a null.  Other errors (4xx, 5xx) reject the promise\n\t     */\n\t    getJson(requestUrl, additionalHeaders = {}) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson);\n\t            const res = yield this.get(requestUrl, additionalHeaders);\n\t            return this._processResponse(res, this.requestOptions);\n\t        });\n\t    }\n\t    postJson(requestUrl, obj, additionalHeaders = {}) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            const data = JSON.stringify(obj, null, 2);\n\t            additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson);\n\t            additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson);\n\t            const res = yield this.post(requestUrl, data, additionalHeaders);\n\t            return this._processResponse(res, this.requestOptions);\n\t        });\n\t    }\n\t    putJson(requestUrl, obj, additionalHeaders = {}) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            const data = JSON.stringify(obj, null, 2);\n\t            additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson);\n\t            additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson);\n\t            const res = yield this.put(requestUrl, data, additionalHeaders);\n\t            return this._processResponse(res, this.requestOptions);\n\t        });\n\t    }\n\t    patchJson(requestUrl, obj, additionalHeaders = {}) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            const data = JSON.stringify(obj, null, 2);\n\t            additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson);\n\t            additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson);\n\t            const res = yield this.patch(requestUrl, data, additionalHeaders);\n\t            return this._processResponse(res, this.requestOptions);\n\t        });\n\t    }\n\t    /**\n\t     * Makes a raw http request.\n\t     * All other methods such as get, post, patch, and request ultimately call this.\n\t     * Prefer get, del, post and patch\n\t     */\n\t    request(verb, requestUrl, data, headers) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            if (this._disposed) {\n\t                throw new Error('Client has already been disposed.');\n\t            }\n\t            const parsedUrl = new URL(requestUrl);\n\t            let info = this._prepareRequest(verb, parsedUrl, headers);\n\t            // Only perform retries on reads since writes may not be idempotent.\n\t            const maxTries = this._allowRetries && RetryableHttpVerbs.includes(verb)\n\t                ? this._maxRetries + 1\n\t                : 1;\n\t            let numTries = 0;\n\t            let response;\n\t            do {\n\t                response = yield this.requestRaw(info, data);\n\t                // Check if it's an authentication challenge\n\t                if (response &&\n\t                    response.message &&\n\t                    response.message.statusCode === HttpCodes.Unauthorized) {\n\t                    let authenticationHandler;\n\t                    for (const handler of this.handlers) {\n\t                        if (handler.canHandleAuthentication(response)) {\n\t                            authenticationHandler = handler;\n\t                            break;\n\t                        }\n\t                    }\n\t                    if (authenticationHandler) {\n\t                        return authenticationHandler.handleAuthentication(this, info, data);\n\t                    }\n\t                    else {\n\t                        // We have received an unauthorized response but have no handlers to handle it.\n\t                        // Let the response return to the caller.\n\t                        return response;\n\t                    }\n\t                }\n\t                let redirectsRemaining = this._maxRedirects;\n\t                while (response.message.statusCode &&\n\t                    HttpRedirectCodes.includes(response.message.statusCode) &&\n\t                    this._allowRedirects &&\n\t                    redirectsRemaining > 0) {\n\t                    const redirectUrl = response.message.headers['location'];\n\t                    if (!redirectUrl) {\n\t                        // if there's no location to redirect to, we won't\n\t                        break;\n\t                    }\n\t                    const parsedRedirectUrl = new URL(redirectUrl);\n\t                    if (parsedUrl.protocol === 'https:' &&\n\t                        parsedUrl.protocol !== parsedRedirectUrl.protocol &&\n\t                        !this._allowRedirectDowngrade) {\n\t                        throw new Error('Redirect from HTTPS to HTTP protocol. This downgrade is not allowed for security reasons. If you want to allow this behavior, set the allowRedirectDowngrade option to true.');\n\t                    }\n\t                    // we need to finish reading the response before reassigning response\n\t                    // which will leak the open socket.\n\t                    yield response.readBody();\n\t                    // strip authorization header if redirected to a different hostname\n\t                    if (parsedRedirectUrl.hostname !== parsedUrl.hostname) {\n\t                        for (const header in headers) {\n\t                            // header names are case insensitive\n\t                            if (header.toLowerCase() === 'authorization') {\n\t                                delete headers[header];\n\t                            }\n\t                        }\n\t                    }\n\t                    // let's make the request with the new redirectUrl\n\t                    info = this._prepareRequest(verb, parsedRedirectUrl, headers);\n\t                    response = yield this.requestRaw(info, data);\n\t                    redirectsRemaining--;\n\t                }\n\t                if (!response.message.statusCode ||\n\t                    !HttpResponseRetryCodes.includes(response.message.statusCode)) {\n\t                    // If not a retry code, return immediately instead of retrying\n\t                    return response;\n\t                }\n\t                numTries += 1;\n\t                if (numTries < maxTries) {\n\t                    yield response.readBody();\n\t                    yield this._performExponentialBackoff(numTries);\n\t                }\n\t            } while (numTries < maxTries);\n\t            return response;\n\t        });\n\t    }\n\t    /**\n\t     * Needs to be called if keepAlive is set to true in request options.\n\t     */\n\t    dispose() {\n\t        if (this._agent) {\n\t            this._agent.destroy();\n\t        }\n\t        this._disposed = true;\n\t    }\n\t    /**\n\t     * Raw request.\n\t     * @param info\n\t     * @param data\n\t     */\n\t    requestRaw(info, data) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return new Promise((resolve, reject) => {\n\t                function callbackForResult(err, res) {\n\t                    if (err) {\n\t                        reject(err);\n\t                    }\n\t                    else if (!res) {\n\t                        // If `err` is not passed, then `res` must be passed.\n\t                        reject(new Error('Unknown error'));\n\t                    }\n\t                    else {\n\t                        resolve(res);\n\t                    }\n\t                }\n\t                this.requestRawWithCallback(info, data, callbackForResult);\n\t            });\n\t        });\n\t    }\n\t    /**\n\t     * Raw request with callback.\n\t     * @param info\n\t     * @param data\n\t     * @param onResult\n\t     */\n\t    requestRawWithCallback(info, data, onResult) {\n\t        if (typeof data === 'string') {\n\t            if (!info.options.headers) {\n\t                info.options.headers = {};\n\t            }\n\t            info.options.headers['Content-Length'] = Buffer.byteLength(data, 'utf8');\n\t        }\n\t        let callbackCalled = false;\n\t        function handleResult(err, res) {\n\t            if (!callbackCalled) {\n\t                callbackCalled = true;\n\t                onResult(err, res);\n\t            }\n\t        }\n\t        const req = info.httpModule.request(info.options, (msg) => {\n\t            const res = new HttpClientResponse(msg);\n\t            handleResult(undefined, res);\n\t        });\n\t        let socket;\n\t        req.on('socket', sock => {\n\t            socket = sock;\n\t        });\n\t        // If we ever get disconnected, we want the socket to timeout eventually\n\t        req.setTimeout(this._socketTimeout || 3 * 60000, () => {\n\t            if (socket) {\n\t                socket.end();\n\t            }\n\t            handleResult(new Error(`Request timeout: ${info.options.path}`));\n\t        });\n\t        req.on('error', function (err) {\n\t            // err has statusCode property\n\t            // res should have headers\n\t            handleResult(err);\n\t        });\n\t        if (data && typeof data === 'string') {\n\t            req.write(data, 'utf8');\n\t        }\n\t        if (data && typeof data !== 'string') {\n\t            data.on('close', function () {\n\t                req.end();\n\t            });\n\t            data.pipe(req);\n\t        }\n\t        else {\n\t            req.end();\n\t        }\n\t    }\n\t    /**\n\t     * Gets an http agent. This function is useful when you need an http agent that handles\n\t     * routing through a proxy server - depending upon the url and proxy environment variables.\n\t     * @param serverUrl  The server URL where the request will be sent. For example, https://api.github.com\n\t     */\n\t    getAgent(serverUrl) {\n\t        const parsedUrl = new URL(serverUrl);\n\t        return this._getAgent(parsedUrl);\n\t    }\n\t    getAgentDispatcher(serverUrl) {\n\t        const parsedUrl = new URL(serverUrl);\n\t        const proxyUrl = pm.getProxyUrl(parsedUrl);\n\t        const useProxy = proxyUrl && proxyUrl.hostname;\n\t        if (!useProxy) {\n\t            return;\n\t        }\n\t        return this._getProxyAgentDispatcher(parsedUrl, proxyUrl);\n\t    }\n\t    _prepareRequest(method, requestUrl, headers) {\n\t        const info = {};\n\t        info.parsedUrl = requestUrl;\n\t        const usingSsl = info.parsedUrl.protocol === 'https:';\n\t        info.httpModule = usingSsl ? https : http;\n\t        const defaultPort = usingSsl ? 443 : 80;\n\t        info.options = {};\n\t        info.options.host = info.parsedUrl.hostname;\n\t        info.options.port = info.parsedUrl.port\n\t            ? parseInt(info.parsedUrl.port)\n\t            : defaultPort;\n\t        info.options.path =\n\t            (info.parsedUrl.pathname || '') + (info.parsedUrl.search || '');\n\t        info.options.method = method;\n\t        info.options.headers = this._mergeHeaders(headers);\n\t        if (this.userAgent != null) {\n\t            info.options.headers['user-agent'] = this.userAgent;\n\t        }\n\t        info.options.agent = this._getAgent(info.parsedUrl);\n\t        // gives handlers an opportunity to participate\n\t        if (this.handlers) {\n\t            for (const handler of this.handlers) {\n\t                handler.prepareRequest(info.options);\n\t            }\n\t        }\n\t        return info;\n\t    }\n\t    _mergeHeaders(headers) {\n\t        if (this.requestOptions && this.requestOptions.headers) {\n\t            return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers || {}));\n\t        }\n\t        return lowercaseKeys(headers || {});\n\t    }\n\t    _getExistingOrDefaultHeader(additionalHeaders, header, _default) {\n\t        let clientHeader;\n\t        if (this.requestOptions && this.requestOptions.headers) {\n\t            clientHeader = lowercaseKeys(this.requestOptions.headers)[header];\n\t        }\n\t        return additionalHeaders[header] || clientHeader || _default;\n\t    }\n\t    _getAgent(parsedUrl) {\n\t        let agent;\n\t        const proxyUrl = pm.getProxyUrl(parsedUrl);\n\t        const useProxy = proxyUrl && proxyUrl.hostname;\n\t        if (this._keepAlive && useProxy) {\n\t            agent = this._proxyAgent;\n\t        }\n\t        if (!useProxy) {\n\t            agent = this._agent;\n\t        }\n\t        // if agent is already assigned use that agent.\n\t        if (agent) {\n\t            return agent;\n\t        }\n\t        const usingSsl = parsedUrl.protocol === 'https:';\n\t        let maxSockets = 100;\n\t        if (this.requestOptions) {\n\t            maxSockets = this.requestOptions.maxSockets || http.globalAgent.maxSockets;\n\t        }\n\t        // This is `useProxy` again, but we need to check `proxyURl` directly for TypeScripts's flow analysis.\n\t        if (proxyUrl && proxyUrl.hostname) {\n\t            const agentOptions = {\n\t                maxSockets,\n\t                keepAlive: this._keepAlive,\n\t                proxy: Object.assign(Object.assign({}, ((proxyUrl.username || proxyUrl.password) && {\n\t                    proxyAuth: `${proxyUrl.username}:${proxyUrl.password}`\n\t                })), { host: proxyUrl.hostname, port: proxyUrl.port })\n\t            };\n\t            let tunnelAgent;\n\t            const overHttps = proxyUrl.protocol === 'https:';\n\t            if (usingSsl) {\n\t                tunnelAgent = overHttps ? tunnel.httpsOverHttps : tunnel.httpsOverHttp;\n\t            }\n\t            else {\n\t                tunnelAgent = overHttps ? tunnel.httpOverHttps : tunnel.httpOverHttp;\n\t            }\n\t            agent = tunnelAgent(agentOptions);\n\t            this._proxyAgent = agent;\n\t        }\n\t        // if tunneling agent isn't assigned create a new agent\n\t        if (!agent) {\n\t            const options = { keepAlive: this._keepAlive, maxSockets };\n\t            agent = usingSsl ? new https.Agent(options) : new http.Agent(options);\n\t            this._agent = agent;\n\t        }\n\t        if (usingSsl && this._ignoreSslError) {\n\t            // we don't want to set NODE_TLS_REJECT_UNAUTHORIZED=0 since that will affect request for entire process\n\t            // http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options\n\t            // we have to cast it to any and change it directly\n\t            agent.options = Object.assign(agent.options || {}, {\n\t                rejectUnauthorized: false\n\t            });\n\t        }\n\t        return agent;\n\t    }\n\t    _getProxyAgentDispatcher(parsedUrl, proxyUrl) {\n\t        let proxyAgent;\n\t        if (this._keepAlive) {\n\t            proxyAgent = this._proxyAgentDispatcher;\n\t        }\n\t        // if agent is already assigned use that agent.\n\t        if (proxyAgent) {\n\t            return proxyAgent;\n\t        }\n\t        const usingSsl = parsedUrl.protocol === 'https:';\n\t        proxyAgent = new undici_1.ProxyAgent(Object.assign({ uri: proxyUrl.href, pipelining: !this._keepAlive ? 0 : 1 }, ((proxyUrl.username || proxyUrl.password) && {\n\t            token: `Basic ${Buffer.from(`${proxyUrl.username}:${proxyUrl.password}`).toString('base64')}`\n\t        })));\n\t        this._proxyAgentDispatcher = proxyAgent;\n\t        if (usingSsl && this._ignoreSslError) {\n\t            // we don't want to set NODE_TLS_REJECT_UNAUTHORIZED=0 since that will affect request for entire process\n\t            // http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options\n\t            // we have to cast it to any and change it directly\n\t            proxyAgent.options = Object.assign(proxyAgent.options.requestTls || {}, {\n\t                rejectUnauthorized: false\n\t            });\n\t        }\n\t        return proxyAgent;\n\t    }\n\t    _performExponentialBackoff(retryNumber) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber);\n\t            const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber);\n\t            return new Promise(resolve => setTimeout(() => resolve(), ms));\n\t        });\n\t    }\n\t    _processResponse(res, options) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () {\n\t                const statusCode = res.message.statusCode || 0;\n\t                const response = {\n\t                    statusCode,\n\t                    result: null,\n\t                    headers: {}\n\t                };\n\t                // not found leads to null obj returned\n\t                if (statusCode === HttpCodes.NotFound) {\n\t                    resolve(response);\n\t                }\n\t                // get the result from the body\n\t                function dateTimeDeserializer(key, value) {\n\t                    if (typeof value === 'string') {\n\t                        const a = new Date(value);\n\t                        if (!isNaN(a.valueOf())) {\n\t                            return a;\n\t                        }\n\t                    }\n\t                    return value;\n\t                }\n\t                let obj;\n\t                let contents;\n\t                try {\n\t                    contents = yield res.readBody();\n\t                    if (contents && contents.length > 0) {\n\t                        if (options && options.deserializeDates) {\n\t                            obj = JSON.parse(contents, dateTimeDeserializer);\n\t                        }\n\t                        else {\n\t                            obj = JSON.parse(contents);\n\t                        }\n\t                        response.result = obj;\n\t                    }\n\t                    response.headers = res.message.headers;\n\t                }\n\t                catch (err) {\n\t                    // Invalid resource (contents not json);  leaving result obj null\n\t                }\n\t                // note that 3xx redirects are handled by the http layer.\n\t                if (statusCode > 299) {\n\t                    let msg;\n\t                    // if exception/error in body, attempt to get better error\n\t                    if (obj && obj.message) {\n\t                        msg = obj.message;\n\t                    }\n\t                    else if (contents && contents.length > 0) {\n\t                        // it may be the case that the exception is in the body message as string\n\t                        msg = contents;\n\t                    }\n\t                    else {\n\t                        msg = `Failed request: (${statusCode})`;\n\t                    }\n\t                    const err = new HttpClientError(msg, statusCode);\n\t                    err.result = response.result;\n\t                    reject(err);\n\t                }\n\t                else {\n\t                    resolve(response);\n\t                }\n\t            }));\n\t        });\n\t    }\n\t}\n\tlib$2.HttpClient = HttpClient;\n\tconst lowercaseKeys = (obj) => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCase()] = obj[k]), c), {});\n\t\n\treturn lib$2;\n}\n\nvar auth$1 = {};\n\nvar hasRequiredAuth;\n\nfunction requireAuth () {\n\tif (hasRequiredAuth) return auth$1;\n\thasRequiredAuth = 1;\n\tvar __awaiter = (auth$1 && auth$1.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(auth$1, \"__esModule\", { value: true });\n\tauth$1.PersonalAccessTokenCredentialHandler = auth$1.BearerCredentialHandler = auth$1.BasicCredentialHandler = void 0;\n\tclass BasicCredentialHandler {\n\t    constructor(username, password) {\n\t        this.username = username;\n\t        this.password = password;\n\t    }\n\t    prepareRequest(options) {\n\t        if (!options.headers) {\n\t            throw Error('The request has no headers');\n\t        }\n\t        options.headers['Authorization'] = `Basic ${Buffer.from(`${this.username}:${this.password}`).toString('base64')}`;\n\t    }\n\t    // This handler cannot handle 401\n\t    canHandleAuthentication() {\n\t        return false;\n\t    }\n\t    handleAuthentication() {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            throw new Error('not implemented');\n\t        });\n\t    }\n\t}\n\tauth$1.BasicCredentialHandler = BasicCredentialHandler;\n\tclass BearerCredentialHandler {\n\t    constructor(token) {\n\t        this.token = token;\n\t    }\n\t    // currently implements pre-authorization\n\t    // TODO: support preAuth = false where it hooks on 401\n\t    prepareRequest(options) {\n\t        if (!options.headers) {\n\t            throw Error('The request has no headers');\n\t        }\n\t        options.headers['Authorization'] = `Bearer ${this.token}`;\n\t    }\n\t    // This handler cannot handle 401\n\t    canHandleAuthentication() {\n\t        return false;\n\t    }\n\t    handleAuthentication() {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            throw new Error('not implemented');\n\t        });\n\t    }\n\t}\n\tauth$1.BearerCredentialHandler = BearerCredentialHandler;\n\tclass PersonalAccessTokenCredentialHandler {\n\t    constructor(token) {\n\t        this.token = token;\n\t    }\n\t    // currently implements pre-authorization\n\t    // TODO: support preAuth = false where it hooks on 401\n\t    prepareRequest(options) {\n\t        if (!options.headers) {\n\t            throw Error('The request has no headers');\n\t        }\n\t        options.headers['Authorization'] = `Basic ${Buffer.from(`PAT:${this.token}`).toString('base64')}`;\n\t    }\n\t    // This handler cannot handle 401\n\t    canHandleAuthentication() {\n\t        return false;\n\t    }\n\t    handleAuthentication() {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            throw new Error('not implemented');\n\t        });\n\t    }\n\t}\n\tauth$1.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHandler;\n\t\n\treturn auth$1;\n}\n\nvar hasRequiredOidcUtils;\n\nfunction requireOidcUtils () {\n\tif (hasRequiredOidcUtils) return oidcUtils;\n\thasRequiredOidcUtils = 1;\n\tvar __awaiter = (oidcUtils && oidcUtils.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(oidcUtils, \"__esModule\", { value: true });\n\toidcUtils.OidcClient = void 0;\n\tconst http_client_1 = requireLib$2();\n\tconst auth_1 = requireAuth();\n\tconst core_1 = requireCore$1();\n\tclass OidcClient {\n\t    static createHttpClient(allowRetry = true, maxRetry = 10) {\n\t        const requestOptions = {\n\t            allowRetries: allowRetry,\n\t            maxRetries: maxRetry\n\t        };\n\t        return new http_client_1.HttpClient('actions/oidc-client', [new auth_1.BearerCredentialHandler(OidcClient.getRequestToken())], requestOptions);\n\t    }\n\t    static getRequestToken() {\n\t        const token = process.env['ACTIONS_ID_TOKEN_REQUEST_TOKEN'];\n\t        if (!token) {\n\t            throw new Error('Unable to get ACTIONS_ID_TOKEN_REQUEST_TOKEN env variable');\n\t        }\n\t        return token;\n\t    }\n\t    static getIDTokenUrl() {\n\t        const runtimeUrl = process.env['ACTIONS_ID_TOKEN_REQUEST_URL'];\n\t        if (!runtimeUrl) {\n\t            throw new Error('Unable to get ACTIONS_ID_TOKEN_REQUEST_URL env variable');\n\t        }\n\t        return runtimeUrl;\n\t    }\n\t    static getCall(id_token_url) {\n\t        var _a;\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            const httpclient = OidcClient.createHttpClient();\n\t            const res = yield httpclient\n\t                .getJson(id_token_url)\n\t                .catch(error => {\n\t                throw new Error(`Failed to get ID Token. \\n \n        Error Code : ${error.statusCode}\\n \n        Error Message: ${error.message}`);\n\t            });\n\t            const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;\n\t            if (!id_token) {\n\t                throw new Error('Response json body do not have ID Token field');\n\t            }\n\t            return id_token;\n\t        });\n\t    }\n\t    static getIDToken(audience) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            try {\n\t                // New ID Token is requested from action service\n\t                let id_token_url = OidcClient.getIDTokenUrl();\n\t                if (audience) {\n\t                    const encodedAudience = encodeURIComponent(audience);\n\t                    id_token_url = `${id_token_url}&audience=${encodedAudience}`;\n\t                }\n\t                (0, core_1.debug)(`ID token url is ${id_token_url}`);\n\t                const id_token = yield OidcClient.getCall(id_token_url);\n\t                (0, core_1.setSecret)(id_token);\n\t                return id_token;\n\t            }\n\t            catch (error) {\n\t                throw new Error(`Error message: ${error.message}`);\n\t            }\n\t        });\n\t    }\n\t}\n\toidcUtils.OidcClient = OidcClient;\n\t\n\treturn oidcUtils;\n}\n\nvar summary = {};\n\nvar hasRequiredSummary;\n\nfunction requireSummary () {\n\tif (hasRequiredSummary) return summary;\n\thasRequiredSummary = 1;\n\t(function (exports) {\n\t\tvar __awaiter = (summary && summary.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t\t    });\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.summary = exports.markdownSummary = exports.SUMMARY_DOCS_URL = exports.SUMMARY_ENV_VAR = void 0;\n\t\tconst os_1 = require$$0__default;\n\t\tconst fs_1 = fs__default;\n\t\tconst { access, appendFile, writeFile } = fs_1.promises;\n\t\texports.SUMMARY_ENV_VAR = 'GITHUB_STEP_SUMMARY';\n\t\texports.SUMMARY_DOCS_URL = 'https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary';\n\t\tclass Summary {\n\t\t    constructor() {\n\t\t        this._buffer = '';\n\t\t    }\n\t\t    /**\n\t\t     * Finds the summary file path from the environment, rejects if env var is not found or file does not exist\n\t\t     * Also checks r/w permissions.\n\t\t     *\n\t\t     * @returns step summary file path\n\t\t     */\n\t\t    filePath() {\n\t\t        return __awaiter(this, void 0, void 0, function* () {\n\t\t            if (this._filePath) {\n\t\t                return this._filePath;\n\t\t            }\n\t\t            const pathFromEnv = process.env[exports.SUMMARY_ENV_VAR];\n\t\t            if (!pathFromEnv) {\n\t\t                throw new Error(`Unable to find environment variable for $${exports.SUMMARY_ENV_VAR}. Check if your runtime environment supports job summaries.`);\n\t\t            }\n\t\t            try {\n\t\t                yield access(pathFromEnv, fs_1.constants.R_OK | fs_1.constants.W_OK);\n\t\t            }\n\t\t            catch (_a) {\n\t\t                throw new Error(`Unable to access summary file: '${pathFromEnv}'. Check if the file has correct read/write permissions.`);\n\t\t            }\n\t\t            this._filePath = pathFromEnv;\n\t\t            return this._filePath;\n\t\t        });\n\t\t    }\n\t\t    /**\n\t\t     * Wraps content in an HTML tag, adding any HTML attributes\n\t\t     *\n\t\t     * @param {string} tag HTML tag to wrap\n\t\t     * @param {string | null} content content within the tag\n\t\t     * @param {[attribute: string]: string} attrs key-value list of HTML attributes to add\n\t\t     *\n\t\t     * @returns {string} content wrapped in HTML element\n\t\t     */\n\t\t    wrap(tag, content, attrs = {}) {\n\t\t        const htmlAttrs = Object.entries(attrs)\n\t\t            .map(([key, value]) => ` ${key}=\"${value}\"`)\n\t\t            .join('');\n\t\t        if (!content) {\n\t\t            return `<${tag}${htmlAttrs}>`;\n\t\t        }\n\t\t        return `<${tag}${htmlAttrs}>${content}</${tag}>`;\n\t\t    }\n\t\t    /**\n\t\t     * Writes text in the buffer to the summary buffer file and empties buffer. Will append by default.\n\t\t     *\n\t\t     * @param {SummaryWriteOptions} [options] (optional) options for write operation\n\t\t     *\n\t\t     * @returns {Promise<Summary>} summary instance\n\t\t     */\n\t\t    write(options) {\n\t\t        return __awaiter(this, void 0, void 0, function* () {\n\t\t            const overwrite = !!(options === null || options === void 0 ? void 0 : options.overwrite);\n\t\t            const filePath = yield this.filePath();\n\t\t            const writeFunc = overwrite ? writeFile : appendFile;\n\t\t            yield writeFunc(filePath, this._buffer, { encoding: 'utf8' });\n\t\t            return this.emptyBuffer();\n\t\t        });\n\t\t    }\n\t\t    /**\n\t\t     * Clears the summary buffer and wipes the summary file\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    clear() {\n\t\t        return __awaiter(this, void 0, void 0, function* () {\n\t\t            return this.emptyBuffer().write({ overwrite: true });\n\t\t        });\n\t\t    }\n\t\t    /**\n\t\t     * Returns the current summary buffer as a string\n\t\t     *\n\t\t     * @returns {string} string of summary buffer\n\t\t     */\n\t\t    stringify() {\n\t\t        return this._buffer;\n\t\t    }\n\t\t    /**\n\t\t     * If the summary buffer is empty\n\t\t     *\n\t\t     * @returns {boolen} true if the buffer is empty\n\t\t     */\n\t\t    isEmptyBuffer() {\n\t\t        return this._buffer.length === 0;\n\t\t    }\n\t\t    /**\n\t\t     * Resets the summary buffer without writing to summary file\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    emptyBuffer() {\n\t\t        this._buffer = '';\n\t\t        return this;\n\t\t    }\n\t\t    /**\n\t\t     * Adds raw text to the summary buffer\n\t\t     *\n\t\t     * @param {string} text content to add\n\t\t     * @param {boolean} [addEOL=false] (optional) append an EOL to the raw text (default: false)\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addRaw(text, addEOL = false) {\n\t\t        this._buffer += text;\n\t\t        return addEOL ? this.addEOL() : this;\n\t\t    }\n\t\t    /**\n\t\t     * Adds the operating system-specific end-of-line marker to the buffer\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addEOL() {\n\t\t        return this.addRaw(os_1.EOL);\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML codeblock to the summary buffer\n\t\t     *\n\t\t     * @param {string} code content to render within fenced code block\n\t\t     * @param {string} lang (optional) language to syntax highlight code\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addCodeBlock(code, lang) {\n\t\t        const attrs = Object.assign({}, (lang && { lang }));\n\t\t        const element = this.wrap('pre', this.wrap('code', code), attrs);\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML list to the summary buffer\n\t\t     *\n\t\t     * @param {string[]} items list of items to render\n\t\t     * @param {boolean} [ordered=false] (optional) if the rendered list should be ordered or not (default: false)\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addList(items, ordered = false) {\n\t\t        const tag = ordered ? 'ol' : 'ul';\n\t\t        const listItems = items.map(item => this.wrap('li', item)).join('');\n\t\t        const element = this.wrap(tag, listItems);\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML table to the summary buffer\n\t\t     *\n\t\t     * @param {SummaryTableCell[]} rows table rows\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addTable(rows) {\n\t\t        const tableBody = rows\n\t\t            .map(row => {\n\t\t            const cells = row\n\t\t                .map(cell => {\n\t\t                if (typeof cell === 'string') {\n\t\t                    return this.wrap('td', cell);\n\t\t                }\n\t\t                const { header, data, colspan, rowspan } = cell;\n\t\t                const tag = header ? 'th' : 'td';\n\t\t                const attrs = Object.assign(Object.assign({}, (colspan && { colspan })), (rowspan && { rowspan }));\n\t\t                return this.wrap(tag, data, attrs);\n\t\t            })\n\t\t                .join('');\n\t\t            return this.wrap('tr', cells);\n\t\t        })\n\t\t            .join('');\n\t\t        const element = this.wrap('table', tableBody);\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds a collapsable HTML details element to the summary buffer\n\t\t     *\n\t\t     * @param {string} label text for the closed state\n\t\t     * @param {string} content collapsable content\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addDetails(label, content) {\n\t\t        const element = this.wrap('details', this.wrap('summary', label) + content);\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML image tag to the summary buffer\n\t\t     *\n\t\t     * @param {string} src path to the image you to embed\n\t\t     * @param {string} alt text description of the image\n\t\t     * @param {SummaryImageOptions} options (optional) addition image attributes\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addImage(src, alt, options) {\n\t\t        const { width, height } = options || {};\n\t\t        const attrs = Object.assign(Object.assign({}, (width && { width })), (height && { height }));\n\t\t        const element = this.wrap('img', null, Object.assign({ src, alt }, attrs));\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML section heading element\n\t\t     *\n\t\t     * @param {string} text heading text\n\t\t     * @param {number | string} [level=1] (optional) the heading level, default: 1\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addHeading(text, level) {\n\t\t        const tag = `h${level}`;\n\t\t        const allowedTag = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].includes(tag)\n\t\t            ? tag\n\t\t            : 'h1';\n\t\t        const element = this.wrap(allowedTag, text);\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML thematic break (<hr>) to the summary buffer\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addSeparator() {\n\t\t        const element = this.wrap('hr', null);\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML line break (<br>) to the summary buffer\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addBreak() {\n\t\t        const element = this.wrap('br', null);\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML blockquote to the summary buffer\n\t\t     *\n\t\t     * @param {string} text quote text\n\t\t     * @param {string} cite (optional) citation url\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addQuote(text, cite) {\n\t\t        const attrs = Object.assign({}, (cite && { cite }));\n\t\t        const element = this.wrap('blockquote', text, attrs);\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t    /**\n\t\t     * Adds an HTML anchor tag to the summary buffer\n\t\t     *\n\t\t     * @param {string} text link text/content\n\t\t     * @param {string} href hyperlink\n\t\t     *\n\t\t     * @returns {Summary} summary instance\n\t\t     */\n\t\t    addLink(text, href) {\n\t\t        const element = this.wrap('a', text, { href });\n\t\t        return this.addRaw(element).addEOL();\n\t\t    }\n\t\t}\n\t\tconst _summary = new Summary();\n\t\t/**\n\t\t * @deprecated use `core.summary`\n\t\t */\n\t\texports.markdownSummary = _summary;\n\t\texports.summary = _summary;\n\t\t\n\t} (summary));\n\treturn summary;\n}\n\nvar pathUtils = {};\n\nvar hasRequiredPathUtils;\n\nfunction requirePathUtils () {\n\tif (hasRequiredPathUtils) return pathUtils;\n\thasRequiredPathUtils = 1;\n\tvar __createBinding = (pathUtils && pathUtils.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (pathUtils && pathUtils.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (pathUtils && pathUtils.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(pathUtils, \"__esModule\", { value: true });\n\tpathUtils.toPlatformPath = pathUtils.toWin32Path = pathUtils.toPosixPath = void 0;\n\tconst path = __importStar(require$$1__default);\n\t/**\n\t * toPosixPath converts the given path to the posix form. On Windows, \\\\ will be\n\t * replaced with /.\n\t *\n\t * @param pth. Path to transform.\n\t * @return string Posix path.\n\t */\n\tfunction toPosixPath(pth) {\n\t    return pth.replace(/[\\\\]/g, '/');\n\t}\n\tpathUtils.toPosixPath = toPosixPath;\n\t/**\n\t * toWin32Path converts the given path to the win32 form. On Linux, / will be\n\t * replaced with \\\\.\n\t *\n\t * @param pth. Path to transform.\n\t * @return string Win32 path.\n\t */\n\tfunction toWin32Path(pth) {\n\t    return pth.replace(/[/]/g, '\\\\');\n\t}\n\tpathUtils.toWin32Path = toWin32Path;\n\t/**\n\t * toPlatformPath converts the given path to a platform-specific path. It does\n\t * this by replacing instances of / and \\ with the platform-specific path\n\t * separator.\n\t *\n\t * @param pth The path to platformize.\n\t * @return string The platform-specific path.\n\t */\n\tfunction toPlatformPath(pth) {\n\t    return pth.replace(/[/\\\\]/g, path.sep);\n\t}\n\tpathUtils.toPlatformPath = toPlatformPath;\n\t\n\treturn pathUtils;\n}\n\nvar platform = {};\n\nvar exec = {};\n\nvar toolrunner = {};\n\nvar io = {};\n\nvar ioUtil = {};\n\nvar hasRequiredIoUtil;\n\nfunction requireIoUtil () {\n\tif (hasRequiredIoUtil) return ioUtil;\n\thasRequiredIoUtil = 1;\n\t(function (exports) {\n\t\tvar __createBinding = (ioUtil && ioUtil.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __setModuleDefault = (ioUtil && ioUtil.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t\t}) : function(o, v) {\n\t\t    o[\"default\"] = v;\n\t\t});\n\t\tvar __importStar = (ioUtil && ioUtil.__importStar) || function (mod) {\n\t\t    if (mod && mod.__esModule) return mod;\n\t\t    var result = {};\n\t\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t\t    __setModuleDefault(result, mod);\n\t\t    return result;\n\t\t};\n\t\tvar __awaiter = (ioUtil && ioUtil.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t\t    });\n\t\t};\n\t\tvar _a;\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.getCmdPath = exports.tryGetExecutablePath = exports.isRooted = exports.isDirectory = exports.exists = exports.READONLY = exports.UV_FS_O_EXLOCK = exports.IS_WINDOWS = exports.unlink = exports.symlink = exports.stat = exports.rmdir = exports.rm = exports.rename = exports.readlink = exports.readdir = exports.open = exports.mkdir = exports.lstat = exports.copyFile = exports.chmod = void 0;\n\t\tconst fs = __importStar(fs__default);\n\t\tconst path = __importStar(require$$1__default);\n\t\t_a = fs.promises\n\t\t// export const {open} = 'fs'\n\t\t, exports.chmod = _a.chmod, exports.copyFile = _a.copyFile, exports.lstat = _a.lstat, exports.mkdir = _a.mkdir, exports.open = _a.open, exports.readdir = _a.readdir, exports.readlink = _a.readlink, exports.rename = _a.rename, exports.rm = _a.rm, exports.rmdir = _a.rmdir, exports.stat = _a.stat, exports.symlink = _a.symlink, exports.unlink = _a.unlink;\n\t\t// export const {open} = 'fs'\n\t\texports.IS_WINDOWS = process.platform === 'win32';\n\t\t// See https://github.com/nodejs/node/blob/d0153aee367422d0858105abec186da4dff0a0c5/deps/uv/include/uv/win.h#L691\n\t\texports.UV_FS_O_EXLOCK = 0x10000000;\n\t\texports.READONLY = fs.constants.O_RDONLY;\n\t\tfunction exists(fsPath) {\n\t\t    return __awaiter(this, void 0, void 0, function* () {\n\t\t        try {\n\t\t            yield exports.stat(fsPath);\n\t\t        }\n\t\t        catch (err) {\n\t\t            if (err.code === 'ENOENT') {\n\t\t                return false;\n\t\t            }\n\t\t            throw err;\n\t\t        }\n\t\t        return true;\n\t\t    });\n\t\t}\n\t\texports.exists = exists;\n\t\tfunction isDirectory(fsPath, useStat = false) {\n\t\t    return __awaiter(this, void 0, void 0, function* () {\n\t\t        const stats = useStat ? yield exports.stat(fsPath) : yield exports.lstat(fsPath);\n\t\t        return stats.isDirectory();\n\t\t    });\n\t\t}\n\t\texports.isDirectory = isDirectory;\n\t\t/**\n\t\t * On OSX/Linux, true if path starts with '/'. On Windows, true for paths like:\n\t\t * \\, \\hello, \\\\hello\\share, C:, and C:\\hello (and corresponding alternate separator cases).\n\t\t */\n\t\tfunction isRooted(p) {\n\t\t    p = normalizeSeparators(p);\n\t\t    if (!p) {\n\t\t        throw new Error('isRooted() parameter \"p\" cannot be empty');\n\t\t    }\n\t\t    if (exports.IS_WINDOWS) {\n\t\t        return (p.startsWith('\\\\') || /^[A-Z]:/i.test(p) // e.g. \\ or \\hello or \\\\hello\n\t\t        ); // e.g. C: or C:\\hello\n\t\t    }\n\t\t    return p.startsWith('/');\n\t\t}\n\t\texports.isRooted = isRooted;\n\t\t/**\n\t\t * Best effort attempt to determine whether a file exists and is executable.\n\t\t * @param filePath    file path to check\n\t\t * @param extensions  additional file extensions to try\n\t\t * @return if file exists and is executable, returns the file path. otherwise empty string.\n\t\t */\n\t\tfunction tryGetExecutablePath(filePath, extensions) {\n\t\t    return __awaiter(this, void 0, void 0, function* () {\n\t\t        let stats = undefined;\n\t\t        try {\n\t\t            // test file exists\n\t\t            stats = yield exports.stat(filePath);\n\t\t        }\n\t\t        catch (err) {\n\t\t            if (err.code !== 'ENOENT') {\n\t\t                // eslint-disable-next-line no-console\n\t\t                console.log(`Unexpected error attempting to determine if executable file exists '${filePath}': ${err}`);\n\t\t            }\n\t\t        }\n\t\t        if (stats && stats.isFile()) {\n\t\t            if (exports.IS_WINDOWS) {\n\t\t                // on Windows, test for valid extension\n\t\t                const upperExt = path.extname(filePath).toUpperCase();\n\t\t                if (extensions.some(validExt => validExt.toUpperCase() === upperExt)) {\n\t\t                    return filePath;\n\t\t                }\n\t\t            }\n\t\t            else {\n\t\t                if (isUnixExecutable(stats)) {\n\t\t                    return filePath;\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t        // try each extension\n\t\t        const originalFilePath = filePath;\n\t\t        for (const extension of extensions) {\n\t\t            filePath = originalFilePath + extension;\n\t\t            stats = undefined;\n\t\t            try {\n\t\t                stats = yield exports.stat(filePath);\n\t\t            }\n\t\t            catch (err) {\n\t\t                if (err.code !== 'ENOENT') {\n\t\t                    // eslint-disable-next-line no-console\n\t\t                    console.log(`Unexpected error attempting to determine if executable file exists '${filePath}': ${err}`);\n\t\t                }\n\t\t            }\n\t\t            if (stats && stats.isFile()) {\n\t\t                if (exports.IS_WINDOWS) {\n\t\t                    // preserve the case of the actual file (since an extension was appended)\n\t\t                    try {\n\t\t                        const directory = path.dirname(filePath);\n\t\t                        const upperName = path.basename(filePath).toUpperCase();\n\t\t                        for (const actualName of yield exports.readdir(directory)) {\n\t\t                            if (upperName === actualName.toUpperCase()) {\n\t\t                                filePath = path.join(directory, actualName);\n\t\t                                break;\n\t\t                            }\n\t\t                        }\n\t\t                    }\n\t\t                    catch (err) {\n\t\t                        // eslint-disable-next-line no-console\n\t\t                        console.log(`Unexpected error attempting to determine the actual case of the file '${filePath}': ${err}`);\n\t\t                    }\n\t\t                    return filePath;\n\t\t                }\n\t\t                else {\n\t\t                    if (isUnixExecutable(stats)) {\n\t\t                        return filePath;\n\t\t                    }\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t        return '';\n\t\t    });\n\t\t}\n\t\texports.tryGetExecutablePath = tryGetExecutablePath;\n\t\tfunction normalizeSeparators(p) {\n\t\t    p = p || '';\n\t\t    if (exports.IS_WINDOWS) {\n\t\t        // convert slashes on Windows\n\t\t        p = p.replace(/\\//g, '\\\\');\n\t\t        // remove redundant slashes\n\t\t        return p.replace(/\\\\\\\\+/g, '\\\\');\n\t\t    }\n\t\t    // remove redundant slashes\n\t\t    return p.replace(/\\/\\/+/g, '/');\n\t\t}\n\t\t// on Mac/Linux, test the execute bit\n\t\t//     R   W  X  R  W X R W X\n\t\t//   256 128 64 32 16 8 4 2 1\n\t\tfunction isUnixExecutable(stats) {\n\t\t    return ((stats.mode & 1) > 0 ||\n\t\t        ((stats.mode & 8) > 0 && stats.gid === process.getgid()) ||\n\t\t        ((stats.mode & 64) > 0 && stats.uid === process.getuid()));\n\t\t}\n\t\t// Get the path of cmd.exe in windows\n\t\tfunction getCmdPath() {\n\t\t    var _a;\n\t\t    return (_a = process.env['COMSPEC']) !== null && _a !== void 0 ? _a : `cmd.exe`;\n\t\t}\n\t\texports.getCmdPath = getCmdPath;\n\t\t\n\t} (ioUtil));\n\treturn ioUtil;\n}\n\nvar hasRequiredIo;\n\nfunction requireIo () {\n\tif (hasRequiredIo) return io;\n\thasRequiredIo = 1;\n\tvar __createBinding = (io && io.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (io && io.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (io && io.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (io && io.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(io, \"__esModule\", { value: true });\n\tio.findInPath = io.which = io.mkdirP = io.rmRF = io.mv = io.cp = void 0;\n\tconst assert_1 = require$$0$9;\n\tconst path = __importStar(require$$1__default);\n\tconst ioUtil = __importStar(requireIoUtil());\n\t/**\n\t * Copies a file or folder.\n\t * Based off of shelljs - https://github.com/shelljs/shelljs/blob/9237f66c52e5daa40458f94f9565e18e8132f5a6/src/cp.js\n\t *\n\t * @param     source    source path\n\t * @param     dest      destination path\n\t * @param     options   optional. See CopyOptions.\n\t */\n\tfunction cp(source, dest, options = {}) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const { force, recursive, copySourceDirectory } = readCopyOptions(options);\n\t        const destStat = (yield ioUtil.exists(dest)) ? yield ioUtil.stat(dest) : null;\n\t        // Dest is an existing file, but not forcing\n\t        if (destStat && destStat.isFile() && !force) {\n\t            return;\n\t        }\n\t        // If dest is an existing directory, should copy inside.\n\t        const newDest = destStat && destStat.isDirectory() && copySourceDirectory\n\t            ? path.join(dest, path.basename(source))\n\t            : dest;\n\t        if (!(yield ioUtil.exists(source))) {\n\t            throw new Error(`no such file or directory: ${source}`);\n\t        }\n\t        const sourceStat = yield ioUtil.stat(source);\n\t        if (sourceStat.isDirectory()) {\n\t            if (!recursive) {\n\t                throw new Error(`Failed to copy. ${source} is a directory, but tried to copy without recursive flag.`);\n\t            }\n\t            else {\n\t                yield cpDirRecursive(source, newDest, 0, force);\n\t            }\n\t        }\n\t        else {\n\t            if (path.relative(source, newDest) === '') {\n\t                // a file cannot be copied to itself\n\t                throw new Error(`'${newDest}' and '${source}' are the same file`);\n\t            }\n\t            yield copyFile(source, newDest, force);\n\t        }\n\t    });\n\t}\n\tio.cp = cp;\n\t/**\n\t * Moves a path.\n\t *\n\t * @param     source    source path\n\t * @param     dest      destination path\n\t * @param     options   optional. See MoveOptions.\n\t */\n\tfunction mv(source, dest, options = {}) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (yield ioUtil.exists(dest)) {\n\t            let destExists = true;\n\t            if (yield ioUtil.isDirectory(dest)) {\n\t                // If dest is directory copy src into dest\n\t                dest = path.join(dest, path.basename(source));\n\t                destExists = yield ioUtil.exists(dest);\n\t            }\n\t            if (destExists) {\n\t                if (options.force == null || options.force) {\n\t                    yield rmRF(dest);\n\t                }\n\t                else {\n\t                    throw new Error('Destination already exists');\n\t                }\n\t            }\n\t        }\n\t        yield mkdirP(path.dirname(dest));\n\t        yield ioUtil.rename(source, dest);\n\t    });\n\t}\n\tio.mv = mv;\n\t/**\n\t * Remove a path recursively with force\n\t *\n\t * @param inputPath path to remove\n\t */\n\tfunction rmRF(inputPath) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (ioUtil.IS_WINDOWS) {\n\t            // Check for invalid characters\n\t            // https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file\n\t            if (/[*\"<>|]/.test(inputPath)) {\n\t                throw new Error('File path must not contain `*`, `\"`, `<`, `>` or `|` on Windows');\n\t            }\n\t        }\n\t        try {\n\t            // note if path does not exist, error is silent\n\t            yield ioUtil.rm(inputPath, {\n\t                force: true,\n\t                maxRetries: 3,\n\t                recursive: true,\n\t                retryDelay: 300\n\t            });\n\t        }\n\t        catch (err) {\n\t            throw new Error(`File was unable to be removed ${err}`);\n\t        }\n\t    });\n\t}\n\tio.rmRF = rmRF;\n\t/**\n\t * Make a directory.  Creates the full path with folders in between\n\t * Will throw if it fails\n\t *\n\t * @param   fsPath        path to create\n\t * @returns Promise<void>\n\t */\n\tfunction mkdirP(fsPath) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        assert_1.ok(fsPath, 'a path argument must be provided');\n\t        yield ioUtil.mkdir(fsPath, { recursive: true });\n\t    });\n\t}\n\tio.mkdirP = mkdirP;\n\t/**\n\t * Returns path of a tool had the tool actually been invoked.  Resolves via paths.\n\t * If you check and the tool does not exist, it will throw.\n\t *\n\t * @param     tool              name of the tool\n\t * @param     check             whether to check if tool exists\n\t * @returns   Promise<string>   path to tool\n\t */\n\tfunction which(tool, check) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (!tool) {\n\t            throw new Error(\"parameter 'tool' is required\");\n\t        }\n\t        // recursive when check=true\n\t        if (check) {\n\t            const result = yield which(tool, false);\n\t            if (!result) {\n\t                if (ioUtil.IS_WINDOWS) {\n\t                    throw new Error(`Unable to locate executable file: ${tool}. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.`);\n\t                }\n\t                else {\n\t                    throw new Error(`Unable to locate executable file: ${tool}. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.`);\n\t                }\n\t            }\n\t            return result;\n\t        }\n\t        const matches = yield findInPath(tool);\n\t        if (matches && matches.length > 0) {\n\t            return matches[0];\n\t        }\n\t        return '';\n\t    });\n\t}\n\tio.which = which;\n\t/**\n\t * Returns a list of all occurrences of the given tool on the system path.\n\t *\n\t * @returns   Promise<string[]>  the paths of the tool\n\t */\n\tfunction findInPath(tool) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (!tool) {\n\t            throw new Error(\"parameter 'tool' is required\");\n\t        }\n\t        // build the list of extensions to try\n\t        const extensions = [];\n\t        if (ioUtil.IS_WINDOWS && process.env['PATHEXT']) {\n\t            for (const extension of process.env['PATHEXT'].split(path.delimiter)) {\n\t                if (extension) {\n\t                    extensions.push(extension);\n\t                }\n\t            }\n\t        }\n\t        // if it's rooted, return it if exists. otherwise return empty.\n\t        if (ioUtil.isRooted(tool)) {\n\t            const filePath = yield ioUtil.tryGetExecutablePath(tool, extensions);\n\t            if (filePath) {\n\t                return [filePath];\n\t            }\n\t            return [];\n\t        }\n\t        // if any path separators, return empty\n\t        if (tool.includes(path.sep)) {\n\t            return [];\n\t        }\n\t        // build the list of directories\n\t        //\n\t        // Note, technically \"where\" checks the current directory on Windows. From a toolkit perspective,\n\t        // it feels like we should not do this. Checking the current directory seems like more of a use\n\t        // case of a shell, and the which() function exposed by the toolkit should strive for consistency\n\t        // across platforms.\n\t        const directories = [];\n\t        if (process.env.PATH) {\n\t            for (const p of process.env.PATH.split(path.delimiter)) {\n\t                if (p) {\n\t                    directories.push(p);\n\t                }\n\t            }\n\t        }\n\t        // find all matches\n\t        const matches = [];\n\t        for (const directory of directories) {\n\t            const filePath = yield ioUtil.tryGetExecutablePath(path.join(directory, tool), extensions);\n\t            if (filePath) {\n\t                matches.push(filePath);\n\t            }\n\t        }\n\t        return matches;\n\t    });\n\t}\n\tio.findInPath = findInPath;\n\tfunction readCopyOptions(options) {\n\t    const force = options.force == null ? true : options.force;\n\t    const recursive = Boolean(options.recursive);\n\t    const copySourceDirectory = options.copySourceDirectory == null\n\t        ? true\n\t        : Boolean(options.copySourceDirectory);\n\t    return { force, recursive, copySourceDirectory };\n\t}\n\tfunction cpDirRecursive(sourceDir, destDir, currentDepth, force) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // Ensure there is not a run away recursive copy\n\t        if (currentDepth >= 255)\n\t            return;\n\t        currentDepth++;\n\t        yield mkdirP(destDir);\n\t        const files = yield ioUtil.readdir(sourceDir);\n\t        for (const fileName of files) {\n\t            const srcFile = `${sourceDir}/${fileName}`;\n\t            const destFile = `${destDir}/${fileName}`;\n\t            const srcFileStat = yield ioUtil.lstat(srcFile);\n\t            if (srcFileStat.isDirectory()) {\n\t                // Recurse\n\t                yield cpDirRecursive(srcFile, destFile, currentDepth, force);\n\t            }\n\t            else {\n\t                yield copyFile(srcFile, destFile, force);\n\t            }\n\t        }\n\t        // Change the mode for the newly created directory\n\t        yield ioUtil.chmod(destDir, (yield ioUtil.stat(sourceDir)).mode);\n\t    });\n\t}\n\t// Buffered file copy\n\tfunction copyFile(srcFile, destFile, force) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if ((yield ioUtil.lstat(srcFile)).isSymbolicLink()) {\n\t            // unlink/re-link it\n\t            try {\n\t                yield ioUtil.lstat(destFile);\n\t                yield ioUtil.unlink(destFile);\n\t            }\n\t            catch (e) {\n\t                // Try to override file permission\n\t                if (e.code === 'EPERM') {\n\t                    yield ioUtil.chmod(destFile, '0666');\n\t                    yield ioUtil.unlink(destFile);\n\t                }\n\t                // other errors = it doesn't exist, no work to do\n\t            }\n\t            // Copy over symlink\n\t            const symlinkFull = yield ioUtil.readlink(srcFile);\n\t            yield ioUtil.symlink(symlinkFull, destFile, ioUtil.IS_WINDOWS ? 'junction' : null);\n\t        }\n\t        else if (!(yield ioUtil.exists(destFile)) || force) {\n\t            yield ioUtil.copyFile(srcFile, destFile);\n\t        }\n\t    });\n\t}\n\t\n\treturn io;\n}\n\nvar hasRequiredToolrunner;\n\nfunction requireToolrunner () {\n\tif (hasRequiredToolrunner) return toolrunner;\n\thasRequiredToolrunner = 1;\n\tvar __createBinding = (toolrunner && toolrunner.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (toolrunner && toolrunner.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (toolrunner && toolrunner.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (toolrunner && toolrunner.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(toolrunner, \"__esModule\", { value: true });\n\ttoolrunner.argStringToArray = toolrunner.ToolRunner = void 0;\n\tconst os = __importStar(require$$0__default);\n\tconst events = __importStar(require$$1$4);\n\tconst child = __importStar(require$$2$5);\n\tconst path = __importStar(require$$1__default);\n\tconst io = __importStar(requireIo());\n\tconst ioUtil = __importStar(requireIoUtil());\n\tconst timers_1 = require$$6$2;\n\t/* eslint-disable @typescript-eslint/unbound-method */\n\tconst IS_WINDOWS = process.platform === 'win32';\n\t/*\n\t * Class for running command line tools. Handles quoting and arg parsing in a platform agnostic way.\n\t */\n\tclass ToolRunner extends events.EventEmitter {\n\t    constructor(toolPath, args, options) {\n\t        super();\n\t        if (!toolPath) {\n\t            throw new Error(\"Parameter 'toolPath' cannot be null or empty.\");\n\t        }\n\t        this.toolPath = toolPath;\n\t        this.args = args || [];\n\t        this.options = options || {};\n\t    }\n\t    _debug(message) {\n\t        if (this.options.listeners && this.options.listeners.debug) {\n\t            this.options.listeners.debug(message);\n\t        }\n\t    }\n\t    _getCommandString(options, noPrefix) {\n\t        const toolPath = this._getSpawnFileName();\n\t        const args = this._getSpawnArgs(options);\n\t        let cmd = noPrefix ? '' : '[command]'; // omit prefix when piped to a second tool\n\t        if (IS_WINDOWS) {\n\t            // Windows + cmd file\n\t            if (this._isCmdFile()) {\n\t                cmd += toolPath;\n\t                for (const a of args) {\n\t                    cmd += ` ${a}`;\n\t                }\n\t            }\n\t            // Windows + verbatim\n\t            else if (options.windowsVerbatimArguments) {\n\t                cmd += `\"${toolPath}\"`;\n\t                for (const a of args) {\n\t                    cmd += ` ${a}`;\n\t                }\n\t            }\n\t            // Windows (regular)\n\t            else {\n\t                cmd += this._windowsQuoteCmdArg(toolPath);\n\t                for (const a of args) {\n\t                    cmd += ` ${this._windowsQuoteCmdArg(a)}`;\n\t                }\n\t            }\n\t        }\n\t        else {\n\t            // OSX/Linux - this can likely be improved with some form of quoting.\n\t            // creating processes on Unix is fundamentally different than Windows.\n\t            // on Unix, execvp() takes an arg array.\n\t            cmd += toolPath;\n\t            for (const a of args) {\n\t                cmd += ` ${a}`;\n\t            }\n\t        }\n\t        return cmd;\n\t    }\n\t    _processLineBuffer(data, strBuffer, onLine) {\n\t        try {\n\t            let s = strBuffer + data.toString();\n\t            let n = s.indexOf(os.EOL);\n\t            while (n > -1) {\n\t                const line = s.substring(0, n);\n\t                onLine(line);\n\t                // the rest of the string ...\n\t                s = s.substring(n + os.EOL.length);\n\t                n = s.indexOf(os.EOL);\n\t            }\n\t            return s;\n\t        }\n\t        catch (err) {\n\t            // streaming lines to console is best effort.  Don't fail a build.\n\t            this._debug(`error processing line. Failed with error ${err}`);\n\t            return '';\n\t        }\n\t    }\n\t    _getSpawnFileName() {\n\t        if (IS_WINDOWS) {\n\t            if (this._isCmdFile()) {\n\t                return process.env['COMSPEC'] || 'cmd.exe';\n\t            }\n\t        }\n\t        return this.toolPath;\n\t    }\n\t    _getSpawnArgs(options) {\n\t        if (IS_WINDOWS) {\n\t            if (this._isCmdFile()) {\n\t                let argline = `/D /S /C \"${this._windowsQuoteCmdArg(this.toolPath)}`;\n\t                for (const a of this.args) {\n\t                    argline += ' ';\n\t                    argline += options.windowsVerbatimArguments\n\t                        ? a\n\t                        : this._windowsQuoteCmdArg(a);\n\t                }\n\t                argline += '\"';\n\t                return [argline];\n\t            }\n\t        }\n\t        return this.args;\n\t    }\n\t    _endsWith(str, end) {\n\t        return str.endsWith(end);\n\t    }\n\t    _isCmdFile() {\n\t        const upperToolPath = this.toolPath.toUpperCase();\n\t        return (this._endsWith(upperToolPath, '.CMD') ||\n\t            this._endsWith(upperToolPath, '.BAT'));\n\t    }\n\t    _windowsQuoteCmdArg(arg) {\n\t        // for .exe, apply the normal quoting rules that libuv applies\n\t        if (!this._isCmdFile()) {\n\t            return this._uvQuoteCmdArg(arg);\n\t        }\n\t        // otherwise apply quoting rules specific to the cmd.exe command line parser.\n\t        // the libuv rules are generic and are not designed specifically for cmd.exe\n\t        // command line parser.\n\t        //\n\t        // for a detailed description of the cmd.exe command line parser, refer to\n\t        // http://stackoverflow.com/questions/4094699/how-does-the-windows-command-interpreter-cmd-exe-parse-scripts/7970912#7970912\n\t        // need quotes for empty arg\n\t        if (!arg) {\n\t            return '\"\"';\n\t        }\n\t        // determine whether the arg needs to be quoted\n\t        const cmdSpecialChars = [\n\t            ' ',\n\t            '\\t',\n\t            '&',\n\t            '(',\n\t            ')',\n\t            '[',\n\t            ']',\n\t            '{',\n\t            '}',\n\t            '^',\n\t            '=',\n\t            ';',\n\t            '!',\n\t            \"'\",\n\t            '+',\n\t            ',',\n\t            '`',\n\t            '~',\n\t            '|',\n\t            '<',\n\t            '>',\n\t            '\"'\n\t        ];\n\t        let needsQuotes = false;\n\t        for (const char of arg) {\n\t            if (cmdSpecialChars.some(x => x === char)) {\n\t                needsQuotes = true;\n\t                break;\n\t            }\n\t        }\n\t        // short-circuit if quotes not needed\n\t        if (!needsQuotes) {\n\t            return arg;\n\t        }\n\t        // the following quoting rules are very similar to the rules that by libuv applies.\n\t        //\n\t        // 1) wrap the string in quotes\n\t        //\n\t        // 2) double-up quotes - i.e. \" => \"\"\n\t        //\n\t        //    this is different from the libuv quoting rules. libuv replaces \" with \\\", which unfortunately\n\t        //    doesn't work well with a cmd.exe command line.\n\t        //\n\t        //    note, replacing \" with \"\" also works well if the arg is passed to a downstream .NET console app.\n\t        //    for example, the command line:\n\t        //          foo.exe \"myarg:\"\"my val\"\"\"\n\t        //    is parsed by a .NET console app into an arg array:\n\t        //          [ \"myarg:\\\"my val\\\"\" ]\n\t        //    which is the same end result when applying libuv quoting rules. although the actual\n\t        //    command line from libuv quoting rules would look like:\n\t        //          foo.exe \"myarg:\\\"my val\\\"\"\n\t        //\n\t        // 3) double-up slashes that precede a quote,\n\t        //    e.g.  hello \\world    => \"hello \\world\"\n\t        //          hello\\\"world    => \"hello\\\\\"\"world\"\n\t        //          hello\\\\\"world   => \"hello\\\\\\\\\"\"world\"\n\t        //          hello world\\    => \"hello world\\\\\"\n\t        //\n\t        //    technically this is not required for a cmd.exe command line, or the batch argument parser.\n\t        //    the reasons for including this as a .cmd quoting rule are:\n\t        //\n\t        //    a) this is optimized for the scenario where the argument is passed from the .cmd file to an\n\t        //       external program. many programs (e.g. .NET console apps) rely on the slash-doubling rule.\n\t        //\n\t        //    b) it's what we've been doing previously (by deferring to node default behavior) and we\n\t        //       haven't heard any complaints about that aspect.\n\t        //\n\t        // note, a weakness of the quoting rules chosen here, is that % is not escaped. in fact, % cannot be\n\t        // escaped when used on the command line directly - even though within a .cmd file % can be escaped\n\t        // by using %%.\n\t        //\n\t        // the saving grace is, on the command line, %var% is left as-is if var is not defined. this contrasts\n\t        // the line parsing rules within a .cmd file, where if var is not defined it is replaced with nothing.\n\t        //\n\t        // one option that was explored was replacing % with ^% - i.e. %var% => ^%var^%. this hack would\n\t        // often work, since it is unlikely that var^ would exist, and the ^ character is removed when the\n\t        // variable is used. the problem, however, is that ^ is not removed when %* is used to pass the args\n\t        // to an external program.\n\t        //\n\t        // an unexplored potential solution for the % escaping problem, is to create a wrapper .cmd file.\n\t        // % can be escaped within a .cmd file.\n\t        let reverse = '\"';\n\t        let quoteHit = true;\n\t        for (let i = arg.length; i > 0; i--) {\n\t            // walk the string in reverse\n\t            reverse += arg[i - 1];\n\t            if (quoteHit && arg[i - 1] === '\\\\') {\n\t                reverse += '\\\\'; // double the slash\n\t            }\n\t            else if (arg[i - 1] === '\"') {\n\t                quoteHit = true;\n\t                reverse += '\"'; // double the quote\n\t            }\n\t            else {\n\t                quoteHit = false;\n\t            }\n\t        }\n\t        reverse += '\"';\n\t        return reverse\n\t            .split('')\n\t            .reverse()\n\t            .join('');\n\t    }\n\t    _uvQuoteCmdArg(arg) {\n\t        // Tool runner wraps child_process.spawn() and needs to apply the same quoting as\n\t        // Node in certain cases where the undocumented spawn option windowsVerbatimArguments\n\t        // is used.\n\t        //\n\t        // Since this function is a port of quote_cmd_arg from Node 4.x (technically, lib UV,\n\t        // see https://github.com/nodejs/node/blob/v4.x/deps/uv/src/win/process.c for details),\n\t        // pasting copyright notice from Node within this function:\n\t        //\n\t        //      Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n\t        //\n\t        //      Permission is hereby granted, free of charge, to any person obtaining a copy\n\t        //      of this software and associated documentation files (the \"Software\"), to\n\t        //      deal in the Software without restriction, including without limitation the\n\t        //      rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n\t        //      sell copies of the Software, and to permit persons to whom the Software is\n\t        //      furnished to do so, subject to the following conditions:\n\t        //\n\t        //      The above copyright notice and this permission notice shall be included in\n\t        //      all copies or substantial portions of the Software.\n\t        //\n\t        //      THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n\t        //      IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\t        //      FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n\t        //      AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n\t        //      LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n\t        //      FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n\t        //      IN THE SOFTWARE.\n\t        if (!arg) {\n\t            // Need double quotation for empty argument\n\t            return '\"\"';\n\t        }\n\t        if (!arg.includes(' ') && !arg.includes('\\t') && !arg.includes('\"')) {\n\t            // No quotation needed\n\t            return arg;\n\t        }\n\t        if (!arg.includes('\"') && !arg.includes('\\\\')) {\n\t            // No embedded double quotes or backslashes, so I can just wrap\n\t            // quote marks around the whole thing.\n\t            return `\"${arg}\"`;\n\t        }\n\t        // Expected input/output:\n\t        //   input : hello\"world\n\t        //   output: \"hello\\\"world\"\n\t        //   input : hello\"\"world\n\t        //   output: \"hello\\\"\\\"world\"\n\t        //   input : hello\\world\n\t        //   output: hello\\world\n\t        //   input : hello\\\\world\n\t        //   output: hello\\\\world\n\t        //   input : hello\\\"world\n\t        //   output: \"hello\\\\\\\"world\"\n\t        //   input : hello\\\\\"world\n\t        //   output: \"hello\\\\\\\\\\\"world\"\n\t        //   input : hello world\\\n\t        //   output: \"hello world\\\\\" - note the comment in libuv actually reads \"hello world\\\"\n\t        //                             but it appears the comment is wrong, it should be \"hello world\\\\\"\n\t        let reverse = '\"';\n\t        let quoteHit = true;\n\t        for (let i = arg.length; i > 0; i--) {\n\t            // walk the string in reverse\n\t            reverse += arg[i - 1];\n\t            if (quoteHit && arg[i - 1] === '\\\\') {\n\t                reverse += '\\\\';\n\t            }\n\t            else if (arg[i - 1] === '\"') {\n\t                quoteHit = true;\n\t                reverse += '\\\\';\n\t            }\n\t            else {\n\t                quoteHit = false;\n\t            }\n\t        }\n\t        reverse += '\"';\n\t        return reverse\n\t            .split('')\n\t            .reverse()\n\t            .join('');\n\t    }\n\t    _cloneExecOptions(options) {\n\t        options = options || {};\n\t        const result = {\n\t            cwd: options.cwd || process.cwd(),\n\t            env: options.env || process.env,\n\t            silent: options.silent || false,\n\t            windowsVerbatimArguments: options.windowsVerbatimArguments || false,\n\t            failOnStdErr: options.failOnStdErr || false,\n\t            ignoreReturnCode: options.ignoreReturnCode || false,\n\t            delay: options.delay || 10000\n\t        };\n\t        result.outStream = options.outStream || process.stdout;\n\t        result.errStream = options.errStream || process.stderr;\n\t        return result;\n\t    }\n\t    _getSpawnOptions(options, toolPath) {\n\t        options = options || {};\n\t        const result = {};\n\t        result.cwd = options.cwd;\n\t        result.env = options.env;\n\t        result['windowsVerbatimArguments'] =\n\t            options.windowsVerbatimArguments || this._isCmdFile();\n\t        if (options.windowsVerbatimArguments) {\n\t            result.argv0 = `\"${toolPath}\"`;\n\t        }\n\t        return result;\n\t    }\n\t    /**\n\t     * Exec a tool.\n\t     * Output will be streamed to the live console.\n\t     * Returns promise with return code\n\t     *\n\t     * @param     tool     path to tool to exec\n\t     * @param     options  optional exec options.  See ExecOptions\n\t     * @returns   number\n\t     */\n\t    exec() {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            // root the tool path if it is unrooted and contains relative pathing\n\t            if (!ioUtil.isRooted(this.toolPath) &&\n\t                (this.toolPath.includes('/') ||\n\t                    (IS_WINDOWS && this.toolPath.includes('\\\\')))) {\n\t                // prefer options.cwd if it is specified, however options.cwd may also need to be rooted\n\t                this.toolPath = path.resolve(process.cwd(), this.options.cwd || process.cwd(), this.toolPath);\n\t            }\n\t            // if the tool is only a file name, then resolve it from the PATH\n\t            // otherwise verify it exists (add extension on Windows if necessary)\n\t            this.toolPath = yield io.which(this.toolPath, true);\n\t            return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () {\n\t                this._debug(`exec tool: ${this.toolPath}`);\n\t                this._debug('arguments:');\n\t                for (const arg of this.args) {\n\t                    this._debug(`   ${arg}`);\n\t                }\n\t                const optionsNonNull = this._cloneExecOptions(this.options);\n\t                if (!optionsNonNull.silent && optionsNonNull.outStream) {\n\t                    optionsNonNull.outStream.write(this._getCommandString(optionsNonNull) + os.EOL);\n\t                }\n\t                const state = new ExecState(optionsNonNull, this.toolPath);\n\t                state.on('debug', (message) => {\n\t                    this._debug(message);\n\t                });\n\t                if (this.options.cwd && !(yield ioUtil.exists(this.options.cwd))) {\n\t                    return reject(new Error(`The cwd: ${this.options.cwd} does not exist!`));\n\t                }\n\t                const fileName = this._getSpawnFileName();\n\t                const cp = child.spawn(fileName, this._getSpawnArgs(optionsNonNull), this._getSpawnOptions(this.options, fileName));\n\t                let stdbuffer = '';\n\t                if (cp.stdout) {\n\t                    cp.stdout.on('data', (data) => {\n\t                        if (this.options.listeners && this.options.listeners.stdout) {\n\t                            this.options.listeners.stdout(data);\n\t                        }\n\t                        if (!optionsNonNull.silent && optionsNonNull.outStream) {\n\t                            optionsNonNull.outStream.write(data);\n\t                        }\n\t                        stdbuffer = this._processLineBuffer(data, stdbuffer, (line) => {\n\t                            if (this.options.listeners && this.options.listeners.stdline) {\n\t                                this.options.listeners.stdline(line);\n\t                            }\n\t                        });\n\t                    });\n\t                }\n\t                let errbuffer = '';\n\t                if (cp.stderr) {\n\t                    cp.stderr.on('data', (data) => {\n\t                        state.processStderr = true;\n\t                        if (this.options.listeners && this.options.listeners.stderr) {\n\t                            this.options.listeners.stderr(data);\n\t                        }\n\t                        if (!optionsNonNull.silent &&\n\t                            optionsNonNull.errStream &&\n\t                            optionsNonNull.outStream) {\n\t                            const s = optionsNonNull.failOnStdErr\n\t                                ? optionsNonNull.errStream\n\t                                : optionsNonNull.outStream;\n\t                            s.write(data);\n\t                        }\n\t                        errbuffer = this._processLineBuffer(data, errbuffer, (line) => {\n\t                            if (this.options.listeners && this.options.listeners.errline) {\n\t                                this.options.listeners.errline(line);\n\t                            }\n\t                        });\n\t                    });\n\t                }\n\t                cp.on('error', (err) => {\n\t                    state.processError = err.message;\n\t                    state.processExited = true;\n\t                    state.processClosed = true;\n\t                    state.CheckComplete();\n\t                });\n\t                cp.on('exit', (code) => {\n\t                    state.processExitCode = code;\n\t                    state.processExited = true;\n\t                    this._debug(`Exit code ${code} received from tool '${this.toolPath}'`);\n\t                    state.CheckComplete();\n\t                });\n\t                cp.on('close', (code) => {\n\t                    state.processExitCode = code;\n\t                    state.processExited = true;\n\t                    state.processClosed = true;\n\t                    this._debug(`STDIO streams have closed for tool '${this.toolPath}'`);\n\t                    state.CheckComplete();\n\t                });\n\t                state.on('done', (error, exitCode) => {\n\t                    if (stdbuffer.length > 0) {\n\t                        this.emit('stdline', stdbuffer);\n\t                    }\n\t                    if (errbuffer.length > 0) {\n\t                        this.emit('errline', errbuffer);\n\t                    }\n\t                    cp.removeAllListeners();\n\t                    if (error) {\n\t                        reject(error);\n\t                    }\n\t                    else {\n\t                        resolve(exitCode);\n\t                    }\n\t                });\n\t                if (this.options.input) {\n\t                    if (!cp.stdin) {\n\t                        throw new Error('child process missing stdin');\n\t                    }\n\t                    cp.stdin.end(this.options.input);\n\t                }\n\t            }));\n\t        });\n\t    }\n\t}\n\ttoolrunner.ToolRunner = ToolRunner;\n\t/**\n\t * Convert an arg string to an array of args. Handles escaping\n\t *\n\t * @param    argString   string of arguments\n\t * @returns  string[]    array of arguments\n\t */\n\tfunction argStringToArray(argString) {\n\t    const args = [];\n\t    let inQuotes = false;\n\t    let escaped = false;\n\t    let arg = '';\n\t    function append(c) {\n\t        // we only escape double quotes.\n\t        if (escaped && c !== '\"') {\n\t            arg += '\\\\';\n\t        }\n\t        arg += c;\n\t        escaped = false;\n\t    }\n\t    for (let i = 0; i < argString.length; i++) {\n\t        const c = argString.charAt(i);\n\t        if (c === '\"') {\n\t            if (!escaped) {\n\t                inQuotes = !inQuotes;\n\t            }\n\t            else {\n\t                append(c);\n\t            }\n\t            continue;\n\t        }\n\t        if (c === '\\\\' && escaped) {\n\t            append(c);\n\t            continue;\n\t        }\n\t        if (c === '\\\\' && inQuotes) {\n\t            escaped = true;\n\t            continue;\n\t        }\n\t        if (c === ' ' && !inQuotes) {\n\t            if (arg.length > 0) {\n\t                args.push(arg);\n\t                arg = '';\n\t            }\n\t            continue;\n\t        }\n\t        append(c);\n\t    }\n\t    if (arg.length > 0) {\n\t        args.push(arg.trim());\n\t    }\n\t    return args;\n\t}\n\ttoolrunner.argStringToArray = argStringToArray;\n\tclass ExecState extends events.EventEmitter {\n\t    constructor(options, toolPath) {\n\t        super();\n\t        this.processClosed = false; // tracks whether the process has exited and stdio is closed\n\t        this.processError = '';\n\t        this.processExitCode = 0;\n\t        this.processExited = false; // tracks whether the process has exited\n\t        this.processStderr = false; // tracks whether stderr was written to\n\t        this.delay = 10000; // 10 seconds\n\t        this.done = false;\n\t        this.timeout = null;\n\t        if (!toolPath) {\n\t            throw new Error('toolPath must not be empty');\n\t        }\n\t        this.options = options;\n\t        this.toolPath = toolPath;\n\t        if (options.delay) {\n\t            this.delay = options.delay;\n\t        }\n\t    }\n\t    CheckComplete() {\n\t        if (this.done) {\n\t            return;\n\t        }\n\t        if (this.processClosed) {\n\t            this._setResult();\n\t        }\n\t        else if (this.processExited) {\n\t            this.timeout = timers_1.setTimeout(ExecState.HandleTimeout, this.delay, this);\n\t        }\n\t    }\n\t    _debug(message) {\n\t        this.emit('debug', message);\n\t    }\n\t    _setResult() {\n\t        // determine whether there is an error\n\t        let error;\n\t        if (this.processExited) {\n\t            if (this.processError) {\n\t                error = new Error(`There was an error when attempting to execute the process '${this.toolPath}'. This may indicate the process failed to start. Error: ${this.processError}`);\n\t            }\n\t            else if (this.processExitCode !== 0 && !this.options.ignoreReturnCode) {\n\t                error = new Error(`The process '${this.toolPath}' failed with exit code ${this.processExitCode}`);\n\t            }\n\t            else if (this.processStderr && this.options.failOnStdErr) {\n\t                error = new Error(`The process '${this.toolPath}' failed because one or more lines were written to the STDERR stream`);\n\t            }\n\t        }\n\t        // clear the timeout\n\t        if (this.timeout) {\n\t            clearTimeout(this.timeout);\n\t            this.timeout = null;\n\t        }\n\t        this.done = true;\n\t        this.emit('done', error, this.processExitCode);\n\t    }\n\t    static HandleTimeout(state) {\n\t        if (state.done) {\n\t            return;\n\t        }\n\t        if (!state.processClosed && state.processExited) {\n\t            const message = `The STDIO streams did not close within ${state.delay /\n\t                1000} seconds of the exit event from process '${state.toolPath}'. This may indicate a child process inherited the STDIO streams and has not yet exited.`;\n\t            state._debug(message);\n\t        }\n\t        state._setResult();\n\t    }\n\t}\n\t\n\treturn toolrunner;\n}\n\nvar hasRequiredExec;\n\nfunction requireExec () {\n\tif (hasRequiredExec) return exec;\n\thasRequiredExec = 1;\n\tvar __createBinding = (exec && exec.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (exec && exec.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (exec && exec.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (exec && exec.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(exec, \"__esModule\", { value: true });\n\texec.getExecOutput = exec.exec = void 0;\n\tconst string_decoder_1 = require$$6$1;\n\tconst tr = __importStar(requireToolrunner());\n\t/**\n\t * Exec a command.\n\t * Output will be streamed to the live console.\n\t * Returns promise with return code\n\t *\n\t * @param     commandLine        command to execute (can include additional args). Must be correctly escaped.\n\t * @param     args               optional arguments for tool. Escaping is handled by the lib.\n\t * @param     options            optional exec options.  See ExecOptions\n\t * @returns   Promise<number>    exit code\n\t */\n\tfunction exec$1(commandLine, args, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const commandArgs = tr.argStringToArray(commandLine);\n\t        if (commandArgs.length === 0) {\n\t            throw new Error(`Parameter 'commandLine' cannot be null or empty.`);\n\t        }\n\t        // Path to tool to execute should be first arg\n\t        const toolPath = commandArgs[0];\n\t        args = commandArgs.slice(1).concat(args || []);\n\t        const runner = new tr.ToolRunner(toolPath, args, options);\n\t        return runner.exec();\n\t    });\n\t}\n\texec.exec = exec$1;\n\t/**\n\t * Exec a command and get the output.\n\t * Output will be streamed to the live console.\n\t * Returns promise with the exit code and collected stdout and stderr\n\t *\n\t * @param     commandLine           command to execute (can include additional args). Must be correctly escaped.\n\t * @param     args                  optional arguments for tool. Escaping is handled by the lib.\n\t * @param     options               optional exec options.  See ExecOptions\n\t * @returns   Promise<ExecOutput>   exit code, stdout, and stderr\n\t */\n\tfunction getExecOutput(commandLine, args, options) {\n\t    var _a, _b;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        let stdout = '';\n\t        let stderr = '';\n\t        //Using string decoder covers the case where a mult-byte character is split\n\t        const stdoutDecoder = new string_decoder_1.StringDecoder('utf8');\n\t        const stderrDecoder = new string_decoder_1.StringDecoder('utf8');\n\t        const originalStdoutListener = (_a = options === null || options === void 0 ? void 0 : options.listeners) === null || _a === void 0 ? void 0 : _a.stdout;\n\t        const originalStdErrListener = (_b = options === null || options === void 0 ? void 0 : options.listeners) === null || _b === void 0 ? void 0 : _b.stderr;\n\t        const stdErrListener = (data) => {\n\t            stderr += stderrDecoder.write(data);\n\t            if (originalStdErrListener) {\n\t                originalStdErrListener(data);\n\t            }\n\t        };\n\t        const stdOutListener = (data) => {\n\t            stdout += stdoutDecoder.write(data);\n\t            if (originalStdoutListener) {\n\t                originalStdoutListener(data);\n\t            }\n\t        };\n\t        const listeners = Object.assign(Object.assign({}, options === null || options === void 0 ? void 0 : options.listeners), { stdout: stdOutListener, stderr: stdErrListener });\n\t        const exitCode = yield exec$1(commandLine, args, Object.assign(Object.assign({}, options), { listeners }));\n\t        //flush any remaining characters\n\t        stdout += stdoutDecoder.end();\n\t        stderr += stderrDecoder.end();\n\t        return {\n\t            exitCode,\n\t            stdout,\n\t            stderr\n\t        };\n\t    });\n\t}\n\texec.getExecOutput = getExecOutput;\n\t\n\treturn exec;\n}\n\nvar hasRequiredPlatform;\n\nfunction requirePlatform () {\n\tif (hasRequiredPlatform) return platform;\n\thasRequiredPlatform = 1;\n\t(function (exports) {\n\t\tvar __createBinding = (platform && platform.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t\t    }\n\t\t    Object.defineProperty(o, k2, desc);\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __setModuleDefault = (platform && platform.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t\t}) : function(o, v) {\n\t\t    o[\"default\"] = v;\n\t\t});\n\t\tvar __importStar = (platform && platform.__importStar) || function (mod) {\n\t\t    if (mod && mod.__esModule) return mod;\n\t\t    var result = {};\n\t\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t\t    __setModuleDefault(result, mod);\n\t\t    return result;\n\t\t};\n\t\tvar __awaiter = (platform && platform.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t\t    });\n\t\t};\n\t\tvar __importDefault = (platform && platform.__importDefault) || function (mod) {\n\t\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.getDetails = exports.isLinux = exports.isMacOS = exports.isWindows = exports.arch = exports.platform = void 0;\n\t\tconst os_1 = __importDefault(require$$0__default);\n\t\tconst exec = __importStar(requireExec());\n\t\tconst getWindowsInfo = () => __awaiter(void 0, void 0, void 0, function* () {\n\t\t    const { stdout: version } = yield exec.getExecOutput('powershell -command \"(Get-CimInstance -ClassName Win32_OperatingSystem).Version\"', undefined, {\n\t\t        silent: true\n\t\t    });\n\t\t    const { stdout: name } = yield exec.getExecOutput('powershell -command \"(Get-CimInstance -ClassName Win32_OperatingSystem).Caption\"', undefined, {\n\t\t        silent: true\n\t\t    });\n\t\t    return {\n\t\t        name: name.trim(),\n\t\t        version: version.trim()\n\t\t    };\n\t\t});\n\t\tconst getMacOsInfo = () => __awaiter(void 0, void 0, void 0, function* () {\n\t\t    var _a, _b, _c, _d;\n\t\t    const { stdout } = yield exec.getExecOutput('sw_vers', undefined, {\n\t\t        silent: true\n\t\t    });\n\t\t    const version = (_b = (_a = stdout.match(/ProductVersion:\\s*(.+)/)) === null || _a === void 0 ? void 0 : _a[1]) !== null && _b !== void 0 ? _b : '';\n\t\t    const name = (_d = (_c = stdout.match(/ProductName:\\s*(.+)/)) === null || _c === void 0 ? void 0 : _c[1]) !== null && _d !== void 0 ? _d : '';\n\t\t    return {\n\t\t        name,\n\t\t        version\n\t\t    };\n\t\t});\n\t\tconst getLinuxInfo = () => __awaiter(void 0, void 0, void 0, function* () {\n\t\t    const { stdout } = yield exec.getExecOutput('lsb_release', ['-i', '-r', '-s'], {\n\t\t        silent: true\n\t\t    });\n\t\t    const [name, version] = stdout.trim().split('\\n');\n\t\t    return {\n\t\t        name,\n\t\t        version\n\t\t    };\n\t\t});\n\t\texports.platform = os_1.default.platform();\n\t\texports.arch = os_1.default.arch();\n\t\texports.isWindows = exports.platform === 'win32';\n\t\texports.isMacOS = exports.platform === 'darwin';\n\t\texports.isLinux = exports.platform === 'linux';\n\t\tfunction getDetails() {\n\t\t    return __awaiter(this, void 0, void 0, function* () {\n\t\t        return Object.assign(Object.assign({}, (yield (exports.isWindows\n\t\t            ? getWindowsInfo()\n\t\t            : exports.isMacOS\n\t\t                ? getMacOsInfo()\n\t\t                : getLinuxInfo()))), { platform: exports.platform,\n\t\t            arch: exports.arch,\n\t\t            isWindows: exports.isWindows,\n\t\t            isMacOS: exports.isMacOS,\n\t\t            isLinux: exports.isLinux });\n\t\t    });\n\t\t}\n\t\texports.getDetails = getDetails;\n\t\t\n\t} (platform));\n\treturn platform;\n}\n\nvar hasRequiredCore$1;\n\nfunction requireCore$1 () {\n\tif (hasRequiredCore$1) return core$1;\n\thasRequiredCore$1 = 1;\n\t(function (exports) {\n\t\tvar __createBinding = (core$1 && core$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t\t    }\n\t\t    Object.defineProperty(o, k2, desc);\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __setModuleDefault = (core$1 && core$1.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t\t}) : function(o, v) {\n\t\t    o[\"default\"] = v;\n\t\t});\n\t\tvar __importStar = (core$1 && core$1.__importStar) || function (mod) {\n\t\t    if (mod && mod.__esModule) return mod;\n\t\t    var result = {};\n\t\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t\t    __setModuleDefault(result, mod);\n\t\t    return result;\n\t\t};\n\t\tvar __awaiter = (core$1 && core$1.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t\t    });\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.platform = exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = exports.markdownSummary = exports.summary = exports.getIDToken = exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0;\n\t\tconst command_1 = requireCommand();\n\t\tconst file_command_1 = requireFileCommand();\n\t\tconst utils_1 = requireUtils$5();\n\t\tconst os = __importStar(require$$0__default);\n\t\tconst path = __importStar(require$$1__default);\n\t\tconst oidc_utils_1 = requireOidcUtils();\n\t\t/**\n\t\t * The code to exit an action\n\t\t */\n\t\tvar ExitCode;\n\t\t(function (ExitCode) {\n\t\t    /**\n\t\t     * A code indicating that the action was successful\n\t\t     */\n\t\t    ExitCode[ExitCode[\"Success\"] = 0] = \"Success\";\n\t\t    /**\n\t\t     * A code indicating that the action was a failure\n\t\t     */\n\t\t    ExitCode[ExitCode[\"Failure\"] = 1] = \"Failure\";\n\t\t})(ExitCode || (exports.ExitCode = ExitCode = {}));\n\t\t//-----------------------------------------------------------------------\n\t\t// Variables\n\t\t//-----------------------------------------------------------------------\n\t\t/**\n\t\t * Sets env variable for this action and future actions in the job\n\t\t * @param name the name of the variable to set\n\t\t * @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify\n\t\t */\n\t\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\t\tfunction exportVariable(name, val) {\n\t\t    const convertedVal = (0, utils_1.toCommandValue)(val);\n\t\t    process.env[name] = convertedVal;\n\t\t    const filePath = process.env['GITHUB_ENV'] || '';\n\t\t    if (filePath) {\n\t\t        return (0, file_command_1.issueFileCommand)('ENV', (0, file_command_1.prepareKeyValueMessage)(name, val));\n\t\t    }\n\t\t    (0, command_1.issueCommand)('set-env', { name }, convertedVal);\n\t\t}\n\t\texports.exportVariable = exportVariable;\n\t\t/**\n\t\t * Registers a secret which will get masked from logs\n\t\t * @param secret value of the secret\n\t\t */\n\t\tfunction setSecret(secret) {\n\t\t    (0, command_1.issueCommand)('add-mask', {}, secret);\n\t\t}\n\t\texports.setSecret = setSecret;\n\t\t/**\n\t\t * Prepends inputPath to the PATH (for this action and future actions)\n\t\t * @param inputPath\n\t\t */\n\t\tfunction addPath(inputPath) {\n\t\t    const filePath = process.env['GITHUB_PATH'] || '';\n\t\t    if (filePath) {\n\t\t        (0, file_command_1.issueFileCommand)('PATH', inputPath);\n\t\t    }\n\t\t    else {\n\t\t        (0, command_1.issueCommand)('add-path', {}, inputPath);\n\t\t    }\n\t\t    process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`;\n\t\t}\n\t\texports.addPath = addPath;\n\t\t/**\n\t\t * Gets the value of an input.\n\t\t * Unless trimWhitespace is set to false in InputOptions, the value is also trimmed.\n\t\t * Returns an empty string if the value is not defined.\n\t\t *\n\t\t * @param     name     name of the input to get\n\t\t * @param     options  optional. See InputOptions.\n\t\t * @returns   string\n\t\t */\n\t\tfunction getInput(name, options) {\n\t\t    const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || '';\n\t\t    if (options && options.required && !val) {\n\t\t        throw new Error(`Input required and not supplied: ${name}`);\n\t\t    }\n\t\t    if (options && options.trimWhitespace === false) {\n\t\t        return val;\n\t\t    }\n\t\t    return val.trim();\n\t\t}\n\t\texports.getInput = getInput;\n\t\t/**\n\t\t * Gets the values of an multiline input.  Each value is also trimmed.\n\t\t *\n\t\t * @param     name     name of the input to get\n\t\t * @param     options  optional. See InputOptions.\n\t\t * @returns   string[]\n\t\t *\n\t\t */\n\t\tfunction getMultilineInput(name, options) {\n\t\t    const inputs = getInput(name, options)\n\t\t        .split('\\n')\n\t\t        .filter(x => x !== '');\n\t\t    if (options && options.trimWhitespace === false) {\n\t\t        return inputs;\n\t\t    }\n\t\t    return inputs.map(input => input.trim());\n\t\t}\n\t\texports.getMultilineInput = getMultilineInput;\n\t\t/**\n\t\t * Gets the input value of the boolean type in the YAML 1.2 \"core schema\" specification.\n\t\t * Support boolean input list: `true | True | TRUE | false | False | FALSE` .\n\t\t * The return value is also in boolean type.\n\t\t * ref: https://yaml.org/spec/1.2/spec.html#id2804923\n\t\t *\n\t\t * @param     name     name of the input to get\n\t\t * @param     options  optional. See InputOptions.\n\t\t * @returns   boolean\n\t\t */\n\t\tfunction getBooleanInput(name, options) {\n\t\t    const trueValue = ['true', 'True', 'TRUE'];\n\t\t    const falseValue = ['false', 'False', 'FALSE'];\n\t\t    const val = getInput(name, options);\n\t\t    if (trueValue.includes(val))\n\t\t        return true;\n\t\t    if (falseValue.includes(val))\n\t\t        return false;\n\t\t    throw new TypeError(`Input does not meet YAML 1.2 \"Core Schema\" specification: ${name}\\n` +\n\t\t        `Support boolean input list: \\`true | True | TRUE | false | False | FALSE\\``);\n\t\t}\n\t\texports.getBooleanInput = getBooleanInput;\n\t\t/**\n\t\t * Sets the value of an output.\n\t\t *\n\t\t * @param     name     name of the output to set\n\t\t * @param     value    value to store. Non-string values will be converted to a string via JSON.stringify\n\t\t */\n\t\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\t\tfunction setOutput(name, value) {\n\t\t    const filePath = process.env['GITHUB_OUTPUT'] || '';\n\t\t    if (filePath) {\n\t\t        return (0, file_command_1.issueFileCommand)('OUTPUT', (0, file_command_1.prepareKeyValueMessage)(name, value));\n\t\t    }\n\t\t    process.stdout.write(os.EOL);\n\t\t    (0, command_1.issueCommand)('set-output', { name }, (0, utils_1.toCommandValue)(value));\n\t\t}\n\t\texports.setOutput = setOutput;\n\t\t/**\n\t\t * Enables or disables the echoing of commands into stdout for the rest of the step.\n\t\t * Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set.\n\t\t *\n\t\t */\n\t\tfunction setCommandEcho(enabled) {\n\t\t    (0, command_1.issue)('echo', enabled ? 'on' : 'off');\n\t\t}\n\t\texports.setCommandEcho = setCommandEcho;\n\t\t//-----------------------------------------------------------------------\n\t\t// Results\n\t\t//-----------------------------------------------------------------------\n\t\t/**\n\t\t * Sets the action status to failed.\n\t\t * When the action exits it will be with an exit code of 1\n\t\t * @param message add error issue message\n\t\t */\n\t\tfunction setFailed(message) {\n\t\t    process.exitCode = ExitCode.Failure;\n\t\t    error(message);\n\t\t}\n\t\texports.setFailed = setFailed;\n\t\t//-----------------------------------------------------------------------\n\t\t// Logging Commands\n\t\t//-----------------------------------------------------------------------\n\t\t/**\n\t\t * Gets whether Actions Step Debug is on or not\n\t\t */\n\t\tfunction isDebug() {\n\t\t    return process.env['RUNNER_DEBUG'] === '1';\n\t\t}\n\t\texports.isDebug = isDebug;\n\t\t/**\n\t\t * Writes debug message to user log\n\t\t * @param message debug message\n\t\t */\n\t\tfunction debug(message) {\n\t\t    (0, command_1.issueCommand)('debug', {}, message);\n\t\t}\n\t\texports.debug = debug;\n\t\t/**\n\t\t * Adds an error issue\n\t\t * @param message error issue message. Errors will be converted to string via toString()\n\t\t * @param properties optional properties to add to the annotation.\n\t\t */\n\t\tfunction error(message, properties = {}) {\n\t\t    (0, command_1.issueCommand)('error', (0, utils_1.toCommandProperties)(properties), message instanceof Error ? message.toString() : message);\n\t\t}\n\t\texports.error = error;\n\t\t/**\n\t\t * Adds a warning issue\n\t\t * @param message warning issue message. Errors will be converted to string via toString()\n\t\t * @param properties optional properties to add to the annotation.\n\t\t */\n\t\tfunction warning(message, properties = {}) {\n\t\t    (0, command_1.issueCommand)('warning', (0, utils_1.toCommandProperties)(properties), message instanceof Error ? message.toString() : message);\n\t\t}\n\t\texports.warning = warning;\n\t\t/**\n\t\t * Adds a notice issue\n\t\t * @param message notice issue message. Errors will be converted to string via toString()\n\t\t * @param properties optional properties to add to the annotation.\n\t\t */\n\t\tfunction notice(message, properties = {}) {\n\t\t    (0, command_1.issueCommand)('notice', (0, utils_1.toCommandProperties)(properties), message instanceof Error ? message.toString() : message);\n\t\t}\n\t\texports.notice = notice;\n\t\t/**\n\t\t * Writes info to log with console.log.\n\t\t * @param message info message\n\t\t */\n\t\tfunction info(message) {\n\t\t    process.stdout.write(message + os.EOL);\n\t\t}\n\t\texports.info = info;\n\t\t/**\n\t\t * Begin an output group.\n\t\t *\n\t\t * Output until the next `groupEnd` will be foldable in this group\n\t\t *\n\t\t * @param name The name of the output group\n\t\t */\n\t\tfunction startGroup(name) {\n\t\t    (0, command_1.issue)('group', name);\n\t\t}\n\t\texports.startGroup = startGroup;\n\t\t/**\n\t\t * End an output group.\n\t\t */\n\t\tfunction endGroup() {\n\t\t    (0, command_1.issue)('endgroup');\n\t\t}\n\t\texports.endGroup = endGroup;\n\t\t/**\n\t\t * Wrap an asynchronous function call in a group.\n\t\t *\n\t\t * Returns the same type as the function itself.\n\t\t *\n\t\t * @param name The name of the group\n\t\t * @param fn The function to wrap in the group\n\t\t */\n\t\tfunction group(name, fn) {\n\t\t    return __awaiter(this, void 0, void 0, function* () {\n\t\t        startGroup(name);\n\t\t        let result;\n\t\t        try {\n\t\t            result = yield fn();\n\t\t        }\n\t\t        finally {\n\t\t            endGroup();\n\t\t        }\n\t\t        return result;\n\t\t    });\n\t\t}\n\t\texports.group = group;\n\t\t//-----------------------------------------------------------------------\n\t\t// Wrapper action state\n\t\t//-----------------------------------------------------------------------\n\t\t/**\n\t\t * Saves state for current action, the state can only be retrieved by this action's post job execution.\n\t\t *\n\t\t * @param     name     name of the state to store\n\t\t * @param     value    value to store. Non-string values will be converted to a string via JSON.stringify\n\t\t */\n\t\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\t\tfunction saveState(name, value) {\n\t\t    const filePath = process.env['GITHUB_STATE'] || '';\n\t\t    if (filePath) {\n\t\t        return (0, file_command_1.issueFileCommand)('STATE', (0, file_command_1.prepareKeyValueMessage)(name, value));\n\t\t    }\n\t\t    (0, command_1.issueCommand)('save-state', { name }, (0, utils_1.toCommandValue)(value));\n\t\t}\n\t\texports.saveState = saveState;\n\t\t/**\n\t\t * Gets the value of an state set by this action's main execution.\n\t\t *\n\t\t * @param     name     name of the state to get\n\t\t * @returns   string\n\t\t */\n\t\tfunction getState(name) {\n\t\t    return process.env[`STATE_${name}`] || '';\n\t\t}\n\t\texports.getState = getState;\n\t\tfunction getIDToken(aud) {\n\t\t    return __awaiter(this, void 0, void 0, function* () {\n\t\t        return yield oidc_utils_1.OidcClient.getIDToken(aud);\n\t\t    });\n\t\t}\n\t\texports.getIDToken = getIDToken;\n\t\t/**\n\t\t * Summary exports\n\t\t */\n\t\tvar summary_1 = requireSummary();\n\t\tObject.defineProperty(exports, \"summary\", { enumerable: true, get: function () { return summary_1.summary; } });\n\t\t/**\n\t\t * @deprecated use core.summary\n\t\t */\n\t\tvar summary_2 = requireSummary();\n\t\tObject.defineProperty(exports, \"markdownSummary\", { enumerable: true, get: function () { return summary_2.markdownSummary; } });\n\t\t/**\n\t\t * Path exports\n\t\t */\n\t\tvar path_utils_1 = requirePathUtils();\n\t\tObject.defineProperty(exports, \"toPosixPath\", { enumerable: true, get: function () { return path_utils_1.toPosixPath; } });\n\t\tObject.defineProperty(exports, \"toWin32Path\", { enumerable: true, get: function () { return path_utils_1.toWin32Path; } });\n\t\tObject.defineProperty(exports, \"toPlatformPath\", { enumerable: true, get: function () { return path_utils_1.toPlatformPath; } });\n\t\t/**\n\t\t * Platform utilities exports\n\t\t */\n\t\texports.platform = __importStar(requirePlatform());\n\t\t\n\t} (core$1));\n\treturn core$1;\n}\n\nvar coreExports = requireCore$1();\n\nfunction parseMethod(methodString) {\n    switch (methodString) {\n        case 'local':\n            return 'local';\n        case 'network':\n            return 'network';\n        default:\n            throw new Error(`Invalid method string: ${methodString}`);\n    }\n}\n\nvar OSType;\n(function (OSType) {\n    OSType[\"windows\"] = \"windows\";\n    OSType[\"linux\"] = \"linux\";\n})(OSType || (OSType = {}));\nasync function getOs() {\n    const osPlatform = require$$0__default.platform();\n    switch (osPlatform) {\n        case 'win32':\n            return OSType.windows;\n        case 'linux':\n            return OSType.linux;\n        default:\n            coreExports.debug(`Unsupported OS: ${osPlatform}`);\n            throw new Error(`Unsupported OS: ${osPlatform}`);\n    }\n}\nasync function getRelease() {\n    return require$$0__default.release();\n}\n\nvar execExports = requireExec();\n\nasync function execReturnOutput(command, args = []) {\n    let result = '';\n    const execOptions = {\n        listeners: {\n            stdout: (data) => {\n                result += data.toString();\n            },\n            stderr: (data) => {\n                coreExports.debug(`Error: ${data.toString()}`);\n            }\n        }\n    };\n    const exitCode = await execExports.exec(command, args, execOptions);\n    if (exitCode) {\n        coreExports.debug(`Error executing: ${command}. Exit code: ${exitCode}`);\n    }\n    return result.trim();\n}\n\nvar CPUArch;\n(function (CPUArch) {\n    CPUArch[\"x86_64\"] = \"x64\";\n    CPUArch[\"arm64\"] = \"arm64\";\n})(CPUArch || (CPUArch = {}));\nasync function getArch() {\n    const arch = require$$0__default.arch();\n    switch (arch) {\n        case 'x64':\n            return CPUArch.x86_64;\n        case 'arm64':\n            return CPUArch.arm64;\n        default:\n            coreExports.debug(`Unsupported architecture: ${arch}`);\n            throw new Error(`Unsupported architecture: ${arch}`);\n    }\n}\n\nasync function useApt(method) {\n    return method === 'network' && (await getOs()) === OSType.linux;\n}\nasync function aptSetup(version) {\n    const osType = await getOs();\n    if (osType !== OSType.linux) {\n        throw new Error(`apt setup can only be run on linux runners! Current os type: ${osType}`);\n    }\n    coreExports.debug(`Setup packages for ${version}`);\n    const ubuntuVersion = await execReturnOutput('lsb_release', ['-sr']);\n    const ubuntuVersionNoDot = ubuntuVersion.replace('.', '');\n    // Dynamically determine architecture\n    let arch = 'x86_64'; // Default to x86_64\n    try {\n        if ((await getArch()) === CPUArch.arm64) {\n            arch = 'sbsa'; // This might not work in the future, they are merging arm64 and sbsa\n        }\n    }\n    catch (error) {\n        coreExports.debug(`Error detecting architecture: ${error}`);\n        coreExports.warning(`Could not detect architecture, using default ${arch}`);\n    }\n    coreExports.debug(`Detected architecture: ${process.arch}, using arch string: ${arch}`);\n    const pinFilename = `cuda-ubuntu${ubuntuVersionNoDot}.pin`;\n    const pinUrl = `https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntuVersionNoDot}/${arch}/${pinFilename}`;\n    const repoUrl = `http://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntuVersionNoDot}/${arch}/`;\n    const keyRingVersion = `1.1-1`;\n    const keyRingUrl = `https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntuVersionNoDot}/${arch}/cuda-keyring_${keyRingVersion}_all.deb`;\n    const keyRingFilename = `cuda_keyring.deb`;\n    coreExports.debug(`Pin filename: ${pinFilename}`);\n    coreExports.debug(`Pin url: ${pinUrl}`);\n    coreExports.debug(`Keyring url: ${keyRingUrl}`);\n    coreExports.debug(`Downloading keyring`);\n    await execExports.exec(`wget ${keyRingUrl} -O ${keyRingFilename}`);\n    await execExports.exec(`sudo dpkg -i ${keyRingFilename}`);\n    coreExports.debug('Adding CUDA Repository');\n    await execExports.exec(`wget ${pinUrl}`);\n    await execExports.exec(`sudo mv ${pinFilename} /etc/apt/preferences.d/cuda-repository-pin-600`);\n    await execExports.exec(`sudo add-apt-repository \"deb ${repoUrl} /\"`);\n    await execExports.exec(`sudo apt-get update`);\n}\nasync function aptInstall(version, subPackages, nonCudaSubPackages) {\n    const osType = await getOs();\n    if (osType !== OSType.linux) {\n        throw new Error(`apt install can only be run on linux runners! Current os type: ${osType}`);\n    }\n    if (subPackages.length === 0) {\n        // Install everything\n        const packageName = `cuda-${version.major}-${version.minor}`;\n        coreExports.debug(`Install package: ${packageName}`);\n        return await execExports.exec(`sudo apt-get -y install`, [packageName]);\n    }\n    else {\n        // Only install specified packages\n        const prefixedSubPackages = subPackages.map((subPackage) => `cuda-${subPackage}`);\n        const versionedSubPackages = prefixedSubPackages\n            .concat(nonCudaSubPackages)\n            .map((nonCudaSubPackage) => `${nonCudaSubPackage}-${version.major}-${version.minor}`);\n        coreExports.debug(`Only install subpackages: ${versionedSubPackages}`);\n        return await execExports.exec(`sudo apt-get -y install`, versionedSubPackages);\n    }\n}\n\nvar cache$1 = {};\n\nvar cacheUtils = {};\n\nvar glob$1 = {};\n\nvar internalGlobber = {};\n\nvar internalGlobOptionsHelper = {};\n\nvar hasRequiredInternalGlobOptionsHelper;\n\nfunction requireInternalGlobOptionsHelper () {\n\tif (hasRequiredInternalGlobOptionsHelper) return internalGlobOptionsHelper;\n\thasRequiredInternalGlobOptionsHelper = 1;\n\tvar __createBinding = (internalGlobOptionsHelper && internalGlobOptionsHelper.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (internalGlobOptionsHelper && internalGlobOptionsHelper.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (internalGlobOptionsHelper && internalGlobOptionsHelper.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(internalGlobOptionsHelper, \"__esModule\", { value: true });\n\tinternalGlobOptionsHelper.getOptions = void 0;\n\tconst core = __importStar(requireCore$1());\n\t/**\n\t * Returns a copy with defaults filled in.\n\t */\n\tfunction getOptions(copy) {\n\t    const result = {\n\t        followSymbolicLinks: true,\n\t        implicitDescendants: true,\n\t        omitBrokenSymbolicLinks: true\n\t    };\n\t    if (copy) {\n\t        if (typeof copy.followSymbolicLinks === 'boolean') {\n\t            result.followSymbolicLinks = copy.followSymbolicLinks;\n\t            core.debug(`followSymbolicLinks '${result.followSymbolicLinks}'`);\n\t        }\n\t        if (typeof copy.implicitDescendants === 'boolean') {\n\t            result.implicitDescendants = copy.implicitDescendants;\n\t            core.debug(`implicitDescendants '${result.implicitDescendants}'`);\n\t        }\n\t        if (typeof copy.omitBrokenSymbolicLinks === 'boolean') {\n\t            result.omitBrokenSymbolicLinks = copy.omitBrokenSymbolicLinks;\n\t            core.debug(`omitBrokenSymbolicLinks '${result.omitBrokenSymbolicLinks}'`);\n\t        }\n\t    }\n\t    return result;\n\t}\n\tinternalGlobOptionsHelper.getOptions = getOptions;\n\t\n\treturn internalGlobOptionsHelper;\n}\n\nvar internalPatternHelper = {};\n\nvar internalPathHelper = {};\n\nvar hasRequiredInternalPathHelper;\n\nfunction requireInternalPathHelper () {\n\tif (hasRequiredInternalPathHelper) return internalPathHelper;\n\thasRequiredInternalPathHelper = 1;\n\tvar __createBinding = (internalPathHelper && internalPathHelper.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (internalPathHelper && internalPathHelper.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (internalPathHelper && internalPathHelper.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __importDefault = (internalPathHelper && internalPathHelper.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(internalPathHelper, \"__esModule\", { value: true });\n\tinternalPathHelper.safeTrimTrailingSeparator = internalPathHelper.normalizeSeparators = internalPathHelper.hasRoot = internalPathHelper.hasAbsoluteRoot = internalPathHelper.ensureAbsoluteRoot = internalPathHelper.dirname = void 0;\n\tconst path = __importStar(require$$1__default);\n\tconst assert_1 = __importDefault(require$$0$9);\n\tconst IS_WINDOWS = process.platform === 'win32';\n\t/**\n\t * Similar to path.dirname except normalizes the path separators and slightly better handling for Windows UNC paths.\n\t *\n\t * For example, on Linux/macOS:\n\t * - `/               => /`\n\t * - `/hello          => /`\n\t *\n\t * For example, on Windows:\n\t * - `C:\\             => C:\\`\n\t * - `C:\\hello        => C:\\`\n\t * - `C:              => C:`\n\t * - `C:hello         => C:`\n\t * - `\\               => \\`\n\t * - `\\hello          => \\`\n\t * - `\\\\hello         => \\\\hello`\n\t * - `\\\\hello\\world   => \\\\hello\\world`\n\t */\n\tfunction dirname(p) {\n\t    // Normalize slashes and trim unnecessary trailing slash\n\t    p = safeTrimTrailingSeparator(p);\n\t    // Windows UNC root, e.g. \\\\hello or \\\\hello\\world\n\t    if (IS_WINDOWS && /^\\\\\\\\[^\\\\]+(\\\\[^\\\\]+)?$/.test(p)) {\n\t        return p;\n\t    }\n\t    // Get dirname\n\t    let result = path.dirname(p);\n\t    // Trim trailing slash for Windows UNC root, e.g. \\\\hello\\world\\\n\t    if (IS_WINDOWS && /^\\\\\\\\[^\\\\]+\\\\[^\\\\]+\\\\$/.test(result)) {\n\t        result = safeTrimTrailingSeparator(result);\n\t    }\n\t    return result;\n\t}\n\tinternalPathHelper.dirname = dirname;\n\t/**\n\t * Roots the path if not already rooted. On Windows, relative roots like `\\`\n\t * or `C:` are expanded based on the current working directory.\n\t */\n\tfunction ensureAbsoluteRoot(root, itemPath) {\n\t    assert_1.default(root, `ensureAbsoluteRoot parameter 'root' must not be empty`);\n\t    assert_1.default(itemPath, `ensureAbsoluteRoot parameter 'itemPath' must not be empty`);\n\t    // Already rooted\n\t    if (hasAbsoluteRoot(itemPath)) {\n\t        return itemPath;\n\t    }\n\t    // Windows\n\t    if (IS_WINDOWS) {\n\t        // Check for itemPath like C: or C:foo\n\t        if (itemPath.match(/^[A-Z]:[^\\\\/]|^[A-Z]:$/i)) {\n\t            let cwd = process.cwd();\n\t            assert_1.default(cwd.match(/^[A-Z]:\\\\/i), `Expected current directory to start with an absolute drive root. Actual '${cwd}'`);\n\t            // Drive letter matches cwd? Expand to cwd\n\t            if (itemPath[0].toUpperCase() === cwd[0].toUpperCase()) {\n\t                // Drive only, e.g. C:\n\t                if (itemPath.length === 2) {\n\t                    // Preserve specified drive letter case (upper or lower)\n\t                    return `${itemPath[0]}:\\\\${cwd.substr(3)}`;\n\t                }\n\t                // Drive + path, e.g. C:foo\n\t                else {\n\t                    if (!cwd.endsWith('\\\\')) {\n\t                        cwd += '\\\\';\n\t                    }\n\t                    // Preserve specified drive letter case (upper or lower)\n\t                    return `${itemPath[0]}:\\\\${cwd.substr(3)}${itemPath.substr(2)}`;\n\t                }\n\t            }\n\t            // Different drive\n\t            else {\n\t                return `${itemPath[0]}:\\\\${itemPath.substr(2)}`;\n\t            }\n\t        }\n\t        // Check for itemPath like \\ or \\foo\n\t        else if (normalizeSeparators(itemPath).match(/^\\\\$|^\\\\[^\\\\]/)) {\n\t            const cwd = process.cwd();\n\t            assert_1.default(cwd.match(/^[A-Z]:\\\\/i), `Expected current directory to start with an absolute drive root. Actual '${cwd}'`);\n\t            return `${cwd[0]}:\\\\${itemPath.substr(1)}`;\n\t        }\n\t    }\n\t    assert_1.default(hasAbsoluteRoot(root), `ensureAbsoluteRoot parameter 'root' must have an absolute root`);\n\t    // Otherwise ensure root ends with a separator\n\t    if (root.endsWith('/') || (IS_WINDOWS && root.endsWith('\\\\'))) ;\n\t    else {\n\t        // Append separator\n\t        root += path.sep;\n\t    }\n\t    return root + itemPath;\n\t}\n\tinternalPathHelper.ensureAbsoluteRoot = ensureAbsoluteRoot;\n\t/**\n\t * On Linux/macOS, true if path starts with `/`. On Windows, true for paths like:\n\t * `\\\\hello\\share` and `C:\\hello` (and using alternate separator).\n\t */\n\tfunction hasAbsoluteRoot(itemPath) {\n\t    assert_1.default(itemPath, `hasAbsoluteRoot parameter 'itemPath' must not be empty`);\n\t    // Normalize separators\n\t    itemPath = normalizeSeparators(itemPath);\n\t    // Windows\n\t    if (IS_WINDOWS) {\n\t        // E.g. \\\\hello\\share or C:\\hello\n\t        return itemPath.startsWith('\\\\\\\\') || /^[A-Z]:\\\\/i.test(itemPath);\n\t    }\n\t    // E.g. /hello\n\t    return itemPath.startsWith('/');\n\t}\n\tinternalPathHelper.hasAbsoluteRoot = hasAbsoluteRoot;\n\t/**\n\t * On Linux/macOS, true if path starts with `/`. On Windows, true for paths like:\n\t * `\\`, `\\hello`, `\\\\hello\\share`, `C:`, and `C:\\hello` (and using alternate separator).\n\t */\n\tfunction hasRoot(itemPath) {\n\t    assert_1.default(itemPath, `isRooted parameter 'itemPath' must not be empty`);\n\t    // Normalize separators\n\t    itemPath = normalizeSeparators(itemPath);\n\t    // Windows\n\t    if (IS_WINDOWS) {\n\t        // E.g. \\ or \\hello or \\\\hello\n\t        // E.g. C: or C:\\hello\n\t        return itemPath.startsWith('\\\\') || /^[A-Z]:/i.test(itemPath);\n\t    }\n\t    // E.g. /hello\n\t    return itemPath.startsWith('/');\n\t}\n\tinternalPathHelper.hasRoot = hasRoot;\n\t/**\n\t * Removes redundant slashes and converts `/` to `\\` on Windows\n\t */\n\tfunction normalizeSeparators(p) {\n\t    p = p || '';\n\t    // Windows\n\t    if (IS_WINDOWS) {\n\t        // Convert slashes on Windows\n\t        p = p.replace(/\\//g, '\\\\');\n\t        // Remove redundant slashes\n\t        const isUnc = /^\\\\\\\\+[^\\\\]/.test(p); // e.g. \\\\hello\n\t        return (isUnc ? '\\\\' : '') + p.replace(/\\\\\\\\+/g, '\\\\'); // preserve leading \\\\ for UNC\n\t    }\n\t    // Remove redundant slashes\n\t    return p.replace(/\\/\\/+/g, '/');\n\t}\n\tinternalPathHelper.normalizeSeparators = normalizeSeparators;\n\t/**\n\t * Normalizes the path separators and trims the trailing separator (when safe).\n\t * For example, `/foo/ => /foo` but `/ => /`\n\t */\n\tfunction safeTrimTrailingSeparator(p) {\n\t    // Short-circuit if empty\n\t    if (!p) {\n\t        return '';\n\t    }\n\t    // Normalize separators\n\t    p = normalizeSeparators(p);\n\t    // No trailing slash\n\t    if (!p.endsWith(path.sep)) {\n\t        return p;\n\t    }\n\t    // Check '/' on Linux/macOS and '\\' on Windows\n\t    if (p === path.sep) {\n\t        return p;\n\t    }\n\t    // On Windows check if drive root. E.g. C:\\\n\t    if (IS_WINDOWS && /^[A-Z]:\\\\$/i.test(p)) {\n\t        return p;\n\t    }\n\t    // Otherwise trim trailing slash\n\t    return p.substr(0, p.length - 1);\n\t}\n\tinternalPathHelper.safeTrimTrailingSeparator = safeTrimTrailingSeparator;\n\t\n\treturn internalPathHelper;\n}\n\nvar internalMatchKind = {};\n\nvar hasRequiredInternalMatchKind;\n\nfunction requireInternalMatchKind () {\n\tif (hasRequiredInternalMatchKind) return internalMatchKind;\n\thasRequiredInternalMatchKind = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.MatchKind = void 0;\n\t\t(function (MatchKind) {\n\t\t    /** Not matched */\n\t\t    MatchKind[MatchKind[\"None\"] = 0] = \"None\";\n\t\t    /** Matched if the path is a directory */\n\t\t    MatchKind[MatchKind[\"Directory\"] = 1] = \"Directory\";\n\t\t    /** Matched if the path is a regular file */\n\t\t    MatchKind[MatchKind[\"File\"] = 2] = \"File\";\n\t\t    /** Matched */\n\t\t    MatchKind[MatchKind[\"All\"] = 3] = \"All\";\n\t\t})(exports.MatchKind || (exports.MatchKind = {}));\n\t\t\n\t} (internalMatchKind));\n\treturn internalMatchKind;\n}\n\nvar hasRequiredInternalPatternHelper;\n\nfunction requireInternalPatternHelper () {\n\tif (hasRequiredInternalPatternHelper) return internalPatternHelper;\n\thasRequiredInternalPatternHelper = 1;\n\tvar __createBinding = (internalPatternHelper && internalPatternHelper.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (internalPatternHelper && internalPatternHelper.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (internalPatternHelper && internalPatternHelper.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(internalPatternHelper, \"__esModule\", { value: true });\n\tinternalPatternHelper.partialMatch = internalPatternHelper.match = internalPatternHelper.getSearchPaths = void 0;\n\tconst pathHelper = __importStar(requireInternalPathHelper());\n\tconst internal_match_kind_1 = requireInternalMatchKind();\n\tconst IS_WINDOWS = process.platform === 'win32';\n\t/**\n\t * Given an array of patterns, returns an array of paths to search.\n\t * Duplicates and paths under other included paths are filtered out.\n\t */\n\tfunction getSearchPaths(patterns) {\n\t    // Ignore negate patterns\n\t    patterns = patterns.filter(x => !x.negate);\n\t    // Create a map of all search paths\n\t    const searchPathMap = {};\n\t    for (const pattern of patterns) {\n\t        const key = IS_WINDOWS\n\t            ? pattern.searchPath.toUpperCase()\n\t            : pattern.searchPath;\n\t        searchPathMap[key] = 'candidate';\n\t    }\n\t    const result = [];\n\t    for (const pattern of patterns) {\n\t        // Check if already included\n\t        const key = IS_WINDOWS\n\t            ? pattern.searchPath.toUpperCase()\n\t            : pattern.searchPath;\n\t        if (searchPathMap[key] === 'included') {\n\t            continue;\n\t        }\n\t        // Check for an ancestor search path\n\t        let foundAncestor = false;\n\t        let tempKey = key;\n\t        let parent = pathHelper.dirname(tempKey);\n\t        while (parent !== tempKey) {\n\t            if (searchPathMap[parent]) {\n\t                foundAncestor = true;\n\t                break;\n\t            }\n\t            tempKey = parent;\n\t            parent = pathHelper.dirname(tempKey);\n\t        }\n\t        // Include the search pattern in the result\n\t        if (!foundAncestor) {\n\t            result.push(pattern.searchPath);\n\t            searchPathMap[key] = 'included';\n\t        }\n\t    }\n\t    return result;\n\t}\n\tinternalPatternHelper.getSearchPaths = getSearchPaths;\n\t/**\n\t * Matches the patterns against the path\n\t */\n\tfunction match(patterns, itemPath) {\n\t    let result = internal_match_kind_1.MatchKind.None;\n\t    for (const pattern of patterns) {\n\t        if (pattern.negate) {\n\t            result &= ~pattern.match(itemPath);\n\t        }\n\t        else {\n\t            result |= pattern.match(itemPath);\n\t        }\n\t    }\n\t    return result;\n\t}\n\tinternalPatternHelper.match = match;\n\t/**\n\t * Checks whether to descend further into the directory\n\t */\n\tfunction partialMatch(patterns, itemPath) {\n\t    return patterns.some(x => !x.negate && x.partialMatch(itemPath));\n\t}\n\tinternalPatternHelper.partialMatch = partialMatch;\n\t\n\treturn internalPatternHelper;\n}\n\nvar internalPattern = {};\n\nvar concatMap;\nvar hasRequiredConcatMap;\n\nfunction requireConcatMap () {\n\tif (hasRequiredConcatMap) return concatMap;\n\thasRequiredConcatMap = 1;\n\tconcatMap = function (xs, fn) {\n\t    var res = [];\n\t    for (var i = 0; i < xs.length; i++) {\n\t        var x = fn(xs[i], i);\n\t        if (isArray(x)) res.push.apply(res, x);\n\t        else res.push(x);\n\t    }\n\t    return res;\n\t};\n\n\tvar isArray = Array.isArray || function (xs) {\n\t    return Object.prototype.toString.call(xs) === '[object Array]';\n\t};\n\treturn concatMap;\n}\n\nvar balancedMatch;\nvar hasRequiredBalancedMatch;\n\nfunction requireBalancedMatch () {\n\tif (hasRequiredBalancedMatch) return balancedMatch;\n\thasRequiredBalancedMatch = 1;\n\tbalancedMatch = balanced;\n\tfunction balanced(a, b, str) {\n\t  if (a instanceof RegExp) a = maybeMatch(a, str);\n\t  if (b instanceof RegExp) b = maybeMatch(b, str);\n\n\t  var r = range(a, b, str);\n\n\t  return r && {\n\t    start: r[0],\n\t    end: r[1],\n\t    pre: str.slice(0, r[0]),\n\t    body: str.slice(r[0] + a.length, r[1]),\n\t    post: str.slice(r[1] + b.length)\n\t  };\n\t}\n\n\tfunction maybeMatch(reg, str) {\n\t  var m = str.match(reg);\n\t  return m ? m[0] : null;\n\t}\n\n\tbalanced.range = range;\n\tfunction range(a, b, str) {\n\t  var begs, beg, left, right, result;\n\t  var ai = str.indexOf(a);\n\t  var bi = str.indexOf(b, ai + 1);\n\t  var i = ai;\n\n\t  if (ai >= 0 && bi > 0) {\n\t    if(a===b) {\n\t      return [ai, bi];\n\t    }\n\t    begs = [];\n\t    left = str.length;\n\n\t    while (i >= 0 && !result) {\n\t      if (i == ai) {\n\t        begs.push(i);\n\t        ai = str.indexOf(a, i + 1);\n\t      } else if (begs.length == 1) {\n\t        result = [ begs.pop(), bi ];\n\t      } else {\n\t        beg = begs.pop();\n\t        if (beg < left) {\n\t          left = beg;\n\t          right = bi;\n\t        }\n\n\t        bi = str.indexOf(b, i + 1);\n\t      }\n\n\t      i = ai < bi && ai >= 0 ? ai : bi;\n\t    }\n\n\t    if (begs.length) {\n\t      result = [ left, right ];\n\t    }\n\t  }\n\n\t  return result;\n\t}\n\treturn balancedMatch;\n}\n\nvar braceExpansion$2;\nvar hasRequiredBraceExpansion$2;\n\nfunction requireBraceExpansion$2 () {\n\tif (hasRequiredBraceExpansion$2) return braceExpansion$2;\n\thasRequiredBraceExpansion$2 = 1;\n\tvar concatMap = requireConcatMap();\n\tvar balanced = requireBalancedMatch();\n\n\tbraceExpansion$2 = expandTop;\n\n\tvar escSlash = '\\0SLASH'+Math.random()+'\\0';\n\tvar escOpen = '\\0OPEN'+Math.random()+'\\0';\n\tvar escClose = '\\0CLOSE'+Math.random()+'\\0';\n\tvar escComma = '\\0COMMA'+Math.random()+'\\0';\n\tvar escPeriod = '\\0PERIOD'+Math.random()+'\\0';\n\n\tfunction numeric(str) {\n\t  return parseInt(str, 10) == str\n\t    ? parseInt(str, 10)\n\t    : str.charCodeAt(0);\n\t}\n\n\tfunction escapeBraces(str) {\n\t  return str.split('\\\\\\\\').join(escSlash)\n\t            .split('\\\\{').join(escOpen)\n\t            .split('\\\\}').join(escClose)\n\t            .split('\\\\,').join(escComma)\n\t            .split('\\\\.').join(escPeriod);\n\t}\n\n\tfunction unescapeBraces(str) {\n\t  return str.split(escSlash).join('\\\\')\n\t            .split(escOpen).join('{')\n\t            .split(escClose).join('}')\n\t            .split(escComma).join(',')\n\t            .split(escPeriod).join('.');\n\t}\n\n\n\t// Basically just str.split(\",\"), but handling cases\n\t// where we have nested braced sections, which should be\n\t// treated as individual members, like {a,{b,c},d}\n\tfunction parseCommaParts(str) {\n\t  if (!str)\n\t    return [''];\n\n\t  var parts = [];\n\t  var m = balanced('{', '}', str);\n\n\t  if (!m)\n\t    return str.split(',');\n\n\t  var pre = m.pre;\n\t  var body = m.body;\n\t  var post = m.post;\n\t  var p = pre.split(',');\n\n\t  p[p.length-1] += '{' + body + '}';\n\t  var postParts = parseCommaParts(post);\n\t  if (post.length) {\n\t    p[p.length-1] += postParts.shift();\n\t    p.push.apply(p, postParts);\n\t  }\n\n\t  parts.push.apply(parts, p);\n\n\t  return parts;\n\t}\n\n\tfunction expandTop(str) {\n\t  if (!str)\n\t    return [];\n\n\t  // I don't know why Bash 4.3 does this, but it does.\n\t  // Anything starting with {} will have the first two bytes preserved\n\t  // but *only* at the top level, so {},a}b will not expand to anything,\n\t  // but a{},b}c will be expanded to [a}c,abc].\n\t  // One could argue that this is a bug in Bash, but since the goal of\n\t  // this module is to match Bash's rules, we escape a leading {}\n\t  if (str.substr(0, 2) === '{}') {\n\t    str = '\\\\{\\\\}' + str.substr(2);\n\t  }\n\n\t  return expand(escapeBraces(str), true).map(unescapeBraces);\n\t}\n\n\tfunction embrace(str) {\n\t  return '{' + str + '}';\n\t}\n\tfunction isPadded(el) {\n\t  return /^-?0\\d/.test(el);\n\t}\n\n\tfunction lte(i, y) {\n\t  return i <= y;\n\t}\n\tfunction gte(i, y) {\n\t  return i >= y;\n\t}\n\n\tfunction expand(str, isTop) {\n\t  var expansions = [];\n\n\t  var m = balanced('{', '}', str);\n\t  if (!m || /\\$$/.test(m.pre)) return [str];\n\n\t  var isNumericSequence = /^-?\\d+\\.\\.-?\\d+(?:\\.\\.-?\\d+)?$/.test(m.body);\n\t  var isAlphaSequence = /^[a-zA-Z]\\.\\.[a-zA-Z](?:\\.\\.-?\\d+)?$/.test(m.body);\n\t  var isSequence = isNumericSequence || isAlphaSequence;\n\t  var isOptions = m.body.indexOf(',') >= 0;\n\t  if (!isSequence && !isOptions) {\n\t    // {a},b}\n\t    if (m.post.match(/,.*\\}/)) {\n\t      str = m.pre + '{' + m.body + escClose + m.post;\n\t      return expand(str);\n\t    }\n\t    return [str];\n\t  }\n\n\t  var n;\n\t  if (isSequence) {\n\t    n = m.body.split(/\\.\\./);\n\t  } else {\n\t    n = parseCommaParts(m.body);\n\t    if (n.length === 1) {\n\t      // x{{a,b}}y ==> x{a}y x{b}y\n\t      n = expand(n[0], false).map(embrace);\n\t      if (n.length === 1) {\n\t        var post = m.post.length\n\t          ? expand(m.post, false)\n\t          : [''];\n\t        return post.map(function(p) {\n\t          return m.pre + n[0] + p;\n\t        });\n\t      }\n\t    }\n\t  }\n\n\t  // at this point, n is the parts, and we know it's not a comma set\n\t  // with a single entry.\n\n\t  // no need to expand pre, since it is guaranteed to be free of brace-sets\n\t  var pre = m.pre;\n\t  var post = m.post.length\n\t    ? expand(m.post, false)\n\t    : [''];\n\n\t  var N;\n\n\t  if (isSequence) {\n\t    var x = numeric(n[0]);\n\t    var y = numeric(n[1]);\n\t    var width = Math.max(n[0].length, n[1].length);\n\t    var incr = n.length == 3\n\t      ? Math.abs(numeric(n[2]))\n\t      : 1;\n\t    var test = lte;\n\t    var reverse = y < x;\n\t    if (reverse) {\n\t      incr *= -1;\n\t      test = gte;\n\t    }\n\t    var pad = n.some(isPadded);\n\n\t    N = [];\n\n\t    for (var i = x; test(i, y); i += incr) {\n\t      var c;\n\t      if (isAlphaSequence) {\n\t        c = String.fromCharCode(i);\n\t        if (c === '\\\\')\n\t          c = '';\n\t      } else {\n\t        c = String(i);\n\t        if (pad) {\n\t          var need = width - c.length;\n\t          if (need > 0) {\n\t            var z = new Array(need + 1).join('0');\n\t            if (i < 0)\n\t              c = '-' + z + c.slice(1);\n\t            else\n\t              c = z + c;\n\t          }\n\t        }\n\t      }\n\t      N.push(c);\n\t    }\n\t  } else {\n\t    N = concatMap(n, function(el) { return expand(el, false) });\n\t  }\n\n\t  for (var j = 0; j < N.length; j++) {\n\t    for (var k = 0; k < post.length; k++) {\n\t      var expansion = pre + N[j] + post[k];\n\t      if (!isTop || isSequence || expansion)\n\t        expansions.push(expansion);\n\t    }\n\t  }\n\n\t  return expansions;\n\t}\n\treturn braceExpansion$2;\n}\n\nvar minimatch_1$1;\nvar hasRequiredMinimatch$1;\n\nfunction requireMinimatch$1 () {\n\tif (hasRequiredMinimatch$1) return minimatch_1$1;\n\thasRequiredMinimatch$1 = 1;\n\tminimatch_1$1 = minimatch;\n\tminimatch.Minimatch = Minimatch;\n\n\tvar path = (function () { try { return require('path') } catch (e) {}}()) || {\n\t  sep: '/'\n\t};\n\tminimatch.sep = path.sep;\n\n\tvar GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {};\n\tvar expand = requireBraceExpansion$2();\n\n\tvar plTypes = {\n\t  '!': { open: '(?:(?!(?:', close: '))[^/]*?)'},\n\t  '?': { open: '(?:', close: ')?' },\n\t  '+': { open: '(?:', close: ')+' },\n\t  '*': { open: '(?:', close: ')*' },\n\t  '@': { open: '(?:', close: ')' }\n\t};\n\n\t// any single thing other than /\n\t// don't need to escape / when using new RegExp()\n\tvar qmark = '[^/]';\n\n\t// * => any number of characters\n\tvar star = qmark + '*?';\n\n\t// ** when dots are allowed.  Anything goes, except .. and .\n\t// not (^ or / followed by one or two dots followed by $ or /),\n\t// followed by anything, any number of times.\n\tvar twoStarDot = '(?:(?!(?:\\\\\\/|^)(?:\\\\.{1,2})($|\\\\\\/)).)*?';\n\n\t// not a ^ or / followed by a dot,\n\t// followed by anything, any number of times.\n\tvar twoStarNoDot = '(?:(?!(?:\\\\\\/|^)\\\\.).)*?';\n\n\t// characters that need to be escaped in RegExp.\n\tvar reSpecials = charSet('().*{}+?[]^$\\\\!');\n\n\t// \"abc\" -> { a:true, b:true, c:true }\n\tfunction charSet (s) {\n\t  return s.split('').reduce(function (set, c) {\n\t    set[c] = true;\n\t    return set\n\t  }, {})\n\t}\n\n\t// normalizes slashes.\n\tvar slashSplit = /\\/+/;\n\n\tminimatch.filter = filter;\n\tfunction filter (pattern, options) {\n\t  options = options || {};\n\t  return function (p, i, list) {\n\t    return minimatch(p, pattern, options)\n\t  }\n\t}\n\n\tfunction ext (a, b) {\n\t  b = b || {};\n\t  var t = {};\n\t  Object.keys(a).forEach(function (k) {\n\t    t[k] = a[k];\n\t  });\n\t  Object.keys(b).forEach(function (k) {\n\t    t[k] = b[k];\n\t  });\n\t  return t\n\t}\n\n\tminimatch.defaults = function (def) {\n\t  if (!def || typeof def !== 'object' || !Object.keys(def).length) {\n\t    return minimatch\n\t  }\n\n\t  var orig = minimatch;\n\n\t  var m = function minimatch (p, pattern, options) {\n\t    return orig(p, pattern, ext(def, options))\n\t  };\n\n\t  m.Minimatch = function Minimatch (pattern, options) {\n\t    return new orig.Minimatch(pattern, ext(def, options))\n\t  };\n\t  m.Minimatch.defaults = function defaults (options) {\n\t    return orig.defaults(ext(def, options)).Minimatch\n\t  };\n\n\t  m.filter = function filter (pattern, options) {\n\t    return orig.filter(pattern, ext(def, options))\n\t  };\n\n\t  m.defaults = function defaults (options) {\n\t    return orig.defaults(ext(def, options))\n\t  };\n\n\t  m.makeRe = function makeRe (pattern, options) {\n\t    return orig.makeRe(pattern, ext(def, options))\n\t  };\n\n\t  m.braceExpand = function braceExpand (pattern, options) {\n\t    return orig.braceExpand(pattern, ext(def, options))\n\t  };\n\n\t  m.match = function (list, pattern, options) {\n\t    return orig.match(list, pattern, ext(def, options))\n\t  };\n\n\t  return m\n\t};\n\n\tMinimatch.defaults = function (def) {\n\t  return minimatch.defaults(def).Minimatch\n\t};\n\n\tfunction minimatch (p, pattern, options) {\n\t  assertValidPattern(pattern);\n\n\t  if (!options) options = {};\n\n\t  // shortcut: comments match nothing.\n\t  if (!options.nocomment && pattern.charAt(0) === '#') {\n\t    return false\n\t  }\n\n\t  return new Minimatch(pattern, options).match(p)\n\t}\n\n\tfunction Minimatch (pattern, options) {\n\t  if (!(this instanceof Minimatch)) {\n\t    return new Minimatch(pattern, options)\n\t  }\n\n\t  assertValidPattern(pattern);\n\n\t  if (!options) options = {};\n\n\t  pattern = pattern.trim();\n\n\t  // windows support: need to use /, not \\\n\t  if (!options.allowWindowsEscape && path.sep !== '/') {\n\t    pattern = pattern.split(path.sep).join('/');\n\t  }\n\n\t  this.options = options;\n\t  this.set = [];\n\t  this.pattern = pattern;\n\t  this.regexp = null;\n\t  this.negate = false;\n\t  this.comment = false;\n\t  this.empty = false;\n\t  this.partial = !!options.partial;\n\n\t  // make the set of regexps etc.\n\t  this.make();\n\t}\n\n\tMinimatch.prototype.debug = function () {};\n\n\tMinimatch.prototype.make = make;\n\tfunction make () {\n\t  var pattern = this.pattern;\n\t  var options = this.options;\n\n\t  // empty patterns and comments match nothing.\n\t  if (!options.nocomment && pattern.charAt(0) === '#') {\n\t    this.comment = true;\n\t    return\n\t  }\n\t  if (!pattern) {\n\t    this.empty = true;\n\t    return\n\t  }\n\n\t  // step 1: figure out negation, etc.\n\t  this.parseNegate();\n\n\t  // step 2: expand braces\n\t  var set = this.globSet = this.braceExpand();\n\n\t  if (options.debug) this.debug = function debug() { console.error.apply(console, arguments); };\n\n\t  this.debug(this.pattern, set);\n\n\t  // step 3: now we have a set, so turn each one into a series of path-portion\n\t  // matching patterns.\n\t  // These will be regexps, except in the case of \"**\", which is\n\t  // set to the GLOBSTAR object for globstar behavior,\n\t  // and will not contain any / characters\n\t  set = this.globParts = set.map(function (s) {\n\t    return s.split(slashSplit)\n\t  });\n\n\t  this.debug(this.pattern, set);\n\n\t  // glob --> regexps\n\t  set = set.map(function (s, si, set) {\n\t    return s.map(this.parse, this)\n\t  }, this);\n\n\t  this.debug(this.pattern, set);\n\n\t  // filter out everything that didn't compile properly.\n\t  set = set.filter(function (s) {\n\t    return s.indexOf(false) === -1\n\t  });\n\n\t  this.debug(this.pattern, set);\n\n\t  this.set = set;\n\t}\n\n\tMinimatch.prototype.parseNegate = parseNegate;\n\tfunction parseNegate () {\n\t  var pattern = this.pattern;\n\t  var negate = false;\n\t  var options = this.options;\n\t  var negateOffset = 0;\n\n\t  if (options.nonegate) return\n\n\t  for (var i = 0, l = pattern.length\n\t    ; i < l && pattern.charAt(i) === '!'\n\t    ; i++) {\n\t    negate = !negate;\n\t    negateOffset++;\n\t  }\n\n\t  if (negateOffset) this.pattern = pattern.substr(negateOffset);\n\t  this.negate = negate;\n\t}\n\n\t// Brace expansion:\n\t// a{b,c}d -> abd acd\n\t// a{b,}c -> abc ac\n\t// a{0..3}d -> a0d a1d a2d a3d\n\t// a{b,c{d,e}f}g -> abg acdfg acefg\n\t// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n\t//\n\t// Invalid sets are not expanded.\n\t// a{2..}b -> a{2..}b\n\t// a{b}c -> a{b}c\n\tminimatch.braceExpand = function (pattern, options) {\n\t  return braceExpand(pattern, options)\n\t};\n\n\tMinimatch.prototype.braceExpand = braceExpand;\n\n\tfunction braceExpand (pattern, options) {\n\t  if (!options) {\n\t    if (this instanceof Minimatch) {\n\t      options = this.options;\n\t    } else {\n\t      options = {};\n\t    }\n\t  }\n\n\t  pattern = typeof pattern === 'undefined'\n\t    ? this.pattern : pattern;\n\n\t  assertValidPattern(pattern);\n\n\t  // Thanks to Yeting Li <https://github.com/yetingli> for\n\t  // improving this regexp to avoid a ReDOS vulnerability.\n\t  if (options.nobrace || !/\\{(?:(?!\\{).)*\\}/.test(pattern)) {\n\t    // shortcut. no need to expand.\n\t    return [pattern]\n\t  }\n\n\t  return expand(pattern)\n\t}\n\n\tvar MAX_PATTERN_LENGTH = 1024 * 64;\n\tvar assertValidPattern = function (pattern) {\n\t  if (typeof pattern !== 'string') {\n\t    throw new TypeError('invalid pattern')\n\t  }\n\n\t  if (pattern.length > MAX_PATTERN_LENGTH) {\n\t    throw new TypeError('pattern is too long')\n\t  }\n\t};\n\n\t// parse a component of the expanded set.\n\t// At this point, no pattern may contain \"/\" in it\n\t// so we're going to return a 2d array, where each entry is the full\n\t// pattern, split on '/', and then turned into a regular expression.\n\t// A regexp is made at the end which joins each array with an\n\t// escaped /, and another full one which joins each regexp with |.\n\t//\n\t// Following the lead of Bash 4.1, note that \"**\" only has special meaning\n\t// when it is the *only* thing in a path portion.  Otherwise, any series\n\t// of * is equivalent to a single *.  Globstar behavior is enabled by\n\t// default, and can be disabled by setting options.noglobstar.\n\tMinimatch.prototype.parse = parse;\n\tvar SUBPARSE = {};\n\tfunction parse (pattern, isSub) {\n\t  assertValidPattern(pattern);\n\n\t  var options = this.options;\n\n\t  // shortcuts\n\t  if (pattern === '**') {\n\t    if (!options.noglobstar)\n\t      return GLOBSTAR\n\t    else\n\t      pattern = '*';\n\t  }\n\t  if (pattern === '') return ''\n\n\t  var re = '';\n\t  var hasMagic = !!options.nocase;\n\t  var escaping = false;\n\t  // ? => one single character\n\t  var patternListStack = [];\n\t  var negativeLists = [];\n\t  var stateChar;\n\t  var inClass = false;\n\t  var reClassStart = -1;\n\t  var classStart = -1;\n\t  // . and .. never match anything that doesn't start with .,\n\t  // even when options.dot is set.\n\t  var patternStart = pattern.charAt(0) === '.' ? '' // anything\n\t  // not (start or / followed by . or .. followed by / or end)\n\t  : options.dot ? '(?!(?:^|\\\\\\/)\\\\.{1,2}(?:$|\\\\\\/))'\n\t  : '(?!\\\\.)';\n\t  var self = this;\n\n\t  function clearStateChar () {\n\t    if (stateChar) {\n\t      // we had some state-tracking character\n\t      // that wasn't consumed by this pass.\n\t      switch (stateChar) {\n\t        case '*':\n\t          re += star;\n\t          hasMagic = true;\n\t        break\n\t        case '?':\n\t          re += qmark;\n\t          hasMagic = true;\n\t        break\n\t        default:\n\t          re += '\\\\' + stateChar;\n\t        break\n\t      }\n\t      self.debug('clearStateChar %j %j', stateChar, re);\n\t      stateChar = false;\n\t    }\n\t  }\n\n\t  for (var i = 0, len = pattern.length, c\n\t    ; (i < len) && (c = pattern.charAt(i))\n\t    ; i++) {\n\t    this.debug('%s\\t%s %s %j', pattern, i, re, c);\n\n\t    // skip over any that are escaped.\n\t    if (escaping && reSpecials[c]) {\n\t      re += '\\\\' + c;\n\t      escaping = false;\n\t      continue\n\t    }\n\n\t    switch (c) {\n\t      /* istanbul ignore next */\n\t      case '/': {\n\t        // completely not allowed, even escaped.\n\t        // Should already be path-split by now.\n\t        return false\n\t      }\n\n\t      case '\\\\':\n\t        clearStateChar();\n\t        escaping = true;\n\t      continue\n\n\t      // the various stateChar values\n\t      // for the \"extglob\" stuff.\n\t      case '?':\n\t      case '*':\n\t      case '+':\n\t      case '@':\n\t      case '!':\n\t        this.debug('%s\\t%s %s %j <-- stateChar', pattern, i, re, c);\n\n\t        // all of those are literals inside a class, except that\n\t        // the glob [!a] means [^a] in regexp\n\t        if (inClass) {\n\t          this.debug('  in class');\n\t          if (c === '!' && i === classStart + 1) c = '^';\n\t          re += c;\n\t          continue\n\t        }\n\n\t        // if we already have a stateChar, then it means\n\t        // that there was something like ** or +? in there.\n\t        // Handle the stateChar, then proceed with this one.\n\t        self.debug('call clearStateChar %j', stateChar);\n\t        clearStateChar();\n\t        stateChar = c;\n\t        // if extglob is disabled, then +(asdf|foo) isn't a thing.\n\t        // just clear the statechar *now*, rather than even diving into\n\t        // the patternList stuff.\n\t        if (options.noext) clearStateChar();\n\t      continue\n\n\t      case '(':\n\t        if (inClass) {\n\t          re += '(';\n\t          continue\n\t        }\n\n\t        if (!stateChar) {\n\t          re += '\\\\(';\n\t          continue\n\t        }\n\n\t        patternListStack.push({\n\t          type: stateChar,\n\t          start: i - 1,\n\t          reStart: re.length,\n\t          open: plTypes[stateChar].open,\n\t          close: plTypes[stateChar].close\n\t        });\n\t        // negation is (?:(?!js)[^/]*)\n\t        re += stateChar === '!' ? '(?:(?!(?:' : '(?:';\n\t        this.debug('plType %j %j', stateChar, re);\n\t        stateChar = false;\n\t      continue\n\n\t      case ')':\n\t        if (inClass || !patternListStack.length) {\n\t          re += '\\\\)';\n\t          continue\n\t        }\n\n\t        clearStateChar();\n\t        hasMagic = true;\n\t        var pl = patternListStack.pop();\n\t        // negation is (?:(?!js)[^/]*)\n\t        // The others are (?:<pattern>)<type>\n\t        re += pl.close;\n\t        if (pl.type === '!') {\n\t          negativeLists.push(pl);\n\t        }\n\t        pl.reEnd = re.length;\n\t      continue\n\n\t      case '|':\n\t        if (inClass || !patternListStack.length || escaping) {\n\t          re += '\\\\|';\n\t          escaping = false;\n\t          continue\n\t        }\n\n\t        clearStateChar();\n\t        re += '|';\n\t      continue\n\n\t      // these are mostly the same in regexp and glob\n\t      case '[':\n\t        // swallow any state-tracking char before the [\n\t        clearStateChar();\n\n\t        if (inClass) {\n\t          re += '\\\\' + c;\n\t          continue\n\t        }\n\n\t        inClass = true;\n\t        classStart = i;\n\t        reClassStart = re.length;\n\t        re += c;\n\t      continue\n\n\t      case ']':\n\t        //  a right bracket shall lose its special\n\t        //  meaning and represent itself in\n\t        //  a bracket expression if it occurs\n\t        //  first in the list.  -- POSIX.2 2.8.3.2\n\t        if (i === classStart + 1 || !inClass) {\n\t          re += '\\\\' + c;\n\t          escaping = false;\n\t          continue\n\t        }\n\n\t        // handle the case where we left a class open.\n\t        // \"[z-a]\" is valid, equivalent to \"\\[z-a\\]\"\n\t        // split where the last [ was, make sure we don't have\n\t        // an invalid re. if so, re-walk the contents of the\n\t        // would-be class to re-translate any characters that\n\t        // were passed through as-is\n\t        // TODO: It would probably be faster to determine this\n\t        // without a try/catch and a new RegExp, but it's tricky\n\t        // to do safely.  For now, this is safe and works.\n\t        var cs = pattern.substring(classStart + 1, i);\n\t        try {\n\t          RegExp('[' + cs + ']');\n\t        } catch (er) {\n\t          // not a valid class!\n\t          var sp = this.parse(cs, SUBPARSE);\n\t          re = re.substr(0, reClassStart) + '\\\\[' + sp[0] + '\\\\]';\n\t          hasMagic = hasMagic || sp[1];\n\t          inClass = false;\n\t          continue\n\t        }\n\n\t        // finish up the class.\n\t        hasMagic = true;\n\t        inClass = false;\n\t        re += c;\n\t      continue\n\n\t      default:\n\t        // swallow any state char that wasn't consumed\n\t        clearStateChar();\n\n\t        if (escaping) {\n\t          // no need\n\t          escaping = false;\n\t        } else if (reSpecials[c]\n\t          && !(c === '^' && inClass)) {\n\t          re += '\\\\';\n\t        }\n\n\t        re += c;\n\n\t    } // switch\n\t  } // for\n\n\t  // handle the case where we left a class open.\n\t  // \"[abc\" is valid, equivalent to \"\\[abc\"\n\t  if (inClass) {\n\t    // split where the last [ was, and escape it\n\t    // this is a huge pita.  We now have to re-walk\n\t    // the contents of the would-be class to re-translate\n\t    // any characters that were passed through as-is\n\t    cs = pattern.substr(classStart + 1);\n\t    sp = this.parse(cs, SUBPARSE);\n\t    re = re.substr(0, reClassStart) + '\\\\[' + sp[0];\n\t    hasMagic = hasMagic || sp[1];\n\t  }\n\n\t  // handle the case where we had a +( thing at the *end*\n\t  // of the pattern.\n\t  // each pattern list stack adds 3 chars, and we need to go through\n\t  // and escape any | chars that were passed through as-is for the regexp.\n\t  // Go through and escape them, taking care not to double-escape any\n\t  // | chars that were already escaped.\n\t  for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {\n\t    var tail = re.slice(pl.reStart + pl.open.length);\n\t    this.debug('setting tail', re, pl);\n\t    // maybe some even number of \\, then maybe 1 \\, followed by a |\n\t    tail = tail.replace(/((?:\\\\{2}){0,64})(\\\\?)\\|/g, function (_, $1, $2) {\n\t      if (!$2) {\n\t        // the | isn't already escaped, so escape it.\n\t        $2 = '\\\\';\n\t      }\n\n\t      // need to escape all those slashes *again*, without escaping the\n\t      // one that we need for escaping the | character.  As it works out,\n\t      // escaping an even number of slashes can be done by simply repeating\n\t      // it exactly after itself.  That's why this trick works.\n\t      //\n\t      // I am sorry that you have to see this.\n\t      return $1 + $1 + $2 + '|'\n\t    });\n\n\t    this.debug('tail=%j\\n   %s', tail, tail, pl, re);\n\t    var t = pl.type === '*' ? star\n\t      : pl.type === '?' ? qmark\n\t      : '\\\\' + pl.type;\n\n\t    hasMagic = true;\n\t    re = re.slice(0, pl.reStart) + t + '\\\\(' + tail;\n\t  }\n\n\t  // handle trailing things that only matter at the very end.\n\t  clearStateChar();\n\t  if (escaping) {\n\t    // trailing \\\\\n\t    re += '\\\\\\\\';\n\t  }\n\n\t  // only need to apply the nodot start if the re starts with\n\t  // something that could conceivably capture a dot\n\t  var addPatternStart = false;\n\t  switch (re.charAt(0)) {\n\t    case '[': case '.': case '(': addPatternStart = true;\n\t  }\n\n\t  // Hack to work around lack of negative lookbehind in JS\n\t  // A pattern like: *.!(x).!(y|z) needs to ensure that a name\n\t  // like 'a.xyz.yz' doesn't match.  So, the first negative\n\t  // lookahead, has to look ALL the way ahead, to the end of\n\t  // the pattern.\n\t  for (var n = negativeLists.length - 1; n > -1; n--) {\n\t    var nl = negativeLists[n];\n\n\t    var nlBefore = re.slice(0, nl.reStart);\n\t    var nlFirst = re.slice(nl.reStart, nl.reEnd - 8);\n\t    var nlLast = re.slice(nl.reEnd - 8, nl.reEnd);\n\t    var nlAfter = re.slice(nl.reEnd);\n\n\t    nlLast += nlAfter;\n\n\t    // Handle nested stuff like *(*.js|!(*.json)), where open parens\n\t    // mean that we should *not* include the ) in the bit that is considered\n\t    // \"after\" the negated section.\n\t    var openParensBefore = nlBefore.split('(').length - 1;\n\t    var cleanAfter = nlAfter;\n\t    for (i = 0; i < openParensBefore; i++) {\n\t      cleanAfter = cleanAfter.replace(/\\)[+*?]?/, '');\n\t    }\n\t    nlAfter = cleanAfter;\n\n\t    var dollar = '';\n\t    if (nlAfter === '' && isSub !== SUBPARSE) {\n\t      dollar = '$';\n\t    }\n\t    var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast;\n\t    re = newRe;\n\t  }\n\n\t  // if the re is not \"\" at this point, then we need to make sure\n\t  // it doesn't match against an empty path part.\n\t  // Otherwise a/* will match a/, which it should not.\n\t  if (re !== '' && hasMagic) {\n\t    re = '(?=.)' + re;\n\t  }\n\n\t  if (addPatternStart) {\n\t    re = patternStart + re;\n\t  }\n\n\t  // parsing just a piece of a larger pattern.\n\t  if (isSub === SUBPARSE) {\n\t    return [re, hasMagic]\n\t  }\n\n\t  // skip the regexp for non-magical patterns\n\t  // unescape anything in it, though, so that it'll be\n\t  // an exact match against a file etc.\n\t  if (!hasMagic) {\n\t    return globUnescape(pattern)\n\t  }\n\n\t  var flags = options.nocase ? 'i' : '';\n\t  try {\n\t    var regExp = new RegExp('^' + re + '$', flags);\n\t  } catch (er) /* istanbul ignore next - should be impossible */ {\n\t    // If it was an invalid regular expression, then it can't match\n\t    // anything.  This trick looks for a character after the end of\n\t    // the string, which is of course impossible, except in multi-line\n\t    // mode, but it's not a /m regex.\n\t    return new RegExp('$.')\n\t  }\n\n\t  regExp._glob = pattern;\n\t  regExp._src = re;\n\n\t  return regExp\n\t}\n\n\tminimatch.makeRe = function (pattern, options) {\n\t  return new Minimatch(pattern, options || {}).makeRe()\n\t};\n\n\tMinimatch.prototype.makeRe = makeRe;\n\tfunction makeRe () {\n\t  if (this.regexp || this.regexp === false) return this.regexp\n\n\t  // at this point, this.set is a 2d array of partial\n\t  // pattern strings, or \"**\".\n\t  //\n\t  // It's better to use .match().  This function shouldn't\n\t  // be used, really, but it's pretty convenient sometimes,\n\t  // when you just want to work with a regex.\n\t  var set = this.set;\n\n\t  if (!set.length) {\n\t    this.regexp = false;\n\t    return this.regexp\n\t  }\n\t  var options = this.options;\n\n\t  var twoStar = options.noglobstar ? star\n\t    : options.dot ? twoStarDot\n\t    : twoStarNoDot;\n\t  var flags = options.nocase ? 'i' : '';\n\n\t  var re = set.map(function (pattern) {\n\t    return pattern.map(function (p) {\n\t      return (p === GLOBSTAR) ? twoStar\n\t      : (typeof p === 'string') ? regExpEscape(p)\n\t      : p._src\n\t    }).join('\\\\\\/')\n\t  }).join('|');\n\n\t  // must match entire pattern\n\t  // ending in a * or ** will make it less strict.\n\t  re = '^(?:' + re + ')$';\n\n\t  // can match anything, as long as it's not this.\n\t  if (this.negate) re = '^(?!' + re + ').*$';\n\n\t  try {\n\t    this.regexp = new RegExp(re, flags);\n\t  } catch (ex) /* istanbul ignore next - should be impossible */ {\n\t    this.regexp = false;\n\t  }\n\t  return this.regexp\n\t}\n\n\tminimatch.match = function (list, pattern, options) {\n\t  options = options || {};\n\t  var mm = new Minimatch(pattern, options);\n\t  list = list.filter(function (f) {\n\t    return mm.match(f)\n\t  });\n\t  if (mm.options.nonull && !list.length) {\n\t    list.push(pattern);\n\t  }\n\t  return list\n\t};\n\n\tMinimatch.prototype.match = function match (f, partial) {\n\t  if (typeof partial === 'undefined') partial = this.partial;\n\t  this.debug('match', f, this.pattern);\n\t  // short-circuit in the case of busted things.\n\t  // comments, etc.\n\t  if (this.comment) return false\n\t  if (this.empty) return f === ''\n\n\t  if (f === '/' && partial) return true\n\n\t  var options = this.options;\n\n\t  // windows: need to use /, not \\\n\t  if (path.sep !== '/') {\n\t    f = f.split(path.sep).join('/');\n\t  }\n\n\t  // treat the test path as a set of pathparts.\n\t  f = f.split(slashSplit);\n\t  this.debug(this.pattern, 'split', f);\n\n\t  // just ONE of the pattern sets in this.set needs to match\n\t  // in order for it to be valid.  If negating, then just one\n\t  // match means that we have failed.\n\t  // Either way, return on the first hit.\n\n\t  var set = this.set;\n\t  this.debug(this.pattern, 'set', set);\n\n\t  // Find the basename of the path by looking for the last non-empty segment\n\t  var filename;\n\t  var i;\n\t  for (i = f.length - 1; i >= 0; i--) {\n\t    filename = f[i];\n\t    if (filename) break\n\t  }\n\n\t  for (i = 0; i < set.length; i++) {\n\t    var pattern = set[i];\n\t    var file = f;\n\t    if (options.matchBase && pattern.length === 1) {\n\t      file = [filename];\n\t    }\n\t    var hit = this.matchOne(file, pattern, partial);\n\t    if (hit) {\n\t      if (options.flipNegate) return true\n\t      return !this.negate\n\t    }\n\t  }\n\n\t  // didn't get any hits.  this is success if it's a negative\n\t  // pattern, failure otherwise.\n\t  if (options.flipNegate) return false\n\t  return this.negate\n\t};\n\n\t// set partial to true to test if, for example,\n\t// \"/a/b\" matches the start of \"/*/b/*/d\"\n\t// Partial means, if you run out of file before you run\n\t// out of pattern, then that's fine, as long as all\n\t// the parts match.\n\tMinimatch.prototype.matchOne = function (file, pattern, partial) {\n\t  var options = this.options;\n\n\t  this.debug('matchOne',\n\t    { 'this': this, file: file, pattern: pattern });\n\n\t  this.debug('matchOne', file.length, pattern.length);\n\n\t  for (var fi = 0,\n\t      pi = 0,\n\t      fl = file.length,\n\t      pl = pattern.length\n\t      ; (fi < fl) && (pi < pl)\n\t      ; fi++, pi++) {\n\t    this.debug('matchOne loop');\n\t    var p = pattern[pi];\n\t    var f = file[fi];\n\n\t    this.debug(pattern, p, f);\n\n\t    // should be impossible.\n\t    // some invalid regexp stuff in the set.\n\t    /* istanbul ignore if */\n\t    if (p === false) return false\n\n\t    if (p === GLOBSTAR) {\n\t      this.debug('GLOBSTAR', [pattern, p, f]);\n\n\t      // \"**\"\n\t      // a/**/b/**/c would match the following:\n\t      // a/b/x/y/z/c\n\t      // a/x/y/z/b/c\n\t      // a/b/x/b/x/c\n\t      // a/b/c\n\t      // To do this, take the rest of the pattern after\n\t      // the **, and see if it would match the file remainder.\n\t      // If so, return success.\n\t      // If not, the ** \"swallows\" a segment, and try again.\n\t      // This is recursively awful.\n\t      //\n\t      // a/**/b/**/c matching a/b/x/y/z/c\n\t      // - a matches a\n\t      // - doublestar\n\t      //   - matchOne(b/x/y/z/c, b/**/c)\n\t      //     - b matches b\n\t      //     - doublestar\n\t      //       - matchOne(x/y/z/c, c) -> no\n\t      //       - matchOne(y/z/c, c) -> no\n\t      //       - matchOne(z/c, c) -> no\n\t      //       - matchOne(c, c) yes, hit\n\t      var fr = fi;\n\t      var pr = pi + 1;\n\t      if (pr === pl) {\n\t        this.debug('** at the end');\n\t        // a ** at the end will just swallow the rest.\n\t        // We have found a match.\n\t        // however, it will not swallow /.x, unless\n\t        // options.dot is set.\n\t        // . and .. are *never* matched by **, for explosively\n\t        // exponential reasons.\n\t        for (; fi < fl; fi++) {\n\t          if (file[fi] === '.' || file[fi] === '..' ||\n\t            (!options.dot && file[fi].charAt(0) === '.')) return false\n\t        }\n\t        return true\n\t      }\n\n\t      // ok, let's see if we can swallow whatever we can.\n\t      while (fr < fl) {\n\t        var swallowee = file[fr];\n\n\t        this.debug('\\nglobstar while', file, fr, pattern, pr, swallowee);\n\n\t        // XXX remove this slice.  Just pass the start index.\n\t        if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {\n\t          this.debug('globstar found match!', fr, fl, swallowee);\n\t          // found a match.\n\t          return true\n\t        } else {\n\t          // can't swallow \".\" or \"..\" ever.\n\t          // can only swallow \".foo\" when explicitly asked.\n\t          if (swallowee === '.' || swallowee === '..' ||\n\t            (!options.dot && swallowee.charAt(0) === '.')) {\n\t            this.debug('dot detected!', file, fr, pattern, pr);\n\t            break\n\t          }\n\n\t          // ** swallows a segment, and continue.\n\t          this.debug('globstar swallow a segment, and continue');\n\t          fr++;\n\t        }\n\t      }\n\n\t      // no match was found.\n\t      // However, in partial mode, we can't say this is necessarily over.\n\t      // If there's more *pattern* left, then\n\t      /* istanbul ignore if */\n\t      if (partial) {\n\t        // ran out of file\n\t        this.debug('\\n>>> no match, partial?', file, fr, pattern, pr);\n\t        if (fr === fl) return true\n\t      }\n\t      return false\n\t    }\n\n\t    // something other than **\n\t    // non-magic patterns just have to match exactly\n\t    // patterns with magic have been turned into regexps.\n\t    var hit;\n\t    if (typeof p === 'string') {\n\t      hit = f === p;\n\t      this.debug('string match', p, f, hit);\n\t    } else {\n\t      hit = f.match(p);\n\t      this.debug('pattern match', p, f, hit);\n\t    }\n\n\t    if (!hit) return false\n\t  }\n\n\t  // Note: ending in / means that we'll get a final \"\"\n\t  // at the end of the pattern.  This can only match a\n\t  // corresponding \"\" at the end of the file.\n\t  // If the file ends in /, then it can only match a\n\t  // a pattern that ends in /, unless the pattern just\n\t  // doesn't have any more for it. But, a/b/ should *not*\n\t  // match \"a/b/*\", even though \"\" matches against the\n\t  // [^/]*? pattern, except in partial mode, where it might\n\t  // simply not be reached yet.\n\t  // However, a/b/ should still satisfy a/*\n\n\t  // now either we fell off the end of the pattern, or we're done.\n\t  if (fi === fl && pi === pl) {\n\t    // ran out of pattern and filename at the same time.\n\t    // an exact hit!\n\t    return true\n\t  } else if (fi === fl) {\n\t    // ran out of file, but still had pattern left.\n\t    // this is ok if we're doing the match as part of\n\t    // a glob fs traversal.\n\t    return partial\n\t  } else /* istanbul ignore else */ if (pi === pl) {\n\t    // ran out of pattern, still have file left.\n\t    // this is only acceptable if we're on the very last\n\t    // empty segment of a file with a trailing slash.\n\t    // a/* should match a/b/\n\t    return (fi === fl - 1) && (file[fi] === '')\n\t  }\n\n\t  // should be unreachable.\n\t  /* istanbul ignore next */\n\t  throw new Error('wtf?')\n\t};\n\n\t// replace stuff like \\* with *\n\tfunction globUnescape (s) {\n\t  return s.replace(/\\\\(.)/g, '$1')\n\t}\n\n\tfunction regExpEscape (s) {\n\t  return s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&')\n\t}\n\treturn minimatch_1$1;\n}\n\nvar internalPath = {};\n\nvar hasRequiredInternalPath;\n\nfunction requireInternalPath () {\n\tif (hasRequiredInternalPath) return internalPath;\n\thasRequiredInternalPath = 1;\n\tvar __createBinding = (internalPath && internalPath.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (internalPath && internalPath.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (internalPath && internalPath.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __importDefault = (internalPath && internalPath.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(internalPath, \"__esModule\", { value: true });\n\tinternalPath.Path = void 0;\n\tconst path = __importStar(require$$1__default);\n\tconst pathHelper = __importStar(requireInternalPathHelper());\n\tconst assert_1 = __importDefault(require$$0$9);\n\tconst IS_WINDOWS = process.platform === 'win32';\n\t/**\n\t * Helper class for parsing paths into segments\n\t */\n\tclass Path {\n\t    /**\n\t     * Constructs a Path\n\t     * @param itemPath Path or array of segments\n\t     */\n\t    constructor(itemPath) {\n\t        this.segments = [];\n\t        // String\n\t        if (typeof itemPath === 'string') {\n\t            assert_1.default(itemPath, `Parameter 'itemPath' must not be empty`);\n\t            // Normalize slashes and trim unnecessary trailing slash\n\t            itemPath = pathHelper.safeTrimTrailingSeparator(itemPath);\n\t            // Not rooted\n\t            if (!pathHelper.hasRoot(itemPath)) {\n\t                this.segments = itemPath.split(path.sep);\n\t            }\n\t            // Rooted\n\t            else {\n\t                // Add all segments, while not at the root\n\t                let remaining = itemPath;\n\t                let dir = pathHelper.dirname(remaining);\n\t                while (dir !== remaining) {\n\t                    // Add the segment\n\t                    const basename = path.basename(remaining);\n\t                    this.segments.unshift(basename);\n\t                    // Truncate the last segment\n\t                    remaining = dir;\n\t                    dir = pathHelper.dirname(remaining);\n\t                }\n\t                // Remainder is the root\n\t                this.segments.unshift(remaining);\n\t            }\n\t        }\n\t        // Array\n\t        else {\n\t            // Must not be empty\n\t            assert_1.default(itemPath.length > 0, `Parameter 'itemPath' must not be an empty array`);\n\t            // Each segment\n\t            for (let i = 0; i < itemPath.length; i++) {\n\t                let segment = itemPath[i];\n\t                // Must not be empty\n\t                assert_1.default(segment, `Parameter 'itemPath' must not contain any empty segments`);\n\t                // Normalize slashes\n\t                segment = pathHelper.normalizeSeparators(itemPath[i]);\n\t                // Root segment\n\t                if (i === 0 && pathHelper.hasRoot(segment)) {\n\t                    segment = pathHelper.safeTrimTrailingSeparator(segment);\n\t                    assert_1.default(segment === pathHelper.dirname(segment), `Parameter 'itemPath' root segment contains information for multiple segments`);\n\t                    this.segments.push(segment);\n\t                }\n\t                // All other segments\n\t                else {\n\t                    // Must not contain slash\n\t                    assert_1.default(!segment.includes(path.sep), `Parameter 'itemPath' contains unexpected path separators`);\n\t                    this.segments.push(segment);\n\t                }\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Converts the path to it's string representation\n\t     */\n\t    toString() {\n\t        // First segment\n\t        let result = this.segments[0];\n\t        // All others\n\t        let skipSlash = result.endsWith(path.sep) || (IS_WINDOWS && /^[A-Z]:$/i.test(result));\n\t        for (let i = 1; i < this.segments.length; i++) {\n\t            if (skipSlash) {\n\t                skipSlash = false;\n\t            }\n\t            else {\n\t                result += path.sep;\n\t            }\n\t            result += this.segments[i];\n\t        }\n\t        return result;\n\t    }\n\t}\n\tinternalPath.Path = Path;\n\t\n\treturn internalPath;\n}\n\nvar hasRequiredInternalPattern;\n\nfunction requireInternalPattern () {\n\tif (hasRequiredInternalPattern) return internalPattern;\n\thasRequiredInternalPattern = 1;\n\tvar __createBinding = (internalPattern && internalPattern.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (internalPattern && internalPattern.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (internalPattern && internalPattern.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __importDefault = (internalPattern && internalPattern.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(internalPattern, \"__esModule\", { value: true });\n\tinternalPattern.Pattern = void 0;\n\tconst os = __importStar(require$$0__default);\n\tconst path = __importStar(require$$1__default);\n\tconst pathHelper = __importStar(requireInternalPathHelper());\n\tconst assert_1 = __importDefault(require$$0$9);\n\tconst minimatch_1 = requireMinimatch$1();\n\tconst internal_match_kind_1 = requireInternalMatchKind();\n\tconst internal_path_1 = requireInternalPath();\n\tconst IS_WINDOWS = process.platform === 'win32';\n\tclass Pattern {\n\t    constructor(patternOrNegate, isImplicitPattern = false, segments, homedir) {\n\t        /**\n\t         * Indicates whether matches should be excluded from the result set\n\t         */\n\t        this.negate = false;\n\t        // Pattern overload\n\t        let pattern;\n\t        if (typeof patternOrNegate === 'string') {\n\t            pattern = patternOrNegate.trim();\n\t        }\n\t        // Segments overload\n\t        else {\n\t            // Convert to pattern\n\t            segments = segments || [];\n\t            assert_1.default(segments.length, `Parameter 'segments' must not empty`);\n\t            const root = Pattern.getLiteral(segments[0]);\n\t            assert_1.default(root && pathHelper.hasAbsoluteRoot(root), `Parameter 'segments' first element must be a root path`);\n\t            pattern = new internal_path_1.Path(segments).toString().trim();\n\t            if (patternOrNegate) {\n\t                pattern = `!${pattern}`;\n\t            }\n\t        }\n\t        // Negate\n\t        while (pattern.startsWith('!')) {\n\t            this.negate = !this.negate;\n\t            pattern = pattern.substr(1).trim();\n\t        }\n\t        // Normalize slashes and ensures absolute root\n\t        pattern = Pattern.fixupPattern(pattern, homedir);\n\t        // Segments\n\t        this.segments = new internal_path_1.Path(pattern).segments;\n\t        // Trailing slash indicates the pattern should only match directories, not regular files\n\t        this.trailingSeparator = pathHelper\n\t            .normalizeSeparators(pattern)\n\t            .endsWith(path.sep);\n\t        pattern = pathHelper.safeTrimTrailingSeparator(pattern);\n\t        // Search path (literal path prior to the first glob segment)\n\t        let foundGlob = false;\n\t        const searchSegments = this.segments\n\t            .map(x => Pattern.getLiteral(x))\n\t            .filter(x => !foundGlob && !(foundGlob = x === ''));\n\t        this.searchPath = new internal_path_1.Path(searchSegments).toString();\n\t        // Root RegExp (required when determining partial match)\n\t        this.rootRegExp = new RegExp(Pattern.regExpEscape(searchSegments[0]), IS_WINDOWS ? 'i' : '');\n\t        this.isImplicitPattern = isImplicitPattern;\n\t        // Create minimatch\n\t        const minimatchOptions = {\n\t            dot: true,\n\t            nobrace: true,\n\t            nocase: IS_WINDOWS,\n\t            nocomment: true,\n\t            noext: true,\n\t            nonegate: true\n\t        };\n\t        pattern = IS_WINDOWS ? pattern.replace(/\\\\/g, '/') : pattern;\n\t        this.minimatch = new minimatch_1.Minimatch(pattern, minimatchOptions);\n\t    }\n\t    /**\n\t     * Matches the pattern against the specified path\n\t     */\n\t    match(itemPath) {\n\t        // Last segment is globstar?\n\t        if (this.segments[this.segments.length - 1] === '**') {\n\t            // Normalize slashes\n\t            itemPath = pathHelper.normalizeSeparators(itemPath);\n\t            // Append a trailing slash. Otherwise Minimatch will not match the directory immediately\n\t            // preceding the globstar. For example, given the pattern `/foo/**`, Minimatch returns\n\t            // false for `/foo` but returns true for `/foo/`. Append a trailing slash to handle that quirk.\n\t            if (!itemPath.endsWith(path.sep) && this.isImplicitPattern === false) {\n\t                // Note, this is safe because the constructor ensures the pattern has an absolute root.\n\t                // For example, formats like C: and C:foo on Windows are resolved to an absolute root.\n\t                itemPath = `${itemPath}${path.sep}`;\n\t            }\n\t        }\n\t        else {\n\t            // Normalize slashes and trim unnecessary trailing slash\n\t            itemPath = pathHelper.safeTrimTrailingSeparator(itemPath);\n\t        }\n\t        // Match\n\t        if (this.minimatch.match(itemPath)) {\n\t            return this.trailingSeparator ? internal_match_kind_1.MatchKind.Directory : internal_match_kind_1.MatchKind.All;\n\t        }\n\t        return internal_match_kind_1.MatchKind.None;\n\t    }\n\t    /**\n\t     * Indicates whether the pattern may match descendants of the specified path\n\t     */\n\t    partialMatch(itemPath) {\n\t        // Normalize slashes and trim unnecessary trailing slash\n\t        itemPath = pathHelper.safeTrimTrailingSeparator(itemPath);\n\t        // matchOne does not handle root path correctly\n\t        if (pathHelper.dirname(itemPath) === itemPath) {\n\t            return this.rootRegExp.test(itemPath);\n\t        }\n\t        return this.minimatch.matchOne(itemPath.split(IS_WINDOWS ? /\\\\+/ : /\\/+/), this.minimatch.set[0], true);\n\t    }\n\t    /**\n\t     * Escapes glob patterns within a path\n\t     */\n\t    static globEscape(s) {\n\t        return (IS_WINDOWS ? s : s.replace(/\\\\/g, '\\\\\\\\')) // escape '\\' on Linux/macOS\n\t            .replace(/(\\[)(?=[^/]+\\])/g, '[[]') // escape '[' when ']' follows within the path segment\n\t            .replace(/\\?/g, '[?]') // escape '?'\n\t            .replace(/\\*/g, '[*]'); // escape '*'\n\t    }\n\t    /**\n\t     * Normalizes slashes and ensures absolute root\n\t     */\n\t    static fixupPattern(pattern, homedir) {\n\t        // Empty\n\t        assert_1.default(pattern, 'pattern cannot be empty');\n\t        // Must not contain `.` segment, unless first segment\n\t        // Must not contain `..` segment\n\t        const literalSegments = new internal_path_1.Path(pattern).segments.map(x => Pattern.getLiteral(x));\n\t        assert_1.default(literalSegments.every((x, i) => (x !== '.' || i === 0) && x !== '..'), `Invalid pattern '${pattern}'. Relative pathing '.' and '..' is not allowed.`);\n\t        // Must not contain globs in root, e.g. Windows UNC path \\\\foo\\b*r\n\t        assert_1.default(!pathHelper.hasRoot(pattern) || literalSegments[0], `Invalid pattern '${pattern}'. Root segment must not contain globs.`);\n\t        // Normalize slashes\n\t        pattern = pathHelper.normalizeSeparators(pattern);\n\t        // Replace leading `.` segment\n\t        if (pattern === '.' || pattern.startsWith(`.${path.sep}`)) {\n\t            pattern = Pattern.globEscape(process.cwd()) + pattern.substr(1);\n\t        }\n\t        // Replace leading `~` segment\n\t        else if (pattern === '~' || pattern.startsWith(`~${path.sep}`)) {\n\t            homedir = homedir || os.homedir();\n\t            assert_1.default(homedir, 'Unable to determine HOME directory');\n\t            assert_1.default(pathHelper.hasAbsoluteRoot(homedir), `Expected HOME directory to be a rooted path. Actual '${homedir}'`);\n\t            pattern = Pattern.globEscape(homedir) + pattern.substr(1);\n\t        }\n\t        // Replace relative drive root, e.g. pattern is C: or C:foo\n\t        else if (IS_WINDOWS &&\n\t            (pattern.match(/^[A-Z]:$/i) || pattern.match(/^[A-Z]:[^\\\\]/i))) {\n\t            let root = pathHelper.ensureAbsoluteRoot('C:\\\\dummy-root', pattern.substr(0, 2));\n\t            if (pattern.length > 2 && !root.endsWith('\\\\')) {\n\t                root += '\\\\';\n\t            }\n\t            pattern = Pattern.globEscape(root) + pattern.substr(2);\n\t        }\n\t        // Replace relative root, e.g. pattern is \\ or \\foo\n\t        else if (IS_WINDOWS && (pattern === '\\\\' || pattern.match(/^\\\\[^\\\\]/))) {\n\t            let root = pathHelper.ensureAbsoluteRoot('C:\\\\dummy-root', '\\\\');\n\t            if (!root.endsWith('\\\\')) {\n\t                root += '\\\\';\n\t            }\n\t            pattern = Pattern.globEscape(root) + pattern.substr(1);\n\t        }\n\t        // Otherwise ensure absolute root\n\t        else {\n\t            pattern = pathHelper.ensureAbsoluteRoot(Pattern.globEscape(process.cwd()), pattern);\n\t        }\n\t        return pathHelper.normalizeSeparators(pattern);\n\t    }\n\t    /**\n\t     * Attempts to unescape a pattern segment to create a literal path segment.\n\t     * Otherwise returns empty string.\n\t     */\n\t    static getLiteral(segment) {\n\t        let literal = '';\n\t        for (let i = 0; i < segment.length; i++) {\n\t            const c = segment[i];\n\t            // Escape\n\t            if (c === '\\\\' && !IS_WINDOWS && i + 1 < segment.length) {\n\t                literal += segment[++i];\n\t                continue;\n\t            }\n\t            // Wildcard\n\t            else if (c === '*' || c === '?') {\n\t                return '';\n\t            }\n\t            // Character set\n\t            else if (c === '[' && i + 1 < segment.length) {\n\t                let set = '';\n\t                let closed = -1;\n\t                for (let i2 = i + 1; i2 < segment.length; i2++) {\n\t                    const c2 = segment[i2];\n\t                    // Escape\n\t                    if (c2 === '\\\\' && !IS_WINDOWS && i2 + 1 < segment.length) {\n\t                        set += segment[++i2];\n\t                        continue;\n\t                    }\n\t                    // Closed\n\t                    else if (c2 === ']') {\n\t                        closed = i2;\n\t                        break;\n\t                    }\n\t                    // Otherwise\n\t                    else {\n\t                        set += c2;\n\t                    }\n\t                }\n\t                // Closed?\n\t                if (closed >= 0) {\n\t                    // Cannot convert\n\t                    if (set.length > 1) {\n\t                        return '';\n\t                    }\n\t                    // Convert to literal\n\t                    if (set) {\n\t                        literal += set;\n\t                        i = closed;\n\t                        continue;\n\t                    }\n\t                }\n\t                // Otherwise fall thru\n\t            }\n\t            // Append\n\t            literal += c;\n\t        }\n\t        return literal;\n\t    }\n\t    /**\n\t     * Escapes regexp special characters\n\t     * https://javascript.info/regexp-escaping\n\t     */\n\t    static regExpEscape(s) {\n\t        return s.replace(/[[\\\\^$.|?*+()]/g, '\\\\$&');\n\t    }\n\t}\n\tinternalPattern.Pattern = Pattern;\n\t\n\treturn internalPattern;\n}\n\nvar internalSearchState = {};\n\nvar hasRequiredInternalSearchState;\n\nfunction requireInternalSearchState () {\n\tif (hasRequiredInternalSearchState) return internalSearchState;\n\thasRequiredInternalSearchState = 1;\n\tObject.defineProperty(internalSearchState, \"__esModule\", { value: true });\n\tinternalSearchState.SearchState = void 0;\n\tclass SearchState {\n\t    constructor(path, level) {\n\t        this.path = path;\n\t        this.level = level;\n\t    }\n\t}\n\tinternalSearchState.SearchState = SearchState;\n\t\n\treturn internalSearchState;\n}\n\nvar hasRequiredInternalGlobber;\n\nfunction requireInternalGlobber () {\n\tif (hasRequiredInternalGlobber) return internalGlobber;\n\thasRequiredInternalGlobber = 1;\n\tvar __createBinding = (internalGlobber && internalGlobber.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (internalGlobber && internalGlobber.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (internalGlobber && internalGlobber.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (internalGlobber && internalGlobber.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tvar __asyncValues = (internalGlobber && internalGlobber.__asyncValues) || function (o) {\n\t    if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n\t    var m = o[Symbol.asyncIterator], i;\n\t    return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n\t    function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n\t    function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n\t};\n\tvar __await = (internalGlobber && internalGlobber.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); };\n\tvar __asyncGenerator = (internalGlobber && internalGlobber.__asyncGenerator) || function (thisArg, _arguments, generator) {\n\t    if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n\t    var g = generator.apply(thisArg, _arguments || []), i, q = [];\n\t    return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\n\t    function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\n\t    function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n\t    function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n\t    function fulfill(value) { resume(\"next\", value); }\n\t    function reject(value) { resume(\"throw\", value); }\n\t    function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n\t};\n\tObject.defineProperty(internalGlobber, \"__esModule\", { value: true });\n\tinternalGlobber.DefaultGlobber = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst fs = __importStar(fs__default);\n\tconst globOptionsHelper = __importStar(requireInternalGlobOptionsHelper());\n\tconst path = __importStar(require$$1__default);\n\tconst patternHelper = __importStar(requireInternalPatternHelper());\n\tconst internal_match_kind_1 = requireInternalMatchKind();\n\tconst internal_pattern_1 = requireInternalPattern();\n\tconst internal_search_state_1 = requireInternalSearchState();\n\tconst IS_WINDOWS = process.platform === 'win32';\n\tclass DefaultGlobber {\n\t    constructor(options) {\n\t        this.patterns = [];\n\t        this.searchPaths = [];\n\t        this.options = globOptionsHelper.getOptions(options);\n\t    }\n\t    getSearchPaths() {\n\t        // Return a copy\n\t        return this.searchPaths.slice();\n\t    }\n\t    glob() {\n\t        var e_1, _a;\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            const result = [];\n\t            try {\n\t                for (var _b = __asyncValues(this.globGenerator()), _c; _c = yield _b.next(), !_c.done;) {\n\t                    const itemPath = _c.value;\n\t                    result.push(itemPath);\n\t                }\n\t            }\n\t            catch (e_1_1) { e_1 = { error: e_1_1 }; }\n\t            finally {\n\t                try {\n\t                    if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b);\n\t                }\n\t                finally { if (e_1) throw e_1.error; }\n\t            }\n\t            return result;\n\t        });\n\t    }\n\t    globGenerator() {\n\t        return __asyncGenerator(this, arguments, function* globGenerator_1() {\n\t            // Fill in defaults options\n\t            const options = globOptionsHelper.getOptions(this.options);\n\t            // Implicit descendants?\n\t            const patterns = [];\n\t            for (const pattern of this.patterns) {\n\t                patterns.push(pattern);\n\t                if (options.implicitDescendants &&\n\t                    (pattern.trailingSeparator ||\n\t                        pattern.segments[pattern.segments.length - 1] !== '**')) {\n\t                    patterns.push(new internal_pattern_1.Pattern(pattern.negate, true, pattern.segments.concat('**')));\n\t                }\n\t            }\n\t            // Push the search paths\n\t            const stack = [];\n\t            for (const searchPath of patternHelper.getSearchPaths(patterns)) {\n\t                core.debug(`Search path '${searchPath}'`);\n\t                // Exists?\n\t                try {\n\t                    // Intentionally using lstat. Detection for broken symlink\n\t                    // will be performed later (if following symlinks).\n\t                    yield __await(fs.promises.lstat(searchPath));\n\t                }\n\t                catch (err) {\n\t                    if (err.code === 'ENOENT') {\n\t                        continue;\n\t                    }\n\t                    throw err;\n\t                }\n\t                stack.unshift(new internal_search_state_1.SearchState(searchPath, 1));\n\t            }\n\t            // Search\n\t            const traversalChain = []; // used to detect cycles\n\t            while (stack.length) {\n\t                // Pop\n\t                const item = stack.pop();\n\t                // Match?\n\t                const match = patternHelper.match(patterns, item.path);\n\t                const partialMatch = !!match || patternHelper.partialMatch(patterns, item.path);\n\t                if (!match && !partialMatch) {\n\t                    continue;\n\t                }\n\t                // Stat\n\t                const stats = yield __await(DefaultGlobber.stat(item, options, traversalChain)\n\t                // Broken symlink, or symlink cycle detected, or no longer exists\n\t                );\n\t                // Broken symlink, or symlink cycle detected, or no longer exists\n\t                if (!stats) {\n\t                    continue;\n\t                }\n\t                // Directory\n\t                if (stats.isDirectory()) {\n\t                    // Matched\n\t                    if (match & internal_match_kind_1.MatchKind.Directory) {\n\t                        yield yield __await(item.path);\n\t                    }\n\t                    // Descend?\n\t                    else if (!partialMatch) {\n\t                        continue;\n\t                    }\n\t                    // Push the child items in reverse\n\t                    const childLevel = item.level + 1;\n\t                    const childItems = (yield __await(fs.promises.readdir(item.path))).map(x => new internal_search_state_1.SearchState(path.join(item.path, x), childLevel));\n\t                    stack.push(...childItems.reverse());\n\t                }\n\t                // File\n\t                else if (match & internal_match_kind_1.MatchKind.File) {\n\t                    yield yield __await(item.path);\n\t                }\n\t            }\n\t        });\n\t    }\n\t    /**\n\t     * Constructs a DefaultGlobber\n\t     */\n\t    static create(patterns, options) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            const result = new DefaultGlobber(options);\n\t            if (IS_WINDOWS) {\n\t                patterns = patterns.replace(/\\r\\n/g, '\\n');\n\t                patterns = patterns.replace(/\\r/g, '\\n');\n\t            }\n\t            const lines = patterns.split('\\n').map(x => x.trim());\n\t            for (const line of lines) {\n\t                // Empty or comment\n\t                if (!line || line.startsWith('#')) {\n\t                    continue;\n\t                }\n\t                // Pattern\n\t                else {\n\t                    result.patterns.push(new internal_pattern_1.Pattern(line));\n\t                }\n\t            }\n\t            result.searchPaths.push(...patternHelper.getSearchPaths(result.patterns));\n\t            return result;\n\t        });\n\t    }\n\t    static stat(item, options, traversalChain) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            // Note:\n\t            // `stat` returns info about the target of a symlink (or symlink chain)\n\t            // `lstat` returns info about a symlink itself\n\t            let stats;\n\t            if (options.followSymbolicLinks) {\n\t                try {\n\t                    // Use `stat` (following symlinks)\n\t                    stats = yield fs.promises.stat(item.path);\n\t                }\n\t                catch (err) {\n\t                    if (err.code === 'ENOENT') {\n\t                        if (options.omitBrokenSymbolicLinks) {\n\t                            core.debug(`Broken symlink '${item.path}'`);\n\t                            return undefined;\n\t                        }\n\t                        throw new Error(`No information found for the path '${item.path}'. This may indicate a broken symbolic link.`);\n\t                    }\n\t                    throw err;\n\t                }\n\t            }\n\t            else {\n\t                // Use `lstat` (not following symlinks)\n\t                stats = yield fs.promises.lstat(item.path);\n\t            }\n\t            // Note, isDirectory() returns false for the lstat of a symlink\n\t            if (stats.isDirectory() && options.followSymbolicLinks) {\n\t                // Get the realpath\n\t                const realPath = yield fs.promises.realpath(item.path);\n\t                // Fixup the traversal chain to match the item level\n\t                while (traversalChain.length >= item.level) {\n\t                    traversalChain.pop();\n\t                }\n\t                // Test for a cycle\n\t                if (traversalChain.some((x) => x === realPath)) {\n\t                    core.debug(`Symlink cycle detected for path '${item.path}' and realpath '${realPath}'`);\n\t                    return undefined;\n\t                }\n\t                // Update the traversal chain\n\t                traversalChain.push(realPath);\n\t            }\n\t            return stats;\n\t        });\n\t    }\n\t}\n\tinternalGlobber.DefaultGlobber = DefaultGlobber;\n\t\n\treturn internalGlobber;\n}\n\nvar hasRequiredGlob$1;\n\nfunction requireGlob$1 () {\n\tif (hasRequiredGlob$1) return glob$1;\n\thasRequiredGlob$1 = 1;\n\tvar __awaiter = (glob$1 && glob$1.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(glob$1, \"__esModule\", { value: true });\n\tglob$1.create = void 0;\n\tconst internal_globber_1 = requireInternalGlobber();\n\t/**\n\t * Constructs a globber\n\t *\n\t * @param patterns  Patterns separated by newlines\n\t * @param options   Glob options\n\t */\n\tfunction create(patterns, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        return yield internal_globber_1.DefaultGlobber.create(patterns, options);\n\t    });\n\t}\n\tglob$1.create = create;\n\t\n\treturn glob$1;\n}\n\nvar semver$3 = {exports: {}};\n\nvar hasRequiredSemver$3;\n\nfunction requireSemver$3 () {\n\tif (hasRequiredSemver$3) return semver$3.exports;\n\thasRequiredSemver$3 = 1;\n\t(function (module, exports) {\n\t\texports = module.exports = SemVer;\n\n\t\tvar debug;\n\t\t/* istanbul ignore next */\n\t\tif (typeof process === 'object' &&\n\t\t    process.env &&\n\t\t    process.env.NODE_DEBUG &&\n\t\t    /\\bsemver\\b/i.test(process.env.NODE_DEBUG)) {\n\t\t  debug = function () {\n\t\t    var args = Array.prototype.slice.call(arguments, 0);\n\t\t    args.unshift('SEMVER');\n\t\t    console.log.apply(console, args);\n\t\t  };\n\t\t} else {\n\t\t  debug = function () {};\n\t\t}\n\n\t\t// Note: this is the semver.org version of the spec that it implements\n\t\t// Not necessarily the package version of this code.\n\t\texports.SEMVER_SPEC_VERSION = '2.0.0';\n\n\t\tvar MAX_LENGTH = 256;\n\t\tvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n\t\t  /* istanbul ignore next */ 9007199254740991;\n\n\t\t// Max safe segment length for coercion.\n\t\tvar MAX_SAFE_COMPONENT_LENGTH = 16;\n\n\t\tvar MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6;\n\n\t\t// The actual regexps go on exports.re\n\t\tvar re = exports.re = [];\n\t\tvar safeRe = exports.safeRe = [];\n\t\tvar src = exports.src = [];\n\t\tvar t = exports.tokens = {};\n\t\tvar R = 0;\n\n\t\tfunction tok (n) {\n\t\t  t[n] = R++;\n\t\t}\n\n\t\tvar LETTERDASHNUMBER = '[a-zA-Z0-9-]';\n\n\t\t// Replace some greedy regex tokens to prevent regex dos issues. These regex are\n\t\t// used internally via the safeRe object since all inputs in this library get\n\t\t// normalized first to trim and collapse all extra whitespace. The original\n\t\t// regexes are exported for userland consumption and lower level usage. A\n\t\t// future breaking change could export the safer regex only with a note that\n\t\t// all input should have extra whitespace removed.\n\t\tvar safeRegexReplacements = [\n\t\t  ['\\\\s', 1],\n\t\t  ['\\\\d', MAX_LENGTH],\n\t\t  [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH],\n\t\t];\n\n\t\tfunction makeSafeRe (value) {\n\t\t  for (var i = 0; i < safeRegexReplacements.length; i++) {\n\t\t    var token = safeRegexReplacements[i][0];\n\t\t    var max = safeRegexReplacements[i][1];\n\t\t    value = value\n\t\t      .split(token + '*').join(token + '{0,' + max + '}')\n\t\t      .split(token + '+').join(token + '{1,' + max + '}');\n\t\t  }\n\t\t  return value\n\t\t}\n\n\t\t// The following Regular Expressions can be used for tokenizing,\n\t\t// validating, and parsing SemVer version strings.\n\n\t\t// ## Numeric Identifier\n\t\t// A single `0`, or a non-zero digit followed by zero or more digits.\n\n\t\ttok('NUMERICIDENTIFIER');\n\t\tsrc[t.NUMERICIDENTIFIER] = '0|[1-9]\\\\d*';\n\t\ttok('NUMERICIDENTIFIERLOOSE');\n\t\tsrc[t.NUMERICIDENTIFIERLOOSE] = '\\\\d+';\n\n\t\t// ## Non-numeric Identifier\n\t\t// Zero or more digits, followed by a letter or hyphen, and then zero or\n\t\t// more letters, digits, or hyphens.\n\n\t\ttok('NONNUMERICIDENTIFIER');\n\t\tsrc[t.NONNUMERICIDENTIFIER] = '\\\\d*[a-zA-Z-]' + LETTERDASHNUMBER + '*';\n\n\t\t// ## Main Version\n\t\t// Three dot-separated numeric identifiers.\n\n\t\ttok('MAINVERSION');\n\t\tsrc[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n\t\t                   '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n\t\t                   '(' + src[t.NUMERICIDENTIFIER] + ')';\n\n\t\ttok('MAINVERSIONLOOSE');\n\t\tsrc[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n\t\t                        '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n\t\t                        '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')';\n\n\t\t// ## Pre-release Version Identifier\n\t\t// A numeric identifier, or a non-numeric identifier.\n\n\t\ttok('PRERELEASEIDENTIFIER');\n\t\tsrc[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] +\n\t\t                            '|' + src[t.NONNUMERICIDENTIFIER] + ')';\n\n\t\ttok('PRERELEASEIDENTIFIERLOOSE');\n\t\tsrc[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] +\n\t\t                                 '|' + src[t.NONNUMERICIDENTIFIER] + ')';\n\n\t\t// ## Pre-release Version\n\t\t// Hyphen, followed by one or more dot-separated pre-release version\n\t\t// identifiers.\n\n\t\ttok('PRERELEASE');\n\t\tsrc[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] +\n\t\t                  '(?:\\\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))';\n\n\t\ttok('PRERELEASELOOSE');\n\t\tsrc[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] +\n\t\t                       '(?:\\\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))';\n\n\t\t// ## Build Metadata Identifier\n\t\t// Any combination of digits, letters, or hyphens.\n\n\t\ttok('BUILDIDENTIFIER');\n\t\tsrc[t.BUILDIDENTIFIER] = LETTERDASHNUMBER + '+';\n\n\t\t// ## Build Metadata\n\t\t// Plus sign, followed by one or more period-separated build metadata\n\t\t// identifiers.\n\n\t\ttok('BUILD');\n\t\tsrc[t.BUILD] = '(?:\\\\+(' + src[t.BUILDIDENTIFIER] +\n\t\t             '(?:\\\\.' + src[t.BUILDIDENTIFIER] + ')*))';\n\n\t\t// ## Full Version String\n\t\t// A main version, followed optionally by a pre-release version and\n\t\t// build metadata.\n\n\t\t// Note that the only major, minor, patch, and pre-release sections of\n\t\t// the version string are capturing groups.  The build metadata is not a\n\t\t// capturing group, because it should not ever be used in version\n\t\t// comparison.\n\n\t\ttok('FULL');\n\t\ttok('FULLPLAIN');\n\t\tsrc[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] +\n\t\t                  src[t.PRERELEASE] + '?' +\n\t\t                  src[t.BUILD] + '?';\n\n\t\tsrc[t.FULL] = '^' + src[t.FULLPLAIN] + '$';\n\n\t\t// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n\t\t// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n\t\t// common in the npm registry.\n\t\ttok('LOOSEPLAIN');\n\t\tsrc[t.LOOSEPLAIN] = '[v=\\\\s]*' + src[t.MAINVERSIONLOOSE] +\n\t\t                  src[t.PRERELEASELOOSE] + '?' +\n\t\t                  src[t.BUILD] + '?';\n\n\t\ttok('LOOSE');\n\t\tsrc[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$';\n\n\t\ttok('GTLT');\n\t\tsrc[t.GTLT] = '((?:<|>)?=?)';\n\n\t\t// Something like \"2.*\" or \"1.2.x\".\n\t\t// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n\t\t// Only the first item is strictly required.\n\t\ttok('XRANGEIDENTIFIERLOOSE');\n\t\tsrc[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\\\*';\n\t\ttok('XRANGEIDENTIFIER');\n\t\tsrc[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\\\*';\n\n\t\ttok('XRANGEPLAIN');\n\t\tsrc[t.XRANGEPLAIN] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' +\n\t\t                   '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n\t\t                   '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n\t\t                   '(?:' + src[t.PRERELEASE] + ')?' +\n\t\t                   src[t.BUILD] + '?' +\n\t\t                   ')?)?';\n\n\t\ttok('XRANGEPLAINLOOSE');\n\t\tsrc[t.XRANGEPLAINLOOSE] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n\t\t                        '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n\t\t                        '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n\t\t                        '(?:' + src[t.PRERELEASELOOSE] + ')?' +\n\t\t                        src[t.BUILD] + '?' +\n\t\t                        ')?)?';\n\n\t\ttok('XRANGE');\n\t\tsrc[t.XRANGE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAIN] + '$';\n\t\ttok('XRANGELOOSE');\n\t\tsrc[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAINLOOSE] + '$';\n\n\t\t// Coercion.\n\t\t// Extract anything that could conceivably be a part of a valid semver\n\t\ttok('COERCE');\n\t\tsrc[t.COERCE] = '(^|[^\\\\d])' +\n\t\t              '(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +\n\t\t              '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n\t\t              '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n\t\t              '(?:$|[^\\\\d])';\n\t\ttok('COERCERTL');\n\t\tre[t.COERCERTL] = new RegExp(src[t.COERCE], 'g');\n\t\tsafeRe[t.COERCERTL] = new RegExp(makeSafeRe(src[t.COERCE]), 'g');\n\n\t\t// Tilde ranges.\n\t\t// Meaning is \"reasonably at or greater than\"\n\t\ttok('LONETILDE');\n\t\tsrc[t.LONETILDE] = '(?:~>?)';\n\n\t\ttok('TILDETRIM');\n\t\tsrc[t.TILDETRIM] = '(\\\\s*)' + src[t.LONETILDE] + '\\\\s+';\n\t\tre[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g');\n\t\tsafeRe[t.TILDETRIM] = new RegExp(makeSafeRe(src[t.TILDETRIM]), 'g');\n\t\tvar tildeTrimReplace = '$1~';\n\n\t\ttok('TILDE');\n\t\tsrc[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$';\n\t\ttok('TILDELOOSE');\n\t\tsrc[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$';\n\n\t\t// Caret ranges.\n\t\t// Meaning is \"at least and backwards compatible with\"\n\t\ttok('LONECARET');\n\t\tsrc[t.LONECARET] = '(?:\\\\^)';\n\n\t\ttok('CARETTRIM');\n\t\tsrc[t.CARETTRIM] = '(\\\\s*)' + src[t.LONECARET] + '\\\\s+';\n\t\tre[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g');\n\t\tsafeRe[t.CARETTRIM] = new RegExp(makeSafeRe(src[t.CARETTRIM]), 'g');\n\t\tvar caretTrimReplace = '$1^';\n\n\t\ttok('CARET');\n\t\tsrc[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$';\n\t\ttok('CARETLOOSE');\n\t\tsrc[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$';\n\n\t\t// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\n\t\ttok('COMPARATORLOOSE');\n\t\tsrc[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.LOOSEPLAIN] + ')$|^$';\n\t\ttok('COMPARATOR');\n\t\tsrc[t.COMPARATOR] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.FULLPLAIN] + ')$|^$';\n\n\t\t// An expression to strip any whitespace between the gtlt and the thing\n\t\t// it modifies, so that `> 1.2.3` ==> `>1.2.3`\n\t\ttok('COMPARATORTRIM');\n\t\tsrc[t.COMPARATORTRIM] = '(\\\\s*)' + src[t.GTLT] +\n\t\t                      '\\\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')';\n\n\t\t// this one has to use the /g flag\n\t\tre[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g');\n\t\tsafeRe[t.COMPARATORTRIM] = new RegExp(makeSafeRe(src[t.COMPARATORTRIM]), 'g');\n\t\tvar comparatorTrimReplace = '$1$2$3';\n\n\t\t// Something like `1.2.3 - 1.2.4`\n\t\t// Note that these all use the loose form, because they'll be\n\t\t// checked against either the strict or loose comparator form\n\t\t// later.\n\t\ttok('HYPHENRANGE');\n\t\tsrc[t.HYPHENRANGE] = '^\\\\s*(' + src[t.XRANGEPLAIN] + ')' +\n\t\t                   '\\\\s+-\\\\s+' +\n\t\t                   '(' + src[t.XRANGEPLAIN] + ')' +\n\t\t                   '\\\\s*$';\n\n\t\ttok('HYPHENRANGELOOSE');\n\t\tsrc[t.HYPHENRANGELOOSE] = '^\\\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' +\n\t\t                        '\\\\s+-\\\\s+' +\n\t\t                        '(' + src[t.XRANGEPLAINLOOSE] + ')' +\n\t\t                        '\\\\s*$';\n\n\t\t// Star ranges basically just allow anything at all.\n\t\ttok('STAR');\n\t\tsrc[t.STAR] = '(<|>)?=?\\\\s*\\\\*';\n\n\t\t// Compile to actual regexp objects.\n\t\t// All are flag-free, unless they were created above with a flag.\n\t\tfor (var i = 0; i < R; i++) {\n\t\t  debug(i, src[i]);\n\t\t  if (!re[i]) {\n\t\t    re[i] = new RegExp(src[i]);\n\n\t\t    // Replace all greedy whitespace to prevent regex dos issues. These regex are\n\t\t    // used internally via the safeRe object since all inputs in this library get\n\t\t    // normalized first to trim and collapse all extra whitespace. The original\n\t\t    // regexes are exported for userland consumption and lower level usage. A\n\t\t    // future breaking change could export the safer regex only with a note that\n\t\t    // all input should have extra whitespace removed.\n\t\t    safeRe[i] = new RegExp(makeSafeRe(src[i]));\n\t\t  }\n\t\t}\n\n\t\texports.parse = parse;\n\t\tfunction parse (version, options) {\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\n\t\t  if (version instanceof SemVer) {\n\t\t    return version\n\t\t  }\n\n\t\t  if (typeof version !== 'string') {\n\t\t    return null\n\t\t  }\n\n\t\t  if (version.length > MAX_LENGTH) {\n\t\t    return null\n\t\t  }\n\n\t\t  var r = options.loose ? safeRe[t.LOOSE] : safeRe[t.FULL];\n\t\t  if (!r.test(version)) {\n\t\t    return null\n\t\t  }\n\n\t\t  try {\n\t\t    return new SemVer(version, options)\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t}\n\n\t\texports.valid = valid;\n\t\tfunction valid (version, options) {\n\t\t  var v = parse(version, options);\n\t\t  return v ? v.version : null\n\t\t}\n\n\t\texports.clean = clean;\n\t\tfunction clean (version, options) {\n\t\t  var s = parse(version.trim().replace(/^[=v]+/, ''), options);\n\t\t  return s ? s.version : null\n\t\t}\n\n\t\texports.SemVer = SemVer;\n\n\t\tfunction SemVer (version, options) {\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\t\t  if (version instanceof SemVer) {\n\t\t    if (version.loose === options.loose) {\n\t\t      return version\n\t\t    } else {\n\t\t      version = version.version;\n\t\t    }\n\t\t  } else if (typeof version !== 'string') {\n\t\t    throw new TypeError('Invalid Version: ' + version)\n\t\t  }\n\n\t\t  if (version.length > MAX_LENGTH) {\n\t\t    throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')\n\t\t  }\n\n\t\t  if (!(this instanceof SemVer)) {\n\t\t    return new SemVer(version, options)\n\t\t  }\n\n\t\t  debug('SemVer', version, options);\n\t\t  this.options = options;\n\t\t  this.loose = !!options.loose;\n\n\t\t  var m = version.trim().match(options.loose ? safeRe[t.LOOSE] : safeRe[t.FULL]);\n\n\t\t  if (!m) {\n\t\t    throw new TypeError('Invalid Version: ' + version)\n\t\t  }\n\n\t\t  this.raw = version;\n\n\t\t  // these are actually numbers\n\t\t  this.major = +m[1];\n\t\t  this.minor = +m[2];\n\t\t  this.patch = +m[3];\n\n\t\t  if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n\t\t    throw new TypeError('Invalid major version')\n\t\t  }\n\n\t\t  if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n\t\t    throw new TypeError('Invalid minor version')\n\t\t  }\n\n\t\t  if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n\t\t    throw new TypeError('Invalid patch version')\n\t\t  }\n\n\t\t  // numberify any prerelease numeric ids\n\t\t  if (!m[4]) {\n\t\t    this.prerelease = [];\n\t\t  } else {\n\t\t    this.prerelease = m[4].split('.').map(function (id) {\n\t\t      if (/^[0-9]+$/.test(id)) {\n\t\t        var num = +id;\n\t\t        if (num >= 0 && num < MAX_SAFE_INTEGER) {\n\t\t          return num\n\t\t        }\n\t\t      }\n\t\t      return id\n\t\t    });\n\t\t  }\n\n\t\t  this.build = m[5] ? m[5].split('.') : [];\n\t\t  this.format();\n\t\t}\n\n\t\tSemVer.prototype.format = function () {\n\t\t  this.version = this.major + '.' + this.minor + '.' + this.patch;\n\t\t  if (this.prerelease.length) {\n\t\t    this.version += '-' + this.prerelease.join('.');\n\t\t  }\n\t\t  return this.version\n\t\t};\n\n\t\tSemVer.prototype.toString = function () {\n\t\t  return this.version\n\t\t};\n\n\t\tSemVer.prototype.compare = function (other) {\n\t\t  debug('SemVer.compare', this.version, this.options, other);\n\t\t  if (!(other instanceof SemVer)) {\n\t\t    other = new SemVer(other, this.options);\n\t\t  }\n\n\t\t  return this.compareMain(other) || this.comparePre(other)\n\t\t};\n\n\t\tSemVer.prototype.compareMain = function (other) {\n\t\t  if (!(other instanceof SemVer)) {\n\t\t    other = new SemVer(other, this.options);\n\t\t  }\n\n\t\t  return compareIdentifiers(this.major, other.major) ||\n\t\t         compareIdentifiers(this.minor, other.minor) ||\n\t\t         compareIdentifiers(this.patch, other.patch)\n\t\t};\n\n\t\tSemVer.prototype.comparePre = function (other) {\n\t\t  if (!(other instanceof SemVer)) {\n\t\t    other = new SemVer(other, this.options);\n\t\t  }\n\n\t\t  // NOT having a prerelease is > having one\n\t\t  if (this.prerelease.length && !other.prerelease.length) {\n\t\t    return -1\n\t\t  } else if (!this.prerelease.length && other.prerelease.length) {\n\t\t    return 1\n\t\t  } else if (!this.prerelease.length && !other.prerelease.length) {\n\t\t    return 0\n\t\t  }\n\n\t\t  var i = 0;\n\t\t  do {\n\t\t    var a = this.prerelease[i];\n\t\t    var b = other.prerelease[i];\n\t\t    debug('prerelease compare', i, a, b);\n\t\t    if (a === undefined && b === undefined) {\n\t\t      return 0\n\t\t    } else if (b === undefined) {\n\t\t      return 1\n\t\t    } else if (a === undefined) {\n\t\t      return -1\n\t\t    } else if (a === b) {\n\t\t      continue\n\t\t    } else {\n\t\t      return compareIdentifiers(a, b)\n\t\t    }\n\t\t  } while (++i)\n\t\t};\n\n\t\tSemVer.prototype.compareBuild = function (other) {\n\t\t  if (!(other instanceof SemVer)) {\n\t\t    other = new SemVer(other, this.options);\n\t\t  }\n\n\t\t  var i = 0;\n\t\t  do {\n\t\t    var a = this.build[i];\n\t\t    var b = other.build[i];\n\t\t    debug('prerelease compare', i, a, b);\n\t\t    if (a === undefined && b === undefined) {\n\t\t      return 0\n\t\t    } else if (b === undefined) {\n\t\t      return 1\n\t\t    } else if (a === undefined) {\n\t\t      return -1\n\t\t    } else if (a === b) {\n\t\t      continue\n\t\t    } else {\n\t\t      return compareIdentifiers(a, b)\n\t\t    }\n\t\t  } while (++i)\n\t\t};\n\n\t\t// preminor will bump the version up to the next minor release, and immediately\n\t\t// down to pre-release. premajor and prepatch work the same way.\n\t\tSemVer.prototype.inc = function (release, identifier) {\n\t\t  switch (release) {\n\t\t    case 'premajor':\n\t\t      this.prerelease.length = 0;\n\t\t      this.patch = 0;\n\t\t      this.minor = 0;\n\t\t      this.major++;\n\t\t      this.inc('pre', identifier);\n\t\t      break\n\t\t    case 'preminor':\n\t\t      this.prerelease.length = 0;\n\t\t      this.patch = 0;\n\t\t      this.minor++;\n\t\t      this.inc('pre', identifier);\n\t\t      break\n\t\t    case 'prepatch':\n\t\t      // If this is already a prerelease, it will bump to the next version\n\t\t      // drop any prereleases that might already exist, since they are not\n\t\t      // relevant at this point.\n\t\t      this.prerelease.length = 0;\n\t\t      this.inc('patch', identifier);\n\t\t      this.inc('pre', identifier);\n\t\t      break\n\t\t    // If the input is a non-prerelease version, this acts the same as\n\t\t    // prepatch.\n\t\t    case 'prerelease':\n\t\t      if (this.prerelease.length === 0) {\n\t\t        this.inc('patch', identifier);\n\t\t      }\n\t\t      this.inc('pre', identifier);\n\t\t      break\n\n\t\t    case 'major':\n\t\t      // If this is a pre-major version, bump up to the same major version.\n\t\t      // Otherwise increment major.\n\t\t      // 1.0.0-5 bumps to 1.0.0\n\t\t      // 1.1.0 bumps to 2.0.0\n\t\t      if (this.minor !== 0 ||\n\t\t          this.patch !== 0 ||\n\t\t          this.prerelease.length === 0) {\n\t\t        this.major++;\n\t\t      }\n\t\t      this.minor = 0;\n\t\t      this.patch = 0;\n\t\t      this.prerelease = [];\n\t\t      break\n\t\t    case 'minor':\n\t\t      // If this is a pre-minor version, bump up to the same minor version.\n\t\t      // Otherwise increment minor.\n\t\t      // 1.2.0-5 bumps to 1.2.0\n\t\t      // 1.2.1 bumps to 1.3.0\n\t\t      if (this.patch !== 0 || this.prerelease.length === 0) {\n\t\t        this.minor++;\n\t\t      }\n\t\t      this.patch = 0;\n\t\t      this.prerelease = [];\n\t\t      break\n\t\t    case 'patch':\n\t\t      // If this is not a pre-release version, it will increment the patch.\n\t\t      // If it is a pre-release it will bump up to the same patch version.\n\t\t      // 1.2.0-5 patches to 1.2.0\n\t\t      // 1.2.0 patches to 1.2.1\n\t\t      if (this.prerelease.length === 0) {\n\t\t        this.patch++;\n\t\t      }\n\t\t      this.prerelease = [];\n\t\t      break\n\t\t    // This probably shouldn't be used publicly.\n\t\t    // 1.0.0 \"pre\" would become 1.0.0-0 which is the wrong direction.\n\t\t    case 'pre':\n\t\t      if (this.prerelease.length === 0) {\n\t\t        this.prerelease = [0];\n\t\t      } else {\n\t\t        var i = this.prerelease.length;\n\t\t        while (--i >= 0) {\n\t\t          if (typeof this.prerelease[i] === 'number') {\n\t\t            this.prerelease[i]++;\n\t\t            i = -2;\n\t\t          }\n\t\t        }\n\t\t        if (i === -1) {\n\t\t          // didn't increment anything\n\t\t          this.prerelease.push(0);\n\t\t        }\n\t\t      }\n\t\t      if (identifier) {\n\t\t        // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n\t\t        // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n\t\t        if (this.prerelease[0] === identifier) {\n\t\t          if (isNaN(this.prerelease[1])) {\n\t\t            this.prerelease = [identifier, 0];\n\t\t          }\n\t\t        } else {\n\t\t          this.prerelease = [identifier, 0];\n\t\t        }\n\t\t      }\n\t\t      break\n\n\t\t    default:\n\t\t      throw new Error('invalid increment argument: ' + release)\n\t\t  }\n\t\t  this.format();\n\t\t  this.raw = this.version;\n\t\t  return this\n\t\t};\n\n\t\texports.inc = inc;\n\t\tfunction inc (version, release, loose, identifier) {\n\t\t  if (typeof (loose) === 'string') {\n\t\t    identifier = loose;\n\t\t    loose = undefined;\n\t\t  }\n\n\t\t  try {\n\t\t    return new SemVer(version, loose).inc(release, identifier).version\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t}\n\n\t\texports.diff = diff;\n\t\tfunction diff (version1, version2) {\n\t\t  if (eq(version1, version2)) {\n\t\t    return null\n\t\t  } else {\n\t\t    var v1 = parse(version1);\n\t\t    var v2 = parse(version2);\n\t\t    var prefix = '';\n\t\t    if (v1.prerelease.length || v2.prerelease.length) {\n\t\t      prefix = 'pre';\n\t\t      var defaultResult = 'prerelease';\n\t\t    }\n\t\t    for (var key in v1) {\n\t\t      if (key === 'major' || key === 'minor' || key === 'patch') {\n\t\t        if (v1[key] !== v2[key]) {\n\t\t          return prefix + key\n\t\t        }\n\t\t      }\n\t\t    }\n\t\t    return defaultResult // may be undefined\n\t\t  }\n\t\t}\n\n\t\texports.compareIdentifiers = compareIdentifiers;\n\n\t\tvar numeric = /^[0-9]+$/;\n\t\tfunction compareIdentifiers (a, b) {\n\t\t  var anum = numeric.test(a);\n\t\t  var bnum = numeric.test(b);\n\n\t\t  if (anum && bnum) {\n\t\t    a = +a;\n\t\t    b = +b;\n\t\t  }\n\n\t\t  return a === b ? 0\n\t\t    : (anum && !bnum) ? -1\n\t\t    : (bnum && !anum) ? 1\n\t\t    : a < b ? -1\n\t\t    : 1\n\t\t}\n\n\t\texports.rcompareIdentifiers = rcompareIdentifiers;\n\t\tfunction rcompareIdentifiers (a, b) {\n\t\t  return compareIdentifiers(b, a)\n\t\t}\n\n\t\texports.major = major;\n\t\tfunction major (a, loose) {\n\t\t  return new SemVer(a, loose).major\n\t\t}\n\n\t\texports.minor = minor;\n\t\tfunction minor (a, loose) {\n\t\t  return new SemVer(a, loose).minor\n\t\t}\n\n\t\texports.patch = patch;\n\t\tfunction patch (a, loose) {\n\t\t  return new SemVer(a, loose).patch\n\t\t}\n\n\t\texports.compare = compare;\n\t\tfunction compare (a, b, loose) {\n\t\t  return new SemVer(a, loose).compare(new SemVer(b, loose))\n\t\t}\n\n\t\texports.compareLoose = compareLoose;\n\t\tfunction compareLoose (a, b) {\n\t\t  return compare(a, b, true)\n\t\t}\n\n\t\texports.compareBuild = compareBuild;\n\t\tfunction compareBuild (a, b, loose) {\n\t\t  var versionA = new SemVer(a, loose);\n\t\t  var versionB = new SemVer(b, loose);\n\t\t  return versionA.compare(versionB) || versionA.compareBuild(versionB)\n\t\t}\n\n\t\texports.rcompare = rcompare;\n\t\tfunction rcompare (a, b, loose) {\n\t\t  return compare(b, a, loose)\n\t\t}\n\n\t\texports.sort = sort;\n\t\tfunction sort (list, loose) {\n\t\t  return list.sort(function (a, b) {\n\t\t    return exports.compareBuild(a, b, loose)\n\t\t  })\n\t\t}\n\n\t\texports.rsort = rsort;\n\t\tfunction rsort (list, loose) {\n\t\t  return list.sort(function (a, b) {\n\t\t    return exports.compareBuild(b, a, loose)\n\t\t  })\n\t\t}\n\n\t\texports.gt = gt;\n\t\tfunction gt (a, b, loose) {\n\t\t  return compare(a, b, loose) > 0\n\t\t}\n\n\t\texports.lt = lt;\n\t\tfunction lt (a, b, loose) {\n\t\t  return compare(a, b, loose) < 0\n\t\t}\n\n\t\texports.eq = eq;\n\t\tfunction eq (a, b, loose) {\n\t\t  return compare(a, b, loose) === 0\n\t\t}\n\n\t\texports.neq = neq;\n\t\tfunction neq (a, b, loose) {\n\t\t  return compare(a, b, loose) !== 0\n\t\t}\n\n\t\texports.gte = gte;\n\t\tfunction gte (a, b, loose) {\n\t\t  return compare(a, b, loose) >= 0\n\t\t}\n\n\t\texports.lte = lte;\n\t\tfunction lte (a, b, loose) {\n\t\t  return compare(a, b, loose) <= 0\n\t\t}\n\n\t\texports.cmp = cmp;\n\t\tfunction cmp (a, op, b, loose) {\n\t\t  switch (op) {\n\t\t    case '===':\n\t\t      if (typeof a === 'object')\n\t\t        a = a.version;\n\t\t      if (typeof b === 'object')\n\t\t        b = b.version;\n\t\t      return a === b\n\n\t\t    case '!==':\n\t\t      if (typeof a === 'object')\n\t\t        a = a.version;\n\t\t      if (typeof b === 'object')\n\t\t        b = b.version;\n\t\t      return a !== b\n\n\t\t    case '':\n\t\t    case '=':\n\t\t    case '==':\n\t\t      return eq(a, b, loose)\n\n\t\t    case '!=':\n\t\t      return neq(a, b, loose)\n\n\t\t    case '>':\n\t\t      return gt(a, b, loose)\n\n\t\t    case '>=':\n\t\t      return gte(a, b, loose)\n\n\t\t    case '<':\n\t\t      return lt(a, b, loose)\n\n\t\t    case '<=':\n\t\t      return lte(a, b, loose)\n\n\t\t    default:\n\t\t      throw new TypeError('Invalid operator: ' + op)\n\t\t  }\n\t\t}\n\n\t\texports.Comparator = Comparator;\n\t\tfunction Comparator (comp, options) {\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\n\t\t  if (comp instanceof Comparator) {\n\t\t    if (comp.loose === !!options.loose) {\n\t\t      return comp\n\t\t    } else {\n\t\t      comp = comp.value;\n\t\t    }\n\t\t  }\n\n\t\t  if (!(this instanceof Comparator)) {\n\t\t    return new Comparator(comp, options)\n\t\t  }\n\n\t\t  comp = comp.trim().split(/\\s+/).join(' ');\n\t\t  debug('comparator', comp, options);\n\t\t  this.options = options;\n\t\t  this.loose = !!options.loose;\n\t\t  this.parse(comp);\n\n\t\t  if (this.semver === ANY) {\n\t\t    this.value = '';\n\t\t  } else {\n\t\t    this.value = this.operator + this.semver.version;\n\t\t  }\n\n\t\t  debug('comp', this);\n\t\t}\n\n\t\tvar ANY = {};\n\t\tComparator.prototype.parse = function (comp) {\n\t\t  var r = this.options.loose ? safeRe[t.COMPARATORLOOSE] : safeRe[t.COMPARATOR];\n\t\t  var m = comp.match(r);\n\n\t\t  if (!m) {\n\t\t    throw new TypeError('Invalid comparator: ' + comp)\n\t\t  }\n\n\t\t  this.operator = m[1] !== undefined ? m[1] : '';\n\t\t  if (this.operator === '=') {\n\t\t    this.operator = '';\n\t\t  }\n\n\t\t  // if it literally is just '>' or '' then allow anything.\n\t\t  if (!m[2]) {\n\t\t    this.semver = ANY;\n\t\t  } else {\n\t\t    this.semver = new SemVer(m[2], this.options.loose);\n\t\t  }\n\t\t};\n\n\t\tComparator.prototype.toString = function () {\n\t\t  return this.value\n\t\t};\n\n\t\tComparator.prototype.test = function (version) {\n\t\t  debug('Comparator.test', version, this.options.loose);\n\n\t\t  if (this.semver === ANY || version === ANY) {\n\t\t    return true\n\t\t  }\n\n\t\t  if (typeof version === 'string') {\n\t\t    try {\n\t\t      version = new SemVer(version, this.options);\n\t\t    } catch (er) {\n\t\t      return false\n\t\t    }\n\t\t  }\n\n\t\t  return cmp(version, this.operator, this.semver, this.options)\n\t\t};\n\n\t\tComparator.prototype.intersects = function (comp, options) {\n\t\t  if (!(comp instanceof Comparator)) {\n\t\t    throw new TypeError('a Comparator is required')\n\t\t  }\n\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\n\t\t  var rangeTmp;\n\n\t\t  if (this.operator === '') {\n\t\t    if (this.value === '') {\n\t\t      return true\n\t\t    }\n\t\t    rangeTmp = new Range(comp.value, options);\n\t\t    return satisfies(this.value, rangeTmp, options)\n\t\t  } else if (comp.operator === '') {\n\t\t    if (comp.value === '') {\n\t\t      return true\n\t\t    }\n\t\t    rangeTmp = new Range(this.value, options);\n\t\t    return satisfies(comp.semver, rangeTmp, options)\n\t\t  }\n\n\t\t  var sameDirectionIncreasing =\n\t\t    (this.operator === '>=' || this.operator === '>') &&\n\t\t    (comp.operator === '>=' || comp.operator === '>');\n\t\t  var sameDirectionDecreasing =\n\t\t    (this.operator === '<=' || this.operator === '<') &&\n\t\t    (comp.operator === '<=' || comp.operator === '<');\n\t\t  var sameSemVer = this.semver.version === comp.semver.version;\n\t\t  var differentDirectionsInclusive =\n\t\t    (this.operator === '>=' || this.operator === '<=') &&\n\t\t    (comp.operator === '>=' || comp.operator === '<=');\n\t\t  var oppositeDirectionsLessThan =\n\t\t    cmp(this.semver, '<', comp.semver, options) &&\n\t\t    ((this.operator === '>=' || this.operator === '>') &&\n\t\t    (comp.operator === '<=' || comp.operator === '<'));\n\t\t  var oppositeDirectionsGreaterThan =\n\t\t    cmp(this.semver, '>', comp.semver, options) &&\n\t\t    ((this.operator === '<=' || this.operator === '<') &&\n\t\t    (comp.operator === '>=' || comp.operator === '>'));\n\n\t\t  return sameDirectionIncreasing || sameDirectionDecreasing ||\n\t\t    (sameSemVer && differentDirectionsInclusive) ||\n\t\t    oppositeDirectionsLessThan || oppositeDirectionsGreaterThan\n\t\t};\n\n\t\texports.Range = Range;\n\t\tfunction Range (range, options) {\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\n\t\t  if (range instanceof Range) {\n\t\t    if (range.loose === !!options.loose &&\n\t\t        range.includePrerelease === !!options.includePrerelease) {\n\t\t      return range\n\t\t    } else {\n\t\t      return new Range(range.raw, options)\n\t\t    }\n\t\t  }\n\n\t\t  if (range instanceof Comparator) {\n\t\t    return new Range(range.value, options)\n\t\t  }\n\n\t\t  if (!(this instanceof Range)) {\n\t\t    return new Range(range, options)\n\t\t  }\n\n\t\t  this.options = options;\n\t\t  this.loose = !!options.loose;\n\t\t  this.includePrerelease = !!options.includePrerelease;\n\n\t\t  // First reduce all whitespace as much as possible so we do not have to rely\n\t\t  // on potentially slow regexes like \\s*. This is then stored and used for\n\t\t  // future error messages as well.\n\t\t  this.raw = range\n\t\t    .trim()\n\t\t    .split(/\\s+/)\n\t\t    .join(' ');\n\n\t\t  // First, split based on boolean or ||\n\t\t  this.set = this.raw.split('||').map(function (range) {\n\t\t    return this.parseRange(range.trim())\n\t\t  }, this).filter(function (c) {\n\t\t    // throw out any that are not relevant for whatever reason\n\t\t    return c.length\n\t\t  });\n\n\t\t  if (!this.set.length) {\n\t\t    throw new TypeError('Invalid SemVer Range: ' + this.raw)\n\t\t  }\n\n\t\t  this.format();\n\t\t}\n\n\t\tRange.prototype.format = function () {\n\t\t  this.range = this.set.map(function (comps) {\n\t\t    return comps.join(' ').trim()\n\t\t  }).join('||').trim();\n\t\t  return this.range\n\t\t};\n\n\t\tRange.prototype.toString = function () {\n\t\t  return this.range\n\t\t};\n\n\t\tRange.prototype.parseRange = function (range) {\n\t\t  var loose = this.options.loose;\n\t\t  // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`\n\t\t  var hr = loose ? safeRe[t.HYPHENRANGELOOSE] : safeRe[t.HYPHENRANGE];\n\t\t  range = range.replace(hr, hyphenReplace);\n\t\t  debug('hyphen replace', range);\n\t\t  // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`\n\t\t  range = range.replace(safeRe[t.COMPARATORTRIM], comparatorTrimReplace);\n\t\t  debug('comparator trim', range, safeRe[t.COMPARATORTRIM]);\n\n\t\t  // `~ 1.2.3` => `~1.2.3`\n\t\t  range = range.replace(safeRe[t.TILDETRIM], tildeTrimReplace);\n\n\t\t  // `^ 1.2.3` => `^1.2.3`\n\t\t  range = range.replace(safeRe[t.CARETTRIM], caretTrimReplace);\n\n\t\t  // normalize spaces\n\t\t  range = range.split(/\\s+/).join(' ');\n\n\t\t  // At this point, the range is completely trimmed and\n\t\t  // ready to be split into comparators.\n\n\t\t  var compRe = loose ? safeRe[t.COMPARATORLOOSE] : safeRe[t.COMPARATOR];\n\t\t  var set = range.split(' ').map(function (comp) {\n\t\t    return parseComparator(comp, this.options)\n\t\t  }, this).join(' ').split(/\\s+/);\n\t\t  if (this.options.loose) {\n\t\t    // in loose mode, throw out any that are not valid comparators\n\t\t    set = set.filter(function (comp) {\n\t\t      return !!comp.match(compRe)\n\t\t    });\n\t\t  }\n\t\t  set = set.map(function (comp) {\n\t\t    return new Comparator(comp, this.options)\n\t\t  }, this);\n\n\t\t  return set\n\t\t};\n\n\t\tRange.prototype.intersects = function (range, options) {\n\t\t  if (!(range instanceof Range)) {\n\t\t    throw new TypeError('a Range is required')\n\t\t  }\n\n\t\t  return this.set.some(function (thisComparators) {\n\t\t    return (\n\t\t      isSatisfiable(thisComparators, options) &&\n\t\t      range.set.some(function (rangeComparators) {\n\t\t        return (\n\t\t          isSatisfiable(rangeComparators, options) &&\n\t\t          thisComparators.every(function (thisComparator) {\n\t\t            return rangeComparators.every(function (rangeComparator) {\n\t\t              return thisComparator.intersects(rangeComparator, options)\n\t\t            })\n\t\t          })\n\t\t        )\n\t\t      })\n\t\t    )\n\t\t  })\n\t\t};\n\n\t\t// take a set of comparators and determine whether there\n\t\t// exists a version which can satisfy it\n\t\tfunction isSatisfiable (comparators, options) {\n\t\t  var result = true;\n\t\t  var remainingComparators = comparators.slice();\n\t\t  var testComparator = remainingComparators.pop();\n\n\t\t  while (result && remainingComparators.length) {\n\t\t    result = remainingComparators.every(function (otherComparator) {\n\t\t      return testComparator.intersects(otherComparator, options)\n\t\t    });\n\n\t\t    testComparator = remainingComparators.pop();\n\t\t  }\n\n\t\t  return result\n\t\t}\n\n\t\t// Mostly just for testing and legacy API reasons\n\t\texports.toComparators = toComparators;\n\t\tfunction toComparators (range, options) {\n\t\t  return new Range(range, options).set.map(function (comp) {\n\t\t    return comp.map(function (c) {\n\t\t      return c.value\n\t\t    }).join(' ').trim().split(' ')\n\t\t  })\n\t\t}\n\n\t\t// comprised of xranges, tildes, stars, and gtlt's at this point.\n\t\t// already replaced the hyphen ranges\n\t\t// turn into a set of JUST comparators.\n\t\tfunction parseComparator (comp, options) {\n\t\t  debug('comp', comp, options);\n\t\t  comp = replaceCarets(comp, options);\n\t\t  debug('caret', comp);\n\t\t  comp = replaceTildes(comp, options);\n\t\t  debug('tildes', comp);\n\t\t  comp = replaceXRanges(comp, options);\n\t\t  debug('xrange', comp);\n\t\t  comp = replaceStars(comp, options);\n\t\t  debug('stars', comp);\n\t\t  return comp\n\t\t}\n\n\t\tfunction isX (id) {\n\t\t  return !id || id.toLowerCase() === 'x' || id === '*'\n\t\t}\n\n\t\t// ~, ~> --> * (any, kinda silly)\n\t\t// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0\n\t\t// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0\n\t\t// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0\n\t\t// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0\n\t\t// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0\n\t\tfunction replaceTildes (comp, options) {\n\t\t  return comp.trim().split(/\\s+/).map(function (comp) {\n\t\t    return replaceTilde(comp, options)\n\t\t  }).join(' ')\n\t\t}\n\n\t\tfunction replaceTilde (comp, options) {\n\t\t  var r = options.loose ? safeRe[t.TILDELOOSE] : safeRe[t.TILDE];\n\t\t  return comp.replace(r, function (_, M, m, p, pr) {\n\t\t    debug('tilde', comp, _, M, m, p, pr);\n\t\t    var ret;\n\n\t\t    if (isX(M)) {\n\t\t      ret = '';\n\t\t    } else if (isX(m)) {\n\t\t      ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0';\n\t\t    } else if (isX(p)) {\n\t\t      // ~1.2 == >=1.2.0 <1.3.0\n\t\t      ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0';\n\t\t    } else if (pr) {\n\t\t      debug('replaceTilde pr', pr);\n\t\t      ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n\t\t            ' <' + M + '.' + (+m + 1) + '.0';\n\t\t    } else {\n\t\t      // ~1.2.3 == >=1.2.3 <1.3.0\n\t\t      ret = '>=' + M + '.' + m + '.' + p +\n\t\t            ' <' + M + '.' + (+m + 1) + '.0';\n\t\t    }\n\n\t\t    debug('tilde return', ret);\n\t\t    return ret\n\t\t  })\n\t\t}\n\n\t\t// ^ --> * (any, kinda silly)\n\t\t// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0\n\t\t// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0\n\t\t// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0\n\t\t// ^1.2.3 --> >=1.2.3 <2.0.0\n\t\t// ^1.2.0 --> >=1.2.0 <2.0.0\n\t\tfunction replaceCarets (comp, options) {\n\t\t  return comp.trim().split(/\\s+/).map(function (comp) {\n\t\t    return replaceCaret(comp, options)\n\t\t  }).join(' ')\n\t\t}\n\n\t\tfunction replaceCaret (comp, options) {\n\t\t  debug('caret', comp, options);\n\t\t  var r = options.loose ? safeRe[t.CARETLOOSE] : safeRe[t.CARET];\n\t\t  return comp.replace(r, function (_, M, m, p, pr) {\n\t\t    debug('caret', comp, _, M, m, p, pr);\n\t\t    var ret;\n\n\t\t    if (isX(M)) {\n\t\t      ret = '';\n\t\t    } else if (isX(m)) {\n\t\t      ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0';\n\t\t    } else if (isX(p)) {\n\t\t      if (M === '0') {\n\t\t        ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0';\n\t\t      } else {\n\t\t        ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0';\n\t\t      }\n\t\t    } else if (pr) {\n\t\t      debug('replaceCaret pr', pr);\n\t\t      if (M === '0') {\n\t\t        if (m === '0') {\n\t\t          ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n\t\t                ' <' + M + '.' + m + '.' + (+p + 1);\n\t\t        } else {\n\t\t          ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n\t\t                ' <' + M + '.' + (+m + 1) + '.0';\n\t\t        }\n\t\t      } else {\n\t\t        ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n\t\t              ' <' + (+M + 1) + '.0.0';\n\t\t      }\n\t\t    } else {\n\t\t      debug('no pr');\n\t\t      if (M === '0') {\n\t\t        if (m === '0') {\n\t\t          ret = '>=' + M + '.' + m + '.' + p +\n\t\t                ' <' + M + '.' + m + '.' + (+p + 1);\n\t\t        } else {\n\t\t          ret = '>=' + M + '.' + m + '.' + p +\n\t\t                ' <' + M + '.' + (+m + 1) + '.0';\n\t\t        }\n\t\t      } else {\n\t\t        ret = '>=' + M + '.' + m + '.' + p +\n\t\t              ' <' + (+M + 1) + '.0.0';\n\t\t      }\n\t\t    }\n\n\t\t    debug('caret return', ret);\n\t\t    return ret\n\t\t  })\n\t\t}\n\n\t\tfunction replaceXRanges (comp, options) {\n\t\t  debug('replaceXRanges', comp, options);\n\t\t  return comp.split(/\\s+/).map(function (comp) {\n\t\t    return replaceXRange(comp, options)\n\t\t  }).join(' ')\n\t\t}\n\n\t\tfunction replaceXRange (comp, options) {\n\t\t  comp = comp.trim();\n\t\t  var r = options.loose ? safeRe[t.XRANGELOOSE] : safeRe[t.XRANGE];\n\t\t  return comp.replace(r, function (ret, gtlt, M, m, p, pr) {\n\t\t    debug('xRange', comp, ret, gtlt, M, m, p, pr);\n\t\t    var xM = isX(M);\n\t\t    var xm = xM || isX(m);\n\t\t    var xp = xm || isX(p);\n\t\t    var anyX = xp;\n\n\t\t    if (gtlt === '=' && anyX) {\n\t\t      gtlt = '';\n\t\t    }\n\n\t\t    // if we're including prereleases in the match, then we need\n\t\t    // to fix this to -0, the lowest possible prerelease value\n\t\t    pr = options.includePrerelease ? '-0' : '';\n\n\t\t    if (xM) {\n\t\t      if (gtlt === '>' || gtlt === '<') {\n\t\t        // nothing is allowed\n\t\t        ret = '<0.0.0-0';\n\t\t      } else {\n\t\t        // nothing is forbidden\n\t\t        ret = '*';\n\t\t      }\n\t\t    } else if (gtlt && anyX) {\n\t\t      // we know patch is an x, because we have any x at all.\n\t\t      // replace X with 0\n\t\t      if (xm) {\n\t\t        m = 0;\n\t\t      }\n\t\t      p = 0;\n\n\t\t      if (gtlt === '>') {\n\t\t        // >1 => >=2.0.0\n\t\t        // >1.2 => >=1.3.0\n\t\t        // >1.2.3 => >= 1.2.4\n\t\t        gtlt = '>=';\n\t\t        if (xm) {\n\t\t          M = +M + 1;\n\t\t          m = 0;\n\t\t          p = 0;\n\t\t        } else {\n\t\t          m = +m + 1;\n\t\t          p = 0;\n\t\t        }\n\t\t      } else if (gtlt === '<=') {\n\t\t        // <=0.7.x is actually <0.8.0, since any 0.7.x should\n\t\t        // pass.  Similarly, <=7.x is actually <8.0.0, etc.\n\t\t        gtlt = '<';\n\t\t        if (xm) {\n\t\t          M = +M + 1;\n\t\t        } else {\n\t\t          m = +m + 1;\n\t\t        }\n\t\t      }\n\n\t\t      ret = gtlt + M + '.' + m + '.' + p + pr;\n\t\t    } else if (xm) {\n\t\t      ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr;\n\t\t    } else if (xp) {\n\t\t      ret = '>=' + M + '.' + m + '.0' + pr +\n\t\t        ' <' + M + '.' + (+m + 1) + '.0' + pr;\n\t\t    }\n\n\t\t    debug('xRange return', ret);\n\n\t\t    return ret\n\t\t  })\n\t\t}\n\n\t\t// Because * is AND-ed with everything else in the comparator,\n\t\t// and '' means \"any version\", just remove the *s entirely.\n\t\tfunction replaceStars (comp, options) {\n\t\t  debug('replaceStars', comp, options);\n\t\t  // Looseness is ignored here.  star is always as loose as it gets!\n\t\t  return comp.trim().replace(safeRe[t.STAR], '')\n\t\t}\n\n\t\t// This function is passed to string.replace(re[t.HYPHENRANGE])\n\t\t// M, m, patch, prerelease, build\n\t\t// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5\n\t\t// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do\n\t\t// 1.2 - 3.4 => >=1.2.0 <3.5.0\n\t\tfunction hyphenReplace ($0,\n\t\t  from, fM, fm, fp, fpr, fb,\n\t\t  to, tM, tm, tp, tpr, tb) {\n\t\t  if (isX(fM)) {\n\t\t    from = '';\n\t\t  } else if (isX(fm)) {\n\t\t    from = '>=' + fM + '.0.0';\n\t\t  } else if (isX(fp)) {\n\t\t    from = '>=' + fM + '.' + fm + '.0';\n\t\t  } else {\n\t\t    from = '>=' + from;\n\t\t  }\n\n\t\t  if (isX(tM)) {\n\t\t    to = '';\n\t\t  } else if (isX(tm)) {\n\t\t    to = '<' + (+tM + 1) + '.0.0';\n\t\t  } else if (isX(tp)) {\n\t\t    to = '<' + tM + '.' + (+tm + 1) + '.0';\n\t\t  } else if (tpr) {\n\t\t    to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr;\n\t\t  } else {\n\t\t    to = '<=' + to;\n\t\t  }\n\n\t\t  return (from + ' ' + to).trim()\n\t\t}\n\n\t\t// if ANY of the sets match ALL of its comparators, then pass\n\t\tRange.prototype.test = function (version) {\n\t\t  if (!version) {\n\t\t    return false\n\t\t  }\n\n\t\t  if (typeof version === 'string') {\n\t\t    try {\n\t\t      version = new SemVer(version, this.options);\n\t\t    } catch (er) {\n\t\t      return false\n\t\t    }\n\t\t  }\n\n\t\t  for (var i = 0; i < this.set.length; i++) {\n\t\t    if (testSet(this.set[i], version, this.options)) {\n\t\t      return true\n\t\t    }\n\t\t  }\n\t\t  return false\n\t\t};\n\n\t\tfunction testSet (set, version, options) {\n\t\t  for (var i = 0; i < set.length; i++) {\n\t\t    if (!set[i].test(version)) {\n\t\t      return false\n\t\t    }\n\t\t  }\n\n\t\t  if (version.prerelease.length && !options.includePrerelease) {\n\t\t    // Find the set of versions that are allowed to have prereleases\n\t\t    // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0\n\t\t    // That should allow `1.2.3-pr.2` to pass.\n\t\t    // However, `1.2.4-alpha.notready` should NOT be allowed,\n\t\t    // even though it's within the range set by the comparators.\n\t\t    for (i = 0; i < set.length; i++) {\n\t\t      debug(set[i].semver);\n\t\t      if (set[i].semver === ANY) {\n\t\t        continue\n\t\t      }\n\n\t\t      if (set[i].semver.prerelease.length > 0) {\n\t\t        var allowed = set[i].semver;\n\t\t        if (allowed.major === version.major &&\n\t\t            allowed.minor === version.minor &&\n\t\t            allowed.patch === version.patch) {\n\t\t          return true\n\t\t        }\n\t\t      }\n\t\t    }\n\n\t\t    // Version has a -pre, but it's not one of the ones we like.\n\t\t    return false\n\t\t  }\n\n\t\t  return true\n\t\t}\n\n\t\texports.satisfies = satisfies;\n\t\tfunction satisfies (version, range, options) {\n\t\t  try {\n\t\t    range = new Range(range, options);\n\t\t  } catch (er) {\n\t\t    return false\n\t\t  }\n\t\t  return range.test(version)\n\t\t}\n\n\t\texports.maxSatisfying = maxSatisfying;\n\t\tfunction maxSatisfying (versions, range, options) {\n\t\t  var max = null;\n\t\t  var maxSV = null;\n\t\t  try {\n\t\t    var rangeObj = new Range(range, options);\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t  versions.forEach(function (v) {\n\t\t    if (rangeObj.test(v)) {\n\t\t      // satisfies(v, range, options)\n\t\t      if (!max || maxSV.compare(v) === -1) {\n\t\t        // compare(max, v, true)\n\t\t        max = v;\n\t\t        maxSV = new SemVer(max, options);\n\t\t      }\n\t\t    }\n\t\t  });\n\t\t  return max\n\t\t}\n\n\t\texports.minSatisfying = minSatisfying;\n\t\tfunction minSatisfying (versions, range, options) {\n\t\t  var min = null;\n\t\t  var minSV = null;\n\t\t  try {\n\t\t    var rangeObj = new Range(range, options);\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t  versions.forEach(function (v) {\n\t\t    if (rangeObj.test(v)) {\n\t\t      // satisfies(v, range, options)\n\t\t      if (!min || minSV.compare(v) === 1) {\n\t\t        // compare(min, v, true)\n\t\t        min = v;\n\t\t        minSV = new SemVer(min, options);\n\t\t      }\n\t\t    }\n\t\t  });\n\t\t  return min\n\t\t}\n\n\t\texports.minVersion = minVersion;\n\t\tfunction minVersion (range, loose) {\n\t\t  range = new Range(range, loose);\n\n\t\t  var minver = new SemVer('0.0.0');\n\t\t  if (range.test(minver)) {\n\t\t    return minver\n\t\t  }\n\n\t\t  minver = new SemVer('0.0.0-0');\n\t\t  if (range.test(minver)) {\n\t\t    return minver\n\t\t  }\n\n\t\t  minver = null;\n\t\t  for (var i = 0; i < range.set.length; ++i) {\n\t\t    var comparators = range.set[i];\n\n\t\t    comparators.forEach(function (comparator) {\n\t\t      // Clone to avoid manipulating the comparator's semver object.\n\t\t      var compver = new SemVer(comparator.semver.version);\n\t\t      switch (comparator.operator) {\n\t\t        case '>':\n\t\t          if (compver.prerelease.length === 0) {\n\t\t            compver.patch++;\n\t\t          } else {\n\t\t            compver.prerelease.push(0);\n\t\t          }\n\t\t          compver.raw = compver.format();\n\t\t          /* fallthrough */\n\t\t        case '':\n\t\t        case '>=':\n\t\t          if (!minver || gt(minver, compver)) {\n\t\t            minver = compver;\n\t\t          }\n\t\t          break\n\t\t        case '<':\n\t\t        case '<=':\n\t\t          /* Ignore maximum versions */\n\t\t          break\n\t\t        /* istanbul ignore next */\n\t\t        default:\n\t\t          throw new Error('Unexpected operation: ' + comparator.operator)\n\t\t      }\n\t\t    });\n\t\t  }\n\n\t\t  if (minver && range.test(minver)) {\n\t\t    return minver\n\t\t  }\n\n\t\t  return null\n\t\t}\n\n\t\texports.validRange = validRange;\n\t\tfunction validRange (range, options) {\n\t\t  try {\n\t\t    // Return '*' instead of '' so that truthiness works.\n\t\t    // This will throw if it's invalid anyway\n\t\t    return new Range(range, options).range || '*'\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t}\n\n\t\t// Determine if version is less than all the versions possible in the range\n\t\texports.ltr = ltr;\n\t\tfunction ltr (version, range, options) {\n\t\t  return outside(version, range, '<', options)\n\t\t}\n\n\t\t// Determine if version is greater than all the versions possible in the range.\n\t\texports.gtr = gtr;\n\t\tfunction gtr (version, range, options) {\n\t\t  return outside(version, range, '>', options)\n\t\t}\n\n\t\texports.outside = outside;\n\t\tfunction outside (version, range, hilo, options) {\n\t\t  version = new SemVer(version, options);\n\t\t  range = new Range(range, options);\n\n\t\t  var gtfn, ltefn, ltfn, comp, ecomp;\n\t\t  switch (hilo) {\n\t\t    case '>':\n\t\t      gtfn = gt;\n\t\t      ltefn = lte;\n\t\t      ltfn = lt;\n\t\t      comp = '>';\n\t\t      ecomp = '>=';\n\t\t      break\n\t\t    case '<':\n\t\t      gtfn = lt;\n\t\t      ltefn = gte;\n\t\t      ltfn = gt;\n\t\t      comp = '<';\n\t\t      ecomp = '<=';\n\t\t      break\n\t\t    default:\n\t\t      throw new TypeError('Must provide a hilo val of \"<\" or \">\"')\n\t\t  }\n\n\t\t  // If it satisifes the range it is not outside\n\t\t  if (satisfies(version, range, options)) {\n\t\t    return false\n\t\t  }\n\n\t\t  // From now on, variable terms are as if we're in \"gtr\" mode.\n\t\t  // but note that everything is flipped for the \"ltr\" function.\n\n\t\t  for (var i = 0; i < range.set.length; ++i) {\n\t\t    var comparators = range.set[i];\n\n\t\t    var high = null;\n\t\t    var low = null;\n\n\t\t    comparators.forEach(function (comparator) {\n\t\t      if (comparator.semver === ANY) {\n\t\t        comparator = new Comparator('>=0.0.0');\n\t\t      }\n\t\t      high = high || comparator;\n\t\t      low = low || comparator;\n\t\t      if (gtfn(comparator.semver, high.semver, options)) {\n\t\t        high = comparator;\n\t\t      } else if (ltfn(comparator.semver, low.semver, options)) {\n\t\t        low = comparator;\n\t\t      }\n\t\t    });\n\n\t\t    // If the edge version comparator has a operator then our version\n\t\t    // isn't outside it\n\t\t    if (high.operator === comp || high.operator === ecomp) {\n\t\t      return false\n\t\t    }\n\n\t\t    // If the lowest version comparator has an operator and our version\n\t\t    // is less than it then it isn't higher than the range\n\t\t    if ((!low.operator || low.operator === comp) &&\n\t\t        ltefn(version, low.semver)) {\n\t\t      return false\n\t\t    } else if (low.operator === ecomp && ltfn(version, low.semver)) {\n\t\t      return false\n\t\t    }\n\t\t  }\n\t\t  return true\n\t\t}\n\n\t\texports.prerelease = prerelease;\n\t\tfunction prerelease (version, options) {\n\t\t  var parsed = parse(version, options);\n\t\t  return (parsed && parsed.prerelease.length) ? parsed.prerelease : null\n\t\t}\n\n\t\texports.intersects = intersects;\n\t\tfunction intersects (r1, r2, options) {\n\t\t  r1 = new Range(r1, options);\n\t\t  r2 = new Range(r2, options);\n\t\t  return r1.intersects(r2)\n\t\t}\n\n\t\texports.coerce = coerce;\n\t\tfunction coerce (version, options) {\n\t\t  if (version instanceof SemVer) {\n\t\t    return version\n\t\t  }\n\n\t\t  if (typeof version === 'number') {\n\t\t    version = String(version);\n\t\t  }\n\n\t\t  if (typeof version !== 'string') {\n\t\t    return null\n\t\t  }\n\n\t\t  options = options || {};\n\n\t\t  var match = null;\n\t\t  if (!options.rtl) {\n\t\t    match = version.match(safeRe[t.COERCE]);\n\t\t  } else {\n\t\t    // Find the right-most coercible string that does not share\n\t\t    // a terminus with a more left-ward coercible string.\n\t\t    // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'\n\t\t    //\n\t\t    // Walk through the string checking with a /g regexp\n\t\t    // Manually set the index so as to pick up overlapping matches.\n\t\t    // Stop when we get a match that ends at the string end, since no\n\t\t    // coercible string can be more right-ward without the same terminus.\n\t\t    var next;\n\t\t    while ((next = safeRe[t.COERCERTL].exec(version)) &&\n\t\t      (!match || match.index + match[0].length !== version.length)\n\t\t    ) {\n\t\t      if (!match ||\n\t\t          next.index + next[0].length !== match.index + match[0].length) {\n\t\t        match = next;\n\t\t      }\n\t\t      safeRe[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length;\n\t\t    }\n\t\t    // leave it in a clean state\n\t\t    safeRe[t.COERCERTL].lastIndex = -1;\n\t\t  }\n\n\t\t  if (match === null) {\n\t\t    return null\n\t\t  }\n\n\t\t  return parse(match[2] +\n\t\t    '.' + (match[3] || '0') +\n\t\t    '.' + (match[4] || '0'), options)\n\t\t} \n\t} (semver$3, semver$3.exports));\n\treturn semver$3.exports;\n}\n\nvar constants$3 = {};\n\nvar hasRequiredConstants$3;\n\nfunction requireConstants$3 () {\n\tif (hasRequiredConstants$3) return constants$3;\n\thasRequiredConstants$3 = 1;\n\tObject.defineProperty(constants$3, \"__esModule\", { value: true });\n\tconstants$3.CacheFileSizeLimit = constants$3.ManifestFilename = constants$3.TarFilename = constants$3.SystemTarPathOnWindows = constants$3.GnuTarPathOnWindows = constants$3.SocketTimeout = constants$3.DefaultRetryDelay = constants$3.DefaultRetryAttempts = constants$3.ArchiveToolType = constants$3.CompressionMethod = constants$3.CacheFilename = void 0;\n\tvar CacheFilename;\n\t(function (CacheFilename) {\n\t    CacheFilename[\"Gzip\"] = \"cache.tgz\";\n\t    CacheFilename[\"Zstd\"] = \"cache.tzst\";\n\t})(CacheFilename || (constants$3.CacheFilename = CacheFilename = {}));\n\tvar CompressionMethod;\n\t(function (CompressionMethod) {\n\t    CompressionMethod[\"Gzip\"] = \"gzip\";\n\t    // Long range mode was added to zstd in v1.3.2.\n\t    // This enum is for earlier version of zstd that does not have --long support\n\t    CompressionMethod[\"ZstdWithoutLong\"] = \"zstd-without-long\";\n\t    CompressionMethod[\"Zstd\"] = \"zstd\";\n\t})(CompressionMethod || (constants$3.CompressionMethod = CompressionMethod = {}));\n\tvar ArchiveToolType;\n\t(function (ArchiveToolType) {\n\t    ArchiveToolType[\"GNU\"] = \"gnu\";\n\t    ArchiveToolType[\"BSD\"] = \"bsd\";\n\t})(ArchiveToolType || (constants$3.ArchiveToolType = ArchiveToolType = {}));\n\t// The default number of retry attempts.\n\tconstants$3.DefaultRetryAttempts = 2;\n\t// The default delay in milliseconds between retry attempts.\n\tconstants$3.DefaultRetryDelay = 5000;\n\t// Socket timeout in milliseconds during download.  If no traffic is received\n\t// over the socket during this period, the socket is destroyed and the download\n\t// is aborted.\n\tconstants$3.SocketTimeout = 5000;\n\t// The default path of GNUtar on hosted Windows runners\n\tconstants$3.GnuTarPathOnWindows = `${process.env['PROGRAMFILES']}\\\\Git\\\\usr\\\\bin\\\\tar.exe`;\n\t// The default path of BSDtar on hosted Windows runners\n\tconstants$3.SystemTarPathOnWindows = `${process.env['SYSTEMDRIVE']}\\\\Windows\\\\System32\\\\tar.exe`;\n\tconstants$3.TarFilename = 'cache.tar';\n\tconstants$3.ManifestFilename = 'manifest.txt';\n\tconstants$3.CacheFileSizeLimit = 10 * Math.pow(1024, 3); // 10GiB per repository\n\t\n\treturn constants$3;\n}\n\nvar hasRequiredCacheUtils;\n\nfunction requireCacheUtils () {\n\tif (hasRequiredCacheUtils) return cacheUtils;\n\thasRequiredCacheUtils = 1;\n\tvar __createBinding = (cacheUtils && cacheUtils.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (cacheUtils && cacheUtils.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (cacheUtils && cacheUtils.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (cacheUtils && cacheUtils.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tvar __asyncValues = (cacheUtils && cacheUtils.__asyncValues) || function (o) {\n\t    if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n\t    var m = o[Symbol.asyncIterator], i;\n\t    return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n\t    function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n\t    function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n\t};\n\tObject.defineProperty(cacheUtils, \"__esModule\", { value: true });\n\tcacheUtils.getRuntimeToken = cacheUtils.getCacheVersion = cacheUtils.assertDefined = cacheUtils.getGnuTarPathOnWindows = cacheUtils.getCacheFileName = cacheUtils.getCompressionMethod = cacheUtils.unlinkFile = cacheUtils.resolvePaths = cacheUtils.getArchiveFileSizeInBytes = cacheUtils.createTempDirectory = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst exec = __importStar(requireExec());\n\tconst glob = __importStar(requireGlob$1());\n\tconst io = __importStar(requireIo());\n\tconst crypto = __importStar(require$$0$7);\n\tconst fs = __importStar(fs__default);\n\tconst path = __importStar(require$$1__default);\n\tconst semver = __importStar(requireSemver$3());\n\tconst util = __importStar(require$$0__default$1);\n\tconst constants_1 = requireConstants$3();\n\tconst versionSalt = '1.0';\n\t// From https://github.com/actions/toolkit/blob/main/packages/tool-cache/src/tool-cache.ts#L23\n\tfunction createTempDirectory() {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const IS_WINDOWS = process.platform === 'win32';\n\t        let tempDirectory = process.env['RUNNER_TEMP'] || '';\n\t        if (!tempDirectory) {\n\t            let baseLocation;\n\t            if (IS_WINDOWS) {\n\t                // On Windows use the USERPROFILE env variable\n\t                baseLocation = process.env['USERPROFILE'] || 'C:\\\\';\n\t            }\n\t            else {\n\t                if (process.platform === 'darwin') {\n\t                    baseLocation = '/Users';\n\t                }\n\t                else {\n\t                    baseLocation = '/home';\n\t                }\n\t            }\n\t            tempDirectory = path.join(baseLocation, 'actions', 'temp');\n\t        }\n\t        const dest = path.join(tempDirectory, crypto.randomUUID());\n\t        yield io.mkdirP(dest);\n\t        return dest;\n\t    });\n\t}\n\tcacheUtils.createTempDirectory = createTempDirectory;\n\tfunction getArchiveFileSizeInBytes(filePath) {\n\t    return fs.statSync(filePath).size;\n\t}\n\tcacheUtils.getArchiveFileSizeInBytes = getArchiveFileSizeInBytes;\n\tfunction resolvePaths(patterns) {\n\t    var _a, e_1, _b, _c;\n\t    var _d;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const paths = [];\n\t        const workspace = (_d = process.env['GITHUB_WORKSPACE']) !== null && _d !== void 0 ? _d : process.cwd();\n\t        const globber = yield glob.create(patterns.join('\\n'), {\n\t            implicitDescendants: false\n\t        });\n\t        try {\n\t            for (var _e = true, _f = __asyncValues(globber.globGenerator()), _g; _g = yield _f.next(), _a = _g.done, !_a; _e = true) {\n\t                _c = _g.value;\n\t                _e = false;\n\t                const file = _c;\n\t                const relativeFile = path\n\t                    .relative(workspace, file)\n\t                    .replace(new RegExp(`\\\\${path.sep}`, 'g'), '/');\n\t                core.debug(`Matched: ${relativeFile}`);\n\t                // Paths are made relative so the tar entries are all relative to the root of the workspace.\n\t                if (relativeFile === '') {\n\t                    // path.relative returns empty string if workspace and file are equal\n\t                    paths.push('.');\n\t                }\n\t                else {\n\t                    paths.push(`${relativeFile}`);\n\t                }\n\t            }\n\t        }\n\t        catch (e_1_1) { e_1 = { error: e_1_1 }; }\n\t        finally {\n\t            try {\n\t                if (!_e && !_a && (_b = _f.return)) yield _b.call(_f);\n\t            }\n\t            finally { if (e_1) throw e_1.error; }\n\t        }\n\t        return paths;\n\t    });\n\t}\n\tcacheUtils.resolvePaths = resolvePaths;\n\tfunction unlinkFile(filePath) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        return util.promisify(fs.unlink)(filePath);\n\t    });\n\t}\n\tcacheUtils.unlinkFile = unlinkFile;\n\tfunction getVersion(app, additionalArgs = []) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        let versionOutput = '';\n\t        additionalArgs.push('--version');\n\t        core.debug(`Checking ${app} ${additionalArgs.join(' ')}`);\n\t        try {\n\t            yield exec.exec(`${app}`, additionalArgs, {\n\t                ignoreReturnCode: true,\n\t                silent: true,\n\t                listeners: {\n\t                    stdout: (data) => (versionOutput += data.toString()),\n\t                    stderr: (data) => (versionOutput += data.toString())\n\t                }\n\t            });\n\t        }\n\t        catch (err) {\n\t            core.debug(err.message);\n\t        }\n\t        versionOutput = versionOutput.trim();\n\t        core.debug(versionOutput);\n\t        return versionOutput;\n\t    });\n\t}\n\t// Use zstandard if possible to maximize cache performance\n\tfunction getCompressionMethod() {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const versionOutput = yield getVersion('zstd', ['--quiet']);\n\t        const version = semver.clean(versionOutput);\n\t        core.debug(`zstd version: ${version}`);\n\t        if (versionOutput === '') {\n\t            return constants_1.CompressionMethod.Gzip;\n\t        }\n\t        else {\n\t            return constants_1.CompressionMethod.ZstdWithoutLong;\n\t        }\n\t    });\n\t}\n\tcacheUtils.getCompressionMethod = getCompressionMethod;\n\tfunction getCacheFileName(compressionMethod) {\n\t    return compressionMethod === constants_1.CompressionMethod.Gzip\n\t        ? constants_1.CacheFilename.Gzip\n\t        : constants_1.CacheFilename.Zstd;\n\t}\n\tcacheUtils.getCacheFileName = getCacheFileName;\n\tfunction getGnuTarPathOnWindows() {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (fs.existsSync(constants_1.GnuTarPathOnWindows)) {\n\t            return constants_1.GnuTarPathOnWindows;\n\t        }\n\t        const versionOutput = yield getVersion('tar');\n\t        return versionOutput.toLowerCase().includes('gnu tar') ? io.which('tar') : '';\n\t    });\n\t}\n\tcacheUtils.getGnuTarPathOnWindows = getGnuTarPathOnWindows;\n\tfunction assertDefined(name, value) {\n\t    if (value === undefined) {\n\t        throw Error(`Expected ${name} but value was undefiend`);\n\t    }\n\t    return value;\n\t}\n\tcacheUtils.assertDefined = assertDefined;\n\tfunction getCacheVersion(paths, compressionMethod, enableCrossOsArchive = false) {\n\t    // don't pass changes upstream\n\t    const components = paths.slice();\n\t    // Add compression method to cache version to restore\n\t    // compressed cache as per compression method\n\t    if (compressionMethod) {\n\t        components.push(compressionMethod);\n\t    }\n\t    // Only check for windows platforms if enableCrossOsArchive is false\n\t    if (process.platform === 'win32' && !enableCrossOsArchive) {\n\t        components.push('windows-only');\n\t    }\n\t    // Add salt to cache version to support breaking changes in cache entry\n\t    components.push(versionSalt);\n\t    return crypto.createHash('sha256').update(components.join('|')).digest('hex');\n\t}\n\tcacheUtils.getCacheVersion = getCacheVersion;\n\tfunction getRuntimeToken() {\n\t    const token = process.env['ACTIONS_RUNTIME_TOKEN'];\n\t    if (!token) {\n\t        throw new Error('Unable to get the ACTIONS_RUNTIME_TOKEN env variable');\n\t    }\n\t    return token;\n\t}\n\tcacheUtils.getRuntimeToken = getRuntimeToken;\n\t\n\treturn cacheUtils;\n}\n\nvar cacheHttpClient = {};\n\nvar uploadUtils = {};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * This error is thrown when an asynchronous operation has been aborted.\n * Check for this error by testing the `name` that the name property of the\n * error matches `\"AbortError\"`.\n *\n * @example\n * ```ts snippet:ReadmeSampleAbortError\n * import { AbortError } from \"@typespec/ts-http-runtime\";\n *\n * async function doAsyncWork(options: { abortSignal: AbortSignal }): Promise<void> {\n *   if (options.abortSignal.aborted) {\n *     throw new AbortError();\n *   }\n *\n *   // do async work\n * }\n *\n * const controller = new AbortController();\n * controller.abort();\n *\n * try {\n *   doAsyncWork({ abortSignal: controller.signal });\n * } catch (e) {\n *   if (e instanceof Error && e.name === \"AbortError\") {\n *     // handle abort error here.\n *   }\n * }\n * ```\n */\nlet AbortError$4 = class AbortError extends Error {\n    constructor(message) {\n        super(message);\n        this.name = \"AbortError\";\n    }\n};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction log$1(message, ...args) {\n    process$2.stderr.write(`${require$$1$6.format(message, ...args)}${EOL$1}`);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst debugEnvVariable = (typeof process !== \"undefined\" && process.env && process.env.DEBUG) || undefined;\nlet enabledString;\nlet enabledNamespaces = [];\nlet skippedNamespaces = [];\nconst debuggers = [];\nif (debugEnvVariable) {\n    enable(debugEnvVariable);\n}\nconst debugObj = Object.assign((namespace) => {\n    return createDebugger(namespace);\n}, {\n    enable,\n    enabled,\n    disable,\n    log: log$1,\n});\nfunction enable(namespaces) {\n    enabledString = namespaces;\n    enabledNamespaces = [];\n    skippedNamespaces = [];\n    const wildcard = /\\*/g;\n    const namespaceList = namespaces.split(\",\").map((ns) => ns.trim().replace(wildcard, \".*?\"));\n    for (const ns of namespaceList) {\n        if (ns.startsWith(\"-\")) {\n            skippedNamespaces.push(new RegExp(`^${ns.substr(1)}$`));\n        }\n        else {\n            enabledNamespaces.push(new RegExp(`^${ns}$`));\n        }\n    }\n    for (const instance of debuggers) {\n        instance.enabled = enabled(instance.namespace);\n    }\n}\nfunction enabled(namespace) {\n    if (namespace.endsWith(\"*\")) {\n        return true;\n    }\n    for (const skipped of skippedNamespaces) {\n        if (skipped.test(namespace)) {\n            return false;\n        }\n    }\n    for (const enabledNamespace of enabledNamespaces) {\n        if (enabledNamespace.test(namespace)) {\n            return true;\n        }\n    }\n    return false;\n}\nfunction disable() {\n    const result = enabledString || \"\";\n    enable(\"\");\n    return result;\n}\nfunction createDebugger(namespace) {\n    const newDebugger = Object.assign(debug, {\n        enabled: enabled(namespace),\n        destroy,\n        log: debugObj.log,\n        namespace,\n        extend,\n    });\n    function debug(...args) {\n        if (!newDebugger.enabled) {\n            return;\n        }\n        if (args.length > 0) {\n            args[0] = `${namespace} ${args[0]}`;\n        }\n        newDebugger.log(...args);\n    }\n    debuggers.push(newDebugger);\n    return newDebugger;\n}\nfunction destroy() {\n    const index = debuggers.indexOf(this);\n    if (index >= 0) {\n        debuggers.splice(index, 1);\n        return true;\n    }\n    return false;\n}\nfunction extend(namespace) {\n    const newDebugger = createDebugger(`${this.namespace}:${namespace}`);\n    newDebugger.log = this.log;\n    return newDebugger;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst TYPESPEC_RUNTIME_LOG_LEVELS = [\"verbose\", \"info\", \"warning\", \"error\"];\nconst levelMap = {\n    verbose: 400,\n    info: 300,\n    warning: 200,\n    error: 100,\n};\nfunction patchLogMethod(parent, child) {\n    child.log = (...args) => {\n        parent.log(...args);\n    };\n}\nfunction isTypeSpecRuntimeLogLevel(level) {\n    return TYPESPEC_RUNTIME_LOG_LEVELS.includes(level);\n}\n/**\n * Creates a logger context base on the provided options.\n * @param options - The options for creating a logger context.\n * @returns The logger context.\n */\nfunction createLoggerContext(options) {\n    const registeredLoggers = new Set();\n    const logLevelFromEnv = (typeof process !== \"undefined\" && process.env && process.env[options.logLevelEnvVarName]) ||\n        undefined;\n    let logLevel;\n    const clientLogger = debugObj(options.namespace);\n    clientLogger.log = (...args) => {\n        debugObj.log(...args);\n    };\n    if (logLevelFromEnv) {\n        // avoid calling setLogLevel because we don't want a mis-set environment variable to crash\n        if (isTypeSpecRuntimeLogLevel(logLevelFromEnv)) {\n            setLogLevel(logLevelFromEnv);\n        }\n        else {\n            console.error(`${options.logLevelEnvVarName} set to unknown log level '${logLevelFromEnv}'; logging is not enabled. Acceptable values: ${TYPESPEC_RUNTIME_LOG_LEVELS.join(\", \")}.`);\n        }\n    }\n    function shouldEnable(logger) {\n        return Boolean(logLevel && levelMap[logger.level] <= levelMap[logLevel]);\n    }\n    function createLogger(parent, level) {\n        const logger = Object.assign(parent.extend(level), {\n            level,\n        });\n        patchLogMethod(parent, logger);\n        if (shouldEnable(logger)) {\n            const enabledNamespaces = debugObj.disable();\n            debugObj.enable(enabledNamespaces + \",\" + logger.namespace);\n        }\n        registeredLoggers.add(logger);\n        return logger;\n    }\n    return {\n        setLogLevel(level) {\n            if (level && !isTypeSpecRuntimeLogLevel(level)) {\n                throw new Error(`Unknown log level '${level}'. Acceptable values: ${TYPESPEC_RUNTIME_LOG_LEVELS.join(\",\")}`);\n            }\n            logLevel = level;\n            const enabledNamespaces = [];\n            for (const logger of registeredLoggers) {\n                if (shouldEnable(logger)) {\n                    enabledNamespaces.push(logger.namespace);\n                }\n            }\n            debugObj.enable(enabledNamespaces.join(\",\"));\n        },\n        getLogLevel() {\n            return logLevel;\n        },\n        createClientLogger(namespace) {\n            const clientRootLogger = clientLogger.extend(namespace);\n            patchLogMethod(clientLogger, clientRootLogger);\n            return {\n                error: createLogger(clientRootLogger, \"error\"),\n                warning: createLogger(clientRootLogger, \"warning\"),\n                info: createLogger(clientRootLogger, \"info\"),\n                verbose: createLogger(clientRootLogger, \"verbose\"),\n            };\n        },\n        logger: clientLogger,\n    };\n}\nconst context$2 = createLoggerContext({\n    logLevelEnvVarName: \"TYPESPEC_RUNTIME_LOG_LEVEL\",\n    namespace: \"typeSpecRuntime\",\n});\n/**\n * Retrieves the currently specified log level.\n */\nfunction setLogLevel(logLevel) {\n    context$2.setLogLevel(logLevel);\n}\n/**\n * Creates a logger for use by the SDKs that inherits from `TypeSpecRuntimeLogger`.\n * @param namespace - The name of the SDK package.\n * @hidden\n */\nfunction createClientLogger$1(namespace) {\n    return context$2.createClientLogger(namespace);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction normalizeName(name) {\n    return name.toLowerCase();\n}\nfunction* headerIterator(map) {\n    for (const entry of map.values()) {\n        yield [entry.name, entry.value];\n    }\n}\nclass HttpHeadersImpl {\n    constructor(rawHeaders) {\n        this._headersMap = new Map();\n        if (rawHeaders) {\n            for (const headerName of Object.keys(rawHeaders)) {\n                this.set(headerName, rawHeaders[headerName]);\n            }\n        }\n    }\n    /**\n     * Set a header in this collection with the provided name and value. The name is\n     * case-insensitive.\n     * @param name - The name of the header to set. This value is case-insensitive.\n     * @param value - The value of the header to set.\n     */\n    set(name, value) {\n        this._headersMap.set(normalizeName(name), { name, value: String(value).trim() });\n    }\n    /**\n     * Get the header value for the provided header name, or undefined if no header exists in this\n     * collection with the provided name.\n     * @param name - The name of the header. This value is case-insensitive.\n     */\n    get(name) {\n        var _a;\n        return (_a = this._headersMap.get(normalizeName(name))) === null || _a === void 0 ? void 0 : _a.value;\n    }\n    /**\n     * Get whether or not this header collection contains a header entry for the provided header name.\n     * @param name - The name of the header to set. This value is case-insensitive.\n     */\n    has(name) {\n        return this._headersMap.has(normalizeName(name));\n    }\n    /**\n     * Remove the header with the provided headerName.\n     * @param name - The name of the header to remove.\n     */\n    delete(name) {\n        this._headersMap.delete(normalizeName(name));\n    }\n    /**\n     * Get the JSON object representation of this HTTP header collection.\n     */\n    toJSON(options = {}) {\n        const result = {};\n        if (options.preserveCase) {\n            for (const entry of this._headersMap.values()) {\n                result[entry.name] = entry.value;\n            }\n        }\n        else {\n            for (const [normalizedName, entry] of this._headersMap) {\n                result[normalizedName] = entry.value;\n            }\n        }\n        return result;\n    }\n    /**\n     * Get the string representation of this HTTP header collection.\n     */\n    toString() {\n        return JSON.stringify(this.toJSON({ preserveCase: true }));\n    }\n    /**\n     * Iterate over tuples of header [name, value] pairs.\n     */\n    [Symbol.iterator]() {\n        return headerIterator(this._headersMap);\n    }\n}\n/**\n * Creates an object that satisfies the `HttpHeaders` interface.\n * @param rawHeaders - A simple object representing initial headers\n */\nfunction createHttpHeaders$1(rawHeaders) {\n    return new HttpHeadersImpl(rawHeaders);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nvar _a$1;\n// NOTE: This is a workaround until we can use `globalThis.crypto.randomUUID` in Node.js 19+.\nconst uuidFunction = typeof ((_a$1 = globalThis === null || globalThis === void 0 ? void 0 : globalThis.crypto) === null || _a$1 === void 0 ? void 0 : _a$1.randomUUID) === \"function\"\n    ? globalThis.crypto.randomUUID.bind(globalThis.crypto)\n    : randomUUID$2;\n/**\n * Generated Universally Unique Identifier\n *\n * @returns RFC4122 v4 UUID.\n */\nfunction randomUUID$1() {\n    return uuidFunction();\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nclass PipelineRequestImpl {\n    constructor(options) {\n        var _a, _b, _c, _d, _e, _f, _g;\n        this.url = options.url;\n        this.body = options.body;\n        this.headers = (_a = options.headers) !== null && _a !== void 0 ? _a : createHttpHeaders$1();\n        this.method = (_b = options.method) !== null && _b !== void 0 ? _b : \"GET\";\n        this.timeout = (_c = options.timeout) !== null && _c !== void 0 ? _c : 0;\n        this.multipartBody = options.multipartBody;\n        this.formData = options.formData;\n        this.disableKeepAlive = (_d = options.disableKeepAlive) !== null && _d !== void 0 ? _d : false;\n        this.proxySettings = options.proxySettings;\n        this.streamResponseStatusCodes = options.streamResponseStatusCodes;\n        this.withCredentials = (_e = options.withCredentials) !== null && _e !== void 0 ? _e : false;\n        this.abortSignal = options.abortSignal;\n        this.onUploadProgress = options.onUploadProgress;\n        this.onDownloadProgress = options.onDownloadProgress;\n        this.requestId = options.requestId || randomUUID$1();\n        this.allowInsecureConnection = (_f = options.allowInsecureConnection) !== null && _f !== void 0 ? _f : false;\n        this.enableBrowserStreams = (_g = options.enableBrowserStreams) !== null && _g !== void 0 ? _g : false;\n        this.requestOverrides = options.requestOverrides;\n    }\n}\n/**\n * Creates a new pipeline request with the given options.\n * This method is to allow for the easy setting of default values and not required.\n * @param options - The options to create the request with.\n */\nfunction createPipelineRequest$1(options) {\n    return new PipelineRequestImpl(options);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst ValidPhaseNames = new Set([\"Deserialize\", \"Serialize\", \"Retry\", \"Sign\"]);\n/**\n * A private implementation of Pipeline.\n * Do not export this class from the package.\n * @internal\n */\nclass HttpPipeline {\n    constructor(policies) {\n        var _a;\n        this._policies = [];\n        this._policies = (_a = policies === null || policies === void 0 ? void 0 : policies.slice(0)) !== null && _a !== void 0 ? _a : [];\n        this._orderedPolicies = undefined;\n    }\n    addPolicy(policy, options = {}) {\n        if (options.phase && options.afterPhase) {\n            throw new Error(\"Policies inside a phase cannot specify afterPhase.\");\n        }\n        if (options.phase && !ValidPhaseNames.has(options.phase)) {\n            throw new Error(`Invalid phase name: ${options.phase}`);\n        }\n        if (options.afterPhase && !ValidPhaseNames.has(options.afterPhase)) {\n            throw new Error(`Invalid afterPhase name: ${options.afterPhase}`);\n        }\n        this._policies.push({\n            policy,\n            options,\n        });\n        this._orderedPolicies = undefined;\n    }\n    removePolicy(options) {\n        const removedPolicies = [];\n        this._policies = this._policies.filter((policyDescriptor) => {\n            if ((options.name && policyDescriptor.policy.name === options.name) ||\n                (options.phase && policyDescriptor.options.phase === options.phase)) {\n                removedPolicies.push(policyDescriptor.policy);\n                return false;\n            }\n            else {\n                return true;\n            }\n        });\n        this._orderedPolicies = undefined;\n        return removedPolicies;\n    }\n    sendRequest(httpClient, request) {\n        const policies = this.getOrderedPolicies();\n        const pipeline = policies.reduceRight((next, policy) => {\n            return (req) => {\n                return policy.sendRequest(req, next);\n            };\n        }, (req) => httpClient.sendRequest(req));\n        return pipeline(request);\n    }\n    getOrderedPolicies() {\n        if (!this._orderedPolicies) {\n            this._orderedPolicies = this.orderPolicies();\n        }\n        return this._orderedPolicies;\n    }\n    clone() {\n        return new HttpPipeline(this._policies);\n    }\n    static create() {\n        return new HttpPipeline();\n    }\n    orderPolicies() {\n        /**\n         * The goal of this method is to reliably order pipeline policies\n         * based on their declared requirements when they were added.\n         *\n         * Order is first determined by phase:\n         *\n         * 1. Serialize Phase\n         * 2. Policies not in a phase\n         * 3. Deserialize Phase\n         * 4. Retry Phase\n         * 5. Sign Phase\n         *\n         * Within each phase, policies are executed in the order\n         * they were added unless they were specified to execute\n         * before/after other policies or after a particular phase.\n         *\n         * To determine the final order, we will walk the policy list\n         * in phase order multiple times until all dependencies are\n         * satisfied.\n         *\n         * `afterPolicies` are the set of policies that must be\n         * executed before a given policy. This requirement is\n         * considered satisfied when each of the listed policies\n         * have been scheduled.\n         *\n         * `beforePolicies` are the set of policies that must be\n         * executed after a given policy. Since this dependency\n         * can be expressed by converting it into a equivalent\n         * `afterPolicies` declarations, they are normalized\n         * into that form for simplicity.\n         *\n         * An `afterPhase` dependency is considered satisfied when all\n         * policies in that phase have scheduled.\n         *\n         */\n        const result = [];\n        // Track all policies we know about.\n        const policyMap = new Map();\n        function createPhase(name) {\n            return {\n                name,\n                policies: new Set(),\n                hasRun: false,\n                hasAfterPolicies: false,\n            };\n        }\n        // Track policies for each phase.\n        const serializePhase = createPhase(\"Serialize\");\n        const noPhase = createPhase(\"None\");\n        const deserializePhase = createPhase(\"Deserialize\");\n        const retryPhase = createPhase(\"Retry\");\n        const signPhase = createPhase(\"Sign\");\n        // a list of phases in order\n        const orderedPhases = [serializePhase, noPhase, deserializePhase, retryPhase, signPhase];\n        // Small helper function to map phase name to each Phase\n        function getPhase(phase) {\n            if (phase === \"Retry\") {\n                return retryPhase;\n            }\n            else if (phase === \"Serialize\") {\n                return serializePhase;\n            }\n            else if (phase === \"Deserialize\") {\n                return deserializePhase;\n            }\n            else if (phase === \"Sign\") {\n                return signPhase;\n            }\n            else {\n                return noPhase;\n            }\n        }\n        // First walk each policy and create a node to track metadata.\n        for (const descriptor of this._policies) {\n            const policy = descriptor.policy;\n            const options = descriptor.options;\n            const policyName = policy.name;\n            if (policyMap.has(policyName)) {\n                throw new Error(\"Duplicate policy names not allowed in pipeline\");\n            }\n            const node = {\n                policy,\n                dependsOn: new Set(),\n                dependants: new Set(),\n            };\n            if (options.afterPhase) {\n                node.afterPhase = getPhase(options.afterPhase);\n                node.afterPhase.hasAfterPolicies = true;\n            }\n            policyMap.set(policyName, node);\n            const phase = getPhase(options.phase);\n            phase.policies.add(node);\n        }\n        // Now that each policy has a node, connect dependency references.\n        for (const descriptor of this._policies) {\n            const { policy, options } = descriptor;\n            const policyName = policy.name;\n            const node = policyMap.get(policyName);\n            if (!node) {\n                throw new Error(`Missing node for policy ${policyName}`);\n            }\n            if (options.afterPolicies) {\n                for (const afterPolicyName of options.afterPolicies) {\n                    const afterNode = policyMap.get(afterPolicyName);\n                    if (afterNode) {\n                        // Linking in both directions helps later\n                        // when we want to notify dependants.\n                        node.dependsOn.add(afterNode);\n                        afterNode.dependants.add(node);\n                    }\n                }\n            }\n            if (options.beforePolicies) {\n                for (const beforePolicyName of options.beforePolicies) {\n                    const beforeNode = policyMap.get(beforePolicyName);\n                    if (beforeNode) {\n                        // To execute before another node, make it\n                        // depend on the current node.\n                        beforeNode.dependsOn.add(node);\n                        node.dependants.add(beforeNode);\n                    }\n                }\n            }\n        }\n        function walkPhase(phase) {\n            phase.hasRun = true;\n            // Sets iterate in insertion order\n            for (const node of phase.policies) {\n                if (node.afterPhase && (!node.afterPhase.hasRun || node.afterPhase.policies.size)) {\n                    // If this node is waiting on a phase to complete,\n                    // we need to skip it for now.\n                    // Even if the phase is empty, we should wait for it\n                    // to be walked to avoid re-ordering policies.\n                    continue;\n                }\n                if (node.dependsOn.size === 0) {\n                    // If there's nothing else we're waiting for, we can\n                    // add this policy to the result list.\n                    result.push(node.policy);\n                    // Notify anything that depends on this policy that\n                    // the policy has been scheduled.\n                    for (const dependant of node.dependants) {\n                        dependant.dependsOn.delete(node);\n                    }\n                    policyMap.delete(node.policy.name);\n                    phase.policies.delete(node);\n                }\n            }\n        }\n        function walkPhases() {\n            for (const phase of orderedPhases) {\n                walkPhase(phase);\n                // if the phase isn't complete\n                if (phase.policies.size > 0 && phase !== noPhase) {\n                    if (!noPhase.hasRun) {\n                        // Try running noPhase to see if that unblocks this phase next tick.\n                        // This can happen if a phase that happens before noPhase\n                        // is waiting on a noPhase policy to complete.\n                        walkPhase(noPhase);\n                    }\n                    // Don't proceed to the next phase until this phase finishes.\n                    return;\n                }\n                if (phase.hasAfterPolicies) {\n                    // Run any policies unblocked by this phase\n                    walkPhase(noPhase);\n                }\n            }\n        }\n        // Iterate until we've put every node in the result list.\n        let iteration = 0;\n        while (policyMap.size > 0) {\n            iteration++;\n            const initialResultLength = result.length;\n            // Keep walking each phase in order until we can order every node.\n            walkPhases();\n            // The result list *should* get at least one larger each time\n            // after the first full pass.\n            // Otherwise, we're going to loop forever.\n            if (result.length <= initialResultLength && iteration > 1) {\n                throw new Error(\"Cannot satisfy policy dependencies due to requirements cycle.\");\n            }\n        }\n        return result;\n    }\n}\n/**\n * Creates a totally empty pipeline.\n * Useful for testing or creating a custom one.\n */\nfunction createEmptyPipeline$1() {\n    return HttpPipeline.create();\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Helper to determine when an input is a generic JS object.\n * @returns true when input is an object type that is not null, Array, RegExp, or Date.\n */\nfunction isObject$2(input) {\n    return (typeof input === \"object\" &&\n        input !== null &&\n        !Array.isArray(input) &&\n        !(input instanceof RegExp) &&\n        !(input instanceof Date));\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Typeguard for an error object shape (has name and message)\n * @param e - Something caught by a catch clause.\n */\nfunction isError$1(e) {\n    if (isObject$2(e)) {\n        const hasName = typeof e.name === \"string\";\n        const hasMessage = typeof e.message === \"string\";\n        return hasName && hasMessage;\n    }\n    return false;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst custom = inspect$1.custom;\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst RedactedString = \"REDACTED\";\n// Make sure this list is up-to-date with the one under core/logger/Readme#Keyconcepts\nconst defaultAllowedHeaderNames = [\n    \"x-ms-client-request-id\",\n    \"x-ms-return-client-request-id\",\n    \"x-ms-useragent\",\n    \"x-ms-correlation-request-id\",\n    \"x-ms-request-id\",\n    \"client-request-id\",\n    \"ms-cv\",\n    \"return-client-request-id\",\n    \"traceparent\",\n    \"Access-Control-Allow-Credentials\",\n    \"Access-Control-Allow-Headers\",\n    \"Access-Control-Allow-Methods\",\n    \"Access-Control-Allow-Origin\",\n    \"Access-Control-Expose-Headers\",\n    \"Access-Control-Max-Age\",\n    \"Access-Control-Request-Headers\",\n    \"Access-Control-Request-Method\",\n    \"Origin\",\n    \"Accept\",\n    \"Accept-Encoding\",\n    \"Cache-Control\",\n    \"Connection\",\n    \"Content-Length\",\n    \"Content-Type\",\n    \"Date\",\n    \"ETag\",\n    \"Expires\",\n    \"If-Match\",\n    \"If-Modified-Since\",\n    \"If-None-Match\",\n    \"If-Unmodified-Since\",\n    \"Last-Modified\",\n    \"Pragma\",\n    \"Request-Id\",\n    \"Retry-After\",\n    \"Server\",\n    \"Transfer-Encoding\",\n    \"User-Agent\",\n    \"WWW-Authenticate\",\n];\nconst defaultAllowedQueryParameters = [\"api-version\"];\n/**\n * A utility class to sanitize objects for logging.\n */\nclass Sanitizer {\n    constructor({ additionalAllowedHeaderNames: allowedHeaderNames = [], additionalAllowedQueryParameters: allowedQueryParameters = [], } = {}) {\n        allowedHeaderNames = defaultAllowedHeaderNames.concat(allowedHeaderNames);\n        allowedQueryParameters = defaultAllowedQueryParameters.concat(allowedQueryParameters);\n        this.allowedHeaderNames = new Set(allowedHeaderNames.map((n) => n.toLowerCase()));\n        this.allowedQueryParameters = new Set(allowedQueryParameters.map((p) => p.toLowerCase()));\n    }\n    /**\n     * Sanitizes an object for logging.\n     * @param obj - The object to sanitize\n     * @returns - The sanitized object as a string\n     */\n    sanitize(obj) {\n        const seen = new Set();\n        return JSON.stringify(obj, (key, value) => {\n            // Ensure Errors include their interesting non-enumerable members\n            if (value instanceof Error) {\n                return Object.assign(Object.assign({}, value), { name: value.name, message: value.message });\n            }\n            if (key === \"headers\") {\n                return this.sanitizeHeaders(value);\n            }\n            else if (key === \"url\") {\n                return this.sanitizeUrl(value);\n            }\n            else if (key === \"query\") {\n                return this.sanitizeQuery(value);\n            }\n            else if (key === \"body\") {\n                // Don't log the request body\n                return undefined;\n            }\n            else if (key === \"response\") {\n                // Don't log response again\n                return undefined;\n            }\n            else if (key === \"operationSpec\") {\n                // When using sendOperationRequest, the request carries a massive\n                // field with the autorest spec. No need to log it.\n                return undefined;\n            }\n            else if (Array.isArray(value) || isObject$2(value)) {\n                if (seen.has(value)) {\n                    return \"[Circular]\";\n                }\n                seen.add(value);\n            }\n            return value;\n        }, 2);\n    }\n    /**\n     * Sanitizes a URL for logging.\n     * @param value - The URL to sanitize\n     * @returns - The sanitized URL as a string\n     */\n    sanitizeUrl(value) {\n        if (typeof value !== \"string\" || value === null || value === \"\") {\n            return value;\n        }\n        const url = new URL(value);\n        if (!url.search) {\n            return value;\n        }\n        for (const [key] of url.searchParams) {\n            if (!this.allowedQueryParameters.has(key.toLowerCase())) {\n                url.searchParams.set(key, RedactedString);\n            }\n        }\n        return url.toString();\n    }\n    sanitizeHeaders(obj) {\n        const sanitized = {};\n        for (const key of Object.keys(obj)) {\n            if (this.allowedHeaderNames.has(key.toLowerCase())) {\n                sanitized[key] = obj[key];\n            }\n            else {\n                sanitized[key] = RedactedString;\n            }\n        }\n        return sanitized;\n    }\n    sanitizeQuery(value) {\n        if (typeof value !== \"object\" || value === null) {\n            return value;\n        }\n        const sanitized = {};\n        for (const k of Object.keys(value)) {\n            if (this.allowedQueryParameters.has(k.toLowerCase())) {\n                sanitized[k] = value[k];\n            }\n            else {\n                sanitized[k] = RedactedString;\n            }\n        }\n        return sanitized;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst errorSanitizer = new Sanitizer();\n/**\n * A custom error type for failed pipeline requests.\n */\nlet RestError$1 = class RestError extends Error {\n    constructor(message, options = {}) {\n        super(message);\n        this.name = \"RestError\";\n        this.code = options.code;\n        this.statusCode = options.statusCode;\n        // The request and response may contain sensitive information in the headers or body.\n        // To help prevent this sensitive information being accidentally logged, the request and response\n        // properties are marked as non-enumerable here. This prevents them showing up in the output of\n        // JSON.stringify and console.log.\n        Object.defineProperty(this, \"request\", { value: options.request, enumerable: false });\n        Object.defineProperty(this, \"response\", { value: options.response, enumerable: false });\n        // Logging method for util.inspect in Node\n        Object.defineProperty(this, custom, {\n            value: () => {\n                // Extract non-enumerable properties and add them back. This is OK since in this output the request and\n                // response get sanitized.\n                return `RestError: ${this.message} \\n ${errorSanitizer.sanitize(Object.assign(Object.assign({}, this), { request: this.request, response: this.response }))}`;\n            },\n            enumerable: false,\n        });\n        Object.setPrototypeOf(this, RestError.prototype);\n    }\n};\n/**\n * Something went wrong when making the request.\n * This means the actual request failed for some reason,\n * such as a DNS issue or the connection being lost.\n */\nRestError$1.REQUEST_SEND_ERROR = \"REQUEST_SEND_ERROR\";\n/**\n * This means that parsing the response from the server failed.\n * It may have been malformed.\n */\nRestError$1.PARSE_ERROR = \"PARSE_ERROR\";\n/**\n * Typeguard for RestError\n * @param e - Something caught by a catch clause.\n */\nfunction isRestError$1(e) {\n    if (e instanceof RestError$1) {\n        return true;\n    }\n    return isError$1(e) && e.name === \"RestError\";\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The helper that transforms bytes with specific character encoding into string\n * @param bytes - the uint8array bytes\n * @param format - the format we use to encode the byte\n * @returns a string of the encoded string\n */\n/**\n * The helper that transforms string to specific character encoded bytes array.\n * @param value - the string to be converted\n * @param format - the format we use to decode the value\n * @returns a uint8array\n */\nfunction stringToUint8Array(value, format) {\n    return Buffer.from(value, format);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst logger$3 = createClientLogger$1(\"ts-http-runtime\");\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst DEFAULT_TLS_SETTINGS = {};\nfunction isReadableStream(body) {\n    return body && typeof body.pipe === \"function\";\n}\nfunction isStreamComplete(stream) {\n    if (stream.readable === false) {\n        return Promise.resolve();\n    }\n    return new Promise((resolve) => {\n        const handler = () => {\n            resolve();\n            stream.removeListener(\"close\", handler);\n            stream.removeListener(\"end\", handler);\n            stream.removeListener(\"error\", handler);\n        };\n        stream.on(\"close\", handler);\n        stream.on(\"end\", handler);\n        stream.on(\"error\", handler);\n    });\n}\nfunction isArrayBuffer(body) {\n    return body && typeof body.byteLength === \"number\";\n}\nclass ReportTransform extends Transform {\n    // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type\n    _transform(chunk, _encoding, callback) {\n        this.push(chunk);\n        this.loadedBytes += chunk.length;\n        try {\n            this.progressCallback({ loadedBytes: this.loadedBytes });\n            callback();\n        }\n        catch (e) {\n            callback(e);\n        }\n    }\n    constructor(progressCallback) {\n        super();\n        this.loadedBytes = 0;\n        this.progressCallback = progressCallback;\n    }\n}\n/**\n * A HttpClient implementation that uses Node's \"https\" module to send HTTPS requests.\n * @internal\n */\nclass NodeHttpClient {\n    constructor() {\n        this.cachedHttpsAgents = new WeakMap();\n    }\n    /**\n     * Makes a request over an underlying transport layer and returns the response.\n     * @param request - The request to be made.\n     */\n    async sendRequest(request) {\n        var _a, _b, _c;\n        const abortController = new AbortController();\n        let abortListener;\n        if (request.abortSignal) {\n            if (request.abortSignal.aborted) {\n                throw new AbortError$4(\"The operation was aborted. Request has already been canceled.\");\n            }\n            abortListener = (event) => {\n                if (event.type === \"abort\") {\n                    abortController.abort();\n                }\n            };\n            request.abortSignal.addEventListener(\"abort\", abortListener);\n        }\n        let timeoutId;\n        if (request.timeout > 0) {\n            timeoutId = setTimeout(() => {\n                const sanitizer = new Sanitizer();\n                logger$3.info(`request to '${sanitizer.sanitizeUrl(request.url)}' timed out. canceling...`);\n                abortController.abort();\n            }, request.timeout);\n        }\n        const acceptEncoding = request.headers.get(\"Accept-Encoding\");\n        const shouldDecompress = (acceptEncoding === null || acceptEncoding === void 0 ? void 0 : acceptEncoding.includes(\"gzip\")) || (acceptEncoding === null || acceptEncoding === void 0 ? void 0 : acceptEncoding.includes(\"deflate\"));\n        let body = typeof request.body === \"function\" ? request.body() : request.body;\n        if (body && !request.headers.has(\"Content-Length\")) {\n            const bodyLength = getBodyLength(body);\n            if (bodyLength !== null) {\n                request.headers.set(\"Content-Length\", bodyLength);\n            }\n        }\n        let responseStream;\n        try {\n            if (body && request.onUploadProgress) {\n                const onUploadProgress = request.onUploadProgress;\n                const uploadReportStream = new ReportTransform(onUploadProgress);\n                uploadReportStream.on(\"error\", (e) => {\n                    logger$3.error(\"Error in upload progress\", e);\n                });\n                if (isReadableStream(body)) {\n                    body.pipe(uploadReportStream);\n                }\n                else {\n                    uploadReportStream.end(body);\n                }\n                body = uploadReportStream;\n            }\n            const res = await this.makeRequest(request, abortController, body);\n            if (timeoutId !== undefined) {\n                clearTimeout(timeoutId);\n            }\n            const headers = getResponseHeaders(res);\n            const status = (_a = res.statusCode) !== null && _a !== void 0 ? _a : 0;\n            const response = {\n                status,\n                headers,\n                request,\n            };\n            // Responses to HEAD must not have a body.\n            // If they do return a body, that body must be ignored.\n            if (request.method === \"HEAD\") {\n                // call resume() and not destroy() to avoid closing the socket\n                // and losing keep alive\n                res.resume();\n                return response;\n            }\n            responseStream = shouldDecompress ? getDecodedResponseStream(res, headers) : res;\n            const onDownloadProgress = request.onDownloadProgress;\n            if (onDownloadProgress) {\n                const downloadReportStream = new ReportTransform(onDownloadProgress);\n                downloadReportStream.on(\"error\", (e) => {\n                    logger$3.error(\"Error in download progress\", e);\n                });\n                responseStream.pipe(downloadReportStream);\n                responseStream = downloadReportStream;\n            }\n            if (\n            // Value of POSITIVE_INFINITY in streamResponseStatusCodes is considered as any status code\n            ((_b = request.streamResponseStatusCodes) === null || _b === void 0 ? void 0 : _b.has(Number.POSITIVE_INFINITY)) ||\n                ((_c = request.streamResponseStatusCodes) === null || _c === void 0 ? void 0 : _c.has(response.status))) {\n                response.readableStreamBody = responseStream;\n            }\n            else {\n                response.bodyAsText = await streamToText(responseStream);\n            }\n            return response;\n        }\n        finally {\n            // clean up event listener\n            if (request.abortSignal && abortListener) {\n                let uploadStreamDone = Promise.resolve();\n                if (isReadableStream(body)) {\n                    uploadStreamDone = isStreamComplete(body);\n                }\n                let downloadStreamDone = Promise.resolve();\n                if (isReadableStream(responseStream)) {\n                    downloadStreamDone = isStreamComplete(responseStream);\n                }\n                Promise.all([uploadStreamDone, downloadStreamDone])\n                    .then(() => {\n                    var _a;\n                    // eslint-disable-next-line promise/always-return\n                    if (abortListener) {\n                        (_a = request.abortSignal) === null || _a === void 0 ? void 0 : _a.removeEventListener(\"abort\", abortListener);\n                    }\n                })\n                    .catch((e) => {\n                    logger$3.warning(\"Error when cleaning up abortListener on httpRequest\", e);\n                });\n            }\n        }\n    }\n    makeRequest(request, abortController, body) {\n        var _a;\n        const url = new URL(request.url);\n        const isInsecure = url.protocol !== \"https:\";\n        if (isInsecure && !request.allowInsecureConnection) {\n            throw new Error(`Cannot connect to ${request.url} while allowInsecureConnection is false.`);\n        }\n        const agent = (_a = request.agent) !== null && _a !== void 0 ? _a : this.getOrCreateAgent(request, isInsecure);\n        const options = Object.assign({ agent, hostname: url.hostname, path: `${url.pathname}${url.search}`, port: url.port, method: request.method, headers: request.headers.toJSON({ preserveCase: true }) }, request.requestOverrides);\n        return new Promise((resolve, reject) => {\n            const req = isInsecure ? http.request(options, resolve) : https.request(options, resolve);\n            req.once(\"error\", (err) => {\n                var _a;\n                reject(new RestError$1(err.message, { code: (_a = err.code) !== null && _a !== void 0 ? _a : RestError$1.REQUEST_SEND_ERROR, request }));\n            });\n            abortController.signal.addEventListener(\"abort\", () => {\n                const abortError = new AbortError$4(\"The operation was aborted. Rejecting from abort signal callback while making request.\");\n                req.destroy(abortError);\n                reject(abortError);\n            });\n            if (body && isReadableStream(body)) {\n                body.pipe(req);\n            }\n            else if (body) {\n                if (typeof body === \"string\" || Buffer.isBuffer(body)) {\n                    req.end(body);\n                }\n                else if (isArrayBuffer(body)) {\n                    req.end(ArrayBuffer.isView(body) ? Buffer.from(body.buffer) : Buffer.from(body));\n                }\n                else {\n                    logger$3.error(\"Unrecognized body type\", body);\n                    reject(new RestError$1(\"Unrecognized body type\"));\n                }\n            }\n            else {\n                // streams don't like \"undefined\" being passed as data\n                req.end();\n            }\n        });\n    }\n    getOrCreateAgent(request, isInsecure) {\n        var _a;\n        const disableKeepAlive = request.disableKeepAlive;\n        // Handle Insecure requests first\n        if (isInsecure) {\n            if (disableKeepAlive) {\n                // keepAlive:false is the default so we don't need a custom Agent\n                return http.globalAgent;\n            }\n            if (!this.cachedHttpAgent) {\n                // If there is no cached agent create a new one and cache it.\n                this.cachedHttpAgent = new http.Agent({ keepAlive: true });\n            }\n            return this.cachedHttpAgent;\n        }\n        else {\n            if (disableKeepAlive && !request.tlsSettings) {\n                // When there are no tlsSettings and keepAlive is false\n                // we don't need a custom agent\n                return https.globalAgent;\n            }\n            // We use the tlsSettings to index cached clients\n            const tlsSettings = (_a = request.tlsSettings) !== null && _a !== void 0 ? _a : DEFAULT_TLS_SETTINGS;\n            // Get the cached agent or create a new one with the\n            // provided values for keepAlive and tlsSettings\n            let agent = this.cachedHttpsAgents.get(tlsSettings);\n            if (agent && agent.options.keepAlive === !disableKeepAlive) {\n                return agent;\n            }\n            logger$3.info(\"No cached TLS Agent exist, creating a new Agent\");\n            agent = new https.Agent(Object.assign({ \n                // keepAlive is true if disableKeepAlive is false.\n                keepAlive: !disableKeepAlive }, tlsSettings));\n            this.cachedHttpsAgents.set(tlsSettings, agent);\n            return agent;\n        }\n    }\n}\nfunction getResponseHeaders(res) {\n    const headers = createHttpHeaders$1();\n    for (const header of Object.keys(res.headers)) {\n        const value = res.headers[header];\n        if (Array.isArray(value)) {\n            if (value.length > 0) {\n                headers.set(header, value[0]);\n            }\n        }\n        else if (value) {\n            headers.set(header, value);\n        }\n    }\n    return headers;\n}\nfunction getDecodedResponseStream(stream, headers) {\n    const contentEncoding = headers.get(\"Content-Encoding\");\n    if (contentEncoding === \"gzip\") {\n        const unzip = zlib.createGunzip();\n        stream.pipe(unzip);\n        return unzip;\n    }\n    else if (contentEncoding === \"deflate\") {\n        const inflate = zlib.createInflate();\n        stream.pipe(inflate);\n        return inflate;\n    }\n    return stream;\n}\nfunction streamToText(stream) {\n    return new Promise((resolve, reject) => {\n        const buffer = [];\n        stream.on(\"data\", (chunk) => {\n            if (Buffer.isBuffer(chunk)) {\n                buffer.push(chunk);\n            }\n            else {\n                buffer.push(Buffer.from(chunk));\n            }\n        });\n        stream.on(\"end\", () => {\n            resolve(Buffer.concat(buffer).toString(\"utf8\"));\n        });\n        stream.on(\"error\", (e) => {\n            if (e && (e === null || e === void 0 ? void 0 : e.name) === \"AbortError\") {\n                reject(e);\n            }\n            else {\n                reject(new RestError$1(`Error reading response as text: ${e.message}`, {\n                    code: RestError$1.PARSE_ERROR,\n                }));\n            }\n        });\n    });\n}\n/** @internal */\nfunction getBodyLength(body) {\n    if (!body) {\n        return 0;\n    }\n    else if (Buffer.isBuffer(body)) {\n        return body.length;\n    }\n    else if (isReadableStream(body)) {\n        return null;\n    }\n    else if (isArrayBuffer(body)) {\n        return body.byteLength;\n    }\n    else if (typeof body === \"string\") {\n        return Buffer.from(body).length;\n    }\n    else {\n        return null;\n    }\n}\n/**\n * Create a new HttpClient instance for the NodeJS environment.\n * @internal\n */\nfunction createNodeHttpClient() {\n    return new NodeHttpClient();\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Create the correct HttpClient for the current environment.\n */\nfunction createDefaultHttpClient$1() {\n    return createNodeHttpClient();\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the logPolicy.\n */\nconst logPolicyName = \"logPolicy\";\n/**\n * A policy that logs all requests and responses.\n * @param options - Options to configure logPolicy.\n */\nfunction logPolicy$1(options = {}) {\n    var _a;\n    const logger = (_a = options.logger) !== null && _a !== void 0 ? _a : logger$3.info;\n    const sanitizer = new Sanitizer({\n        additionalAllowedHeaderNames: options.additionalAllowedHeaderNames,\n        additionalAllowedQueryParameters: options.additionalAllowedQueryParameters,\n    });\n    return {\n        name: logPolicyName,\n        async sendRequest(request, next) {\n            if (!logger.enabled) {\n                return next(request);\n            }\n            logger(`Request: ${sanitizer.sanitize(request)}`);\n            const response = await next(request);\n            logger(`Response status code: ${response.status}`);\n            logger(`Headers: ${sanitizer.sanitize(response.headers)}`);\n            return response;\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the redirectPolicy.\n */\nconst redirectPolicyName$1 = \"redirectPolicy\";\n/**\n * Methods that are allowed to follow redirects 301 and 302\n */\nconst allowedRedirect = [\"GET\", \"HEAD\"];\n/**\n * A policy to follow Location headers from the server in order\n * to support server-side redirection.\n * In the browser, this policy is not used.\n * @param options - Options to control policy behavior.\n */\nfunction redirectPolicy$1(options = {}) {\n    const { maxRetries = 20 } = options;\n    return {\n        name: redirectPolicyName$1,\n        async sendRequest(request, next) {\n            const response = await next(request);\n            return handleRedirect(next, response, maxRetries);\n        },\n    };\n}\nasync function handleRedirect(next, response, maxRetries, currentRetries = 0) {\n    const { request, status, headers } = response;\n    const locationHeader = headers.get(\"location\");\n    if (locationHeader &&\n        (status === 300 ||\n            (status === 301 && allowedRedirect.includes(request.method)) ||\n            (status === 302 && allowedRedirect.includes(request.method)) ||\n            (status === 303 && request.method === \"POST\") ||\n            status === 307) &&\n        currentRetries < maxRetries) {\n        const url = new URL(locationHeader, request.url);\n        request.url = url.toString();\n        // POST request with Status code 303 should be converted into a\n        // redirected GET request if the redirect url is present in the location header\n        if (status === 303) {\n            request.method = \"GET\";\n            request.headers.delete(\"Content-Length\");\n            delete request.body;\n        }\n        request.headers.delete(\"Authorization\");\n        const res = await next(request);\n        return handleRedirect(next, res, maxRetries, currentRetries + 1);\n    }\n    return response;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst DEFAULT_RETRY_POLICY_COUNT = 3;\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the decompressResponsePolicy.\n */\nconst decompressResponsePolicyName$1 = \"decompressResponsePolicy\";\n/**\n * A policy to enable response decompression according to Accept-Encoding header\n * https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding\n */\nfunction decompressResponsePolicy$1() {\n    return {\n        name: decompressResponsePolicyName$1,\n        async sendRequest(request, next) {\n            // HEAD requests have no body\n            if (request.method !== \"HEAD\") {\n                request.headers.set(\"Accept-Encoding\", \"gzip,deflate\");\n            }\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Returns a random integer value between a lower and upper bound,\n * inclusive of both bounds.\n * Note that this uses Math.random and isn't secure. If you need to use\n * this for any kind of security purpose, find a better source of random.\n * @param min - The smallest integer value allowed.\n * @param max - The largest integer value allowed.\n */\nfunction getRandomIntegerInclusive(min, max) {\n    // Make sure inputs are integers.\n    min = Math.ceil(min);\n    max = Math.floor(max);\n    // Pick a random offset from zero to the size of the range.\n    // Since Math.random() can never return 1, we have to make the range one larger\n    // in order to be inclusive of the maximum value after we take the floor.\n    const offset = Math.floor(Math.random() * (max - min + 1));\n    return offset + min;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Calculates the delay interval for retry attempts using exponential delay with jitter.\n * @param retryAttempt - The current retry attempt number.\n * @param config - The exponential retry configuration.\n * @returns An object containing the calculated retry delay.\n */\nfunction calculateRetryDelay(retryAttempt, config) {\n    // Exponentially increase the delay each time\n    const exponentialDelay = config.retryDelayInMs * Math.pow(2, retryAttempt);\n    // Don't let the delay exceed the maximum\n    const clampedDelay = Math.min(config.maxRetryDelayInMs, exponentialDelay);\n    // Allow the final value to have some \"jitter\" (within 50% of the delay size) so\n    // that retries across multiple clients don't occur simultaneously.\n    const retryAfterInMs = clampedDelay / 2 + getRandomIntegerInclusive(0, clampedDelay / 2);\n    return { retryAfterInMs };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst StandardAbortMessage$1 = \"The operation was aborted.\";\n/**\n * A wrapper for setTimeout that resolves a promise after delayInMs milliseconds.\n * @param delayInMs - The number of milliseconds to be delayed.\n * @param value - The value to be resolved with after a timeout of t milliseconds.\n * @param options - The options for delay - currently abort options\n *                  - abortSignal - The abortSignal associated with containing operation.\n *                  - abortErrorMsg - The abort error message associated with containing operation.\n * @returns Resolved promise\n */\nfunction delay$3(delayInMs, value, options) {\n    return new Promise((resolve, reject) => {\n        let timer = undefined;\n        let onAborted = undefined;\n        const rejectOnAbort = () => {\n            return reject(new AbortError$4((options === null || options === void 0 ? void 0 : options.abortErrorMsg) ? options === null || options === void 0 ? void 0 : options.abortErrorMsg : StandardAbortMessage$1));\n        };\n        const removeListeners = () => {\n            if ((options === null || options === void 0 ? void 0 : options.abortSignal) && onAborted) {\n                options.abortSignal.removeEventListener(\"abort\", onAborted);\n            }\n        };\n        onAborted = () => {\n            if (timer) {\n                clearTimeout(timer);\n            }\n            removeListeners();\n            return rejectOnAbort();\n        };\n        if ((options === null || options === void 0 ? void 0 : options.abortSignal) && options.abortSignal.aborted) {\n            return rejectOnAbort();\n        }\n        timer = setTimeout(() => {\n            removeListeners();\n            resolve(value);\n        }, delayInMs);\n        if (options === null || options === void 0 ? void 0 : options.abortSignal) {\n            options.abortSignal.addEventListener(\"abort\", onAborted);\n        }\n    });\n}\n/**\n * @internal\n * @returns the parsed value or undefined if the parsed value is invalid.\n */\nfunction parseHeaderValueAsNumber(response, headerName) {\n    const value = response.headers.get(headerName);\n    if (!value)\n        return;\n    const valueAsNum = Number(value);\n    if (Number.isNaN(valueAsNum))\n        return;\n    return valueAsNum;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The header that comes back from services representing\n * the amount of time (minimum) to wait to retry (in seconds or timestamp after which we can retry).\n */\nconst RetryAfterHeader = \"Retry-After\";\n/**\n * The headers that come back from services representing\n * the amount of time (minimum) to wait to retry.\n *\n * \"retry-after-ms\", \"x-ms-retry-after-ms\" : milliseconds\n * \"Retry-After\" : seconds or timestamp\n */\nconst AllRetryAfterHeaders = [\"retry-after-ms\", \"x-ms-retry-after-ms\", RetryAfterHeader];\n/**\n * A response is a throttling retry response if it has a throttling status code (429 or 503),\n * as long as one of the [ \"Retry-After\" or \"retry-after-ms\" or \"x-ms-retry-after-ms\" ] headers has a valid value.\n *\n * Returns the `retryAfterInMs` value if the response is a throttling retry response.\n * If not throttling retry response, returns `undefined`.\n *\n * @internal\n */\nfunction getRetryAfterInMs(response) {\n    if (!(response && [429, 503].includes(response.status)))\n        return undefined;\n    try {\n        // Headers: \"retry-after-ms\", \"x-ms-retry-after-ms\", \"Retry-After\"\n        for (const header of AllRetryAfterHeaders) {\n            const retryAfterValue = parseHeaderValueAsNumber(response, header);\n            if (retryAfterValue === 0 || retryAfterValue) {\n                // \"Retry-After\" header ==> seconds\n                // \"retry-after-ms\", \"x-ms-retry-after-ms\" headers ==> milli-seconds\n                const multiplyingFactor = header === RetryAfterHeader ? 1000 : 1;\n                return retryAfterValue * multiplyingFactor; // in milli-seconds\n            }\n        }\n        // RetryAfterHeader (\"Retry-After\") has a special case where it might be formatted as a date instead of a number of seconds\n        const retryAfterHeader = response.headers.get(RetryAfterHeader);\n        if (!retryAfterHeader)\n            return;\n        const date = Date.parse(retryAfterHeader);\n        const diff = date - Date.now();\n        // negative diff would mean a date in the past, so retry asap with 0 milliseconds\n        return Number.isFinite(diff) ? Math.max(0, diff) : undefined;\n    }\n    catch (_a) {\n        return undefined;\n    }\n}\n/**\n * A response is a retry response if it has a throttling status code (429 or 503),\n * as long as one of the [ \"Retry-After\" or \"retry-after-ms\" or \"x-ms-retry-after-ms\" ] headers has a valid value.\n */\nfunction isThrottlingRetryResponse(response) {\n    return Number.isFinite(getRetryAfterInMs(response));\n}\nfunction throttlingRetryStrategy() {\n    return {\n        name: \"throttlingRetryStrategy\",\n        retry({ response }) {\n            const retryAfterInMs = getRetryAfterInMs(response);\n            if (!Number.isFinite(retryAfterInMs)) {\n                return { skipStrategy: true };\n            }\n            return {\n                retryAfterInMs,\n            };\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n// intervals are in milliseconds\nconst DEFAULT_CLIENT_RETRY_INTERVAL = 1000;\nconst DEFAULT_CLIENT_MAX_RETRY_INTERVAL = 1000 * 64;\n/**\n * A retry strategy that retries with an exponentially increasing delay in these two cases:\n * - When there are errors in the underlying transport layer (e.g. DNS lookup failures).\n * - Or otherwise if the outgoing request fails (408, greater or equal than 500, except for 501 and 505).\n */\nfunction exponentialRetryStrategy(options = {}) {\n    var _a, _b;\n    const retryInterval = (_a = options.retryDelayInMs) !== null && _a !== void 0 ? _a : DEFAULT_CLIENT_RETRY_INTERVAL;\n    const maxRetryInterval = (_b = options.maxRetryDelayInMs) !== null && _b !== void 0 ? _b : DEFAULT_CLIENT_MAX_RETRY_INTERVAL;\n    return {\n        name: \"exponentialRetryStrategy\",\n        retry({ retryCount, response, responseError }) {\n            const matchedSystemError = isSystemError(responseError);\n            const ignoreSystemErrors = matchedSystemError && options.ignoreSystemErrors;\n            const isExponential = isExponentialRetryResponse(response);\n            const ignoreExponentialResponse = isExponential && options.ignoreHttpStatusCodes;\n            const unknownResponse = response && (isThrottlingRetryResponse(response) || !isExponential);\n            if (unknownResponse || ignoreExponentialResponse || ignoreSystemErrors) {\n                return { skipStrategy: true };\n            }\n            if (responseError && !matchedSystemError && !isExponential) {\n                return { errorToThrow: responseError };\n            }\n            return calculateRetryDelay(retryCount, {\n                retryDelayInMs: retryInterval,\n                maxRetryDelayInMs: maxRetryInterval,\n            });\n        },\n    };\n}\n/**\n * A response is a retry response if it has status codes:\n * - 408, or\n * - Greater or equal than 500, except for 501 and 505.\n */\nfunction isExponentialRetryResponse(response) {\n    return Boolean(response &&\n        response.status !== undefined &&\n        (response.status >= 500 || response.status === 408) &&\n        response.status !== 501 &&\n        response.status !== 505);\n}\n/**\n * Determines whether an error from a pipeline response was triggered in the network layer.\n */\nfunction isSystemError(err) {\n    if (!err) {\n        return false;\n    }\n    return (err.code === \"ETIMEDOUT\" ||\n        err.code === \"ESOCKETTIMEDOUT\" ||\n        err.code === \"ECONNREFUSED\" ||\n        err.code === \"ECONNRESET\" ||\n        err.code === \"ENOENT\" ||\n        err.code === \"ENOTFOUND\");\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst retryPolicyLogger = createClientLogger$1(\"ts-http-runtime retryPolicy\");\n/**\n * The programmatic identifier of the retryPolicy.\n */\nconst retryPolicyName = \"retryPolicy\";\n/**\n * retryPolicy is a generic policy to enable retrying requests when certain conditions are met\n */\nfunction retryPolicy(strategies, options = { maxRetries: DEFAULT_RETRY_POLICY_COUNT }) {\n    const logger = options.logger || retryPolicyLogger;\n    return {\n        name: retryPolicyName,\n        async sendRequest(request, next) {\n            var _a, _b;\n            let response;\n            let responseError;\n            let retryCount = -1;\n            retryRequest: while (true) {\n                retryCount += 1;\n                response = undefined;\n                responseError = undefined;\n                try {\n                    logger.info(`Retry ${retryCount}: Attempting to send request`, request.requestId);\n                    response = await next(request);\n                    logger.info(`Retry ${retryCount}: Received a response from request`, request.requestId);\n                }\n                catch (e) {\n                    logger.error(`Retry ${retryCount}: Received an error from request`, request.requestId);\n                    // RestErrors are valid targets for the retry strategies.\n                    // If none of the retry strategies can work with them, they will be thrown later in this policy.\n                    // If the received error is not a RestError, it is immediately thrown.\n                    responseError = e;\n                    if (!e || responseError.name !== \"RestError\") {\n                        throw e;\n                    }\n                    response = responseError.response;\n                }\n                if ((_a = request.abortSignal) === null || _a === void 0 ? void 0 : _a.aborted) {\n                    logger.error(`Retry ${retryCount}: Request aborted.`);\n                    const abortError = new AbortError$4();\n                    throw abortError;\n                }\n                if (retryCount >= ((_b = options.maxRetries) !== null && _b !== void 0 ? _b : DEFAULT_RETRY_POLICY_COUNT)) {\n                    logger.info(`Retry ${retryCount}: Maximum retries reached. Returning the last received response, or throwing the last received error.`);\n                    if (responseError) {\n                        throw responseError;\n                    }\n                    else if (response) {\n                        return response;\n                    }\n                    else {\n                        throw new Error(\"Maximum retries reached with no response or error to throw\");\n                    }\n                }\n                logger.info(`Retry ${retryCount}: Processing ${strategies.length} retry strategies.`);\n                strategiesLoop: for (const strategy of strategies) {\n                    const strategyLogger = strategy.logger || logger;\n                    strategyLogger.info(`Retry ${retryCount}: Processing retry strategy ${strategy.name}.`);\n                    const modifiers = strategy.retry({\n                        retryCount,\n                        response,\n                        responseError,\n                    });\n                    if (modifiers.skipStrategy) {\n                        strategyLogger.info(`Retry ${retryCount}: Skipped.`);\n                        continue strategiesLoop;\n                    }\n                    const { errorToThrow, retryAfterInMs, redirectTo } = modifiers;\n                    if (errorToThrow) {\n                        strategyLogger.error(`Retry ${retryCount}: Retry strategy ${strategy.name} throws error:`, errorToThrow);\n                        throw errorToThrow;\n                    }\n                    if (retryAfterInMs || retryAfterInMs === 0) {\n                        strategyLogger.info(`Retry ${retryCount}: Retry strategy ${strategy.name} retries after ${retryAfterInMs}`);\n                        await delay$3(retryAfterInMs, undefined, { abortSignal: request.abortSignal });\n                        continue retryRequest;\n                    }\n                    if (redirectTo) {\n                        strategyLogger.info(`Retry ${retryCount}: Retry strategy ${strategy.name} redirects to ${redirectTo}`);\n                        request.url = redirectTo;\n                        continue retryRequest;\n                    }\n                }\n                if (responseError) {\n                    logger.info(`None of the retry strategies could work with the received error. Throwing it.`);\n                    throw responseError;\n                }\n                if (response) {\n                    logger.info(`None of the retry strategies could work with the received response. Returning it.`);\n                    return response;\n                }\n                // If all the retries skip and there's no response,\n                // we're still in the retry loop, so a new request will be sent\n                // until `maxRetries` is reached.\n            }\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Name of the {@link defaultRetryPolicy}\n */\nconst defaultRetryPolicyName = \"defaultRetryPolicy\";\n/**\n * A policy that retries according to three strategies:\n * - When the server sends a 429 response with a Retry-After header.\n * - When there are errors in the underlying transport layer (e.g. DNS lookup failures).\n * - Or otherwise if the outgoing request fails, it will retry with an exponentially increasing delay.\n */\nfunction defaultRetryPolicy$1(options = {}) {\n    var _a;\n    return {\n        name: defaultRetryPolicyName,\n        sendRequest: retryPolicy([throttlingRetryStrategy(), exponentialRetryStrategy(options)], {\n            maxRetries: (_a = options.maxRetries) !== null && _a !== void 0 ? _a : DEFAULT_RETRY_POLICY_COUNT,\n        }).sendRequest,\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nvar _a, _b, _c, _d;\n/**\n * A constant that indicates whether the environment the code is running is a Web Worker.\n */\ntypeof self === \"object\" &&\n    typeof (self === null || self === void 0 ? void 0 : self.importScripts) === \"function\" &&\n    (((_a = self.constructor) === null || _a === void 0 ? void 0 : _a.name) === \"DedicatedWorkerGlobalScope\" ||\n        ((_b = self.constructor) === null || _b === void 0 ? void 0 : _b.name) === \"ServiceWorkerGlobalScope\" ||\n        ((_c = self.constructor) === null || _c === void 0 ? void 0 : _c.name) === \"SharedWorkerGlobalScope\");\n/**\n * A constant that indicates whether the environment the code is running is Deno.\n */\ntypeof Deno !== \"undefined\" &&\n    typeof Deno.version !== \"undefined\" &&\n    typeof Deno.version.deno !== \"undefined\";\n/**\n * A constant that indicates whether the environment the code is running is Bun.sh.\n */\ntypeof Bun !== \"undefined\" && typeof Bun.version !== \"undefined\";\n/**\n * A constant that indicates whether the environment the code is running is a Node.js compatible environment.\n */\nconst isNodeLike$1 = typeof globalThis.process !== \"undefined\" &&\n    Boolean(globalThis.process.version) &&\n    Boolean((_d = globalThis.process.versions) === null || _d === void 0 ? void 0 : _d.node);\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the formDataPolicy.\n */\nconst formDataPolicyName = \"formDataPolicy\";\nfunction formDataToFormDataMap(formData) {\n    var _a;\n    const formDataMap = {};\n    for (const [key, value] of formData.entries()) {\n        (_a = formDataMap[key]) !== null && _a !== void 0 ? _a : (formDataMap[key] = []);\n        formDataMap[key].push(value);\n    }\n    return formDataMap;\n}\n/**\n * A policy that encodes FormData on the request into the body.\n */\nfunction formDataPolicy$1() {\n    return {\n        name: formDataPolicyName,\n        async sendRequest(request, next) {\n            if (isNodeLike$1 && typeof FormData !== \"undefined\" && request.body instanceof FormData) {\n                request.formData = formDataToFormDataMap(request.body);\n                request.body = undefined;\n            }\n            if (request.formData) {\n                const contentType = request.headers.get(\"Content-Type\");\n                if (contentType && contentType.indexOf(\"application/x-www-form-urlencoded\") !== -1) {\n                    request.body = wwwFormUrlEncode(request.formData);\n                }\n                else {\n                    await prepareFormData(request.formData, request);\n                }\n                request.formData = undefined;\n            }\n            return next(request);\n        },\n    };\n}\nfunction wwwFormUrlEncode(formData) {\n    const urlSearchParams = new URLSearchParams();\n    for (const [key, value] of Object.entries(formData)) {\n        if (Array.isArray(value)) {\n            for (const subValue of value) {\n                urlSearchParams.append(key, subValue.toString());\n            }\n        }\n        else {\n            urlSearchParams.append(key, value.toString());\n        }\n    }\n    return urlSearchParams.toString();\n}\nasync function prepareFormData(formData, request) {\n    // validate content type (multipart/form-data)\n    const contentType = request.headers.get(\"Content-Type\");\n    if (contentType && !contentType.startsWith(\"multipart/form-data\")) {\n        // content type is specified and is not multipart/form-data. Exit.\n        return;\n    }\n    request.headers.set(\"Content-Type\", contentType !== null && contentType !== void 0 ? contentType : \"multipart/form-data\");\n    // set body to MultipartRequestBody using content from FormDataMap\n    const parts = [];\n    for (const [fieldName, values] of Object.entries(formData)) {\n        for (const value of Array.isArray(values) ? values : [values]) {\n            if (typeof value === \"string\") {\n                parts.push({\n                    headers: createHttpHeaders$1({\n                        \"Content-Disposition\": `form-data; name=\"${fieldName}\"`,\n                    }),\n                    body: stringToUint8Array(value, \"utf-8\"),\n                });\n            }\n            else if (value === undefined || value === null || typeof value !== \"object\") {\n                throw new Error(`Unexpected value for key ${fieldName}: ${value}. Value should be serialized to string first.`);\n            }\n            else {\n                // using || instead of ?? here since if value.name is empty we should create a file name\n                const fileName = value.name || \"blob\";\n                const headers = createHttpHeaders$1();\n                headers.set(\"Content-Disposition\", `form-data; name=\"${fieldName}\"; filename=\"${fileName}\"`);\n                // again, || is used since an empty value.type means the content type is unset\n                headers.set(\"Content-Type\", value.type || \"application/octet-stream\");\n                parts.push({\n                    headers,\n                    body: value,\n                });\n            }\n        }\n    }\n    request.multipartBody = { parts };\n}\n\nvar dist$3 = {};\n\nvar src$2 = {exports: {}};\n\nvar browser = {exports: {}};\n\n/**\n * Helpers.\n */\n\nvar ms;\nvar hasRequiredMs;\n\nfunction requireMs () {\n\tif (hasRequiredMs) return ms;\n\thasRequiredMs = 1;\n\tvar s = 1000;\n\tvar m = s * 60;\n\tvar h = m * 60;\n\tvar d = h * 24;\n\tvar w = d * 7;\n\tvar y = d * 365.25;\n\n\t/**\n\t * Parse or format the given `val`.\n\t *\n\t * Options:\n\t *\n\t *  - `long` verbose formatting [false]\n\t *\n\t * @param {String|Number} val\n\t * @param {Object} [options]\n\t * @throws {Error} throw an error if val is not a non-empty string or a number\n\t * @return {String|Number}\n\t * @api public\n\t */\n\n\tms = function (val, options) {\n\t  options = options || {};\n\t  var type = typeof val;\n\t  if (type === 'string' && val.length > 0) {\n\t    return parse(val);\n\t  } else if (type === 'number' && isFinite(val)) {\n\t    return options.long ? fmtLong(val) : fmtShort(val);\n\t  }\n\t  throw new Error(\n\t    'val is not a non-empty string or a valid number. val=' +\n\t      JSON.stringify(val)\n\t  );\n\t};\n\n\t/**\n\t * Parse the given `str` and return milliseconds.\n\t *\n\t * @param {String} str\n\t * @return {Number}\n\t * @api private\n\t */\n\n\tfunction parse(str) {\n\t  str = String(str);\n\t  if (str.length > 100) {\n\t    return;\n\t  }\n\t  var match = /^(-?(?:\\d+)?\\.?\\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(\n\t    str\n\t  );\n\t  if (!match) {\n\t    return;\n\t  }\n\t  var n = parseFloat(match[1]);\n\t  var type = (match[2] || 'ms').toLowerCase();\n\t  switch (type) {\n\t    case 'years':\n\t    case 'year':\n\t    case 'yrs':\n\t    case 'yr':\n\t    case 'y':\n\t      return n * y;\n\t    case 'weeks':\n\t    case 'week':\n\t    case 'w':\n\t      return n * w;\n\t    case 'days':\n\t    case 'day':\n\t    case 'd':\n\t      return n * d;\n\t    case 'hours':\n\t    case 'hour':\n\t    case 'hrs':\n\t    case 'hr':\n\t    case 'h':\n\t      return n * h;\n\t    case 'minutes':\n\t    case 'minute':\n\t    case 'mins':\n\t    case 'min':\n\t    case 'm':\n\t      return n * m;\n\t    case 'seconds':\n\t    case 'second':\n\t    case 'secs':\n\t    case 'sec':\n\t    case 's':\n\t      return n * s;\n\t    case 'milliseconds':\n\t    case 'millisecond':\n\t    case 'msecs':\n\t    case 'msec':\n\t    case 'ms':\n\t      return n;\n\t    default:\n\t      return undefined;\n\t  }\n\t}\n\n\t/**\n\t * Short format for `ms`.\n\t *\n\t * @param {Number} ms\n\t * @return {String}\n\t * @api private\n\t */\n\n\tfunction fmtShort(ms) {\n\t  var msAbs = Math.abs(ms);\n\t  if (msAbs >= d) {\n\t    return Math.round(ms / d) + 'd';\n\t  }\n\t  if (msAbs >= h) {\n\t    return Math.round(ms / h) + 'h';\n\t  }\n\t  if (msAbs >= m) {\n\t    return Math.round(ms / m) + 'm';\n\t  }\n\t  if (msAbs >= s) {\n\t    return Math.round(ms / s) + 's';\n\t  }\n\t  return ms + 'ms';\n\t}\n\n\t/**\n\t * Long format for `ms`.\n\t *\n\t * @param {Number} ms\n\t * @return {String}\n\t * @api private\n\t */\n\n\tfunction fmtLong(ms) {\n\t  var msAbs = Math.abs(ms);\n\t  if (msAbs >= d) {\n\t    return plural(ms, msAbs, d, 'day');\n\t  }\n\t  if (msAbs >= h) {\n\t    return plural(ms, msAbs, h, 'hour');\n\t  }\n\t  if (msAbs >= m) {\n\t    return plural(ms, msAbs, m, 'minute');\n\t  }\n\t  if (msAbs >= s) {\n\t    return plural(ms, msAbs, s, 'second');\n\t  }\n\t  return ms + ' ms';\n\t}\n\n\t/**\n\t * Pluralization helper.\n\t */\n\n\tfunction plural(ms, msAbs, n, name) {\n\t  var isPlural = msAbs >= n * 1.5;\n\t  return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');\n\t}\n\treturn ms;\n}\n\nvar common;\nvar hasRequiredCommon;\n\nfunction requireCommon () {\n\tif (hasRequiredCommon) return common;\n\thasRequiredCommon = 1;\n\t/**\n\t * This is the common logic for both the Node.js and web browser\n\t * implementations of `debug()`.\n\t */\n\n\tfunction setup(env) {\n\t\tcreateDebug.debug = createDebug;\n\t\tcreateDebug.default = createDebug;\n\t\tcreateDebug.coerce = coerce;\n\t\tcreateDebug.disable = disable;\n\t\tcreateDebug.enable = enable;\n\t\tcreateDebug.enabled = enabled;\n\t\tcreateDebug.humanize = requireMs();\n\t\tcreateDebug.destroy = destroy;\n\n\t\tObject.keys(env).forEach(key => {\n\t\t\tcreateDebug[key] = env[key];\n\t\t});\n\n\t\t/**\n\t\t* The currently active debug mode names, and names to skip.\n\t\t*/\n\n\t\tcreateDebug.names = [];\n\t\tcreateDebug.skips = [];\n\n\t\t/**\n\t\t* Map of special \"%n\" handling functions, for the debug \"format\" argument.\n\t\t*\n\t\t* Valid key names are a single, lower or upper-case letter, i.e. \"n\" and \"N\".\n\t\t*/\n\t\tcreateDebug.formatters = {};\n\n\t\t/**\n\t\t* Selects a color for a debug namespace\n\t\t* @param {String} namespace The namespace string for the debug instance to be colored\n\t\t* @return {Number|String} An ANSI color code for the given namespace\n\t\t* @api private\n\t\t*/\n\t\tfunction selectColor(namespace) {\n\t\t\tlet hash = 0;\n\n\t\t\tfor (let i = 0; i < namespace.length; i++) {\n\t\t\t\thash = ((hash << 5) - hash) + namespace.charCodeAt(i);\n\t\t\t\thash |= 0; // Convert to 32bit integer\n\t\t\t}\n\n\t\t\treturn createDebug.colors[Math.abs(hash) % createDebug.colors.length];\n\t\t}\n\t\tcreateDebug.selectColor = selectColor;\n\n\t\t/**\n\t\t* Create a debugger with the given `namespace`.\n\t\t*\n\t\t* @param {String} namespace\n\t\t* @return {Function}\n\t\t* @api public\n\t\t*/\n\t\tfunction createDebug(namespace) {\n\t\t\tlet prevTime;\n\t\t\tlet enableOverride = null;\n\t\t\tlet namespacesCache;\n\t\t\tlet enabledCache;\n\n\t\t\tfunction debug(...args) {\n\t\t\t\t// Disabled?\n\t\t\t\tif (!debug.enabled) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst self = debug;\n\n\t\t\t\t// Set `diff` timestamp\n\t\t\t\tconst curr = Number(new Date());\n\t\t\t\tconst ms = curr - (prevTime || curr);\n\t\t\t\tself.diff = ms;\n\t\t\t\tself.prev = prevTime;\n\t\t\t\tself.curr = curr;\n\t\t\t\tprevTime = curr;\n\n\t\t\t\targs[0] = createDebug.coerce(args[0]);\n\n\t\t\t\tif (typeof args[0] !== 'string') {\n\t\t\t\t\t// Anything else let's inspect with %O\n\t\t\t\t\targs.unshift('%O');\n\t\t\t\t}\n\n\t\t\t\t// Apply any `formatters` transformations\n\t\t\t\tlet index = 0;\n\t\t\t\targs[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {\n\t\t\t\t\t// If we encounter an escaped % then don't increase the array index\n\t\t\t\t\tif (match === '%%') {\n\t\t\t\t\t\treturn '%';\n\t\t\t\t\t}\n\t\t\t\t\tindex++;\n\t\t\t\t\tconst formatter = createDebug.formatters[format];\n\t\t\t\t\tif (typeof formatter === 'function') {\n\t\t\t\t\t\tconst val = args[index];\n\t\t\t\t\t\tmatch = formatter.call(self, val);\n\n\t\t\t\t\t\t// Now we need to remove `args[index]` since it's inlined in the `format`\n\t\t\t\t\t\targs.splice(index, 1);\n\t\t\t\t\t\tindex--;\n\t\t\t\t\t}\n\t\t\t\t\treturn match;\n\t\t\t\t});\n\n\t\t\t\t// Apply env-specific formatting (colors, etc.)\n\t\t\t\tcreateDebug.formatArgs.call(self, args);\n\n\t\t\t\tconst logFn = self.log || createDebug.log;\n\t\t\t\tlogFn.apply(self, args);\n\t\t\t}\n\n\t\t\tdebug.namespace = namespace;\n\t\t\tdebug.useColors = createDebug.useColors();\n\t\t\tdebug.color = createDebug.selectColor(namespace);\n\t\t\tdebug.extend = extend;\n\t\t\tdebug.destroy = createDebug.destroy; // XXX Temporary. Will be removed in the next major release.\n\n\t\t\tObject.defineProperty(debug, 'enabled', {\n\t\t\t\tenumerable: true,\n\t\t\t\tconfigurable: false,\n\t\t\t\tget: () => {\n\t\t\t\t\tif (enableOverride !== null) {\n\t\t\t\t\t\treturn enableOverride;\n\t\t\t\t\t}\n\t\t\t\t\tif (namespacesCache !== createDebug.namespaces) {\n\t\t\t\t\t\tnamespacesCache = createDebug.namespaces;\n\t\t\t\t\t\tenabledCache = createDebug.enabled(namespace);\n\t\t\t\t\t}\n\n\t\t\t\t\treturn enabledCache;\n\t\t\t\t},\n\t\t\t\tset: v => {\n\t\t\t\t\tenableOverride = v;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Env-specific initialization logic for debug instances\n\t\t\tif (typeof createDebug.init === 'function') {\n\t\t\t\tcreateDebug.init(debug);\n\t\t\t}\n\n\t\t\treturn debug;\n\t\t}\n\n\t\tfunction extend(namespace, delimiter) {\n\t\t\tconst newDebug = createDebug(this.namespace + (typeof delimiter === 'undefined' ? ':' : delimiter) + namespace);\n\t\t\tnewDebug.log = this.log;\n\t\t\treturn newDebug;\n\t\t}\n\n\t\t/**\n\t\t* Enables a debug mode by namespaces. This can include modes\n\t\t* separated by a colon and wildcards.\n\t\t*\n\t\t* @param {String} namespaces\n\t\t* @api public\n\t\t*/\n\t\tfunction enable(namespaces) {\n\t\t\tcreateDebug.save(namespaces);\n\t\t\tcreateDebug.namespaces = namespaces;\n\n\t\t\tcreateDebug.names = [];\n\t\t\tcreateDebug.skips = [];\n\n\t\t\tconst split = (typeof namespaces === 'string' ? namespaces : '')\n\t\t\t\t.trim()\n\t\t\t\t.replace(/\\s+/g, ',')\n\t\t\t\t.split(',')\n\t\t\t\t.filter(Boolean);\n\n\t\t\tfor (const ns of split) {\n\t\t\t\tif (ns[0] === '-') {\n\t\t\t\t\tcreateDebug.skips.push(ns.slice(1));\n\t\t\t\t} else {\n\t\t\t\t\tcreateDebug.names.push(ns);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/**\n\t\t * Checks if the given string matches a namespace template, honoring\n\t\t * asterisks as wildcards.\n\t\t *\n\t\t * @param {String} search\n\t\t * @param {String} template\n\t\t * @return {Boolean}\n\t\t */\n\t\tfunction matchesTemplate(search, template) {\n\t\t\tlet searchIndex = 0;\n\t\t\tlet templateIndex = 0;\n\t\t\tlet starIndex = -1;\n\t\t\tlet matchIndex = 0;\n\n\t\t\twhile (searchIndex < search.length) {\n\t\t\t\tif (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === '*')) {\n\t\t\t\t\t// Match character or proceed with wildcard\n\t\t\t\t\tif (template[templateIndex] === '*') {\n\t\t\t\t\t\tstarIndex = templateIndex;\n\t\t\t\t\t\tmatchIndex = searchIndex;\n\t\t\t\t\t\ttemplateIndex++; // Skip the '*'\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsearchIndex++;\n\t\t\t\t\t\ttemplateIndex++;\n\t\t\t\t\t}\n\t\t\t\t} else if (starIndex !== -1) { // eslint-disable-line no-negated-condition\n\t\t\t\t\t// Backtrack to the last '*' and try to match more characters\n\t\t\t\t\ttemplateIndex = starIndex + 1;\n\t\t\t\t\tmatchIndex++;\n\t\t\t\t\tsearchIndex = matchIndex;\n\t\t\t\t} else {\n\t\t\t\t\treturn false; // No match\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Handle trailing '*' in template\n\t\t\twhile (templateIndex < template.length && template[templateIndex] === '*') {\n\t\t\t\ttemplateIndex++;\n\t\t\t}\n\n\t\t\treturn templateIndex === template.length;\n\t\t}\n\n\t\t/**\n\t\t* Disable debug output.\n\t\t*\n\t\t* @return {String} namespaces\n\t\t* @api public\n\t\t*/\n\t\tfunction disable() {\n\t\t\tconst namespaces = [\n\t\t\t\t...createDebug.names,\n\t\t\t\t...createDebug.skips.map(namespace => '-' + namespace)\n\t\t\t].join(',');\n\t\t\tcreateDebug.enable('');\n\t\t\treturn namespaces;\n\t\t}\n\n\t\t/**\n\t\t* Returns true if the given mode name is enabled, false otherwise.\n\t\t*\n\t\t* @param {String} name\n\t\t* @return {Boolean}\n\t\t* @api public\n\t\t*/\n\t\tfunction enabled(name) {\n\t\t\tfor (const skip of createDebug.skips) {\n\t\t\t\tif (matchesTemplate(name, skip)) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor (const ns of createDebug.names) {\n\t\t\t\tif (matchesTemplate(name, ns)) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn false;\n\t\t}\n\n\t\t/**\n\t\t* Coerce `val`.\n\t\t*\n\t\t* @param {Mixed} val\n\t\t* @return {Mixed}\n\t\t* @api private\n\t\t*/\n\t\tfunction coerce(val) {\n\t\t\tif (val instanceof Error) {\n\t\t\t\treturn val.stack || val.message;\n\t\t\t}\n\t\t\treturn val;\n\t\t}\n\n\t\t/**\n\t\t* XXX DO NOT USE. This is a temporary stub function.\n\t\t* XXX It WILL be removed in the next major release.\n\t\t*/\n\t\tfunction destroy() {\n\t\t\tconsole.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');\n\t\t}\n\n\t\tcreateDebug.enable(createDebug.load());\n\n\t\treturn createDebug;\n\t}\n\n\tcommon = setup;\n\treturn common;\n}\n\n/* eslint-env browser */\n\nvar hasRequiredBrowser;\n\nfunction requireBrowser () {\n\tif (hasRequiredBrowser) return browser.exports;\n\thasRequiredBrowser = 1;\n\t(function (module, exports) {\n\t\t/**\n\t\t * This is the web browser implementation of `debug()`.\n\t\t */\n\n\t\texports.formatArgs = formatArgs;\n\t\texports.save = save;\n\t\texports.load = load;\n\t\texports.useColors = useColors;\n\t\texports.storage = localstorage();\n\t\texports.destroy = (() => {\n\t\t\tlet warned = false;\n\n\t\t\treturn () => {\n\t\t\t\tif (!warned) {\n\t\t\t\t\twarned = true;\n\t\t\t\t\tconsole.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');\n\t\t\t\t}\n\t\t\t};\n\t\t})();\n\n\t\t/**\n\t\t * Colors.\n\t\t */\n\n\t\texports.colors = [\n\t\t\t'#0000CC',\n\t\t\t'#0000FF',\n\t\t\t'#0033CC',\n\t\t\t'#0033FF',\n\t\t\t'#0066CC',\n\t\t\t'#0066FF',\n\t\t\t'#0099CC',\n\t\t\t'#0099FF',\n\t\t\t'#00CC00',\n\t\t\t'#00CC33',\n\t\t\t'#00CC66',\n\t\t\t'#00CC99',\n\t\t\t'#00CCCC',\n\t\t\t'#00CCFF',\n\t\t\t'#3300CC',\n\t\t\t'#3300FF',\n\t\t\t'#3333CC',\n\t\t\t'#3333FF',\n\t\t\t'#3366CC',\n\t\t\t'#3366FF',\n\t\t\t'#3399CC',\n\t\t\t'#3399FF',\n\t\t\t'#33CC00',\n\t\t\t'#33CC33',\n\t\t\t'#33CC66',\n\t\t\t'#33CC99',\n\t\t\t'#33CCCC',\n\t\t\t'#33CCFF',\n\t\t\t'#6600CC',\n\t\t\t'#6600FF',\n\t\t\t'#6633CC',\n\t\t\t'#6633FF',\n\t\t\t'#66CC00',\n\t\t\t'#66CC33',\n\t\t\t'#9900CC',\n\t\t\t'#9900FF',\n\t\t\t'#9933CC',\n\t\t\t'#9933FF',\n\t\t\t'#99CC00',\n\t\t\t'#99CC33',\n\t\t\t'#CC0000',\n\t\t\t'#CC0033',\n\t\t\t'#CC0066',\n\t\t\t'#CC0099',\n\t\t\t'#CC00CC',\n\t\t\t'#CC00FF',\n\t\t\t'#CC3300',\n\t\t\t'#CC3333',\n\t\t\t'#CC3366',\n\t\t\t'#CC3399',\n\t\t\t'#CC33CC',\n\t\t\t'#CC33FF',\n\t\t\t'#CC6600',\n\t\t\t'#CC6633',\n\t\t\t'#CC9900',\n\t\t\t'#CC9933',\n\t\t\t'#CCCC00',\n\t\t\t'#CCCC33',\n\t\t\t'#FF0000',\n\t\t\t'#FF0033',\n\t\t\t'#FF0066',\n\t\t\t'#FF0099',\n\t\t\t'#FF00CC',\n\t\t\t'#FF00FF',\n\t\t\t'#FF3300',\n\t\t\t'#FF3333',\n\t\t\t'#FF3366',\n\t\t\t'#FF3399',\n\t\t\t'#FF33CC',\n\t\t\t'#FF33FF',\n\t\t\t'#FF6600',\n\t\t\t'#FF6633',\n\t\t\t'#FF9900',\n\t\t\t'#FF9933',\n\t\t\t'#FFCC00',\n\t\t\t'#FFCC33'\n\t\t];\n\n\t\t/**\n\t\t * Currently only WebKit-based Web Inspectors, Firefox >= v31,\n\t\t * and the Firebug extension (any Firefox version) are known\n\t\t * to support \"%c\" CSS customizations.\n\t\t *\n\t\t * TODO: add a `localStorage` variable to explicitly enable/disable colors\n\t\t */\n\n\t\t// eslint-disable-next-line complexity\n\t\tfunction useColors() {\n\t\t\t// NB: In an Electron preload script, document will be defined but not fully\n\t\t\t// initialized. Since we know we're in Chrome, we'll just detect this case\n\t\t\t// explicitly\n\t\t\tif (typeof window !== 'undefined' && window.process && (window.process.type === 'renderer' || window.process.__nwjs)) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// Internet Explorer and Edge do not support colors.\n\t\t\tif (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\\/(\\d+)/)) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\tlet m;\n\n\t\t\t// Is webkit? http://stackoverflow.com/a/16459606/376773\n\t\t\t// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632\n\t\t\t// eslint-disable-next-line no-return-assign\n\t\t\treturn (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||\n\t\t\t\t// Is firebug? http://stackoverflow.com/a/398120/376773\n\t\t\t\t(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||\n\t\t\t\t// Is firefox >= v31?\n\t\t\t\t// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages\n\t\t\t\t(typeof navigator !== 'undefined' && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\\/(\\d+)/)) && parseInt(m[1], 10) >= 31) ||\n\t\t\t\t// Double check webkit in userAgent just in case we are in a worker\n\t\t\t\t(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\\/(\\d+)/));\n\t\t}\n\n\t\t/**\n\t\t * Colorize log arguments if enabled.\n\t\t *\n\t\t * @api public\n\t\t */\n\n\t\tfunction formatArgs(args) {\n\t\t\targs[0] = (this.useColors ? '%c' : '') +\n\t\t\t\tthis.namespace +\n\t\t\t\t(this.useColors ? ' %c' : ' ') +\n\t\t\t\targs[0] +\n\t\t\t\t(this.useColors ? '%c ' : ' ') +\n\t\t\t\t'+' + module.exports.humanize(this.diff);\n\n\t\t\tif (!this.useColors) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst c = 'color: ' + this.color;\n\t\t\targs.splice(1, 0, c, 'color: inherit');\n\n\t\t\t// The final \"%c\" is somewhat tricky, because there could be other\n\t\t\t// arguments passed either before or after the %c, so we need to\n\t\t\t// figure out the correct index to insert the CSS into\n\t\t\tlet index = 0;\n\t\t\tlet lastC = 0;\n\t\t\targs[0].replace(/%[a-zA-Z%]/g, match => {\n\t\t\t\tif (match === '%%') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tindex++;\n\t\t\t\tif (match === '%c') {\n\t\t\t\t\t// We only are interested in the *last* %c\n\t\t\t\t\t// (the user may have provided their own)\n\t\t\t\t\tlastC = index;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\targs.splice(lastC, 0, c);\n\t\t}\n\n\t\t/**\n\t\t * Invokes `console.debug()` when available.\n\t\t * No-op when `console.debug` is not a \"function\".\n\t\t * If `console.debug` is not available, falls back\n\t\t * to `console.log`.\n\t\t *\n\t\t * @api public\n\t\t */\n\t\texports.log = console.debug || console.log || (() => {});\n\n\t\t/**\n\t\t * Save `namespaces`.\n\t\t *\n\t\t * @param {String} namespaces\n\t\t * @api private\n\t\t */\n\t\tfunction save(namespaces) {\n\t\t\ttry {\n\t\t\t\tif (namespaces) {\n\t\t\t\t\texports.storage.setItem('debug', namespaces);\n\t\t\t\t} else {\n\t\t\t\t\texports.storage.removeItem('debug');\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\t// Swallow\n\t\t\t\t// XXX (@Qix-) should we be logging these?\n\t\t\t}\n\t\t}\n\n\t\t/**\n\t\t * Load `namespaces`.\n\t\t *\n\t\t * @return {String} returns the previously persisted debug modes\n\t\t * @api private\n\t\t */\n\t\tfunction load() {\n\t\t\tlet r;\n\t\t\ttry {\n\t\t\t\tr = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;\n\t\t\t} catch (error) {\n\t\t\t\t// Swallow\n\t\t\t\t// XXX (@Qix-) should we be logging these?\n\t\t\t}\n\n\t\t\t// If debug isn't set in LS, and we're in Electron, try to load $DEBUG\n\t\t\tif (!r && typeof process !== 'undefined' && 'env' in process) {\n\t\t\t\tr = process.env.DEBUG;\n\t\t\t}\n\n\t\t\treturn r;\n\t\t}\n\n\t\t/**\n\t\t * Localstorage attempts to return the localstorage.\n\t\t *\n\t\t * This is necessary because safari throws\n\t\t * when a user disables cookies/localstorage\n\t\t * and you attempt to access it.\n\t\t *\n\t\t * @return {LocalStorage}\n\t\t * @api private\n\t\t */\n\n\t\tfunction localstorage() {\n\t\t\ttry {\n\t\t\t\t// TVMLKit (Apple TV JS Runtime) does not have a window object, just localStorage in the global context\n\t\t\t\t// The Browser also has localStorage in the global context.\n\t\t\t\treturn localStorage;\n\t\t\t} catch (error) {\n\t\t\t\t// Swallow\n\t\t\t\t// XXX (@Qix-) should we be logging these?\n\t\t\t}\n\t\t}\n\n\t\tmodule.exports = requireCommon()(exports);\n\n\t\tconst {formatters} = module.exports;\n\n\t\t/**\n\t\t * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.\n\t\t */\n\n\t\tformatters.j = function (v) {\n\t\t\ttry {\n\t\t\t\treturn JSON.stringify(v);\n\t\t\t} catch (error) {\n\t\t\t\treturn '[UnexpectedJSONParseError]: ' + error.message;\n\t\t\t}\n\t\t}; \n\t} (browser, browser.exports));\n\treturn browser.exports;\n}\n\nvar node$1 = {exports: {}};\n\nvar hasFlag;\nvar hasRequiredHasFlag;\n\nfunction requireHasFlag () {\n\tif (hasRequiredHasFlag) return hasFlag;\n\thasRequiredHasFlag = 1;\n\n\thasFlag = (flag, argv = process.argv) => {\n\t\tconst prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');\n\t\tconst position = argv.indexOf(prefix + flag);\n\t\tconst terminatorPosition = argv.indexOf('--');\n\t\treturn position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);\n\t};\n\treturn hasFlag;\n}\n\nvar supportsColor_1;\nvar hasRequiredSupportsColor;\n\nfunction requireSupportsColor () {\n\tif (hasRequiredSupportsColor) return supportsColor_1;\n\thasRequiredSupportsColor = 1;\n\tconst os = require$$0__default;\n\tconst tty = require$$1$8;\n\tconst hasFlag = requireHasFlag();\n\n\tconst {env} = process;\n\n\tlet forceColor;\n\tif (hasFlag('no-color') ||\n\t\thasFlag('no-colors') ||\n\t\thasFlag('color=false') ||\n\t\thasFlag('color=never')) {\n\t\tforceColor = 0;\n\t} else if (hasFlag('color') ||\n\t\thasFlag('colors') ||\n\t\thasFlag('color=true') ||\n\t\thasFlag('color=always')) {\n\t\tforceColor = 1;\n\t}\n\n\tif ('FORCE_COLOR' in env) {\n\t\tif (env.FORCE_COLOR === 'true') {\n\t\t\tforceColor = 1;\n\t\t} else if (env.FORCE_COLOR === 'false') {\n\t\t\tforceColor = 0;\n\t\t} else {\n\t\t\tforceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);\n\t\t}\n\t}\n\n\tfunction translateLevel(level) {\n\t\tif (level === 0) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn {\n\t\t\tlevel,\n\t\t\thasBasic: true,\n\t\t\thas256: level >= 2,\n\t\t\thas16m: level >= 3\n\t\t};\n\t}\n\n\tfunction supportsColor(haveStream, streamIsTTY) {\n\t\tif (forceColor === 0) {\n\t\t\treturn 0;\n\t\t}\n\n\t\tif (hasFlag('color=16m') ||\n\t\t\thasFlag('color=full') ||\n\t\t\thasFlag('color=truecolor')) {\n\t\t\treturn 3;\n\t\t}\n\n\t\tif (hasFlag('color=256')) {\n\t\t\treturn 2;\n\t\t}\n\n\t\tif (haveStream && !streamIsTTY && forceColor === undefined) {\n\t\t\treturn 0;\n\t\t}\n\n\t\tconst min = forceColor || 0;\n\n\t\tif (env.TERM === 'dumb') {\n\t\t\treturn min;\n\t\t}\n\n\t\tif (process.platform === 'win32') {\n\t\t\t// Windows 10 build 10586 is the first Windows release that supports 256 colors.\n\t\t\t// Windows 10 build 14931 is the first release that supports 16m/TrueColor.\n\t\t\tconst osRelease = os.release().split('.');\n\t\t\tif (\n\t\t\t\tNumber(osRelease[0]) >= 10 &&\n\t\t\t\tNumber(osRelease[2]) >= 10586\n\t\t\t) {\n\t\t\t\treturn Number(osRelease[2]) >= 14931 ? 3 : 2;\n\t\t\t}\n\n\t\t\treturn 1;\n\t\t}\n\n\t\tif ('CI' in env) {\n\t\t\tif (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\treturn min;\n\t\t}\n\n\t\tif ('TEAMCITY_VERSION' in env) {\n\t\t\treturn /^(9\\.(0*[1-9]\\d*)\\.|\\d{2,}\\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;\n\t\t}\n\n\t\tif (env.COLORTERM === 'truecolor') {\n\t\t\treturn 3;\n\t\t}\n\n\t\tif ('TERM_PROGRAM' in env) {\n\t\t\tconst version = parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);\n\n\t\t\tswitch (env.TERM_PROGRAM) {\n\t\t\t\tcase 'iTerm.app':\n\t\t\t\t\treturn version >= 3 ? 3 : 2;\n\t\t\t\tcase 'Apple_Terminal':\n\t\t\t\t\treturn 2;\n\t\t\t\t// No default\n\t\t\t}\n\t\t}\n\n\t\tif (/-256(color)?$/i.test(env.TERM)) {\n\t\t\treturn 2;\n\t\t}\n\n\t\tif (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {\n\t\t\treturn 1;\n\t\t}\n\n\t\tif ('COLORTERM' in env) {\n\t\t\treturn 1;\n\t\t}\n\n\t\treturn min;\n\t}\n\n\tfunction getSupportLevel(stream) {\n\t\tconst level = supportsColor(stream, stream && stream.isTTY);\n\t\treturn translateLevel(level);\n\t}\n\n\tsupportsColor_1 = {\n\t\tsupportsColor: getSupportLevel,\n\t\tstdout: translateLevel(supportsColor(true, tty.isatty(1))),\n\t\tstderr: translateLevel(supportsColor(true, tty.isatty(2)))\n\t};\n\treturn supportsColor_1;\n}\n\n/**\n * Module dependencies.\n */\n\nvar hasRequiredNode$1;\n\nfunction requireNode$1 () {\n\tif (hasRequiredNode$1) return node$1.exports;\n\thasRequiredNode$1 = 1;\n\t(function (module, exports) {\n\t\tconst tty = require$$1$8;\n\t\tconst util = require$$0__default$1;\n\n\t\t/**\n\t\t * This is the Node.js implementation of `debug()`.\n\t\t */\n\n\t\texports.init = init;\n\t\texports.log = log;\n\t\texports.formatArgs = formatArgs;\n\t\texports.save = save;\n\t\texports.load = load;\n\t\texports.useColors = useColors;\n\t\texports.destroy = util.deprecate(\n\t\t\t() => {},\n\t\t\t'Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'\n\t\t);\n\n\t\t/**\n\t\t * Colors.\n\t\t */\n\n\t\texports.colors = [6, 2, 3, 4, 5, 1];\n\n\t\ttry {\n\t\t\t// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)\n\t\t\t// eslint-disable-next-line import/no-extraneous-dependencies\n\t\t\tconst supportsColor = requireSupportsColor();\n\n\t\t\tif (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {\n\t\t\t\texports.colors = [\n\t\t\t\t\t20,\n\t\t\t\t\t21,\n\t\t\t\t\t26,\n\t\t\t\t\t27,\n\t\t\t\t\t32,\n\t\t\t\t\t33,\n\t\t\t\t\t38,\n\t\t\t\t\t39,\n\t\t\t\t\t40,\n\t\t\t\t\t41,\n\t\t\t\t\t42,\n\t\t\t\t\t43,\n\t\t\t\t\t44,\n\t\t\t\t\t45,\n\t\t\t\t\t56,\n\t\t\t\t\t57,\n\t\t\t\t\t62,\n\t\t\t\t\t63,\n\t\t\t\t\t68,\n\t\t\t\t\t69,\n\t\t\t\t\t74,\n\t\t\t\t\t75,\n\t\t\t\t\t76,\n\t\t\t\t\t77,\n\t\t\t\t\t78,\n\t\t\t\t\t79,\n\t\t\t\t\t80,\n\t\t\t\t\t81,\n\t\t\t\t\t92,\n\t\t\t\t\t93,\n\t\t\t\t\t98,\n\t\t\t\t\t99,\n\t\t\t\t\t112,\n\t\t\t\t\t113,\n\t\t\t\t\t128,\n\t\t\t\t\t129,\n\t\t\t\t\t134,\n\t\t\t\t\t135,\n\t\t\t\t\t148,\n\t\t\t\t\t149,\n\t\t\t\t\t160,\n\t\t\t\t\t161,\n\t\t\t\t\t162,\n\t\t\t\t\t163,\n\t\t\t\t\t164,\n\t\t\t\t\t165,\n\t\t\t\t\t166,\n\t\t\t\t\t167,\n\t\t\t\t\t168,\n\t\t\t\t\t169,\n\t\t\t\t\t170,\n\t\t\t\t\t171,\n\t\t\t\t\t172,\n\t\t\t\t\t173,\n\t\t\t\t\t178,\n\t\t\t\t\t179,\n\t\t\t\t\t184,\n\t\t\t\t\t185,\n\t\t\t\t\t196,\n\t\t\t\t\t197,\n\t\t\t\t\t198,\n\t\t\t\t\t199,\n\t\t\t\t\t200,\n\t\t\t\t\t201,\n\t\t\t\t\t202,\n\t\t\t\t\t203,\n\t\t\t\t\t204,\n\t\t\t\t\t205,\n\t\t\t\t\t206,\n\t\t\t\t\t207,\n\t\t\t\t\t208,\n\t\t\t\t\t209,\n\t\t\t\t\t214,\n\t\t\t\t\t215,\n\t\t\t\t\t220,\n\t\t\t\t\t221\n\t\t\t\t];\n\t\t\t}\n\t\t} catch (error) {\n\t\t\t// Swallow - we only care if `supports-color` is available; it doesn't have to be.\n\t\t}\n\n\t\t/**\n\t\t * Build up the default `inspectOpts` object from the environment variables.\n\t\t *\n\t\t *   $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js\n\t\t */\n\n\t\texports.inspectOpts = Object.keys(process.env).filter(key => {\n\t\t\treturn /^debug_/i.test(key);\n\t\t}).reduce((obj, key) => {\n\t\t\t// Camel-case\n\t\t\tconst prop = key\n\t\t\t\t.substring(6)\n\t\t\t\t.toLowerCase()\n\t\t\t\t.replace(/_([a-z])/g, (_, k) => {\n\t\t\t\t\treturn k.toUpperCase();\n\t\t\t\t});\n\n\t\t\t// Coerce string value into JS value\n\t\t\tlet val = process.env[key];\n\t\t\tif (/^(yes|on|true|enabled)$/i.test(val)) {\n\t\t\t\tval = true;\n\t\t\t} else if (/^(no|off|false|disabled)$/i.test(val)) {\n\t\t\t\tval = false;\n\t\t\t} else if (val === 'null') {\n\t\t\t\tval = null;\n\t\t\t} else {\n\t\t\t\tval = Number(val);\n\t\t\t}\n\n\t\t\tobj[prop] = val;\n\t\t\treturn obj;\n\t\t}, {});\n\n\t\t/**\n\t\t * Is stdout a TTY? Colored output is enabled when `true`.\n\t\t */\n\n\t\tfunction useColors() {\n\t\t\treturn 'colors' in exports.inspectOpts ?\n\t\t\t\tBoolean(exports.inspectOpts.colors) :\n\t\t\t\ttty.isatty(process.stderr.fd);\n\t\t}\n\n\t\t/**\n\t\t * Adds ANSI color escape codes if enabled.\n\t\t *\n\t\t * @api public\n\t\t */\n\n\t\tfunction formatArgs(args) {\n\t\t\tconst {namespace: name, useColors} = this;\n\n\t\t\tif (useColors) {\n\t\t\t\tconst c = this.color;\n\t\t\t\tconst colorCode = '\\u001B[3' + (c < 8 ? c : '8;5;' + c);\n\t\t\t\tconst prefix = `  ${colorCode};1m${name} \\u001B[0m`;\n\n\t\t\t\targs[0] = prefix + args[0].split('\\n').join('\\n' + prefix);\n\t\t\t\targs.push(colorCode + 'm+' + module.exports.humanize(this.diff) + '\\u001B[0m');\n\t\t\t} else {\n\t\t\t\targs[0] = getDate() + name + ' ' + args[0];\n\t\t\t}\n\t\t}\n\n\t\tfunction getDate() {\n\t\t\tif (exports.inspectOpts.hideDate) {\n\t\t\t\treturn '';\n\t\t\t}\n\t\t\treturn new Date().toISOString() + ' ';\n\t\t}\n\n\t\t/**\n\t\t * Invokes `util.formatWithOptions()` with the specified arguments and writes to stderr.\n\t\t */\n\n\t\tfunction log(...args) {\n\t\t\treturn process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + '\\n');\n\t\t}\n\n\t\t/**\n\t\t * Save `namespaces`.\n\t\t *\n\t\t * @param {String} namespaces\n\t\t * @api private\n\t\t */\n\t\tfunction save(namespaces) {\n\t\t\tif (namespaces) {\n\t\t\t\tprocess.env.DEBUG = namespaces;\n\t\t\t} else {\n\t\t\t\t// If you set a process.env field to null or undefined, it gets cast to the\n\t\t\t\t// string 'null' or 'undefined'. Just delete instead.\n\t\t\t\tdelete process.env.DEBUG;\n\t\t\t}\n\t\t}\n\n\t\t/**\n\t\t * Load `namespaces`.\n\t\t *\n\t\t * @return {String} returns the previously persisted debug modes\n\t\t * @api private\n\t\t */\n\n\t\tfunction load() {\n\t\t\treturn process.env.DEBUG;\n\t\t}\n\n\t\t/**\n\t\t * Init logic for `debug` instances.\n\t\t *\n\t\t * Create a new `inspectOpts` object in case `useColors` is set\n\t\t * differently for a particular `debug` instance.\n\t\t */\n\n\t\tfunction init(debug) {\n\t\t\tdebug.inspectOpts = {};\n\n\t\t\tconst keys = Object.keys(exports.inspectOpts);\n\t\t\tfor (let i = 0; i < keys.length; i++) {\n\t\t\t\tdebug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];\n\t\t\t}\n\t\t}\n\n\t\tmodule.exports = requireCommon()(exports);\n\n\t\tconst {formatters} = module.exports;\n\n\t\t/**\n\t\t * Map %o to `util.inspect()`, all on a single line.\n\t\t */\n\n\t\tformatters.o = function (v) {\n\t\t\tthis.inspectOpts.colors = this.useColors;\n\t\t\treturn util.inspect(v, this.inspectOpts)\n\t\t\t\t.split('\\n')\n\t\t\t\t.map(str => str.trim())\n\t\t\t\t.join(' ');\n\t\t};\n\n\t\t/**\n\t\t * Map %O to `util.inspect()`, allowing multiple lines if needed.\n\t\t */\n\n\t\tformatters.O = function (v) {\n\t\t\tthis.inspectOpts.colors = this.useColors;\n\t\t\treturn util.inspect(v, this.inspectOpts);\n\t\t}; \n\t} (node$1, node$1.exports));\n\treturn node$1.exports;\n}\n\n/**\n * Detect Electron renderer / nwjs process, which is node, but we should\n * treat as a browser.\n */\n\nvar hasRequiredSrc;\n\nfunction requireSrc () {\n\tif (hasRequiredSrc) return src$2.exports;\n\thasRequiredSrc = 1;\n\tif (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {\n\t\tsrc$2.exports = requireBrowser();\n\t} else {\n\t\tsrc$2.exports = requireNode$1();\n\t}\n\treturn src$2.exports;\n}\n\nvar dist$2 = {};\n\nvar helpers = {};\n\nvar hasRequiredHelpers;\n\nfunction requireHelpers () {\n\tif (hasRequiredHelpers) return helpers;\n\thasRequiredHelpers = 1;\n\tvar __createBinding = (helpers && helpers.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (helpers && helpers.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (helpers && helpers.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(helpers, \"__esModule\", { value: true });\n\thelpers.req = helpers.json = helpers.toBuffer = void 0;\n\tconst http = __importStar(require$$2$3);\n\tconst https = __importStar(require$$1$3);\n\tasync function toBuffer(stream) {\n\t    let length = 0;\n\t    const chunks = [];\n\t    for await (const chunk of stream) {\n\t        length += chunk.length;\n\t        chunks.push(chunk);\n\t    }\n\t    return Buffer.concat(chunks, length);\n\t}\n\thelpers.toBuffer = toBuffer;\n\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\tasync function json(stream) {\n\t    const buf = await toBuffer(stream);\n\t    const str = buf.toString('utf8');\n\t    try {\n\t        return JSON.parse(str);\n\t    }\n\t    catch (_err) {\n\t        const err = _err;\n\t        err.message += ` (input: ${str})`;\n\t        throw err;\n\t    }\n\t}\n\thelpers.json = json;\n\tfunction req(url, opts = {}) {\n\t    const href = typeof url === 'string' ? url : url.href;\n\t    const req = (href.startsWith('https:') ? https : http).request(url, opts);\n\t    const promise = new Promise((resolve, reject) => {\n\t        req\n\t            .once('response', resolve)\n\t            .once('error', reject)\n\t            .end();\n\t    });\n\t    req.then = promise.then.bind(promise);\n\t    return req;\n\t}\n\thelpers.req = req;\n\t\n\treturn helpers;\n}\n\nvar hasRequiredDist$3;\n\nfunction requireDist$3 () {\n\tif (hasRequiredDist$3) return dist$2;\n\thasRequiredDist$3 = 1;\n\t(function (exports) {\n\t\tvar __createBinding = (dist$2 && dist$2.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t\t    }\n\t\t    Object.defineProperty(o, k2, desc);\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __setModuleDefault = (dist$2 && dist$2.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t\t}) : function(o, v) {\n\t\t    o[\"default\"] = v;\n\t\t});\n\t\tvar __importStar = (dist$2 && dist$2.__importStar) || function (mod) {\n\t\t    if (mod && mod.__esModule) return mod;\n\t\t    var result = {};\n\t\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t\t    __setModuleDefault(result, mod);\n\t\t    return result;\n\t\t};\n\t\tvar __exportStar = (dist$2 && dist$2.__exportStar) || function(m, exports) {\n\t\t    for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.Agent = void 0;\n\t\tconst net = __importStar(require$$0$a);\n\t\tconst http = __importStar(require$$2$3);\n\t\tconst https_1 = require$$1$3;\n\t\t__exportStar(requireHelpers(), exports);\n\t\tconst INTERNAL = Symbol('AgentBaseInternalState');\n\t\tclass Agent extends http.Agent {\n\t\t    constructor(opts) {\n\t\t        super(opts);\n\t\t        this[INTERNAL] = {};\n\t\t    }\n\t\t    /**\n\t\t     * Determine whether this is an `http` or `https` request.\n\t\t     */\n\t\t    isSecureEndpoint(options) {\n\t\t        if (options) {\n\t\t            // First check the `secureEndpoint` property explicitly, since this\n\t\t            // means that a parent `Agent` is \"passing through\" to this instance.\n\t\t            // eslint-disable-next-line @typescript-eslint/no-explicit-any\n\t\t            if (typeof options.secureEndpoint === 'boolean') {\n\t\t                return options.secureEndpoint;\n\t\t            }\n\t\t            // If no explicit `secure` endpoint, check if `protocol` property is\n\t\t            // set. This will usually be the case since using a full string URL\n\t\t            // or `URL` instance should be the most common usage.\n\t\t            if (typeof options.protocol === 'string') {\n\t\t                return options.protocol === 'https:';\n\t\t            }\n\t\t        }\n\t\t        // Finally, if no `protocol` property was set, then fall back to\n\t\t        // checking the stack trace of the current call stack, and try to\n\t\t        // detect the \"https\" module.\n\t\t        const { stack } = new Error();\n\t\t        if (typeof stack !== 'string')\n\t\t            return false;\n\t\t        return stack\n\t\t            .split('\\n')\n\t\t            .some((l) => l.indexOf('(https.js:') !== -1 ||\n\t\t            l.indexOf('node:https:') !== -1);\n\t\t    }\n\t\t    // In order to support async signatures in `connect()` and Node's native\n\t\t    // connection pooling in `http.Agent`, the array of sockets for each origin\n\t\t    // has to be updated synchronously. This is so the length of the array is\n\t\t    // accurate when `addRequest()` is next called. We achieve this by creating a\n\t\t    // fake socket and adding it to `sockets[origin]` and incrementing\n\t\t    // `totalSocketCount`.\n\t\t    incrementSockets(name) {\n\t\t        // If `maxSockets` and `maxTotalSockets` are both Infinity then there is no\n\t\t        // need to create a fake socket because Node.js native connection pooling\n\t\t        // will never be invoked.\n\t\t        if (this.maxSockets === Infinity && this.maxTotalSockets === Infinity) {\n\t\t            return null;\n\t\t        }\n\t\t        // All instances of `sockets` are expected TypeScript errors. The\n\t\t        // alternative is to add it as a private property of this class but that\n\t\t        // will break TypeScript subclassing.\n\t\t        if (!this.sockets[name]) {\n\t\t            // @ts-expect-error `sockets` is readonly in `@types/node`\n\t\t            this.sockets[name] = [];\n\t\t        }\n\t\t        const fakeSocket = new net.Socket({ writable: false });\n\t\t        this.sockets[name].push(fakeSocket);\n\t\t        // @ts-expect-error `totalSocketCount` isn't defined in `@types/node`\n\t\t        this.totalSocketCount++;\n\t\t        return fakeSocket;\n\t\t    }\n\t\t    decrementSockets(name, socket) {\n\t\t        if (!this.sockets[name] || socket === null) {\n\t\t            return;\n\t\t        }\n\t\t        const sockets = this.sockets[name];\n\t\t        const index = sockets.indexOf(socket);\n\t\t        if (index !== -1) {\n\t\t            sockets.splice(index, 1);\n\t\t            // @ts-expect-error  `totalSocketCount` isn't defined in `@types/node`\n\t\t            this.totalSocketCount--;\n\t\t            if (sockets.length === 0) {\n\t\t                // @ts-expect-error `sockets` is readonly in `@types/node`\n\t\t                delete this.sockets[name];\n\t\t            }\n\t\t        }\n\t\t    }\n\t\t    // In order to properly update the socket pool, we need to call `getName()` on\n\t\t    // the core `https.Agent` if it is a secureEndpoint.\n\t\t    getName(options) {\n\t\t        const secureEndpoint = typeof options.secureEndpoint === 'boolean'\n\t\t            ? options.secureEndpoint\n\t\t            : this.isSecureEndpoint(options);\n\t\t        if (secureEndpoint) {\n\t\t            // @ts-expect-error `getName()` isn't defined in `@types/node`\n\t\t            return https_1.Agent.prototype.getName.call(this, options);\n\t\t        }\n\t\t        // @ts-expect-error `getName()` isn't defined in `@types/node`\n\t\t        return super.getName(options);\n\t\t    }\n\t\t    createSocket(req, options, cb) {\n\t\t        const connectOpts = {\n\t\t            ...options,\n\t\t            secureEndpoint: this.isSecureEndpoint(options),\n\t\t        };\n\t\t        const name = this.getName(connectOpts);\n\t\t        const fakeSocket = this.incrementSockets(name);\n\t\t        Promise.resolve()\n\t\t            .then(() => this.connect(req, connectOpts))\n\t\t            .then((socket) => {\n\t\t            this.decrementSockets(name, fakeSocket);\n\t\t            if (socket instanceof http.Agent) {\n\t\t                try {\n\t\t                    // @ts-expect-error `addRequest()` isn't defined in `@types/node`\n\t\t                    return socket.addRequest(req, connectOpts);\n\t\t                }\n\t\t                catch (err) {\n\t\t                    return cb(err);\n\t\t                }\n\t\t            }\n\t\t            this[INTERNAL].currentSocket = socket;\n\t\t            // @ts-expect-error `createSocket()` isn't defined in `@types/node`\n\t\t            super.createSocket(req, options, cb);\n\t\t        }, (err) => {\n\t\t            this.decrementSockets(name, fakeSocket);\n\t\t            cb(err);\n\t\t        });\n\t\t    }\n\t\t    createConnection() {\n\t\t        const socket = this[INTERNAL].currentSocket;\n\t\t        this[INTERNAL].currentSocket = undefined;\n\t\t        if (!socket) {\n\t\t            throw new Error('No socket was returned in the `connect()` function');\n\t\t        }\n\t\t        return socket;\n\t\t    }\n\t\t    get defaultPort() {\n\t\t        return (this[INTERNAL].defaultPort ??\n\t\t            (this.protocol === 'https:' ? 443 : 80));\n\t\t    }\n\t\t    set defaultPort(v) {\n\t\t        if (this[INTERNAL]) {\n\t\t            this[INTERNAL].defaultPort = v;\n\t\t        }\n\t\t    }\n\t\t    get protocol() {\n\t\t        return (this[INTERNAL].protocol ??\n\t\t            (this.isSecureEndpoint() ? 'https:' : 'http:'));\n\t\t    }\n\t\t    set protocol(v) {\n\t\t        if (this[INTERNAL]) {\n\t\t            this[INTERNAL].protocol = v;\n\t\t        }\n\t\t    }\n\t\t}\n\t\texports.Agent = Agent;\n\t\t\n\t} (dist$2));\n\treturn dist$2;\n}\n\nvar parseProxyResponse = {};\n\nvar hasRequiredParseProxyResponse;\n\nfunction requireParseProxyResponse () {\n\tif (hasRequiredParseProxyResponse) return parseProxyResponse;\n\thasRequiredParseProxyResponse = 1;\n\tvar __importDefault = (parseProxyResponse && parseProxyResponse.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(parseProxyResponse, \"__esModule\", { value: true });\n\tparseProxyResponse.parseProxyResponse = void 0;\n\tconst debug_1 = __importDefault(requireSrc());\n\tconst debug = (0, debug_1.default)('https-proxy-agent:parse-proxy-response');\n\tfunction parseProxyResponse$1(socket) {\n\t    return new Promise((resolve, reject) => {\n\t        // we need to buffer any HTTP traffic that happens with the proxy before we get\n\t        // the CONNECT response, so that if the response is anything other than an \"200\"\n\t        // response code, then we can re-play the \"data\" events on the socket once the\n\t        // HTTP parser is hooked up...\n\t        let buffersLength = 0;\n\t        const buffers = [];\n\t        function read() {\n\t            const b = socket.read();\n\t            if (b)\n\t                ondata(b);\n\t            else\n\t                socket.once('readable', read);\n\t        }\n\t        function cleanup() {\n\t            socket.removeListener('end', onend);\n\t            socket.removeListener('error', onerror);\n\t            socket.removeListener('readable', read);\n\t        }\n\t        function onend() {\n\t            cleanup();\n\t            debug('onend');\n\t            reject(new Error('Proxy connection ended before receiving CONNECT response'));\n\t        }\n\t        function onerror(err) {\n\t            cleanup();\n\t            debug('onerror %o', err);\n\t            reject(err);\n\t        }\n\t        function ondata(b) {\n\t            buffers.push(b);\n\t            buffersLength += b.length;\n\t            const buffered = Buffer.concat(buffers, buffersLength);\n\t            const endOfHeaders = buffered.indexOf('\\r\\n\\r\\n');\n\t            if (endOfHeaders === -1) {\n\t                // keep buffering\n\t                debug('have not received end of HTTP headers yet...');\n\t                read();\n\t                return;\n\t            }\n\t            const headerParts = buffered\n\t                .slice(0, endOfHeaders)\n\t                .toString('ascii')\n\t                .split('\\r\\n');\n\t            const firstLine = headerParts.shift();\n\t            if (!firstLine) {\n\t                socket.destroy();\n\t                return reject(new Error('No header received from proxy CONNECT response'));\n\t            }\n\t            const firstLineParts = firstLine.split(' ');\n\t            const statusCode = +firstLineParts[1];\n\t            const statusText = firstLineParts.slice(2).join(' ');\n\t            const headers = {};\n\t            for (const header of headerParts) {\n\t                if (!header)\n\t                    continue;\n\t                const firstColon = header.indexOf(':');\n\t                if (firstColon === -1) {\n\t                    socket.destroy();\n\t                    return reject(new Error(`Invalid header from proxy CONNECT response: \"${header}\"`));\n\t                }\n\t                const key = header.slice(0, firstColon).toLowerCase();\n\t                const value = header.slice(firstColon + 1).trimStart();\n\t                const current = headers[key];\n\t                if (typeof current === 'string') {\n\t                    headers[key] = [current, value];\n\t                }\n\t                else if (Array.isArray(current)) {\n\t                    current.push(value);\n\t                }\n\t                else {\n\t                    headers[key] = value;\n\t                }\n\t            }\n\t            debug('got proxy server response: %o %o', firstLine, headers);\n\t            cleanup();\n\t            resolve({\n\t                connect: {\n\t                    statusCode,\n\t                    statusText,\n\t                    headers,\n\t                },\n\t                buffered,\n\t            });\n\t        }\n\t        socket.on('error', onerror);\n\t        socket.on('end', onend);\n\t        read();\n\t    });\n\t}\n\tparseProxyResponse.parseProxyResponse = parseProxyResponse$1;\n\t\n\treturn parseProxyResponse;\n}\n\nvar hasRequiredDist$2;\n\nfunction requireDist$2 () {\n\tif (hasRequiredDist$2) return dist$3;\n\thasRequiredDist$2 = 1;\n\tvar __createBinding = (dist$3 && dist$3.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (dist$3 && dist$3.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (dist$3 && dist$3.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __importDefault = (dist$3 && dist$3.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(dist$3, \"__esModule\", { value: true });\n\tdist$3.HttpsProxyAgent = void 0;\n\tconst net = __importStar(require$$0$a);\n\tconst tls = __importStar(require$$1$5);\n\tconst assert_1 = __importDefault(require$$0$9);\n\tconst debug_1 = __importDefault(requireSrc());\n\tconst agent_base_1 = requireDist$3();\n\tconst url_1 = Url;\n\tconst parse_proxy_response_1 = requireParseProxyResponse();\n\tconst debug = (0, debug_1.default)('https-proxy-agent');\n\tconst setServernameFromNonIpHost = (options) => {\n\t    if (options.servername === undefined &&\n\t        options.host &&\n\t        !net.isIP(options.host)) {\n\t        return {\n\t            ...options,\n\t            servername: options.host,\n\t        };\n\t    }\n\t    return options;\n\t};\n\t/**\n\t * The `HttpsProxyAgent` implements an HTTP Agent subclass that connects to\n\t * the specified \"HTTP(s) proxy server\" in order to proxy HTTPS requests.\n\t *\n\t * Outgoing HTTP requests are first tunneled through the proxy server using the\n\t * `CONNECT` HTTP request method to establish a connection to the proxy server,\n\t * and then the proxy server connects to the destination target and issues the\n\t * HTTP request from the proxy server.\n\t *\n\t * `https:` requests have their socket connection upgraded to TLS once\n\t * the connection to the proxy server has been established.\n\t */\n\tclass HttpsProxyAgent extends agent_base_1.Agent {\n\t    constructor(proxy, opts) {\n\t        super(opts);\n\t        this.options = { path: undefined };\n\t        this.proxy = typeof proxy === 'string' ? new url_1.URL(proxy) : proxy;\n\t        this.proxyHeaders = opts?.headers ?? {};\n\t        debug('Creating new HttpsProxyAgent instance: %o', this.proxy.href);\n\t        // Trim off the brackets from IPv6 addresses\n\t        const host = (this.proxy.hostname || this.proxy.host).replace(/^\\[|\\]$/g, '');\n\t        const port = this.proxy.port\n\t            ? parseInt(this.proxy.port, 10)\n\t            : this.proxy.protocol === 'https:'\n\t                ? 443\n\t                : 80;\n\t        this.connectOpts = {\n\t            // Attempt to negotiate http/1.1 for proxy servers that support http/2\n\t            ALPNProtocols: ['http/1.1'],\n\t            ...(opts ? omit(opts, 'headers') : null),\n\t            host,\n\t            port,\n\t        };\n\t    }\n\t    /**\n\t     * Called when the node-core HTTP client library is creating a\n\t     * new HTTP request.\n\t     */\n\t    async connect(req, opts) {\n\t        const { proxy } = this;\n\t        if (!opts.host) {\n\t            throw new TypeError('No \"host\" provided');\n\t        }\n\t        // Create a socket connection to the proxy server.\n\t        let socket;\n\t        if (proxy.protocol === 'https:') {\n\t            debug('Creating `tls.Socket`: %o', this.connectOpts);\n\t            socket = tls.connect(setServernameFromNonIpHost(this.connectOpts));\n\t        }\n\t        else {\n\t            debug('Creating `net.Socket`: %o', this.connectOpts);\n\t            socket = net.connect(this.connectOpts);\n\t        }\n\t        const headers = typeof this.proxyHeaders === 'function'\n\t            ? this.proxyHeaders()\n\t            : { ...this.proxyHeaders };\n\t        const host = net.isIPv6(opts.host) ? `[${opts.host}]` : opts.host;\n\t        let payload = `CONNECT ${host}:${opts.port} HTTP/1.1\\r\\n`;\n\t        // Inject the `Proxy-Authorization` header if necessary.\n\t        if (proxy.username || proxy.password) {\n\t            const auth = `${decodeURIComponent(proxy.username)}:${decodeURIComponent(proxy.password)}`;\n\t            headers['Proxy-Authorization'] = `Basic ${Buffer.from(auth).toString('base64')}`;\n\t        }\n\t        headers.Host = `${host}:${opts.port}`;\n\t        if (!headers['Proxy-Connection']) {\n\t            headers['Proxy-Connection'] = this.keepAlive\n\t                ? 'Keep-Alive'\n\t                : 'close';\n\t        }\n\t        for (const name of Object.keys(headers)) {\n\t            payload += `${name}: ${headers[name]}\\r\\n`;\n\t        }\n\t        const proxyResponsePromise = (0, parse_proxy_response_1.parseProxyResponse)(socket);\n\t        socket.write(`${payload}\\r\\n`);\n\t        const { connect, buffered } = await proxyResponsePromise;\n\t        req.emit('proxyConnect', connect);\n\t        this.emit('proxyConnect', connect, req);\n\t        if (connect.statusCode === 200) {\n\t            req.once('socket', resume);\n\t            if (opts.secureEndpoint) {\n\t                // The proxy is connecting to a TLS server, so upgrade\n\t                // this socket connection to a TLS connection.\n\t                debug('Upgrading socket connection to TLS');\n\t                return tls.connect({\n\t                    ...omit(setServernameFromNonIpHost(opts), 'host', 'path', 'port'),\n\t                    socket,\n\t                });\n\t            }\n\t            return socket;\n\t        }\n\t        // Some other status code that's not 200... need to re-play the HTTP\n\t        // header \"data\" events onto the socket once the HTTP machinery is\n\t        // attached so that the node core `http` can parse and handle the\n\t        // error status code.\n\t        // Close the original socket, and a new \"fake\" socket is returned\n\t        // instead, so that the proxy doesn't get the HTTP request\n\t        // written to it (which may contain `Authorization` headers or other\n\t        // sensitive data).\n\t        //\n\t        // See: https://hackerone.com/reports/541502\n\t        socket.destroy();\n\t        const fakeSocket = new net.Socket({ writable: false });\n\t        fakeSocket.readable = true;\n\t        // Need to wait for the \"socket\" event to re-play the \"data\" events.\n\t        req.once('socket', (s) => {\n\t            debug('Replaying proxy buffer for failed request');\n\t            (0, assert_1.default)(s.listenerCount('data') > 0);\n\t            // Replay the \"buffered\" Buffer onto the fake `socket`, since at\n\t            // this point the HTTP module machinery has been hooked up for\n\t            // the user.\n\t            s.push(buffered);\n\t            s.push(null);\n\t        });\n\t        return fakeSocket;\n\t    }\n\t}\n\tHttpsProxyAgent.protocols = ['http', 'https'];\n\tdist$3.HttpsProxyAgent = HttpsProxyAgent;\n\tfunction resume(socket) {\n\t    socket.resume();\n\t}\n\tfunction omit(obj, ...keys) {\n\t    const ret = {};\n\t    let key;\n\t    for (key in obj) {\n\t        if (!keys.includes(key)) {\n\t            ret[key] = obj[key];\n\t        }\n\t    }\n\t    return ret;\n\t}\n\t\n\treturn dist$3;\n}\n\nvar distExports$1 = requireDist$2();\n\nvar dist$1 = {};\n\nvar hasRequiredDist$1;\n\nfunction requireDist$1 () {\n\tif (hasRequiredDist$1) return dist$1;\n\thasRequiredDist$1 = 1;\n\tvar __createBinding = (dist$1 && dist$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (dist$1 && dist$1.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (dist$1 && dist$1.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __importDefault = (dist$1 && dist$1.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(dist$1, \"__esModule\", { value: true });\n\tdist$1.HttpProxyAgent = void 0;\n\tconst net = __importStar(require$$0$a);\n\tconst tls = __importStar(require$$1$5);\n\tconst debug_1 = __importDefault(requireSrc());\n\tconst events_1 = require$$1$4;\n\tconst agent_base_1 = requireDist$3();\n\tconst url_1 = Url;\n\tconst debug = (0, debug_1.default)('http-proxy-agent');\n\t/**\n\t * The `HttpProxyAgent` implements an HTTP Agent subclass that connects\n\t * to the specified \"HTTP proxy server\" in order to proxy HTTP requests.\n\t */\n\tclass HttpProxyAgent extends agent_base_1.Agent {\n\t    constructor(proxy, opts) {\n\t        super(opts);\n\t        this.proxy = typeof proxy === 'string' ? new url_1.URL(proxy) : proxy;\n\t        this.proxyHeaders = opts?.headers ?? {};\n\t        debug('Creating new HttpProxyAgent instance: %o', this.proxy.href);\n\t        // Trim off the brackets from IPv6 addresses\n\t        const host = (this.proxy.hostname || this.proxy.host).replace(/^\\[|\\]$/g, '');\n\t        const port = this.proxy.port\n\t            ? parseInt(this.proxy.port, 10)\n\t            : this.proxy.protocol === 'https:'\n\t                ? 443\n\t                : 80;\n\t        this.connectOpts = {\n\t            ...(opts ? omit(opts, 'headers') : null),\n\t            host,\n\t            port,\n\t        };\n\t    }\n\t    addRequest(req, opts) {\n\t        req._header = null;\n\t        this.setRequestProps(req, opts);\n\t        // @ts-expect-error `addRequest()` isn't defined in `@types/node`\n\t        super.addRequest(req, opts);\n\t    }\n\t    setRequestProps(req, opts) {\n\t        const { proxy } = this;\n\t        const protocol = opts.secureEndpoint ? 'https:' : 'http:';\n\t        const hostname = req.getHeader('host') || 'localhost';\n\t        const base = `${protocol}//${hostname}`;\n\t        const url = new url_1.URL(req.path, base);\n\t        if (opts.port !== 80) {\n\t            url.port = String(opts.port);\n\t        }\n\t        // Change the `http.ClientRequest` instance's \"path\" field\n\t        // to the absolute path of the URL that will be requested.\n\t        req.path = String(url);\n\t        // Inject the `Proxy-Authorization` header if necessary.\n\t        const headers = typeof this.proxyHeaders === 'function'\n\t            ? this.proxyHeaders()\n\t            : { ...this.proxyHeaders };\n\t        if (proxy.username || proxy.password) {\n\t            const auth = `${decodeURIComponent(proxy.username)}:${decodeURIComponent(proxy.password)}`;\n\t            headers['Proxy-Authorization'] = `Basic ${Buffer.from(auth).toString('base64')}`;\n\t        }\n\t        if (!headers['Proxy-Connection']) {\n\t            headers['Proxy-Connection'] = this.keepAlive\n\t                ? 'Keep-Alive'\n\t                : 'close';\n\t        }\n\t        for (const name of Object.keys(headers)) {\n\t            const value = headers[name];\n\t            if (value) {\n\t                req.setHeader(name, value);\n\t            }\n\t        }\n\t    }\n\t    async connect(req, opts) {\n\t        req._header = null;\n\t        if (!req.path.includes('://')) {\n\t            this.setRequestProps(req, opts);\n\t        }\n\t        // At this point, the http ClientRequest's internal `_header` field\n\t        // might have already been set. If this is the case then we'll need\n\t        // to re-generate the string since we just changed the `req.path`.\n\t        let first;\n\t        let endOfHeaders;\n\t        debug('Regenerating stored HTTP header string for request');\n\t        req._implicitHeader();\n\t        if (req.outputData && req.outputData.length > 0) {\n\t            debug('Patching connection write() output buffer with updated header');\n\t            first = req.outputData[0].data;\n\t            endOfHeaders = first.indexOf('\\r\\n\\r\\n') + 4;\n\t            req.outputData[0].data =\n\t                req._header + first.substring(endOfHeaders);\n\t            debug('Output buffer: %o', req.outputData[0].data);\n\t        }\n\t        // Create a socket connection to the proxy server.\n\t        let socket;\n\t        if (this.proxy.protocol === 'https:') {\n\t            debug('Creating `tls.Socket`: %o', this.connectOpts);\n\t            socket = tls.connect(this.connectOpts);\n\t        }\n\t        else {\n\t            debug('Creating `net.Socket`: %o', this.connectOpts);\n\t            socket = net.connect(this.connectOpts);\n\t        }\n\t        // Wait for the socket's `connect` event, so that this `callback()`\n\t        // function throws instead of the `http` request machinery. This is\n\t        // important for i.e. `PacProxyAgent` which determines a failed proxy\n\t        // connection via the `callback()` function throwing.\n\t        await (0, events_1.once)(socket, 'connect');\n\t        return socket;\n\t    }\n\t}\n\tHttpProxyAgent.protocols = ['http', 'https'];\n\tdist$1.HttpProxyAgent = HttpProxyAgent;\n\tfunction omit(obj, ...keys) {\n\t    const ret = {};\n\t    let key;\n\t    for (key in obj) {\n\t        if (!keys.includes(key)) {\n\t            ret[key] = obj[key];\n\t        }\n\t    }\n\t    return ret;\n\t}\n\t\n\treturn dist$1;\n}\n\nvar distExports = requireDist$1();\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst HTTPS_PROXY = \"HTTPS_PROXY\";\nconst HTTP_PROXY = \"HTTP_PROXY\";\nconst ALL_PROXY = \"ALL_PROXY\";\nconst NO_PROXY = \"NO_PROXY\";\n/**\n * The programmatic identifier of the proxyPolicy.\n */\nconst proxyPolicyName = \"proxyPolicy\";\n/**\n * Stores the patterns specified in NO_PROXY environment variable.\n * @internal\n */\nconst globalNoProxyList = [];\nlet noProxyListLoaded = false;\n/** A cache of whether a host should bypass the proxy. */\nconst globalBypassedMap = new Map();\nfunction getEnvironmentValue(name) {\n    if (process.env[name]) {\n        return process.env[name];\n    }\n    else if (process.env[name.toLowerCase()]) {\n        return process.env[name.toLowerCase()];\n    }\n    return undefined;\n}\nfunction loadEnvironmentProxyValue() {\n    if (!process) {\n        return undefined;\n    }\n    const httpsProxy = getEnvironmentValue(HTTPS_PROXY);\n    const allProxy = getEnvironmentValue(ALL_PROXY);\n    const httpProxy = getEnvironmentValue(HTTP_PROXY);\n    return httpsProxy || allProxy || httpProxy;\n}\n/**\n * Check whether the host of a given `uri` matches any pattern in the no proxy list.\n * If there's a match, any request sent to the same host shouldn't have the proxy settings set.\n * This implementation is a port of https://github.com/Azure/azure-sdk-for-net/blob/8cca811371159e527159c7eb65602477898683e2/sdk/core/Azure.Core/src/Pipeline/Internal/HttpEnvironmentProxy.cs#L210\n */\nfunction isBypassed(uri, noProxyList, bypassedMap) {\n    if (noProxyList.length === 0) {\n        return false;\n    }\n    const host = new URL(uri).hostname;\n    if (bypassedMap === null || bypassedMap === void 0 ? void 0 : bypassedMap.has(host)) {\n        return bypassedMap.get(host);\n    }\n    let isBypassedFlag = false;\n    for (const pattern of noProxyList) {\n        if (pattern[0] === \".\") {\n            // This should match either domain it self or any subdomain or host\n            // .foo.com will match foo.com it self or *.foo.com\n            if (host.endsWith(pattern)) {\n                isBypassedFlag = true;\n            }\n            else {\n                if (host.length === pattern.length - 1 && host === pattern.slice(1)) {\n                    isBypassedFlag = true;\n                }\n            }\n        }\n        else {\n            if (host === pattern) {\n                isBypassedFlag = true;\n            }\n        }\n    }\n    bypassedMap === null || bypassedMap === void 0 ? void 0 : bypassedMap.set(host, isBypassedFlag);\n    return isBypassedFlag;\n}\nfunction loadNoProxy() {\n    const noProxy = getEnvironmentValue(NO_PROXY);\n    noProxyListLoaded = true;\n    if (noProxy) {\n        return noProxy\n            .split(\",\")\n            .map((item) => item.trim())\n            .filter((item) => item.length);\n    }\n    return [];\n}\n/**\n * This method converts a proxy url into `ProxySettings` for use with ProxyPolicy.\n * If no argument is given, it attempts to parse a proxy URL from the environment\n * variables `HTTPS_PROXY` or `HTTP_PROXY`.\n * @param proxyUrl - The url of the proxy to use. May contain authentication information.\n * @deprecated - Internally this method is no longer necessary when setting proxy information.\n */\nfunction getDefaultProxySettings$1(proxyUrl) {\n    if (!proxyUrl) {\n        proxyUrl = loadEnvironmentProxyValue();\n        if (!proxyUrl) {\n            return undefined;\n        }\n    }\n    const parsedUrl = new URL(proxyUrl);\n    const schema = parsedUrl.protocol ? parsedUrl.protocol + \"//\" : \"\";\n    return {\n        host: schema + parsedUrl.hostname,\n        port: Number.parseInt(parsedUrl.port || \"80\"),\n        username: parsedUrl.username,\n        password: parsedUrl.password,\n    };\n}\n/**\n * This method attempts to parse a proxy URL from the environment\n * variables `HTTPS_PROXY` or `HTTP_PROXY`.\n */\nfunction getDefaultProxySettingsInternal() {\n    const envProxy = loadEnvironmentProxyValue();\n    return envProxy ? new URL(envProxy) : undefined;\n}\nfunction getUrlFromProxySettings(settings) {\n    let parsedProxyUrl;\n    try {\n        parsedProxyUrl = new URL(settings.host);\n    }\n    catch (_a) {\n        throw new Error(`Expecting a valid host string in proxy settings, but found \"${settings.host}\".`);\n    }\n    parsedProxyUrl.port = String(settings.port);\n    if (settings.username) {\n        parsedProxyUrl.username = settings.username;\n    }\n    if (settings.password) {\n        parsedProxyUrl.password = settings.password;\n    }\n    return parsedProxyUrl;\n}\nfunction setProxyAgentOnRequest(request, cachedAgents, proxyUrl) {\n    // Custom Agent should take precedence so if one is present\n    // we should skip to avoid overwriting it.\n    if (request.agent) {\n        return;\n    }\n    const url = new URL(request.url);\n    const isInsecure = url.protocol !== \"https:\";\n    if (request.tlsSettings) {\n        logger$3.warning(\"TLS settings are not supported in combination with custom Proxy, certificates provided to the client will be ignored.\");\n    }\n    const headers = request.headers.toJSON();\n    if (isInsecure) {\n        if (!cachedAgents.httpProxyAgent) {\n            cachedAgents.httpProxyAgent = new distExports.HttpProxyAgent(proxyUrl, { headers });\n        }\n        request.agent = cachedAgents.httpProxyAgent;\n    }\n    else {\n        if (!cachedAgents.httpsProxyAgent) {\n            cachedAgents.httpsProxyAgent = new distExports$1.HttpsProxyAgent(proxyUrl, { headers });\n        }\n        request.agent = cachedAgents.httpsProxyAgent;\n    }\n}\n/**\n * A policy that allows one to apply proxy settings to all requests.\n * If not passed static settings, they will be retrieved from the HTTPS_PROXY\n * or HTTP_PROXY environment variables.\n * @param proxySettings - ProxySettings to use on each request.\n * @param options - additional settings, for example, custom NO_PROXY patterns\n */\nfunction proxyPolicy$1(proxySettings, options) {\n    if (!noProxyListLoaded) {\n        globalNoProxyList.push(...loadNoProxy());\n    }\n    const defaultProxy = proxySettings\n        ? getUrlFromProxySettings(proxySettings)\n        : getDefaultProxySettingsInternal();\n    const cachedAgents = {};\n    return {\n        name: proxyPolicyName,\n        async sendRequest(request, next) {\n            var _a;\n            if (!request.proxySettings &&\n                defaultProxy &&\n                !isBypassed(request.url, (_a = void 0 ) !== null && _a !== void 0 ? _a : globalNoProxyList, globalBypassedMap)) {\n                setProxyAgentOnRequest(request, cachedAgents, defaultProxy);\n            }\n            else if (request.proxySettings) {\n                setProxyAgentOnRequest(request, cachedAgents, getUrlFromProxySettings(request.proxySettings));\n            }\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Name of the Agent Policy\n */\nconst agentPolicyName = \"agentPolicy\";\n/**\n * Gets a pipeline policy that sets http.agent\n */\nfunction agentPolicy$1(agent) {\n    return {\n        name: agentPolicyName,\n        sendRequest: async (req, next) => {\n            // Users may define an agent on the request, honor it over the client level one\n            if (!req.agent) {\n                req.agent = agent;\n            }\n            return next(req);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Name of the TLS Policy\n */\nconst tlsPolicyName = \"tlsPolicy\";\n/**\n * Gets a pipeline policy that adds the client certificate to the HttpClient agent for authentication.\n */\nfunction tlsPolicy$1(tlsSettings) {\n    return {\n        name: tlsPolicyName,\n        sendRequest: async (req, next) => {\n            // Users may define a request tlsSettings, honor those over the client level one\n            if (!req.tlsSettings) {\n                req.tlsSettings = tlsSettings;\n            }\n            return next(req);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction isBlob$1(x) {\n    return typeof x.stream === \"function\";\n}\n\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\r\n\r\n\r\nfunction __rest(s, e) {\r\n    var t = {};\r\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n        t[p] = s[p];\r\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n                t[p[i]] = s[p[i]];\r\n        }\r\n    return t;\r\n}\r\n\r\nfunction __values$1(o) {\r\n    var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n    if (m) return m.call(o);\r\n    if (o && typeof o.length === \"number\") return {\r\n        next: function () {\r\n            if (o && i >= o.length) o = void 0;\r\n            return { value: o && o[i++], done: !o };\r\n        }\r\n    };\r\n    throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __await(v) {\r\n    return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n    if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n    var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n    return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n    function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\r\n    function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\r\n    function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n    function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n    function fulfill(value) { resume(\"next\", value); }\r\n    function reject(value) { resume(\"throw\", value); }\r\n    function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n    var i, p;\r\n    return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n    function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n    if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n    var m = o[Symbol.asyncIterator], i;\r\n    return m ? m.call(o) : (o = typeof __values$1 === \"function\" ? __values$1(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n    function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n    function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\ntypeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n    var e = new Error(message);\r\n    return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction streamAsyncIterator() {\n    return __asyncGenerator(this, arguments, function* streamAsyncIterator_1() {\n        const reader = this.getReader();\n        try {\n            while (true) {\n                const { done, value } = yield __await(reader.read());\n                if (done) {\n                    return yield __await(void 0);\n                }\n                yield yield __await(value);\n            }\n        }\n        finally {\n            reader.releaseLock();\n        }\n    });\n}\nfunction makeAsyncIterable(webStream) {\n    if (!webStream[Symbol.asyncIterator]) {\n        webStream[Symbol.asyncIterator] = streamAsyncIterator.bind(webStream);\n    }\n    if (!webStream.values) {\n        webStream.values = streamAsyncIterator.bind(webStream);\n    }\n}\nfunction ensureNodeStream(stream) {\n    if (stream instanceof ReadableStream) {\n        makeAsyncIterable(stream);\n        return Readable$1.fromWeb(stream);\n    }\n    else {\n        return stream;\n    }\n}\nfunction toStream(source) {\n    if (source instanceof Uint8Array) {\n        return Readable$1.from(Buffer.from(source));\n    }\n    else if (isBlob$1(source)) {\n        return ensureNodeStream(source.stream());\n    }\n    else {\n        return ensureNodeStream(source);\n    }\n}\n/**\n * Utility function that concatenates a set of binary inputs into one combined output.\n *\n * @param sources - array of sources for the concatenation\n * @returns - in Node, a (() =\\> NodeJS.ReadableStream) which, when read, produces a concatenation of all the inputs.\n *           In browser, returns a `Blob` representing all the concatenated inputs.\n *\n * @internal\n */\nasync function concat$2(sources) {\n    return function () {\n        const streams = sources.map((x) => (typeof x === \"function\" ? x() : x)).map(toStream);\n        return Readable$1.from((function () {\n            return __asyncGenerator(this, arguments, function* () {\n                var _a, e_1, _b, _c;\n                for (const stream of streams) {\n                    try {\n                        for (var _d = true, stream_1 = (e_1 = void 0, __asyncValues(stream)), stream_1_1; stream_1_1 = yield __await(stream_1.next()), _a = stream_1_1.done, !_a; _d = true) {\n                            _c = stream_1_1.value;\n                            _d = false;\n                            const chunk = _c;\n                            yield yield __await(chunk);\n                        }\n                    }\n                    catch (e_1_1) { e_1 = { error: e_1_1 }; }\n                    finally {\n                        try {\n                            if (!_d && !_a && (_b = stream_1.return)) yield __await(_b.call(stream_1));\n                        }\n                        finally { if (e_1) throw e_1.error; }\n                    }\n                }\n            });\n        })());\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction generateBoundary() {\n    return `----AzSDKFormBoundary${randomUUID$1()}`;\n}\nfunction encodeHeaders(headers) {\n    let result = \"\";\n    for (const [key, value] of headers) {\n        result += `${key}: ${value}\\r\\n`;\n    }\n    return result;\n}\nfunction getLength(source) {\n    if (source instanceof Uint8Array) {\n        return source.byteLength;\n    }\n    else if (isBlob$1(source)) {\n        // if was created using createFile then -1 means we have an unknown size\n        return source.size === -1 ? undefined : source.size;\n    }\n    else {\n        return undefined;\n    }\n}\nfunction getTotalLength(sources) {\n    let total = 0;\n    for (const source of sources) {\n        const partLength = getLength(source);\n        if (partLength === undefined) {\n            return undefined;\n        }\n        else {\n            total += partLength;\n        }\n    }\n    return total;\n}\nasync function buildRequestBody(request, parts, boundary) {\n    const sources = [\n        stringToUint8Array(`--${boundary}`, \"utf-8\"),\n        ...parts.flatMap((part) => [\n            stringToUint8Array(\"\\r\\n\", \"utf-8\"),\n            stringToUint8Array(encodeHeaders(part.headers), \"utf-8\"),\n            stringToUint8Array(\"\\r\\n\", \"utf-8\"),\n            part.body,\n            stringToUint8Array(`\\r\\n--${boundary}`, \"utf-8\"),\n        ]),\n        stringToUint8Array(\"--\\r\\n\\r\\n\", \"utf-8\"),\n    ];\n    const contentLength = getTotalLength(sources);\n    if (contentLength) {\n        request.headers.set(\"Content-Length\", contentLength);\n    }\n    request.body = await concat$2(sources);\n}\n/**\n * Name of multipart policy\n */\nconst multipartPolicyName$1 = \"multipartPolicy\";\nconst maxBoundaryLength = 70;\nconst validBoundaryCharacters = new Set(`abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'()+,-./:=?`);\nfunction assertValidBoundary(boundary) {\n    if (boundary.length > maxBoundaryLength) {\n        throw new Error(`Multipart boundary \"${boundary}\" exceeds maximum length of 70 characters`);\n    }\n    if (Array.from(boundary).some((x) => !validBoundaryCharacters.has(x))) {\n        throw new Error(`Multipart boundary \"${boundary}\" contains invalid characters`);\n    }\n}\n/**\n * Pipeline policy for multipart requests\n */\nfunction multipartPolicy$1() {\n    return {\n        name: multipartPolicyName$1,\n        async sendRequest(request, next) {\n            var _a;\n            if (!request.multipartBody) {\n                return next(request);\n            }\n            if (request.body) {\n                throw new Error(\"multipartBody and regular body cannot be set at the same time\");\n            }\n            let boundary = request.multipartBody.boundary;\n            const contentTypeHeader = (_a = request.headers.get(\"Content-Type\")) !== null && _a !== void 0 ? _a : \"multipart/mixed\";\n            const parsedHeader = contentTypeHeader.match(/^(multipart\\/[^ ;]+)(?:; *boundary=(.+))?$/);\n            if (!parsedHeader) {\n                throw new Error(`Got multipart request body, but content-type header was not multipart: ${contentTypeHeader}`);\n            }\n            const [, contentType, parsedBoundary] = parsedHeader;\n            if (parsedBoundary && boundary && parsedBoundary !== boundary) {\n                throw new Error(`Multipart boundary was specified as ${parsedBoundary} in the header, but got ${boundary} in the request body`);\n            }\n            boundary !== null && boundary !== void 0 ? boundary : (boundary = parsedBoundary);\n            if (boundary) {\n                assertValidBoundary(boundary);\n            }\n            else {\n                boundary = generateBoundary();\n            }\n            request.headers.set(\"Content-Type\", `${contentType}; boundary=${boundary}`);\n            await buildRequestBody(request, request.multipartBody.parts, boundary);\n            request.multipartBody = undefined;\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Creates a totally empty pipeline.\n * Useful for testing or creating a custom one.\n */\nfunction createEmptyPipeline() {\n    return createEmptyPipeline$1();\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst context$1 = createLoggerContext({\n    logLevelEnvVarName: \"AZURE_LOG_LEVEL\",\n    namespace: \"azure\",\n});\n/**\n * Creates a logger for use by the Azure SDKs that inherits from `AzureLogger`.\n * @param namespace - The name of the SDK package.\n * @hidden\n */\nfunction createClientLogger(namespace) {\n    return context$1.createClientLogger(namespace);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst logger$2 = createClientLogger(\"core-rest-pipeline\");\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A policy that logs all requests and responses.\n * @param options - Options to configure logPolicy.\n */\nfunction logPolicy(options = {}) {\n    return logPolicy$1(Object.assign({ logger: logger$2.info }, options));\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the redirectPolicy.\n */\nconst redirectPolicyName = redirectPolicyName$1;\n/**\n * A policy to follow Location headers from the server in order\n * to support server-side redirection.\n * In the browser, this policy is not used.\n * @param options - Options to control policy behavior.\n */\nfunction redirectPolicy(options = {}) {\n    return redirectPolicy$1(options);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * @internal\n */\nfunction getHeaderName() {\n    return \"User-Agent\";\n}\n/**\n * @internal\n */\nasync function setPlatformSpecificData(map) {\n    if (process$2 && process$2.versions) {\n        const versions = process$2.versions;\n        if (versions.bun) {\n            map.set(\"Bun\", versions.bun);\n        }\n        else if (versions.deno) {\n            map.set(\"Deno\", versions.deno);\n        }\n        else if (versions.node) {\n            map.set(\"Node\", versions.node);\n        }\n    }\n    map.set(\"OS\", `(${os.arch()}-${os.type()}-${os.release()})`);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst SDK_VERSION$1 = \"1.20.0\";\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction getUserAgentString(telemetryInfo) {\n    const parts = [];\n    for (const [key, value] of telemetryInfo) {\n        const token = value ? `${key}/${value}` : key;\n        parts.push(token);\n    }\n    return parts.join(\" \");\n}\n/**\n * @internal\n */\nfunction getUserAgentHeaderName() {\n    return getHeaderName();\n}\n/**\n * @internal\n */\nasync function getUserAgentValue(prefix) {\n    const runtimeInfo = new Map();\n    runtimeInfo.set(\"core-rest-pipeline\", SDK_VERSION$1);\n    await setPlatformSpecificData(runtimeInfo);\n    const defaultAgent = getUserAgentString(runtimeInfo);\n    const userAgentValue = prefix ? `${prefix} ${defaultAgent}` : defaultAgent;\n    return userAgentValue;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst UserAgentHeaderName = getUserAgentHeaderName();\n/**\n * The programmatic identifier of the userAgentPolicy.\n */\nconst userAgentPolicyName = \"userAgentPolicy\";\n/**\n * A policy that sets the User-Agent header (or equivalent) to reflect\n * the library version.\n * @param options - Options to customize the user agent value.\n */\nfunction userAgentPolicy(options = {}) {\n    const userAgentValue = getUserAgentValue(options.userAgentPrefix);\n    return {\n        name: userAgentPolicyName,\n        async sendRequest(request, next) {\n            if (!request.headers.has(UserAgentHeaderName)) {\n                request.headers.set(UserAgentHeaderName, await userAgentValue);\n            }\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n/**\n * This error is thrown when an asynchronous operation has been aborted.\n * Check for this error by testing the `name` that the name property of the\n * error matches `\"AbortError\"`.\n *\n * @example\n * ```ts\n * const controller = new AbortController();\n * controller.abort();\n * try {\n *   doAsyncWork(controller.signal)\n * } catch (e) {\n *   if (e.name === 'AbortError') {\n *     // handle abort error here.\n *   }\n * }\n * ```\n */\nlet AbortError$3 = class AbortError extends Error {\n    constructor(message) {\n        super(message);\n        this.name = \"AbortError\";\n    }\n};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Creates an abortable promise.\n * @param buildPromise - A function that takes the resolve and reject functions as parameters.\n * @param options - The options for the abortable promise.\n * @returns A promise that can be aborted.\n */\nfunction createAbortablePromise(buildPromise, options) {\n    const { cleanupBeforeAbort, abortSignal, abortErrorMsg } = options !== null && options !== void 0 ? options : {};\n    return new Promise((resolve, reject) => {\n        function rejectOnAbort() {\n            reject(new AbortError$3(abortErrorMsg !== null && abortErrorMsg !== void 0 ? abortErrorMsg : \"The operation was aborted.\"));\n        }\n        function removeListeners() {\n            abortSignal === null || abortSignal === void 0 ? void 0 : abortSignal.removeEventListener(\"abort\", onAbort);\n        }\n        function onAbort() {\n            cleanupBeforeAbort === null || cleanupBeforeAbort === void 0 ? void 0 : cleanupBeforeAbort();\n            removeListeners();\n            rejectOnAbort();\n        }\n        if (abortSignal === null || abortSignal === void 0 ? void 0 : abortSignal.aborted) {\n            return rejectOnAbort();\n        }\n        try {\n            buildPromise((x) => {\n                removeListeners();\n                resolve(x);\n            }, (x) => {\n                removeListeners();\n                reject(x);\n            });\n        }\n        catch (err) {\n            reject(err);\n        }\n        abortSignal === null || abortSignal === void 0 ? void 0 : abortSignal.addEventListener(\"abort\", onAbort);\n    });\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst StandardAbortMessage = \"The delay was aborted.\";\n/**\n * A wrapper for setTimeout that resolves a promise after timeInMs milliseconds.\n * @param timeInMs - The number of milliseconds to be delayed.\n * @param options - The options for delay - currently abort options\n * @returns Promise that is resolved after timeInMs\n */\nfunction delay$2(timeInMs, options) {\n    let token;\n    const { abortSignal, abortErrorMsg } = {};\n    return createAbortablePromise((resolve) => {\n        token = setTimeout(resolve, timeInMs);\n    }, {\n        cleanupBeforeAbort: () => clearTimeout(token),\n        abortSignal,\n        abortErrorMsg: abortErrorMsg !== null && abortErrorMsg !== void 0 ? abortErrorMsg : StandardAbortMessage,\n    });\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Given what is thought to be an error object, return the message if possible.\n * If the message is missing, returns a stringified version of the input.\n * @param e - Something thrown from a try block\n * @returns The error message or a string of the input\n */\nfunction getErrorMessage(e) {\n    if (isError$1(e)) {\n        return e.message;\n    }\n    else {\n        let stringified;\n        try {\n            if (typeof e === \"object\" && e) {\n                stringified = JSON.stringify(e);\n            }\n            else {\n                stringified = String(e);\n            }\n        }\n        catch (err) {\n            stringified = \"[unable to stringify input]\";\n        }\n        return `Unknown error ${stringified}`;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Typeguard for an error object shape (has name and message)\n *\n * @param e - Something caught by a catch clause.\n */\nfunction isError(e) {\n    return isError$1(e);\n}\n/**\n * Generated Universally Unique Identifier\n *\n * @returns RFC4122 v4 UUID.\n */\nfunction randomUUID() {\n    return randomUUID$1();\n}\n/**\n * A constant that indicates whether the environment the code is running is a Node.js compatible environment.\n *\n * @deprecated\n *\n * Use `isNodeLike` instead.\n */\nconst isNode = isNodeLike$1;\n/**\n * A constant that indicates whether the environment the code is running is a Node.js compatible environment.\n */\nconst isNodeLike = isNodeLike$1;\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Private symbol used as key on objects created using createFile containing the\n * original source of the file object.\n *\n * This is used in Node to access the original Node stream without using Blob#stream, which\n * returns a web stream. This is done to avoid a couple of bugs to do with Blob#stream and\n * Readable#to/fromWeb in Node versions we support:\n * - https://github.com/nodejs/node/issues/42694 (fixed in Node 18.14)\n * - https://github.com/nodejs/node/issues/48916 (fixed in Node 20.6)\n *\n * Once these versions are no longer supported, we may be able to stop doing this.\n *\n * @internal\n */\nconst rawContent = Symbol(\"rawContent\");\n/**\n * Type guard to check if a given object is a blob-like object with a raw content property.\n */\nfunction hasRawContent(x) {\n    return typeof x[rawContent] === \"function\";\n}\n/**\n * Extract the raw content from a given blob-like object. If the input was created using createFile\n * or createFileFromStream, the exact content passed into createFile/createFileFromStream will be used.\n * For true instances of Blob and File, returns the actual blob.\n *\n * @internal\n */\nfunction getRawContent(blob) {\n    if (hasRawContent(blob)) {\n        return blob[rawContent]();\n    }\n    else {\n        return blob;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Name of multipart policy\n */\nconst multipartPolicyName = multipartPolicyName$1;\n/**\n * Pipeline policy for multipart requests\n */\nfunction multipartPolicy() {\n    const tspPolicy = multipartPolicy$1();\n    return {\n        name: multipartPolicyName,\n        sendRequest: async (request, next) => {\n            if (request.multipartBody) {\n                for (const part of request.multipartBody.parts) {\n                    if (hasRawContent(part.body)) {\n                        part.body = getRawContent(part.body);\n                    }\n                }\n            }\n            return tspPolicy.sendRequest(request, next);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the decompressResponsePolicy.\n */\nconst decompressResponsePolicyName = decompressResponsePolicyName$1;\n/**\n * A policy to enable response decompression according to Accept-Encoding header\n * https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding\n */\nfunction decompressResponsePolicy() {\n    return decompressResponsePolicy$1();\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A policy that retries according to three strategies:\n * - When the server sends a 429 response with a Retry-After header.\n * - When there are errors in the underlying transport layer (e.g. DNS lookup failures).\n * - Or otherwise if the outgoing request fails, it will retry with an exponentially increasing delay.\n */\nfunction defaultRetryPolicy(options = {}) {\n    return defaultRetryPolicy$1(options);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A policy that encodes FormData on the request into the body.\n */\nfunction formDataPolicy() {\n    return formDataPolicy$1();\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * This method converts a proxy url into `ProxySettings` for use with ProxyPolicy.\n * If no argument is given, it attempts to parse a proxy URL from the environment\n * variables `HTTPS_PROXY` or `HTTP_PROXY`.\n * @param proxyUrl - The url of the proxy to use. May contain authentication information.\n * @deprecated - Internally this method is no longer necessary when setting proxy information.\n */\nfunction getDefaultProxySettings(proxyUrl) {\n    return getDefaultProxySettings$1(proxyUrl);\n}\n/**\n * A policy that allows one to apply proxy settings to all requests.\n * If not passed static settings, they will be retrieved from the HTTPS_PROXY\n * or HTTP_PROXY environment variables.\n * @param proxySettings - ProxySettings to use on each request.\n * @param options - additional settings, for example, custom NO_PROXY patterns\n */\nfunction proxyPolicy(proxySettings, options) {\n    return proxyPolicy$1(proxySettings);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the setClientRequestIdPolicy.\n */\nconst setClientRequestIdPolicyName = \"setClientRequestIdPolicy\";\n/**\n * Each PipelineRequest gets a unique id upon creation.\n * This policy passes that unique id along via an HTTP header to enable better\n * telemetry and tracing.\n * @param requestIdHeaderName - The name of the header to pass the request ID to.\n */\nfunction setClientRequestIdPolicy(requestIdHeaderName = \"x-ms-client-request-id\") {\n    return {\n        name: setClientRequestIdPolicyName,\n        async sendRequest(request, next) {\n            if (!request.headers.has(requestIdHeaderName)) {\n                request.headers.set(requestIdHeaderName, request.requestId);\n            }\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Gets a pipeline policy that sets http.agent\n */\nfunction agentPolicy(agent) {\n    return agentPolicy$1(agent);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Gets a pipeline policy that adds the client certificate to the HttpClient agent for authentication.\n */\nfunction tlsPolicy(tlsSettings) {\n    return tlsPolicy$1(tlsSettings);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/** @internal */\nconst knownContextKeys = {\n    span: Symbol.for(\"@azure/core-tracing span\"),\n    namespace: Symbol.for(\"@azure/core-tracing namespace\"),\n};\n/**\n * Creates a new {@link TracingContext} with the given options.\n * @param options - A set of known keys that may be set on the context.\n * @returns A new {@link TracingContext} with the given options.\n *\n * @internal\n */\nfunction createTracingContext(options = {}) {\n    let context = new TracingContextImpl(options.parentContext);\n    if (options.span) {\n        context = context.setValue(knownContextKeys.span, options.span);\n    }\n    if (options.namespace) {\n        context = context.setValue(knownContextKeys.namespace, options.namespace);\n    }\n    return context;\n}\n/** @internal */\nclass TracingContextImpl {\n    constructor(initialContext) {\n        this._contextMap =\n            initialContext instanceof TracingContextImpl\n                ? new Map(initialContext._contextMap)\n                : new Map();\n    }\n    setValue(key, value) {\n        const newContext = new TracingContextImpl(this);\n        newContext._contextMap.set(key, value);\n        return newContext;\n    }\n    getValue(key) {\n        return this._contextMap.get(key);\n    }\n    deleteValue(key) {\n        const newContext = new TracingContextImpl(this);\n        newContext._contextMap.delete(key);\n        return newContext;\n    }\n}\n\nvar state$4 = {};\n\nvar hasRequiredState$2;\n\nfunction requireState$2 () {\n\tif (hasRequiredState$2) return state$4;\n\thasRequiredState$2 = 1;\n\t// Copyright (c) Microsoft Corporation.\n\t// Licensed under the MIT License.\n\tObject.defineProperty(state$4, \"__esModule\", { value: true });\n\tstate$4.state = void 0;\n\t/**\n\t * @internal\n\t *\n\t * Holds the singleton instrumenter, to be shared across CJS and ESM imports.\n\t */\n\tstate$4.state = {\n\t    instrumenterImplementation: undefined,\n\t};\n\t\n\treturn state$4;\n}\n\nvar stateExports$1 = requireState$2();\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n// @ts-expect-error The recommended approach to sharing module state between ESM and CJS.\n// See https://github.com/isaacs/tshy/blob/main/README.md#module-local-state for additional information.\n/**\n * Defines the shared state between CJS and ESM by re-exporting the CJS state.\n */\nconst state$3 = stateExports$1.state;\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction createDefaultTracingSpan() {\n    return {\n        end: () => {\n            // noop\n        },\n        isRecording: () => false,\n        recordException: () => {\n            // noop\n        },\n        setAttribute: () => {\n            // noop\n        },\n        setStatus: () => {\n            // noop\n        },\n        addEvent: () => {\n            // noop\n        },\n    };\n}\nfunction createDefaultInstrumenter() {\n    return {\n        createRequestHeaders: () => {\n            return {};\n        },\n        parseTraceparentHeader: () => {\n            return undefined;\n        },\n        startSpan: (_name, spanOptions) => {\n            return {\n                span: createDefaultTracingSpan(),\n                tracingContext: createTracingContext({ parentContext: spanOptions.tracingContext }),\n            };\n        },\n        withContext(_context, callback, ...callbackArgs) {\n            return callback(...callbackArgs);\n        },\n    };\n}\n/**\n * Gets the currently set instrumenter, a No-Op instrumenter by default.\n *\n * @returns The currently set instrumenter\n */\nfunction getInstrumenter() {\n    if (!state$3.instrumenterImplementation) {\n        state$3.instrumenterImplementation = createDefaultInstrumenter();\n    }\n    return state$3.instrumenterImplementation;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Creates a new tracing client.\n *\n * @param options - Options used to configure the tracing client.\n * @returns - An instance of {@link TracingClient}.\n */\nfunction createTracingClient(options) {\n    const { namespace, packageName, packageVersion } = options;\n    function startSpan(name, operationOptions, spanOptions) {\n        var _a;\n        const startSpanResult = getInstrumenter().startSpan(name, Object.assign(Object.assign({}, spanOptions), { packageName: packageName, packageVersion: packageVersion, tracingContext: (_a = operationOptions === null || operationOptions === void 0 ? void 0 : operationOptions.tracingOptions) === null || _a === void 0 ? void 0 : _a.tracingContext }));\n        let tracingContext = startSpanResult.tracingContext;\n        const span = startSpanResult.span;\n        if (!tracingContext.getValue(knownContextKeys.namespace)) {\n            tracingContext = tracingContext.setValue(knownContextKeys.namespace, namespace);\n        }\n        span.setAttribute(\"az.namespace\", tracingContext.getValue(knownContextKeys.namespace));\n        const updatedOptions = Object.assign({}, operationOptions, {\n            tracingOptions: Object.assign(Object.assign({}, operationOptions === null || operationOptions === void 0 ? void 0 : operationOptions.tracingOptions), { tracingContext }),\n        });\n        return {\n            span,\n            updatedOptions,\n        };\n    }\n    async function withSpan(name, operationOptions, callback, spanOptions) {\n        const { span, updatedOptions } = startSpan(name, operationOptions, spanOptions);\n        try {\n            const result = await withContext(updatedOptions.tracingOptions.tracingContext, () => Promise.resolve(callback(updatedOptions, span)));\n            span.setStatus({ status: \"success\" });\n            return result;\n        }\n        catch (err) {\n            span.setStatus({ status: \"error\", error: err });\n            throw err;\n        }\n        finally {\n            span.end();\n        }\n    }\n    function withContext(context, callback, ...callbackArgs) {\n        return getInstrumenter().withContext(context, callback, ...callbackArgs);\n    }\n    /**\n     * Parses a traceparent header value into a span identifier.\n     *\n     * @param traceparentHeader - The traceparent header to parse.\n     * @returns An implementation-specific identifier for the span.\n     */\n    function parseTraceparentHeader(traceparentHeader) {\n        return getInstrumenter().parseTraceparentHeader(traceparentHeader);\n    }\n    /**\n     * Creates a set of request headers to propagate tracing information to a backend.\n     *\n     * @param tracingContext - The context containing the span to serialize.\n     * @returns The set of headers to add to a request.\n     */\n    function createRequestHeaders(tracingContext) {\n        return getInstrumenter().createRequestHeaders(tracingContext);\n    }\n    return {\n        startSpan,\n        withSpan,\n        withContext,\n        parseTraceparentHeader,\n        createRequestHeaders,\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A custom error type for failed pipeline requests.\n */\nclass RestError extends Error {\n    constructor(message, options = {}) {\n        super(message);\n        // what is this??\n        // it turns out that you can return from a constructor and it causes\n        // calling `new` to return the value you return.\n        // this lets us wrap the TypeSpec RestError so that calling this constructor will give you the same type of object as calling the TypeSpec one,\n        // even though the constructor signatures (through RestErrorOptions) are slightly different.\n        return new RestError$1(message, options);\n    }\n}\n/**\n * Something went wrong when making the request.\n * This means the actual request failed for some reason,\n * such as a DNS issue or the connection being lost.\n */\nRestError.REQUEST_SEND_ERROR = \"REQUEST_SEND_ERROR\";\n/**\n * This means that parsing the response from the server failed.\n * It may have been malformed.\n */\nRestError.PARSE_ERROR = \"PARSE_ERROR\";\n/**\n * Typeguard for RestError\n * @param e - Something caught by a catch clause.\n */\nfunction isRestError(e) {\n    return isRestError$1(e);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the tracingPolicy.\n */\nconst tracingPolicyName = \"tracingPolicy\";\n/**\n * A simple policy to create OpenTelemetry Spans for each request made by the pipeline\n * that has SpanOptions with a parent.\n * Requests made without a parent Span will not be recorded.\n * @param options - Options to configure the telemetry logged by the tracing policy.\n */\nfunction tracingPolicy(options = {}) {\n    const userAgentPromise = getUserAgentValue(options.userAgentPrefix);\n    const sanitizer = new Sanitizer({\n        additionalAllowedQueryParameters: options.additionalAllowedQueryParameters,\n    });\n    const tracingClient = tryCreateTracingClient();\n    return {\n        name: tracingPolicyName,\n        async sendRequest(request, next) {\n            var _a;\n            if (!tracingClient) {\n                return next(request);\n            }\n            const userAgent = await userAgentPromise;\n            const spanAttributes = {\n                \"http.url\": sanitizer.sanitizeUrl(request.url),\n                \"http.method\": request.method,\n                \"http.user_agent\": userAgent,\n                requestId: request.requestId,\n            };\n            if (userAgent) {\n                spanAttributes[\"http.user_agent\"] = userAgent;\n            }\n            const { span, tracingContext } = (_a = tryCreateSpan(tracingClient, request, spanAttributes)) !== null && _a !== void 0 ? _a : {};\n            if (!span || !tracingContext) {\n                return next(request);\n            }\n            try {\n                const response = await tracingClient.withContext(tracingContext, next, request);\n                tryProcessResponse(span, response);\n                return response;\n            }\n            catch (err) {\n                tryProcessError(span, err);\n                throw err;\n            }\n        },\n    };\n}\nfunction tryCreateTracingClient() {\n    try {\n        return createTracingClient({\n            namespace: \"\",\n            packageName: \"@azure/core-rest-pipeline\",\n            packageVersion: SDK_VERSION$1,\n        });\n    }\n    catch (e) {\n        logger$2.warning(`Error when creating the TracingClient: ${getErrorMessage(e)}`);\n        return undefined;\n    }\n}\nfunction tryCreateSpan(tracingClient, request, spanAttributes) {\n    try {\n        // As per spec, we do not need to differentiate between HTTP and HTTPS in span name.\n        const { span, updatedOptions } = tracingClient.startSpan(`HTTP ${request.method}`, { tracingOptions: request.tracingOptions }, {\n            spanKind: \"client\",\n            spanAttributes,\n        });\n        // If the span is not recording, don't do any more work.\n        if (!span.isRecording()) {\n            span.end();\n            return undefined;\n        }\n        // set headers\n        const headers = tracingClient.createRequestHeaders(updatedOptions.tracingOptions.tracingContext);\n        for (const [key, value] of Object.entries(headers)) {\n            request.headers.set(key, value);\n        }\n        return { span, tracingContext: updatedOptions.tracingOptions.tracingContext };\n    }\n    catch (e) {\n        logger$2.warning(`Skipping creating a tracing span due to an error: ${getErrorMessage(e)}`);\n        return undefined;\n    }\n}\nfunction tryProcessError(span, error) {\n    try {\n        span.setStatus({\n            status: \"error\",\n            error: isError(error) ? error : undefined,\n        });\n        if (isRestError(error) && error.statusCode) {\n            span.setAttribute(\"http.status_code\", error.statusCode);\n        }\n        span.end();\n    }\n    catch (e) {\n        logger$2.warning(`Skipping tracing span processing due to an error: ${getErrorMessage(e)}`);\n    }\n}\nfunction tryProcessResponse(span, response) {\n    try {\n        span.setAttribute(\"http.status_code\", response.status);\n        const serviceRequestId = response.headers.get(\"x-ms-request-id\");\n        if (serviceRequestId) {\n            span.setAttribute(\"serviceRequestId\", serviceRequestId);\n        }\n        // Per semantic conventions, only set the status to error if the status code is 4xx or 5xx.\n        // Otherwise, the status MUST remain unset.\n        // https://opentelemetry.io/docs/specs/semconv/http/http-spans/#status\n        if (response.status >= 400) {\n            span.setStatus({\n                status: \"error\",\n            });\n        }\n        span.end();\n    }\n    catch (e) {\n        logger$2.warning(`Skipping tracing span processing due to an error: ${getErrorMessage(e)}`);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Creates a native AbortSignal which reflects the state of the provided AbortSignalLike.\n * If the AbortSignalLike is already a native AbortSignal, it is returned as is.\n * @param abortSignalLike - The AbortSignalLike to wrap.\n * @returns - An object containing the native AbortSignal and an optional cleanup function. The cleanup function should be called when the AbortSignal is no longer needed.\n */\nfunction wrapAbortSignalLike(abortSignalLike) {\n    if (abortSignalLike instanceof AbortSignal) {\n        return { abortSignal: abortSignalLike };\n    }\n    if (abortSignalLike.aborted) {\n        return { abortSignal: AbortSignal.abort(abortSignalLike.reason) };\n    }\n    const controller = new AbortController();\n    let needsCleanup = true;\n    function cleanup() {\n        if (needsCleanup) {\n            abortSignalLike.removeEventListener(\"abort\", listener);\n            needsCleanup = false;\n        }\n    }\n    function listener() {\n        controller.abort(abortSignalLike.reason);\n        cleanup();\n    }\n    abortSignalLike.addEventListener(\"abort\", listener);\n    return { abortSignal: controller.signal, cleanup };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst wrapAbortSignalLikePolicyName = \"wrapAbortSignalLikePolicy\";\n/**\n * Policy that ensure that any AbortSignalLike is wrapped in a native AbortSignal for processing by the pipeline.\n * Since the ts-http-runtime expects a native AbortSignal, this policy is used to ensure that any AbortSignalLike is wrapped in a native AbortSignal.\n *\n * @returns - created policy\n */\nfunction wrapAbortSignalLikePolicy() {\n    return {\n        name: wrapAbortSignalLikePolicyName,\n        sendRequest: async (request, next) => {\n            if (!request.abortSignal) {\n                return next(request);\n            }\n            const { abortSignal, cleanup } = wrapAbortSignalLike(request.abortSignal);\n            // eslint-disable-next-line no-param-reassign\n            request.abortSignal = abortSignal;\n            try {\n                return await next(request);\n            }\n            finally {\n                cleanup === null || cleanup === void 0 ? void 0 : cleanup();\n            }\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Create a new pipeline with a default set of customizable policies.\n * @param options - Options to configure a custom pipeline.\n */\nfunction createPipelineFromOptions(options) {\n    var _a;\n    const pipeline = createEmptyPipeline();\n    if (isNodeLike) {\n        if (options.agent) {\n            pipeline.addPolicy(agentPolicy(options.agent));\n        }\n        if (options.tlsOptions) {\n            pipeline.addPolicy(tlsPolicy(options.tlsOptions));\n        }\n        pipeline.addPolicy(proxyPolicy(options.proxyOptions));\n        pipeline.addPolicy(decompressResponsePolicy());\n    }\n    pipeline.addPolicy(wrapAbortSignalLikePolicy());\n    pipeline.addPolicy(formDataPolicy(), { beforePolicies: [multipartPolicyName] });\n    pipeline.addPolicy(userAgentPolicy(options.userAgentOptions));\n    pipeline.addPolicy(setClientRequestIdPolicy((_a = options.telemetryOptions) === null || _a === void 0 ? void 0 : _a.clientRequestIdHeaderName));\n    // The multipart policy is added after policies with no phase, so that\n    // policies can be added between it and formDataPolicy to modify\n    // properties (e.g., making the boundary constant in recorded tests).\n    pipeline.addPolicy(multipartPolicy(), { afterPhase: \"Deserialize\" });\n    pipeline.addPolicy(defaultRetryPolicy(options.retryOptions), { phase: \"Retry\" });\n    pipeline.addPolicy(tracingPolicy(Object.assign(Object.assign({}, options.userAgentOptions), options.loggingOptions)), {\n        afterPhase: \"Retry\",\n    });\n    if (isNodeLike) {\n        // Both XHR and Fetch expect to handle redirects automatically,\n        // so only include this policy when we're in Node.\n        pipeline.addPolicy(redirectPolicy(options.redirectOptions), { afterPhase: \"Retry\" });\n    }\n    pipeline.addPolicy(logPolicy(options.loggingOptions), { afterPhase: \"Sign\" });\n    return pipeline;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Create the correct HttpClient for the current environment.\n */\nfunction createDefaultHttpClient() {\n    const client = createDefaultHttpClient$1();\n    return {\n        async sendRequest(request) {\n            // we wrap any AbortSignalLike here since the TypeSpec runtime expects a native AbortSignal.\n            // 99% of the time, this should be a no-op since a native AbortSignal is passed in.\n            const { abortSignal, cleanup } = request.abortSignal\n                ? wrapAbortSignalLike(request.abortSignal)\n                : {};\n            try {\n                // eslint-disable-next-line no-param-reassign\n                request.abortSignal = abortSignal;\n                return await client.sendRequest(request);\n            }\n            finally {\n                cleanup === null || cleanup === void 0 ? void 0 : cleanup();\n            }\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Creates an object that satisfies the `HttpHeaders` interface.\n * @param rawHeaders - A simple object representing initial headers\n */\nfunction createHttpHeaders(rawHeaders) {\n    return createHttpHeaders$1(rawHeaders);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Creates a new pipeline request with the given options.\n * This method is to allow for the easy setting of default values and not required.\n * @param options - The options to create the request with.\n */\nfunction createPipelineRequest(options) {\n    // Cast required due to difference between ts-http-runtime requiring AbortSignal while core-rest-pipeline allows\n    // the more generic AbortSignalLike. The wrapAbortSignalLike pipeline policy will take care of ensuring that any AbortSignalLike in the request\n    // is converted into a true AbortSignal.\n    return createPipelineRequest$1(options);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n// Default options for the cycler if none are provided\nconst DEFAULT_CYCLER_OPTIONS = {\n    forcedRefreshWindowInMs: 1000, // Force waiting for a refresh 1s before the token expires\n    retryIntervalInMs: 3000, // Allow refresh attempts every 3s\n    refreshWindowInMs: 1000 * 60 * 2, // Start refreshing 2m before expiry\n};\n/**\n * Converts an an unreliable access token getter (which may resolve with null)\n * into an AccessTokenGetter by retrying the unreliable getter in a regular\n * interval.\n *\n * @param getAccessToken - A function that produces a promise of an access token that may fail by returning null.\n * @param retryIntervalInMs - The time (in milliseconds) to wait between retry attempts.\n * @param refreshTimeout - The timestamp after which the refresh attempt will fail, throwing an exception.\n * @returns - A promise that, if it resolves, will resolve with an access token.\n */\nasync function beginRefresh(getAccessToken, retryIntervalInMs, refreshTimeout) {\n    // This wrapper handles exceptions gracefully as long as we haven't exceeded\n    // the timeout.\n    async function tryGetAccessToken() {\n        if (Date.now() < refreshTimeout) {\n            try {\n                return await getAccessToken();\n            }\n            catch (_a) {\n                return null;\n            }\n        }\n        else {\n            const finalToken = await getAccessToken();\n            // Timeout is up, so throw if it's still null\n            if (finalToken === null) {\n                throw new Error(\"Failed to refresh access token.\");\n            }\n            return finalToken;\n        }\n    }\n    let token = await tryGetAccessToken();\n    while (token === null) {\n        await delay$2(retryIntervalInMs);\n        token = await tryGetAccessToken();\n    }\n    return token;\n}\n/**\n * Creates a token cycler from a credential, scopes, and optional settings.\n *\n * A token cycler represents a way to reliably retrieve a valid access token\n * from a TokenCredential. It will handle initializing the token, refreshing it\n * when it nears expiration, and synchronizes refresh attempts to avoid\n * concurrency hazards.\n *\n * @param credential - the underlying TokenCredential that provides the access\n * token\n * @param tokenCyclerOptions - optionally override default settings for the cycler\n *\n * @returns - a function that reliably produces a valid access token\n */\nfunction createTokenCycler(credential, tokenCyclerOptions) {\n    let refreshWorker = null;\n    let token = null;\n    let tenantId;\n    const options = Object.assign(Object.assign({}, DEFAULT_CYCLER_OPTIONS), tokenCyclerOptions);\n    /**\n     * This little holder defines several predicates that we use to construct\n     * the rules of refreshing the token.\n     */\n    const cycler = {\n        /**\n         * Produces true if a refresh job is currently in progress.\n         */\n        get isRefreshing() {\n            return refreshWorker !== null;\n        },\n        /**\n         * Produces true if the cycler SHOULD refresh (we are within the refresh\n         * window and not already refreshing)\n         */\n        get shouldRefresh() {\n            var _a;\n            if (cycler.isRefreshing) {\n                return false;\n            }\n            if ((token === null || token === void 0 ? void 0 : token.refreshAfterTimestamp) && token.refreshAfterTimestamp < Date.now()) {\n                return true;\n            }\n            return ((_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : 0) - options.refreshWindowInMs < Date.now();\n        },\n        /**\n         * Produces true if the cycler MUST refresh (null or nearly-expired\n         * token).\n         */\n        get mustRefresh() {\n            return (token === null || token.expiresOnTimestamp - options.forcedRefreshWindowInMs < Date.now());\n        },\n    };\n    /**\n     * Starts a refresh job or returns the existing job if one is already\n     * running.\n     */\n    function refresh(scopes, getTokenOptions) {\n        var _a;\n        if (!cycler.isRefreshing) {\n            // We bind `scopes` here to avoid passing it around a lot\n            const tryGetAccessToken = () => credential.getToken(scopes, getTokenOptions);\n            // Take advantage of promise chaining to insert an assignment to `token`\n            // before the refresh can be considered done.\n            refreshWorker = beginRefresh(tryGetAccessToken, options.retryIntervalInMs, \n            // If we don't have a token, then we should timeout immediately\n            (_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : Date.now())\n                .then((_token) => {\n                refreshWorker = null;\n                token = _token;\n                tenantId = getTokenOptions.tenantId;\n                return token;\n            })\n                .catch((reason) => {\n                // We also should reset the refresher if we enter a failed state.  All\n                // existing awaiters will throw, but subsequent requests will start a\n                // new retry chain.\n                refreshWorker = null;\n                token = null;\n                tenantId = undefined;\n                throw reason;\n            });\n        }\n        return refreshWorker;\n    }\n    return async (scopes, tokenOptions) => {\n        //\n        // Simple rules:\n        // - If we MUST refresh, then return the refresh task, blocking\n        //   the pipeline until a token is available.\n        // - If we SHOULD refresh, then run refresh but don't return it\n        //   (we can still use the cached token).\n        // - Return the token, since it's fine if we didn't return in\n        //   step 1.\n        //\n        const hasClaimChallenge = Boolean(tokenOptions.claims);\n        const tenantIdChanged = tenantId !== tokenOptions.tenantId;\n        if (hasClaimChallenge) {\n            // If we've received a claim, we know the existing token isn't valid\n            // We want to clear it so that that refresh worker won't use the old expiration time as a timeout\n            token = null;\n        }\n        // If the tenantId passed in token options is different to the one we have\n        // Or if we are in claim challenge and the token was rejected and a new access token need to be issued, we need to\n        // refresh the token with the new tenantId or token.\n        const mustRefresh = tenantIdChanged || hasClaimChallenge || cycler.mustRefresh;\n        if (mustRefresh) {\n            return refresh(scopes, tokenOptions);\n        }\n        if (cycler.shouldRefresh) {\n            refresh(scopes, tokenOptions);\n        }\n        return token;\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the bearerTokenAuthenticationPolicy.\n */\nconst bearerTokenAuthenticationPolicyName = \"bearerTokenAuthenticationPolicy\";\n/**\n * Try to send the given request.\n *\n * When a response is received, returns a tuple of the response received and, if the response was received\n * inside a thrown RestError, the RestError that was thrown.\n *\n * Otherwise, if an error was thrown while sending the request that did not provide an underlying response, it\n * will be rethrown.\n */\nasync function trySendRequest(request, next) {\n    try {\n        return [await next(request), undefined];\n    }\n    catch (e) {\n        if (isRestError(e) && e.response) {\n            return [e.response, e];\n        }\n        else {\n            throw e;\n        }\n    }\n}\n/**\n * Default authorize request handler\n */\nasync function defaultAuthorizeRequest(options) {\n    const { scopes, getAccessToken, request } = options;\n    // Enable CAE true by default\n    const getTokenOptions = {\n        abortSignal: request.abortSignal,\n        tracingOptions: request.tracingOptions,\n        enableCae: true,\n    };\n    const accessToken = await getAccessToken(scopes, getTokenOptions);\n    if (accessToken) {\n        options.request.headers.set(\"Authorization\", `Bearer ${accessToken.token}`);\n    }\n}\n/**\n * We will retrieve the challenge only if the response status code was 401,\n * and if the response contained the header \"WWW-Authenticate\" with a non-empty value.\n */\nfunction isChallengeResponse(response) {\n    return response.status === 401 && response.headers.has(\"WWW-Authenticate\");\n}\n/**\n * Re-authorize the request for CAE challenge.\n * The response containing the challenge is `options.response`.\n * If this method returns true, the underlying request will be sent once again.\n */\nasync function authorizeRequestOnCaeChallenge(onChallengeOptions, caeClaims) {\n    var _a;\n    const { scopes } = onChallengeOptions;\n    const accessToken = await onChallengeOptions.getAccessToken(scopes, {\n        enableCae: true,\n        claims: caeClaims,\n    });\n    if (!accessToken) {\n        return false;\n    }\n    onChallengeOptions.request.headers.set(\"Authorization\", `${(_a = accessToken.tokenType) !== null && _a !== void 0 ? _a : \"Bearer\"} ${accessToken.token}`);\n    return true;\n}\n/**\n * A policy that can request a token from a TokenCredential implementation and\n * then apply it to the Authorization header of a request as a Bearer token.\n */\nfunction bearerTokenAuthenticationPolicy(options) {\n    var _a, _b, _c;\n    const { credential, scopes, challengeCallbacks } = options;\n    const logger = options.logger || logger$2;\n    const callbacks = {\n        authorizeRequest: (_b = (_a = challengeCallbacks === null || challengeCallbacks === void 0 ? void 0 : challengeCallbacks.authorizeRequest) === null || _a === void 0 ? void 0 : _a.bind(challengeCallbacks)) !== null && _b !== void 0 ? _b : defaultAuthorizeRequest,\n        authorizeRequestOnChallenge: (_c = challengeCallbacks === null || challengeCallbacks === void 0 ? void 0 : challengeCallbacks.authorizeRequestOnChallenge) === null || _c === void 0 ? void 0 : _c.bind(challengeCallbacks),\n    };\n    // This function encapsulates the entire process of reliably retrieving the token\n    // The options are left out of the public API until there's demand to configure this.\n    // Remember to extend `BearerTokenAuthenticationPolicyOptions` with `TokenCyclerOptions`\n    // in order to pass through the `options` object.\n    const getAccessToken = credential\n        ? createTokenCycler(credential /* , options */)\n        : () => Promise.resolve(null);\n    return {\n        name: bearerTokenAuthenticationPolicyName,\n        /**\n         * If there's no challenge parameter:\n         * - It will try to retrieve the token using the cache, or the credential's getToken.\n         * - Then it will try the next policy with or without the retrieved token.\n         *\n         * It uses the challenge parameters to:\n         * - Skip a first attempt to get the token from the credential if there's no cached token,\n         *   since it expects the token to be retrievable only after the challenge.\n         * - Prepare the outgoing request if the `prepareRequest` method has been provided.\n         * - Send an initial request to receive the challenge if it fails.\n         * - Process a challenge if the response contains it.\n         * - Retrieve a token with the challenge information, then re-send the request.\n         */\n        async sendRequest(request, next) {\n            if (!request.url.toLowerCase().startsWith(\"https://\")) {\n                throw new Error(\"Bearer token authentication is not permitted for non-TLS protected (non-https) URLs.\");\n            }\n            await callbacks.authorizeRequest({\n                scopes: Array.isArray(scopes) ? scopes : [scopes],\n                request,\n                getAccessToken,\n                logger,\n            });\n            let response;\n            let error;\n            let shouldSendRequest;\n            [response, error] = await trySendRequest(request, next);\n            if (isChallengeResponse(response)) {\n                let claims = getCaeChallengeClaims(response.headers.get(\"WWW-Authenticate\"));\n                // Handle CAE by default when receive CAE claim\n                if (claims) {\n                    let parsedClaim;\n                    // Return the response immediately if claims is not a valid base64 encoded string\n                    try {\n                        parsedClaim = atob(claims);\n                    }\n                    catch (e) {\n                        logger.warning(`The WWW-Authenticate header contains \"claims\" that cannot be parsed. Unable to perform the Continuous Access Evaluation authentication flow. Unparsable claims: ${claims}`);\n                        return response;\n                    }\n                    shouldSendRequest = await authorizeRequestOnCaeChallenge({\n                        scopes: Array.isArray(scopes) ? scopes : [scopes],\n                        response,\n                        request,\n                        getAccessToken,\n                        logger,\n                    }, parsedClaim);\n                    // Send updated request and handle response for RestError\n                    if (shouldSendRequest) {\n                        [response, error] = await trySendRequest(request, next);\n                    }\n                }\n                else if (callbacks.authorizeRequestOnChallenge) {\n                    // Handle custom challenges when client provides custom callback\n                    shouldSendRequest = await callbacks.authorizeRequestOnChallenge({\n                        scopes: Array.isArray(scopes) ? scopes : [scopes],\n                        request,\n                        response,\n                        getAccessToken,\n                        logger,\n                    });\n                    // Send updated request and handle response for RestError\n                    if (shouldSendRequest) {\n                        [response, error] = await trySendRequest(request, next);\n                    }\n                    // If we get another CAE Claim, we will handle it by default and return whatever value we receive for this\n                    if (isChallengeResponse(response)) {\n                        claims = getCaeChallengeClaims(response.headers.get(\"WWW-Authenticate\"));\n                        if (claims) {\n                            let parsedClaim;\n                            try {\n                                parsedClaim = atob(claims);\n                            }\n                            catch (e) {\n                                logger.warning(`The WWW-Authenticate header contains \"claims\" that cannot be parsed. Unable to perform the Continuous Access Evaluation authentication flow. Unparsable claims: ${claims}`);\n                                return response;\n                            }\n                            shouldSendRequest = await authorizeRequestOnCaeChallenge({\n                                scopes: Array.isArray(scopes) ? scopes : [scopes],\n                                response,\n                                request,\n                                getAccessToken,\n                                logger,\n                            }, parsedClaim);\n                            // Send updated request and handle response for RestError\n                            if (shouldSendRequest) {\n                                [response, error] = await trySendRequest(request, next);\n                            }\n                        }\n                    }\n                }\n            }\n            if (error) {\n                throw error;\n            }\n            else {\n                return response;\n            }\n        },\n    };\n}\n/**\n * Converts: `Bearer a=\"b\", c=\"d\", Pop e=\"f\", g=\"h\"`.\n * Into: `[ { scheme: 'Bearer', params: { a: 'b', c: 'd' } }, { scheme: 'Pop', params: { e: 'f', g: 'h' } } ]`.\n *\n * @internal\n */\nfunction parseChallenges(challenges) {\n    // Challenge regex seperates the string to individual challenges with different schemes in the format `Scheme a=\"b\", c=d`\n    // The challenge regex captures parameteres with either quotes values or unquoted values\n    const challengeRegex = /(\\w+)\\s+((?:\\w+=(?:\"[^\"]*\"|[^,]*),?\\s*)+)/g;\n    // Parameter regex captures the claims group removed from the scheme in the format `a=\"b\"` and `c=\"d\"`\n    // CAE challenge always have quoted parameters. For more reference, https://learn.microsoft.com/entra/identity-platform/claims-challenge\n    const paramRegex = /(\\w+)=\"([^\"]*)\"/g;\n    const parsedChallenges = [];\n    let match;\n    // Iterate over each challenge match\n    while ((match = challengeRegex.exec(challenges)) !== null) {\n        const scheme = match[1];\n        const paramsString = match[2];\n        const params = {};\n        let paramMatch;\n        // Iterate over each parameter match\n        while ((paramMatch = paramRegex.exec(paramsString)) !== null) {\n            params[paramMatch[1]] = paramMatch[2];\n        }\n        parsedChallenges.push({ scheme, params });\n    }\n    return parsedChallenges;\n}\n/**\n * Parse a pipeline response and look for a CAE challenge with \"Bearer\" scheme\n * Return the value in the header without parsing the challenge\n * @internal\n */\nfunction getCaeChallengeClaims(challenges) {\n    var _a;\n    if (!challenges) {\n        return;\n    }\n    // Find all challenges present in the header\n    const parsedChallenges = parseChallenges(challenges);\n    return (_a = parsedChallenges.find((x) => x.scheme === \"Bearer\" && x.params.claims && x.params.error === \"insufficient_claims\")) === null || _a === void 0 ? void 0 : _a.params.claims;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * @internal\n * @param accessToken - Access token\n * @returns Whether a token is bearer type or not\n */\n/**\n * Tests an object to determine whether it implements TokenCredential.\n *\n * @param credential - The assumed TokenCredential to be tested.\n */\nfunction isTokenCredential(credential) {\n    // Check for an object with a 'getToken' function and possibly with\n    // a 'signRequest' function.  We do this check to make sure that\n    // a ServiceClientCredentials implementor (like TokenClientCredentials\n    // in ms-rest-nodeauth) doesn't get mistaken for a TokenCredential if\n    // it doesn't actually implement TokenCredential also.\n    const castCredential = credential;\n    return (castCredential &&\n        typeof castCredential.getToken === \"function\" &&\n        (castCredential.signRequest === undefined || castCredential.getToken.length > 0));\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst disableKeepAlivePolicyName = \"DisableKeepAlivePolicy\";\nfunction createDisableKeepAlivePolicy() {\n    return {\n        name: disableKeepAlivePolicyName,\n        async sendRequest(request, next) {\n            request.disableKeepAlive = true;\n            return next(request);\n        },\n    };\n}\n/**\n * @internal\n */\nfunction pipelineContainsDisableKeepAlivePolicy(pipeline) {\n    return pipeline.getOrderedPolicies().some((policy) => policy.name === disableKeepAlivePolicyName);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Encodes a string in base64 format.\n * @param value - the string to encode\n * @internal\n */\n/**\n * Encodes a byte array in base64 format.\n * @param value - the Uint8Aray to encode\n * @internal\n */\nfunction encodeByteArray(value) {\n    const bufferValue = value instanceof Buffer ? value : Buffer.from(value.buffer);\n    return bufferValue.toString(\"base64\");\n}\n/**\n * Decodes a base64 string into a byte array.\n * @param value - the base64 string to decode\n * @internal\n */\nfunction decodeString(value) {\n    return Buffer.from(value, \"base64\");\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Default key used to access the XML attributes.\n */\nconst XML_ATTRKEY$1 = \"$\";\n/**\n * Default key used to access the XML value content.\n */\nconst XML_CHARKEY$1 = \"_\";\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A type guard for a primitive response body.\n * @param value - Value to test\n *\n * @internal\n */\nfunction isPrimitiveBody(value, mapperTypeName) {\n    return (mapperTypeName !== \"Composite\" &&\n        mapperTypeName !== \"Dictionary\" &&\n        (typeof value === \"string\" ||\n            typeof value === \"number\" ||\n            typeof value === \"boolean\" ||\n            (mapperTypeName === null || mapperTypeName === void 0 ? void 0 : mapperTypeName.match(/^(Date|DateTime|DateTimeRfc1123|UnixTime|ByteArray|Base64Url)$/i)) !==\n                null ||\n            value === undefined ||\n            value === null));\n}\nconst validateISODuration = /^(-|\\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;\n/**\n * Returns true if the given string is in ISO 8601 format.\n * @param value - The value to be validated for ISO 8601 duration format.\n * @internal\n */\nfunction isDuration(value) {\n    return validateISODuration.test(value);\n}\nconst validUuidRegex = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i;\n/**\n * Returns true if the provided uuid is valid.\n *\n * @param uuid - The uuid that needs to be validated.\n *\n * @internal\n */\nfunction isValidUuid(uuid) {\n    return validUuidRegex.test(uuid);\n}\n/**\n * Maps the response as follows:\n * - wraps the response body if needed (typically if its type is primitive).\n * - returns null if the combination of the headers and the body is empty.\n * - otherwise, returns the combination of the headers and the body.\n *\n * @param responseObject - a representation of the parsed response\n * @returns the response that will be returned to the user which can be null and/or wrapped\n *\n * @internal\n */\nfunction handleNullableResponseAndWrappableBody(responseObject) {\n    const combinedHeadersAndBody = Object.assign(Object.assign({}, responseObject.headers), responseObject.body);\n    if (responseObject.hasNullableType &&\n        Object.getOwnPropertyNames(combinedHeadersAndBody).length === 0) {\n        return responseObject.shouldWrapBody ? { body: null } : null;\n    }\n    else {\n        return responseObject.shouldWrapBody\n            ? Object.assign(Object.assign({}, responseObject.headers), { body: responseObject.body }) : combinedHeadersAndBody;\n    }\n}\n/**\n * Take a `FullOperationResponse` and turn it into a flat\n * response object to hand back to the consumer.\n * @param fullResponse - The processed response from the operation request\n * @param responseSpec - The response map from the OperationSpec\n *\n * @internal\n */\nfunction flattenResponse(fullResponse, responseSpec) {\n    var _a, _b;\n    const parsedHeaders = fullResponse.parsedHeaders;\n    // head methods never have a body, but we return a boolean set to body property\n    // to indicate presence/absence of the resource\n    if (fullResponse.request.method === \"HEAD\") {\n        return Object.assign(Object.assign({}, parsedHeaders), { body: fullResponse.parsedBody });\n    }\n    const bodyMapper = responseSpec && responseSpec.bodyMapper;\n    const isNullable = Boolean(bodyMapper === null || bodyMapper === void 0 ? void 0 : bodyMapper.nullable);\n    const expectedBodyTypeName = bodyMapper === null || bodyMapper === void 0 ? void 0 : bodyMapper.type.name;\n    /** If the body is asked for, we look at the expected body type to handle it */\n    if (expectedBodyTypeName === \"Stream\") {\n        return Object.assign(Object.assign({}, parsedHeaders), { blobBody: fullResponse.blobBody, readableStreamBody: fullResponse.readableStreamBody });\n    }\n    const modelProperties = (expectedBodyTypeName === \"Composite\" &&\n        bodyMapper.type.modelProperties) ||\n        {};\n    const isPageableResponse = Object.keys(modelProperties).some((k) => modelProperties[k].serializedName === \"\");\n    if (expectedBodyTypeName === \"Sequence\" || isPageableResponse) {\n        const arrayResponse = (_a = fullResponse.parsedBody) !== null && _a !== void 0 ? _a : [];\n        for (const key of Object.keys(modelProperties)) {\n            if (modelProperties[key].serializedName) {\n                arrayResponse[key] = (_b = fullResponse.parsedBody) === null || _b === void 0 ? void 0 : _b[key];\n            }\n        }\n        if (parsedHeaders) {\n            for (const key of Object.keys(parsedHeaders)) {\n                arrayResponse[key] = parsedHeaders[key];\n            }\n        }\n        return isNullable &&\n            !fullResponse.parsedBody &&\n            !parsedHeaders &&\n            Object.getOwnPropertyNames(modelProperties).length === 0\n            ? null\n            : arrayResponse;\n    }\n    return handleNullableResponseAndWrappableBody({\n        body: fullResponse.parsedBody,\n        headers: parsedHeaders,\n        hasNullableType: isNullable,\n        shouldWrapBody: isPrimitiveBody(fullResponse.parsedBody, expectedBodyTypeName),\n    });\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nclass SerializerImpl {\n    constructor(modelMappers = {}, isXML = false) {\n        this.modelMappers = modelMappers;\n        this.isXML = isXML;\n    }\n    /**\n     * @deprecated Removing the constraints validation on client side.\n     */\n    validateConstraints(mapper, value, objectName) {\n        const failValidation = (constraintName, constraintValue) => {\n            throw new Error(`\"${objectName}\" with value \"${value}\" should satisfy the constraint \"${constraintName}\": ${constraintValue}.`);\n        };\n        if (mapper.constraints && value !== undefined && value !== null) {\n            const { ExclusiveMaximum, ExclusiveMinimum, InclusiveMaximum, InclusiveMinimum, MaxItems, MaxLength, MinItems, MinLength, MultipleOf, Pattern, UniqueItems, } = mapper.constraints;\n            if (ExclusiveMaximum !== undefined && value >= ExclusiveMaximum) {\n                failValidation(\"ExclusiveMaximum\", ExclusiveMaximum);\n            }\n            if (ExclusiveMinimum !== undefined && value <= ExclusiveMinimum) {\n                failValidation(\"ExclusiveMinimum\", ExclusiveMinimum);\n            }\n            if (InclusiveMaximum !== undefined && value > InclusiveMaximum) {\n                failValidation(\"InclusiveMaximum\", InclusiveMaximum);\n            }\n            if (InclusiveMinimum !== undefined && value < InclusiveMinimum) {\n                failValidation(\"InclusiveMinimum\", InclusiveMinimum);\n            }\n            if (MaxItems !== undefined && value.length > MaxItems) {\n                failValidation(\"MaxItems\", MaxItems);\n            }\n            if (MaxLength !== undefined && value.length > MaxLength) {\n                failValidation(\"MaxLength\", MaxLength);\n            }\n            if (MinItems !== undefined && value.length < MinItems) {\n                failValidation(\"MinItems\", MinItems);\n            }\n            if (MinLength !== undefined && value.length < MinLength) {\n                failValidation(\"MinLength\", MinLength);\n            }\n            if (MultipleOf !== undefined && value % MultipleOf !== 0) {\n                failValidation(\"MultipleOf\", MultipleOf);\n            }\n            if (Pattern) {\n                const pattern = typeof Pattern === \"string\" ? new RegExp(Pattern) : Pattern;\n                if (typeof value !== \"string\" || value.match(pattern) === null) {\n                    failValidation(\"Pattern\", Pattern);\n                }\n            }\n            if (UniqueItems &&\n                value.some((item, i, ar) => ar.indexOf(item) !== i)) {\n                failValidation(\"UniqueItems\", UniqueItems);\n            }\n        }\n    }\n    /**\n     * Serialize the given object based on its metadata defined in the mapper\n     *\n     * @param mapper - The mapper which defines the metadata of the serializable object\n     *\n     * @param object - A valid Javascript object to be serialized\n     *\n     * @param objectName - Name of the serialized object\n     *\n     * @param options - additional options to serialization\n     *\n     * @returns A valid serialized Javascript object\n     */\n    serialize(mapper, object, objectName, options = { xml: {} }) {\n        var _a, _b, _c;\n        const updatedOptions = {\n            xml: {\n                rootName: (_a = options.xml.rootName) !== null && _a !== void 0 ? _a : \"\",\n                includeRoot: (_b = options.xml.includeRoot) !== null && _b !== void 0 ? _b : false,\n                xmlCharKey: (_c = options.xml.xmlCharKey) !== null && _c !== void 0 ? _c : XML_CHARKEY$1,\n            },\n        };\n        let payload = {};\n        const mapperType = mapper.type.name;\n        if (!objectName) {\n            objectName = mapper.serializedName;\n        }\n        if (mapperType.match(/^Sequence$/i) !== null) {\n            payload = [];\n        }\n        if (mapper.isConstant) {\n            object = mapper.defaultValue;\n        }\n        // This table of allowed values should help explain\n        // the mapper.required and mapper.nullable properties.\n        // X means \"neither undefined or null are allowed\".\n        //           || required\n        //           || true      | false\n        //  nullable || ==========================\n        //      true || null      | undefined/null\n        //     false || X         | undefined\n        // undefined || X         | undefined/null\n        const { required, nullable } = mapper;\n        if (required && nullable && object === undefined) {\n            throw new Error(`${objectName} cannot be undefined.`);\n        }\n        if (required && !nullable && (object === undefined || object === null)) {\n            throw new Error(`${objectName} cannot be null or undefined.`);\n        }\n        if (!required && nullable === false && object === null) {\n            throw new Error(`${objectName} cannot be null.`);\n        }\n        if (object === undefined || object === null) {\n            payload = object;\n        }\n        else {\n            if (mapperType.match(/^any$/i) !== null) {\n                payload = object;\n            }\n            else if (mapperType.match(/^(Number|String|Boolean|Object|Stream|Uuid)$/i) !== null) {\n                payload = serializeBasicTypes(mapperType, objectName, object);\n            }\n            else if (mapperType.match(/^Enum$/i) !== null) {\n                const enumMapper = mapper;\n                payload = serializeEnumType(objectName, enumMapper.type.allowedValues, object);\n            }\n            else if (mapperType.match(/^(Date|DateTime|TimeSpan|DateTimeRfc1123|UnixTime)$/i) !== null) {\n                payload = serializeDateTypes(mapperType, object, objectName);\n            }\n            else if (mapperType.match(/^ByteArray$/i) !== null) {\n                payload = serializeByteArrayType(objectName, object);\n            }\n            else if (mapperType.match(/^Base64Url$/i) !== null) {\n                payload = serializeBase64UrlType(objectName, object);\n            }\n            else if (mapperType.match(/^Sequence$/i) !== null) {\n                payload = serializeSequenceType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions);\n            }\n            else if (mapperType.match(/^Dictionary$/i) !== null) {\n                payload = serializeDictionaryType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions);\n            }\n            else if (mapperType.match(/^Composite$/i) !== null) {\n                payload = serializeCompositeType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions);\n            }\n        }\n        return payload;\n    }\n    /**\n     * Deserialize the given object based on its metadata defined in the mapper\n     *\n     * @param mapper - The mapper which defines the metadata of the serializable object\n     *\n     * @param responseBody - A valid Javascript entity to be deserialized\n     *\n     * @param objectName - Name of the deserialized object\n     *\n     * @param options - Controls behavior of XML parser and builder.\n     *\n     * @returns A valid deserialized Javascript object\n     */\n    deserialize(mapper, responseBody, objectName, options = { xml: {} }) {\n        var _a, _b, _c, _d;\n        const updatedOptions = {\n            xml: {\n                rootName: (_a = options.xml.rootName) !== null && _a !== void 0 ? _a : \"\",\n                includeRoot: (_b = options.xml.includeRoot) !== null && _b !== void 0 ? _b : false,\n                xmlCharKey: (_c = options.xml.xmlCharKey) !== null && _c !== void 0 ? _c : XML_CHARKEY$1,\n            },\n            ignoreUnknownProperties: (_d = options.ignoreUnknownProperties) !== null && _d !== void 0 ? _d : false,\n        };\n        if (responseBody === undefined || responseBody === null) {\n            if (this.isXML && mapper.type.name === \"Sequence\" && !mapper.xmlIsWrapped) {\n                // Edge case for empty XML non-wrapped lists. xml2js can't distinguish\n                // between the list being empty versus being missing,\n                // so let's do the more user-friendly thing and return an empty list.\n                responseBody = [];\n            }\n            // specifically check for undefined as default value can be a falsey value `0, \"\", false, null`\n            if (mapper.defaultValue !== undefined) {\n                responseBody = mapper.defaultValue;\n            }\n            return responseBody;\n        }\n        let payload;\n        const mapperType = mapper.type.name;\n        if (!objectName) {\n            objectName = mapper.serializedName;\n        }\n        if (mapperType.match(/^Composite$/i) !== null) {\n            payload = deserializeCompositeType(this, mapper, responseBody, objectName, updatedOptions);\n        }\n        else {\n            if (this.isXML) {\n                const xmlCharKey = updatedOptions.xml.xmlCharKey;\n                /**\n                 * If the mapper specifies this as a non-composite type value but the responseBody contains\n                 * both header (\"$\" i.e., XML_ATTRKEY) and body (\"#\" i.e., XML_CHARKEY) properties,\n                 * then just reduce the responseBody value to the body (\"#\" i.e., XML_CHARKEY) property.\n                 */\n                if (responseBody[XML_ATTRKEY$1] !== undefined && responseBody[xmlCharKey] !== undefined) {\n                    responseBody = responseBody[xmlCharKey];\n                }\n            }\n            if (mapperType.match(/^Number$/i) !== null) {\n                payload = parseFloat(responseBody);\n                if (isNaN(payload)) {\n                    payload = responseBody;\n                }\n            }\n            else if (mapperType.match(/^Boolean$/i) !== null) {\n                if (responseBody === \"true\") {\n                    payload = true;\n                }\n                else if (responseBody === \"false\") {\n                    payload = false;\n                }\n                else {\n                    payload = responseBody;\n                }\n            }\n            else if (mapperType.match(/^(String|Enum|Object|Stream|Uuid|TimeSpan|any)$/i) !== null) {\n                payload = responseBody;\n            }\n            else if (mapperType.match(/^(Date|DateTime|DateTimeRfc1123)$/i) !== null) {\n                payload = new Date(responseBody);\n            }\n            else if (mapperType.match(/^UnixTime$/i) !== null) {\n                payload = unixTimeToDate(responseBody);\n            }\n            else if (mapperType.match(/^ByteArray$/i) !== null) {\n                payload = decodeString(responseBody);\n            }\n            else if (mapperType.match(/^Base64Url$/i) !== null) {\n                payload = base64UrlToByteArray(responseBody);\n            }\n            else if (mapperType.match(/^Sequence$/i) !== null) {\n                payload = deserializeSequenceType(this, mapper, responseBody, objectName, updatedOptions);\n            }\n            else if (mapperType.match(/^Dictionary$/i) !== null) {\n                payload = deserializeDictionaryType(this, mapper, responseBody, objectName, updatedOptions);\n            }\n        }\n        if (mapper.isConstant) {\n            payload = mapper.defaultValue;\n        }\n        return payload;\n    }\n}\n/**\n * Method that creates and returns a Serializer.\n * @param modelMappers - Known models to map\n * @param isXML - If XML should be supported\n */\nfunction createSerializer(modelMappers = {}, isXML = false) {\n    return new SerializerImpl(modelMappers, isXML);\n}\nfunction trimEnd(str, ch) {\n    let len = str.length;\n    while (len - 1 >= 0 && str[len - 1] === ch) {\n        --len;\n    }\n    return str.substr(0, len);\n}\nfunction bufferToBase64Url(buffer) {\n    if (!buffer) {\n        return undefined;\n    }\n    if (!(buffer instanceof Uint8Array)) {\n        throw new Error(`Please provide an input of type Uint8Array for converting to Base64Url.`);\n    }\n    // Uint8Array to Base64.\n    const str = encodeByteArray(buffer);\n    // Base64 to Base64Url.\n    return trimEnd(str, \"=\").replace(/\\+/g, \"-\").replace(/\\//g, \"_\");\n}\nfunction base64UrlToByteArray(str) {\n    if (!str) {\n        return undefined;\n    }\n    if (str && typeof str.valueOf() !== \"string\") {\n        throw new Error(\"Please provide an input of type string for converting to Uint8Array\");\n    }\n    // Base64Url to Base64.\n    str = str.replace(/-/g, \"+\").replace(/_/g, \"/\");\n    // Base64 to Uint8Array.\n    return decodeString(str);\n}\nfunction splitSerializeName(prop) {\n    const classes = [];\n    let partialclass = \"\";\n    if (prop) {\n        const subwords = prop.split(\".\");\n        for (const item of subwords) {\n            if (item.charAt(item.length - 1) === \"\\\\\") {\n                partialclass += item.substr(0, item.length - 1) + \".\";\n            }\n            else {\n                partialclass += item;\n                classes.push(partialclass);\n                partialclass = \"\";\n            }\n        }\n    }\n    return classes;\n}\nfunction dateToUnixTime(d) {\n    if (!d) {\n        return undefined;\n    }\n    if (typeof d.valueOf() === \"string\") {\n        d = new Date(d);\n    }\n    return Math.floor(d.getTime() / 1000);\n}\nfunction unixTimeToDate(n) {\n    if (!n) {\n        return undefined;\n    }\n    return new Date(n * 1000);\n}\nfunction serializeBasicTypes(typeName, objectName, value) {\n    if (value !== null && value !== undefined) {\n        if (typeName.match(/^Number$/i) !== null) {\n            if (typeof value !== \"number\") {\n                throw new Error(`${objectName} with value ${value} must be of type number.`);\n            }\n        }\n        else if (typeName.match(/^String$/i) !== null) {\n            if (typeof value.valueOf() !== \"string\") {\n                throw new Error(`${objectName} with value \"${value}\" must be of type string.`);\n            }\n        }\n        else if (typeName.match(/^Uuid$/i) !== null) {\n            if (!(typeof value.valueOf() === \"string\" && isValidUuid(value))) {\n                throw new Error(`${objectName} with value \"${value}\" must be of type string and a valid uuid.`);\n            }\n        }\n        else if (typeName.match(/^Boolean$/i) !== null) {\n            if (typeof value !== \"boolean\") {\n                throw new Error(`${objectName} with value ${value} must be of type boolean.`);\n            }\n        }\n        else if (typeName.match(/^Stream$/i) !== null) {\n            const objectType = typeof value;\n            if (objectType !== \"string\" &&\n                typeof value.pipe !== \"function\" && // NodeJS.ReadableStream\n                typeof value.tee !== \"function\" && // browser ReadableStream\n                !(value instanceof ArrayBuffer) &&\n                !ArrayBuffer.isView(value) &&\n                // File objects count as a type of Blob, so we want to use instanceof explicitly\n                !((typeof Blob === \"function\" || typeof Blob === \"object\") && value instanceof Blob) &&\n                objectType !== \"function\") {\n                throw new Error(`${objectName} must be a string, Blob, ArrayBuffer, ArrayBufferView, ReadableStream, or () => ReadableStream.`);\n            }\n        }\n    }\n    return value;\n}\nfunction serializeEnumType(objectName, allowedValues, value) {\n    if (!allowedValues) {\n        throw new Error(`Please provide a set of allowedValues to validate ${objectName} as an Enum Type.`);\n    }\n    const isPresent = allowedValues.some((item) => {\n        if (typeof item.valueOf() === \"string\") {\n            return item.toLowerCase() === value.toLowerCase();\n        }\n        return item === value;\n    });\n    if (!isPresent) {\n        throw new Error(`${value} is not a valid value for ${objectName}. The valid values are: ${JSON.stringify(allowedValues)}.`);\n    }\n    return value;\n}\nfunction serializeByteArrayType(objectName, value) {\n    if (value !== undefined && value !== null) {\n        if (!(value instanceof Uint8Array)) {\n            throw new Error(`${objectName} must be of type Uint8Array.`);\n        }\n        value = encodeByteArray(value);\n    }\n    return value;\n}\nfunction serializeBase64UrlType(objectName, value) {\n    if (value !== undefined && value !== null) {\n        if (!(value instanceof Uint8Array)) {\n            throw new Error(`${objectName} must be of type Uint8Array.`);\n        }\n        value = bufferToBase64Url(value);\n    }\n    return value;\n}\nfunction serializeDateTypes(typeName, value, objectName) {\n    if (value !== undefined && value !== null) {\n        if (typeName.match(/^Date$/i) !== null) {\n            if (!(value instanceof Date ||\n                (typeof value.valueOf() === \"string\" && !isNaN(Date.parse(value))))) {\n                throw new Error(`${objectName} must be an instanceof Date or a string in ISO8601 format.`);\n            }\n            value =\n                value instanceof Date\n                    ? value.toISOString().substring(0, 10)\n                    : new Date(value).toISOString().substring(0, 10);\n        }\n        else if (typeName.match(/^DateTime$/i) !== null) {\n            if (!(value instanceof Date ||\n                (typeof value.valueOf() === \"string\" && !isNaN(Date.parse(value))))) {\n                throw new Error(`${objectName} must be an instanceof Date or a string in ISO8601 format.`);\n            }\n            value = value instanceof Date ? value.toISOString() : new Date(value).toISOString();\n        }\n        else if (typeName.match(/^DateTimeRfc1123$/i) !== null) {\n            if (!(value instanceof Date ||\n                (typeof value.valueOf() === \"string\" && !isNaN(Date.parse(value))))) {\n                throw new Error(`${objectName} must be an instanceof Date or a string in RFC-1123 format.`);\n            }\n            value = value instanceof Date ? value.toUTCString() : new Date(value).toUTCString();\n        }\n        else if (typeName.match(/^UnixTime$/i) !== null) {\n            if (!(value instanceof Date ||\n                (typeof value.valueOf() === \"string\" && !isNaN(Date.parse(value))))) {\n                throw new Error(`${objectName} must be an instanceof Date or a string in RFC-1123/ISO8601 format ` +\n                    `for it to be serialized in UnixTime/Epoch format.`);\n            }\n            value = dateToUnixTime(value);\n        }\n        else if (typeName.match(/^TimeSpan$/i) !== null) {\n            if (!isDuration(value)) {\n                throw new Error(`${objectName} must be a string in ISO 8601 format. Instead was \"${value}\".`);\n            }\n        }\n    }\n    return value;\n}\nfunction serializeSequenceType(serializer, mapper, object, objectName, isXml, options) {\n    var _a;\n    if (!Array.isArray(object)) {\n        throw new Error(`${objectName} must be of type Array.`);\n    }\n    let elementType = mapper.type.element;\n    if (!elementType || typeof elementType !== \"object\") {\n        throw new Error(`element\" metadata for an Array must be defined in the ` +\n            `mapper and it must of type \"object\" in ${objectName}.`);\n    }\n    // Quirk: Composite mappers referenced by `element` might\n    // not have *all* properties declared (like uberParent),\n    // so let's try to look up the full definition by name.\n    if (elementType.type.name === \"Composite\" && elementType.type.className) {\n        elementType = (_a = serializer.modelMappers[elementType.type.className]) !== null && _a !== void 0 ? _a : elementType;\n    }\n    const tempArray = [];\n    for (let i = 0; i < object.length; i++) {\n        const serializedValue = serializer.serialize(elementType, object[i], objectName, options);\n        if (isXml && elementType.xmlNamespace) {\n            const xmlnsKey = elementType.xmlNamespacePrefix\n                ? `xmlns:${elementType.xmlNamespacePrefix}`\n                : \"xmlns\";\n            if (elementType.type.name === \"Composite\") {\n                tempArray[i] = Object.assign({}, serializedValue);\n                tempArray[i][XML_ATTRKEY$1] = { [xmlnsKey]: elementType.xmlNamespace };\n            }\n            else {\n                tempArray[i] = {};\n                tempArray[i][options.xml.xmlCharKey] = serializedValue;\n                tempArray[i][XML_ATTRKEY$1] = { [xmlnsKey]: elementType.xmlNamespace };\n            }\n        }\n        else {\n            tempArray[i] = serializedValue;\n        }\n    }\n    return tempArray;\n}\nfunction serializeDictionaryType(serializer, mapper, object, objectName, isXml, options) {\n    if (typeof object !== \"object\") {\n        throw new Error(`${objectName} must be of type object.`);\n    }\n    const valueType = mapper.type.value;\n    if (!valueType || typeof valueType !== \"object\") {\n        throw new Error(`\"value\" metadata for a Dictionary must be defined in the ` +\n            `mapper and it must of type \"object\" in ${objectName}.`);\n    }\n    const tempDictionary = {};\n    for (const key of Object.keys(object)) {\n        const serializedValue = serializer.serialize(valueType, object[key], objectName, options);\n        // If the element needs an XML namespace we need to add it within the $ property\n        tempDictionary[key] = getXmlObjectValue(valueType, serializedValue, isXml, options);\n    }\n    // Add the namespace to the root element if needed\n    if (isXml && mapper.xmlNamespace) {\n        const xmlnsKey = mapper.xmlNamespacePrefix ? `xmlns:${mapper.xmlNamespacePrefix}` : \"xmlns\";\n        const result = tempDictionary;\n        result[XML_ATTRKEY$1] = { [xmlnsKey]: mapper.xmlNamespace };\n        return result;\n    }\n    return tempDictionary;\n}\n/**\n * Resolves the additionalProperties property from a referenced mapper\n * @param serializer - the serializer containing the entire set of mappers\n * @param mapper - the composite mapper to resolve\n * @param objectName - name of the object being serialized\n */\nfunction resolveAdditionalProperties(serializer, mapper, objectName) {\n    const additionalProperties = mapper.type.additionalProperties;\n    if (!additionalProperties && mapper.type.className) {\n        const modelMapper = resolveReferencedMapper(serializer, mapper, objectName);\n        return modelMapper === null || modelMapper === void 0 ? void 0 : modelMapper.type.additionalProperties;\n    }\n    return additionalProperties;\n}\n/**\n * Finds the mapper referenced by className\n * @param serializer - the serializer containing the entire set of mappers\n * @param mapper - the composite mapper to resolve\n * @param objectName - name of the object being serialized\n */\nfunction resolveReferencedMapper(serializer, mapper, objectName) {\n    const className = mapper.type.className;\n    if (!className) {\n        throw new Error(`Class name for model \"${objectName}\" is not provided in the mapper \"${JSON.stringify(mapper, undefined, 2)}\".`);\n    }\n    return serializer.modelMappers[className];\n}\n/**\n * Resolves a composite mapper's modelProperties.\n * @param serializer - the serializer containing the entire set of mappers\n * @param mapper - the composite mapper to resolve\n */\nfunction resolveModelProperties(serializer, mapper, objectName) {\n    let modelProps = mapper.type.modelProperties;\n    if (!modelProps) {\n        const modelMapper = resolveReferencedMapper(serializer, mapper, objectName);\n        if (!modelMapper) {\n            throw new Error(`mapper() cannot be null or undefined for model \"${mapper.type.className}\".`);\n        }\n        modelProps = modelMapper === null || modelMapper === void 0 ? void 0 : modelMapper.type.modelProperties;\n        if (!modelProps) {\n            throw new Error(`modelProperties cannot be null or undefined in the ` +\n                `mapper \"${JSON.stringify(modelMapper)}\" of type \"${mapper.type.className}\" for object \"${objectName}\".`);\n        }\n    }\n    return modelProps;\n}\nfunction serializeCompositeType(serializer, mapper, object, objectName, isXml, options) {\n    if (getPolymorphicDiscriminatorRecursively(serializer, mapper)) {\n        mapper = getPolymorphicMapper(serializer, mapper, object, \"clientName\");\n    }\n    if (object !== undefined && object !== null) {\n        const payload = {};\n        const modelProps = resolveModelProperties(serializer, mapper, objectName);\n        for (const key of Object.keys(modelProps)) {\n            const propertyMapper = modelProps[key];\n            if (propertyMapper.readOnly) {\n                continue;\n            }\n            let propName;\n            let parentObject = payload;\n            if (serializer.isXML) {\n                if (propertyMapper.xmlIsWrapped) {\n                    propName = propertyMapper.xmlName;\n                }\n                else {\n                    propName = propertyMapper.xmlElementName || propertyMapper.xmlName;\n                }\n            }\n            else {\n                const paths = splitSerializeName(propertyMapper.serializedName);\n                propName = paths.pop();\n                for (const pathName of paths) {\n                    const childObject = parentObject[pathName];\n                    if ((childObject === undefined || childObject === null) &&\n                        ((object[key] !== undefined && object[key] !== null) ||\n                            propertyMapper.defaultValue !== undefined)) {\n                        parentObject[pathName] = {};\n                    }\n                    parentObject = parentObject[pathName];\n                }\n            }\n            if (parentObject !== undefined && parentObject !== null) {\n                if (isXml && mapper.xmlNamespace) {\n                    const xmlnsKey = mapper.xmlNamespacePrefix\n                        ? `xmlns:${mapper.xmlNamespacePrefix}`\n                        : \"xmlns\";\n                    parentObject[XML_ATTRKEY$1] = Object.assign(Object.assign({}, parentObject[XML_ATTRKEY$1]), { [xmlnsKey]: mapper.xmlNamespace });\n                }\n                const propertyObjectName = propertyMapper.serializedName !== \"\"\n                    ? objectName + \".\" + propertyMapper.serializedName\n                    : objectName;\n                let toSerialize = object[key];\n                const polymorphicDiscriminator = getPolymorphicDiscriminatorRecursively(serializer, mapper);\n                if (polymorphicDiscriminator &&\n                    polymorphicDiscriminator.clientName === key &&\n                    (toSerialize === undefined || toSerialize === null)) {\n                    toSerialize = mapper.serializedName;\n                }\n                const serializedValue = serializer.serialize(propertyMapper, toSerialize, propertyObjectName, options);\n                if (serializedValue !== undefined && propName !== undefined && propName !== null) {\n                    const value = getXmlObjectValue(propertyMapper, serializedValue, isXml, options);\n                    if (isXml && propertyMapper.xmlIsAttribute) {\n                        // XML_ATTRKEY, i.e., $ is the key attributes are kept under in xml2js.\n                        // This keeps things simple while preventing name collision\n                        // with names in user documents.\n                        parentObject[XML_ATTRKEY$1] = parentObject[XML_ATTRKEY$1] || {};\n                        parentObject[XML_ATTRKEY$1][propName] = serializedValue;\n                    }\n                    else if (isXml && propertyMapper.xmlIsWrapped) {\n                        parentObject[propName] = { [propertyMapper.xmlElementName]: value };\n                    }\n                    else {\n                        parentObject[propName] = value;\n                    }\n                }\n            }\n        }\n        const additionalPropertiesMapper = resolveAdditionalProperties(serializer, mapper, objectName);\n        if (additionalPropertiesMapper) {\n            const propNames = Object.keys(modelProps);\n            for (const clientPropName in object) {\n                const isAdditionalProperty = propNames.every((pn) => pn !== clientPropName);\n                if (isAdditionalProperty) {\n                    payload[clientPropName] = serializer.serialize(additionalPropertiesMapper, object[clientPropName], objectName + '[\"' + clientPropName + '\"]', options);\n                }\n            }\n        }\n        return payload;\n    }\n    return object;\n}\nfunction getXmlObjectValue(propertyMapper, serializedValue, isXml, options) {\n    if (!isXml || !propertyMapper.xmlNamespace) {\n        return serializedValue;\n    }\n    const xmlnsKey = propertyMapper.xmlNamespacePrefix\n        ? `xmlns:${propertyMapper.xmlNamespacePrefix}`\n        : \"xmlns\";\n    const xmlNamespace = { [xmlnsKey]: propertyMapper.xmlNamespace };\n    if ([\"Composite\"].includes(propertyMapper.type.name)) {\n        if (serializedValue[XML_ATTRKEY$1]) {\n            return serializedValue;\n        }\n        else {\n            const result = Object.assign({}, serializedValue);\n            result[XML_ATTRKEY$1] = xmlNamespace;\n            return result;\n        }\n    }\n    const result = {};\n    result[options.xml.xmlCharKey] = serializedValue;\n    result[XML_ATTRKEY$1] = xmlNamespace;\n    return result;\n}\nfunction isSpecialXmlProperty(propertyName, options) {\n    return [XML_ATTRKEY$1, options.xml.xmlCharKey].includes(propertyName);\n}\nfunction deserializeCompositeType(serializer, mapper, responseBody, objectName, options) {\n    var _a, _b;\n    const xmlCharKey = (_a = options.xml.xmlCharKey) !== null && _a !== void 0 ? _a : XML_CHARKEY$1;\n    if (getPolymorphicDiscriminatorRecursively(serializer, mapper)) {\n        mapper = getPolymorphicMapper(serializer, mapper, responseBody, \"serializedName\");\n    }\n    const modelProps = resolveModelProperties(serializer, mapper, objectName);\n    let instance = {};\n    const handledPropertyNames = [];\n    for (const key of Object.keys(modelProps)) {\n        const propertyMapper = modelProps[key];\n        const paths = splitSerializeName(modelProps[key].serializedName);\n        handledPropertyNames.push(paths[0]);\n        const { serializedName, xmlName, xmlElementName } = propertyMapper;\n        let propertyObjectName = objectName;\n        if (serializedName !== \"\" && serializedName !== undefined) {\n            propertyObjectName = objectName + \".\" + serializedName;\n        }\n        const headerCollectionPrefix = propertyMapper.headerCollectionPrefix;\n        if (headerCollectionPrefix) {\n            const dictionary = {};\n            for (const headerKey of Object.keys(responseBody)) {\n                if (headerKey.startsWith(headerCollectionPrefix)) {\n                    dictionary[headerKey.substring(headerCollectionPrefix.length)] = serializer.deserialize(propertyMapper.type.value, responseBody[headerKey], propertyObjectName, options);\n                }\n                handledPropertyNames.push(headerKey);\n            }\n            instance[key] = dictionary;\n        }\n        else if (serializer.isXML) {\n            if (propertyMapper.xmlIsAttribute && responseBody[XML_ATTRKEY$1]) {\n                instance[key] = serializer.deserialize(propertyMapper, responseBody[XML_ATTRKEY$1][xmlName], propertyObjectName, options);\n            }\n            else if (propertyMapper.xmlIsMsText) {\n                if (responseBody[xmlCharKey] !== undefined) {\n                    instance[key] = responseBody[xmlCharKey];\n                }\n                else if (typeof responseBody === \"string\") {\n                    // The special case where xml parser parses \"<Name>content</Name>\" into JSON of\n                    //   `{ name: \"content\"}` instead of `{ name: { \"_\": \"content\" }}`\n                    instance[key] = responseBody;\n                }\n            }\n            else {\n                const propertyName = xmlElementName || xmlName || serializedName;\n                if (propertyMapper.xmlIsWrapped) {\n                    /* a list of <xmlElementName> wrapped by <xmlName>\n                      For the xml example below\n                        <Cors>\n                          <CorsRule>...</CorsRule>\n                          <CorsRule>...</CorsRule>\n                        </Cors>\n                      the responseBody has\n                        {\n                          Cors: {\n                            CorsRule: [{...}, {...}]\n                          }\n                        }\n                      xmlName is \"Cors\" and xmlElementName is\"CorsRule\".\n                    */\n                    const wrapped = responseBody[xmlName];\n                    const elementList = (_b = wrapped === null || wrapped === void 0 ? void 0 : wrapped[xmlElementName]) !== null && _b !== void 0 ? _b : [];\n                    instance[key] = serializer.deserialize(propertyMapper, elementList, propertyObjectName, options);\n                    handledPropertyNames.push(xmlName);\n                }\n                else {\n                    const property = responseBody[propertyName];\n                    instance[key] = serializer.deserialize(propertyMapper, property, propertyObjectName, options);\n                    handledPropertyNames.push(propertyName);\n                }\n            }\n        }\n        else {\n            // deserialize the property if it is present in the provided responseBody instance\n            let propertyInstance;\n            let res = responseBody;\n            // traversing the object step by step.\n            let steps = 0;\n            for (const item of paths) {\n                if (!res)\n                    break;\n                steps++;\n                res = res[item];\n            }\n            // only accept null when reaching the last position of object otherwise it would be undefined\n            if (res === null && steps < paths.length) {\n                res = undefined;\n            }\n            propertyInstance = res;\n            const polymorphicDiscriminator = mapper.type.polymorphicDiscriminator;\n            // checking that the model property name (key)(ex: \"fishtype\") and the\n            // clientName of the polymorphicDiscriminator {metadata} (ex: \"fishtype\")\n            // instead of the serializedName of the polymorphicDiscriminator (ex: \"fish.type\")\n            // is a better approach. The generator is not consistent with escaping '\\.' in the\n            // serializedName of the property (ex: \"fish\\.type\") that is marked as polymorphic discriminator\n            // and the serializedName of the metadata polymorphicDiscriminator (ex: \"fish.type\"). However,\n            // the clientName transformation of the polymorphicDiscriminator (ex: \"fishtype\") and\n            // the transformation of model property name (ex: \"fishtype\") is done consistently.\n            // Hence, it is a safer bet to rely on the clientName of the polymorphicDiscriminator.\n            if (polymorphicDiscriminator &&\n                key === polymorphicDiscriminator.clientName &&\n                (propertyInstance === undefined || propertyInstance === null)) {\n                propertyInstance = mapper.serializedName;\n            }\n            let serializedValue;\n            // paging\n            if (Array.isArray(responseBody[key]) && modelProps[key].serializedName === \"\") {\n                propertyInstance = responseBody[key];\n                const arrayInstance = serializer.deserialize(propertyMapper, propertyInstance, propertyObjectName, options);\n                // Copy over any properties that have already been added into the instance, where they do\n                // not exist on the newly de-serialized array\n                for (const [k, v] of Object.entries(instance)) {\n                    if (!Object.prototype.hasOwnProperty.call(arrayInstance, k)) {\n                        arrayInstance[k] = v;\n                    }\n                }\n                instance = arrayInstance;\n            }\n            else if (propertyInstance !== undefined || propertyMapper.defaultValue !== undefined) {\n                serializedValue = serializer.deserialize(propertyMapper, propertyInstance, propertyObjectName, options);\n                instance[key] = serializedValue;\n            }\n        }\n    }\n    const additionalPropertiesMapper = mapper.type.additionalProperties;\n    if (additionalPropertiesMapper) {\n        const isAdditionalProperty = (responsePropName) => {\n            for (const clientPropName in modelProps) {\n                const paths = splitSerializeName(modelProps[clientPropName].serializedName);\n                if (paths[0] === responsePropName) {\n                    return false;\n                }\n            }\n            return true;\n        };\n        for (const responsePropName in responseBody) {\n            if (isAdditionalProperty(responsePropName)) {\n                instance[responsePropName] = serializer.deserialize(additionalPropertiesMapper, responseBody[responsePropName], objectName + '[\"' + responsePropName + '\"]', options);\n            }\n        }\n    }\n    else if (responseBody && !options.ignoreUnknownProperties) {\n        for (const key of Object.keys(responseBody)) {\n            if (instance[key] === undefined &&\n                !handledPropertyNames.includes(key) &&\n                !isSpecialXmlProperty(key, options)) {\n                instance[key] = responseBody[key];\n            }\n        }\n    }\n    return instance;\n}\nfunction deserializeDictionaryType(serializer, mapper, responseBody, objectName, options) {\n    /* jshint validthis: true */\n    const value = mapper.type.value;\n    if (!value || typeof value !== \"object\") {\n        throw new Error(`\"value\" metadata for a Dictionary must be defined in the ` +\n            `mapper and it must of type \"object\" in ${objectName}`);\n    }\n    if (responseBody) {\n        const tempDictionary = {};\n        for (const key of Object.keys(responseBody)) {\n            tempDictionary[key] = serializer.deserialize(value, responseBody[key], objectName, options);\n        }\n        return tempDictionary;\n    }\n    return responseBody;\n}\nfunction deserializeSequenceType(serializer, mapper, responseBody, objectName, options) {\n    var _a;\n    let element = mapper.type.element;\n    if (!element || typeof element !== \"object\") {\n        throw new Error(`element\" metadata for an Array must be defined in the ` +\n            `mapper and it must of type \"object\" in ${objectName}`);\n    }\n    if (responseBody) {\n        if (!Array.isArray(responseBody)) {\n            // xml2js will interpret a single element array as just the element, so force it to be an array\n            responseBody = [responseBody];\n        }\n        // Quirk: Composite mappers referenced by `element` might\n        // not have *all* properties declared (like uberParent),\n        // so let's try to look up the full definition by name.\n        if (element.type.name === \"Composite\" && element.type.className) {\n            element = (_a = serializer.modelMappers[element.type.className]) !== null && _a !== void 0 ? _a : element;\n        }\n        const tempArray = [];\n        for (let i = 0; i < responseBody.length; i++) {\n            tempArray[i] = serializer.deserialize(element, responseBody[i], `${objectName}[${i}]`, options);\n        }\n        return tempArray;\n    }\n    return responseBody;\n}\nfunction getIndexDiscriminator(discriminators, discriminatorValue, typeName) {\n    const typeNamesToCheck = [typeName];\n    while (typeNamesToCheck.length) {\n        const currentName = typeNamesToCheck.shift();\n        const indexDiscriminator = discriminatorValue === currentName\n            ? discriminatorValue\n            : currentName + \".\" + discriminatorValue;\n        if (Object.prototype.hasOwnProperty.call(discriminators, indexDiscriminator)) {\n            return discriminators[indexDiscriminator];\n        }\n        else {\n            for (const [name, mapper] of Object.entries(discriminators)) {\n                if (name.startsWith(currentName + \".\") &&\n                    mapper.type.uberParent === currentName &&\n                    mapper.type.className) {\n                    typeNamesToCheck.push(mapper.type.className);\n                }\n            }\n        }\n    }\n    return undefined;\n}\nfunction getPolymorphicMapper(serializer, mapper, object, polymorphicPropertyName) {\n    var _a;\n    const polymorphicDiscriminator = getPolymorphicDiscriminatorRecursively(serializer, mapper);\n    if (polymorphicDiscriminator) {\n        let discriminatorName = polymorphicDiscriminator[polymorphicPropertyName];\n        if (discriminatorName) {\n            // The serializedName might have \\\\, which we just want to ignore\n            if (polymorphicPropertyName === \"serializedName\") {\n                discriminatorName = discriminatorName.replace(/\\\\/gi, \"\");\n            }\n            const discriminatorValue = object[discriminatorName];\n            const typeName = (_a = mapper.type.uberParent) !== null && _a !== void 0 ? _a : mapper.type.className;\n            if (typeof discriminatorValue === \"string\" && typeName) {\n                const polymorphicMapper = getIndexDiscriminator(serializer.modelMappers.discriminators, discriminatorValue, typeName);\n                if (polymorphicMapper) {\n                    mapper = polymorphicMapper;\n                }\n            }\n        }\n    }\n    return mapper;\n}\nfunction getPolymorphicDiscriminatorRecursively(serializer, mapper) {\n    return (mapper.type.polymorphicDiscriminator ||\n        getPolymorphicDiscriminatorSafely(serializer, mapper.type.uberParent) ||\n        getPolymorphicDiscriminatorSafely(serializer, mapper.type.className));\n}\nfunction getPolymorphicDiscriminatorSafely(serializer, typeName) {\n    return (typeName &&\n        serializer.modelMappers[typeName] &&\n        serializer.modelMappers[typeName].type.polymorphicDiscriminator);\n}\n/**\n * Known types of Mappers\n */\nconst MapperTypeNames = {\n    Base64Url: \"Base64Url\",\n    Boolean: \"Boolean\",\n    ByteArray: \"ByteArray\",\n    Composite: \"Composite\",\n    Date: \"Date\",\n    DateTime: \"DateTime\",\n    DateTimeRfc1123: \"DateTimeRfc1123\",\n    Dictionary: \"Dictionary\",\n    Enum: \"Enum\",\n    Number: \"Number\",\n    Object: \"Object\",\n    Sequence: \"Sequence\",\n    String: \"String\",\n    Stream: \"Stream\",\n    TimeSpan: \"TimeSpan\",\n    UnixTime: \"UnixTime\",\n};\n\nvar state$2 = {};\n\nvar hasRequiredState$1;\n\nfunction requireState$1 () {\n\tif (hasRequiredState$1) return state$2;\n\thasRequiredState$1 = 1;\n\t// Copyright (c) Microsoft Corporation.\n\t// Licensed under the MIT License.\n\tObject.defineProperty(state$2, \"__esModule\", { value: true });\n\tstate$2.state = void 0;\n\t/**\n\t * Holds the singleton operationRequestMap, to be shared across CJS and ESM imports.\n\t */\n\tstate$2.state = {\n\t    operationRequestMap: new WeakMap(),\n\t};\n\t\n\treturn state$2;\n}\n\nvar stateExports = requireState$1();\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n// @ts-expect-error The recommended approach to sharing module state between ESM and CJS.\n// See https://github.com/isaacs/tshy/blob/main/README.md#module-local-state for additional information.\n/**\n * Defines the shared state between CJS and ESM by re-exporting the CJS state.\n */\nconst state$1 = stateExports.state;\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * @internal\n * Retrieves the value to use for a given operation argument\n * @param operationArguments - The arguments passed from the generated client\n * @param parameter - The parameter description\n * @param fallbackObject - If something isn't found in the arguments bag, look here.\n *  Generally used to look at the service client properties.\n */\nfunction getOperationArgumentValueFromParameter(operationArguments, parameter, fallbackObject) {\n    let parameterPath = parameter.parameterPath;\n    const parameterMapper = parameter.mapper;\n    let value;\n    if (typeof parameterPath === \"string\") {\n        parameterPath = [parameterPath];\n    }\n    if (Array.isArray(parameterPath)) {\n        if (parameterPath.length > 0) {\n            if (parameterMapper.isConstant) {\n                value = parameterMapper.defaultValue;\n            }\n            else {\n                let propertySearchResult = getPropertyFromParameterPath(operationArguments, parameterPath);\n                if (!propertySearchResult.propertyFound && fallbackObject) {\n                    propertySearchResult = getPropertyFromParameterPath(fallbackObject, parameterPath);\n                }\n                let useDefaultValue = false;\n                if (!propertySearchResult.propertyFound) {\n                    useDefaultValue =\n                        parameterMapper.required ||\n                            (parameterPath[0] === \"options\" && parameterPath.length === 2);\n                }\n                value = useDefaultValue ? parameterMapper.defaultValue : propertySearchResult.propertyValue;\n            }\n        }\n    }\n    else {\n        if (parameterMapper.required) {\n            value = {};\n        }\n        for (const propertyName in parameterPath) {\n            const propertyMapper = parameterMapper.type.modelProperties[propertyName];\n            const propertyPath = parameterPath[propertyName];\n            const propertyValue = getOperationArgumentValueFromParameter(operationArguments, {\n                parameterPath: propertyPath,\n                mapper: propertyMapper,\n            }, fallbackObject);\n            if (propertyValue !== undefined) {\n                if (!value) {\n                    value = {};\n                }\n                value[propertyName] = propertyValue;\n            }\n        }\n    }\n    return value;\n}\nfunction getPropertyFromParameterPath(parent, parameterPath) {\n    const result = { propertyFound: false };\n    let i = 0;\n    for (; i < parameterPath.length; ++i) {\n        const parameterPathPart = parameterPath[i];\n        // Make sure to check inherited properties too, so don't use hasOwnProperty().\n        if (parent && parameterPathPart in parent) {\n            parent = parent[parameterPathPart];\n        }\n        else {\n            break;\n        }\n    }\n    if (i === parameterPath.length) {\n        result.propertyValue = parent;\n        result.propertyFound = true;\n    }\n    return result;\n}\nconst originalRequestSymbol$1 = Symbol.for(\"@azure/core-client original request\");\nfunction hasOriginalRequest(request) {\n    return originalRequestSymbol$1 in request;\n}\nfunction getOperationRequestInfo(request) {\n    if (hasOriginalRequest(request)) {\n        return getOperationRequestInfo(request[originalRequestSymbol$1]);\n    }\n    let info = state$1.operationRequestMap.get(request);\n    if (!info) {\n        info = {};\n        state$1.operationRequestMap.set(request, info);\n    }\n    return info;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst defaultJsonContentTypes = [\"application/json\", \"text/json\"];\nconst defaultXmlContentTypes = [\"application/xml\", \"application/atom+xml\"];\n/**\n * The programmatic identifier of the deserializationPolicy.\n */\nconst deserializationPolicyName = \"deserializationPolicy\";\n/**\n * This policy handles parsing out responses according to OperationSpecs on the request.\n */\nfunction deserializationPolicy(options = {}) {\n    var _a, _b, _c, _d, _e, _f, _g;\n    const jsonContentTypes = (_b = (_a = options.expectedContentTypes) === null || _a === void 0 ? void 0 : _a.json) !== null && _b !== void 0 ? _b : defaultJsonContentTypes;\n    const xmlContentTypes = (_d = (_c = options.expectedContentTypes) === null || _c === void 0 ? void 0 : _c.xml) !== null && _d !== void 0 ? _d : defaultXmlContentTypes;\n    const parseXML = options.parseXML;\n    const serializerOptions = options.serializerOptions;\n    const updatedOptions = {\n        xml: {\n            rootName: (_e = serializerOptions === null || serializerOptions === void 0 ? void 0 : serializerOptions.xml.rootName) !== null && _e !== void 0 ? _e : \"\",\n            includeRoot: (_f = serializerOptions === null || serializerOptions === void 0 ? void 0 : serializerOptions.xml.includeRoot) !== null && _f !== void 0 ? _f : false,\n            xmlCharKey: (_g = serializerOptions === null || serializerOptions === void 0 ? void 0 : serializerOptions.xml.xmlCharKey) !== null && _g !== void 0 ? _g : XML_CHARKEY$1,\n        },\n    };\n    return {\n        name: deserializationPolicyName,\n        async sendRequest(request, next) {\n            const response = await next(request);\n            return deserializeResponseBody(jsonContentTypes, xmlContentTypes, response, updatedOptions, parseXML);\n        },\n    };\n}\nfunction getOperationResponseMap(parsedResponse) {\n    let result;\n    const request = parsedResponse.request;\n    const operationInfo = getOperationRequestInfo(request);\n    const operationSpec = operationInfo === null || operationInfo === void 0 ? void 0 : operationInfo.operationSpec;\n    if (operationSpec) {\n        if (!(operationInfo === null || operationInfo === void 0 ? void 0 : operationInfo.operationResponseGetter)) {\n            result = operationSpec.responses[parsedResponse.status];\n        }\n        else {\n            result = operationInfo === null || operationInfo === void 0 ? void 0 : operationInfo.operationResponseGetter(operationSpec, parsedResponse);\n        }\n    }\n    return result;\n}\nfunction shouldDeserializeResponse(parsedResponse) {\n    const request = parsedResponse.request;\n    const operationInfo = getOperationRequestInfo(request);\n    const shouldDeserialize = operationInfo === null || operationInfo === void 0 ? void 0 : operationInfo.shouldDeserialize;\n    let result;\n    if (shouldDeserialize === undefined) {\n        result = true;\n    }\n    else if (typeof shouldDeserialize === \"boolean\") {\n        result = shouldDeserialize;\n    }\n    else {\n        result = shouldDeserialize(parsedResponse);\n    }\n    return result;\n}\nasync function deserializeResponseBody(jsonContentTypes, xmlContentTypes, response, options, parseXML) {\n    const parsedResponse = await parse$1(jsonContentTypes, xmlContentTypes, response, options, parseXML);\n    if (!shouldDeserializeResponse(parsedResponse)) {\n        return parsedResponse;\n    }\n    const operationInfo = getOperationRequestInfo(parsedResponse.request);\n    const operationSpec = operationInfo === null || operationInfo === void 0 ? void 0 : operationInfo.operationSpec;\n    if (!operationSpec || !operationSpec.responses) {\n        return parsedResponse;\n    }\n    const responseSpec = getOperationResponseMap(parsedResponse);\n    const { error, shouldReturnResponse } = handleErrorResponse(parsedResponse, operationSpec, responseSpec, options);\n    if (error) {\n        throw error;\n    }\n    else if (shouldReturnResponse) {\n        return parsedResponse;\n    }\n    // An operation response spec does exist for current status code, so\n    // use it to deserialize the response.\n    if (responseSpec) {\n        if (responseSpec.bodyMapper) {\n            let valueToDeserialize = parsedResponse.parsedBody;\n            if (operationSpec.isXML && responseSpec.bodyMapper.type.name === MapperTypeNames.Sequence) {\n                valueToDeserialize =\n                    typeof valueToDeserialize === \"object\"\n                        ? valueToDeserialize[responseSpec.bodyMapper.xmlElementName]\n                        : [];\n            }\n            try {\n                parsedResponse.parsedBody = operationSpec.serializer.deserialize(responseSpec.bodyMapper, valueToDeserialize, \"operationRes.parsedBody\", options);\n            }\n            catch (deserializeError) {\n                const restError = new RestError(`Error ${deserializeError} occurred in deserializing the responseBody - ${parsedResponse.bodyAsText}`, {\n                    statusCode: parsedResponse.status,\n                    request: parsedResponse.request,\n                    response: parsedResponse,\n                });\n                throw restError;\n            }\n        }\n        else if (operationSpec.httpMethod === \"HEAD\") {\n            // head methods never have a body, but we return a boolean to indicate presence/absence of the resource\n            parsedResponse.parsedBody = response.status >= 200 && response.status < 300;\n        }\n        if (responseSpec.headersMapper) {\n            parsedResponse.parsedHeaders = operationSpec.serializer.deserialize(responseSpec.headersMapper, parsedResponse.headers.toJSON(), \"operationRes.parsedHeaders\", { xml: {}, ignoreUnknownProperties: true });\n        }\n    }\n    return parsedResponse;\n}\nfunction isOperationSpecEmpty(operationSpec) {\n    const expectedStatusCodes = Object.keys(operationSpec.responses);\n    return (expectedStatusCodes.length === 0 ||\n        (expectedStatusCodes.length === 1 && expectedStatusCodes[0] === \"default\"));\n}\nfunction handleErrorResponse(parsedResponse, operationSpec, responseSpec, options) {\n    var _a, _b, _c, _d, _e;\n    const isSuccessByStatus = 200 <= parsedResponse.status && parsedResponse.status < 300;\n    const isExpectedStatusCode = isOperationSpecEmpty(operationSpec)\n        ? isSuccessByStatus\n        : !!responseSpec;\n    if (isExpectedStatusCode) {\n        if (responseSpec) {\n            if (!responseSpec.isError) {\n                return { error: null, shouldReturnResponse: false };\n            }\n        }\n        else {\n            return { error: null, shouldReturnResponse: false };\n        }\n    }\n    const errorResponseSpec = responseSpec !== null && responseSpec !== void 0 ? responseSpec : operationSpec.responses.default;\n    const initialErrorMessage = ((_a = parsedResponse.request.streamResponseStatusCodes) === null || _a === void 0 ? void 0 : _a.has(parsedResponse.status))\n        ? `Unexpected status code: ${parsedResponse.status}`\n        : parsedResponse.bodyAsText;\n    const error = new RestError(initialErrorMessage, {\n        statusCode: parsedResponse.status,\n        request: parsedResponse.request,\n        response: parsedResponse,\n    });\n    // If the item failed but there's no error spec or default spec to deserialize the error,\n    // and the parsed body doesn't look like an error object,\n    // we should fail so we just throw the parsed response\n    if (!errorResponseSpec &&\n        !(((_c = (_b = parsedResponse.parsedBody) === null || _b === void 0 ? void 0 : _b.error) === null || _c === void 0 ? void 0 : _c.code) && ((_e = (_d = parsedResponse.parsedBody) === null || _d === void 0 ? void 0 : _d.error) === null || _e === void 0 ? void 0 : _e.message))) {\n        throw error;\n    }\n    const defaultBodyMapper = errorResponseSpec === null || errorResponseSpec === void 0 ? void 0 : errorResponseSpec.bodyMapper;\n    const defaultHeadersMapper = errorResponseSpec === null || errorResponseSpec === void 0 ? void 0 : errorResponseSpec.headersMapper;\n    try {\n        // If error response has a body, try to deserialize it using default body mapper.\n        // Then try to extract error code & message from it\n        if (parsedResponse.parsedBody) {\n            const parsedBody = parsedResponse.parsedBody;\n            let deserializedError;\n            if (defaultBodyMapper) {\n                let valueToDeserialize = parsedBody;\n                if (operationSpec.isXML && defaultBodyMapper.type.name === MapperTypeNames.Sequence) {\n                    valueToDeserialize = [];\n                    const elementName = defaultBodyMapper.xmlElementName;\n                    if (typeof parsedBody === \"object\" && elementName) {\n                        valueToDeserialize = parsedBody[elementName];\n                    }\n                }\n                deserializedError = operationSpec.serializer.deserialize(defaultBodyMapper, valueToDeserialize, \"error.response.parsedBody\", options);\n            }\n            const internalError = parsedBody.error || deserializedError || parsedBody;\n            error.code = internalError.code;\n            if (internalError.message) {\n                error.message = internalError.message;\n            }\n            if (defaultBodyMapper) {\n                error.response.parsedBody = deserializedError;\n            }\n        }\n        // If error response has headers, try to deserialize it using default header mapper\n        if (parsedResponse.headers && defaultHeadersMapper) {\n            error.response.parsedHeaders =\n                operationSpec.serializer.deserialize(defaultHeadersMapper, parsedResponse.headers.toJSON(), \"operationRes.parsedHeaders\");\n        }\n    }\n    catch (defaultError) {\n        error.message = `Error \"${defaultError.message}\" occurred in deserializing the responseBody - \"${parsedResponse.bodyAsText}\" for the default response.`;\n    }\n    return { error, shouldReturnResponse: false };\n}\nasync function parse$1(jsonContentTypes, xmlContentTypes, operationResponse, opts, parseXML) {\n    var _a;\n    if (!((_a = operationResponse.request.streamResponseStatusCodes) === null || _a === void 0 ? void 0 : _a.has(operationResponse.status)) &&\n        operationResponse.bodyAsText) {\n        const text = operationResponse.bodyAsText;\n        const contentType = operationResponse.headers.get(\"Content-Type\") || \"\";\n        const contentComponents = !contentType\n            ? []\n            : contentType.split(\";\").map((component) => component.toLowerCase());\n        try {\n            if (contentComponents.length === 0 ||\n                contentComponents.some((component) => jsonContentTypes.indexOf(component) !== -1)) {\n                operationResponse.parsedBody = JSON.parse(text);\n                return operationResponse;\n            }\n            else if (contentComponents.some((component) => xmlContentTypes.indexOf(component) !== -1)) {\n                if (!parseXML) {\n                    throw new Error(\"Parsing XML not supported.\");\n                }\n                const body = await parseXML(text, opts.xml);\n                operationResponse.parsedBody = body;\n                return operationResponse;\n            }\n        }\n        catch (err) {\n            const msg = `Error \"${err}\" occurred while parsing the response body - ${operationResponse.bodyAsText}.`;\n            const errCode = err.code || RestError.PARSE_ERROR;\n            const e = new RestError(msg, {\n                code: errCode,\n                statusCode: operationResponse.status,\n                request: operationResponse.request,\n                response: operationResponse,\n            });\n            throw e;\n        }\n    }\n    return operationResponse;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Gets the list of status codes for streaming responses.\n * @internal\n */\nfunction getStreamingResponseStatusCodes(operationSpec) {\n    const result = new Set();\n    for (const statusCode in operationSpec.responses) {\n        const operationResponse = operationSpec.responses[statusCode];\n        if (operationResponse.bodyMapper &&\n            operationResponse.bodyMapper.type.name === MapperTypeNames.Stream) {\n            result.add(Number(statusCode));\n        }\n    }\n    return result;\n}\n/**\n * Get the path to this parameter's value as a dotted string (a.b.c).\n * @param parameter - The parameter to get the path string for.\n * @returns The path to this parameter's value as a dotted string.\n * @internal\n */\nfunction getPathStringFromParameter(parameter) {\n    const { parameterPath, mapper } = parameter;\n    let result;\n    if (typeof parameterPath === \"string\") {\n        result = parameterPath;\n    }\n    else if (Array.isArray(parameterPath)) {\n        result = parameterPath.join(\".\");\n    }\n    else {\n        result = mapper.serializedName;\n    }\n    return result;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the serializationPolicy.\n */\nconst serializationPolicyName = \"serializationPolicy\";\n/**\n * This policy handles assembling the request body and headers using\n * an OperationSpec and OperationArguments on the request.\n */\nfunction serializationPolicy(options = {}) {\n    const stringifyXML = options.stringifyXML;\n    return {\n        name: serializationPolicyName,\n        async sendRequest(request, next) {\n            const operationInfo = getOperationRequestInfo(request);\n            const operationSpec = operationInfo === null || operationInfo === void 0 ? void 0 : operationInfo.operationSpec;\n            const operationArguments = operationInfo === null || operationInfo === void 0 ? void 0 : operationInfo.operationArguments;\n            if (operationSpec && operationArguments) {\n                serializeHeaders(request, operationArguments, operationSpec);\n                serializeRequestBody(request, operationArguments, operationSpec, stringifyXML);\n            }\n            return next(request);\n        },\n    };\n}\n/**\n * @internal\n */\nfunction serializeHeaders(request, operationArguments, operationSpec) {\n    var _a, _b;\n    if (operationSpec.headerParameters) {\n        for (const headerParameter of operationSpec.headerParameters) {\n            let headerValue = getOperationArgumentValueFromParameter(operationArguments, headerParameter);\n            if ((headerValue !== null && headerValue !== undefined) || headerParameter.mapper.required) {\n                headerValue = operationSpec.serializer.serialize(headerParameter.mapper, headerValue, getPathStringFromParameter(headerParameter));\n                const headerCollectionPrefix = headerParameter.mapper\n                    .headerCollectionPrefix;\n                if (headerCollectionPrefix) {\n                    for (const key of Object.keys(headerValue)) {\n                        request.headers.set(headerCollectionPrefix + key, headerValue[key]);\n                    }\n                }\n                else {\n                    request.headers.set(headerParameter.mapper.serializedName || getPathStringFromParameter(headerParameter), headerValue);\n                }\n            }\n        }\n    }\n    const customHeaders = (_b = (_a = operationArguments.options) === null || _a === void 0 ? void 0 : _a.requestOptions) === null || _b === void 0 ? void 0 : _b.customHeaders;\n    if (customHeaders) {\n        for (const customHeaderName of Object.keys(customHeaders)) {\n            request.headers.set(customHeaderName, customHeaders[customHeaderName]);\n        }\n    }\n}\n/**\n * @internal\n */\nfunction serializeRequestBody(request, operationArguments, operationSpec, stringifyXML = function () {\n    throw new Error(\"XML serialization unsupported!\");\n}) {\n    var _a, _b, _c, _d, _e;\n    const serializerOptions = (_a = operationArguments.options) === null || _a === void 0 ? void 0 : _a.serializerOptions;\n    const updatedOptions = {\n        xml: {\n            rootName: (_b = serializerOptions === null || serializerOptions === void 0 ? void 0 : serializerOptions.xml.rootName) !== null && _b !== void 0 ? _b : \"\",\n            includeRoot: (_c = serializerOptions === null || serializerOptions === void 0 ? void 0 : serializerOptions.xml.includeRoot) !== null && _c !== void 0 ? _c : false,\n            xmlCharKey: (_d = serializerOptions === null || serializerOptions === void 0 ? void 0 : serializerOptions.xml.xmlCharKey) !== null && _d !== void 0 ? _d : XML_CHARKEY$1,\n        },\n    };\n    const xmlCharKey = updatedOptions.xml.xmlCharKey;\n    if (operationSpec.requestBody && operationSpec.requestBody.mapper) {\n        request.body = getOperationArgumentValueFromParameter(operationArguments, operationSpec.requestBody);\n        const bodyMapper = operationSpec.requestBody.mapper;\n        const { required, serializedName, xmlName, xmlElementName, xmlNamespace, xmlNamespacePrefix, nullable, } = bodyMapper;\n        const typeName = bodyMapper.type.name;\n        try {\n            if ((request.body !== undefined && request.body !== null) ||\n                (nullable && request.body === null) ||\n                required) {\n                const requestBodyParameterPathString = getPathStringFromParameter(operationSpec.requestBody);\n                request.body = operationSpec.serializer.serialize(bodyMapper, request.body, requestBodyParameterPathString, updatedOptions);\n                const isStream = typeName === MapperTypeNames.Stream;\n                if (operationSpec.isXML) {\n                    const xmlnsKey = xmlNamespacePrefix ? `xmlns:${xmlNamespacePrefix}` : \"xmlns\";\n                    const value = getXmlValueWithNamespace(xmlNamespace, xmlnsKey, typeName, request.body, updatedOptions);\n                    if (typeName === MapperTypeNames.Sequence) {\n                        request.body = stringifyXML(prepareXMLRootList(value, xmlElementName || xmlName || serializedName, xmlnsKey, xmlNamespace), { rootName: xmlName || serializedName, xmlCharKey });\n                    }\n                    else if (!isStream) {\n                        request.body = stringifyXML(value, {\n                            rootName: xmlName || serializedName,\n                            xmlCharKey,\n                        });\n                    }\n                }\n                else if (typeName === MapperTypeNames.String &&\n                    (((_e = operationSpec.contentType) === null || _e === void 0 ? void 0 : _e.match(\"text/plain\")) || operationSpec.mediaType === \"text\")) {\n                    // the String serializer has validated that request body is a string\n                    // so just send the string.\n                    return;\n                }\n                else if (!isStream) {\n                    request.body = JSON.stringify(request.body);\n                }\n            }\n        }\n        catch (error) {\n            throw new Error(`Error \"${error.message}\" occurred in serializing the payload - ${JSON.stringify(serializedName, undefined, \"  \")}.`);\n        }\n    }\n    else if (operationSpec.formDataParameters && operationSpec.formDataParameters.length > 0) {\n        request.formData = {};\n        for (const formDataParameter of operationSpec.formDataParameters) {\n            const formDataParameterValue = getOperationArgumentValueFromParameter(operationArguments, formDataParameter);\n            if (formDataParameterValue !== undefined && formDataParameterValue !== null) {\n                const formDataParameterPropertyName = formDataParameter.mapper.serializedName || getPathStringFromParameter(formDataParameter);\n                request.formData[formDataParameterPropertyName] = operationSpec.serializer.serialize(formDataParameter.mapper, formDataParameterValue, getPathStringFromParameter(formDataParameter), updatedOptions);\n            }\n        }\n    }\n}\n/**\n * Adds an xml namespace to the xml serialized object if needed, otherwise it just returns the value itself\n */\nfunction getXmlValueWithNamespace(xmlNamespace, xmlnsKey, typeName, serializedValue, options) {\n    // Composite and Sequence schemas already got their root namespace set during serialization\n    // We just need to add xmlns to the other schema types\n    if (xmlNamespace && ![\"Composite\", \"Sequence\", \"Dictionary\"].includes(typeName)) {\n        const result = {};\n        result[options.xml.xmlCharKey] = serializedValue;\n        result[XML_ATTRKEY$1] = { [xmlnsKey]: xmlNamespace };\n        return result;\n    }\n    return serializedValue;\n}\nfunction prepareXMLRootList(obj, elementName, xmlNamespaceKey, xmlNamespace) {\n    if (!Array.isArray(obj)) {\n        obj = [obj];\n    }\n    if (!xmlNamespaceKey || !xmlNamespace) {\n        return { [elementName]: obj };\n    }\n    const result = { [elementName]: obj };\n    result[XML_ATTRKEY$1] = { [xmlNamespaceKey]: xmlNamespace };\n    return result;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Creates a new Pipeline for use with a Service Client.\n * Adds in deserializationPolicy by default.\n * Also adds in bearerTokenAuthenticationPolicy if passed a TokenCredential.\n * @param options - Options to customize the created pipeline.\n */\nfunction createClientPipeline(options = {}) {\n    const pipeline = createPipelineFromOptions(options !== null && options !== void 0 ? options : {});\n    if (options.credentialOptions) {\n        pipeline.addPolicy(bearerTokenAuthenticationPolicy({\n            credential: options.credentialOptions.credential,\n            scopes: options.credentialOptions.credentialScopes,\n        }));\n    }\n    pipeline.addPolicy(serializationPolicy(options.serializationOptions), { phase: \"Serialize\" });\n    pipeline.addPolicy(deserializationPolicy(options.deserializationOptions), {\n        phase: \"Deserialize\",\n    });\n    return pipeline;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nlet cachedHttpClient;\nfunction getCachedDefaultHttpClient$1() {\n    if (!cachedHttpClient) {\n        cachedHttpClient = createDefaultHttpClient();\n    }\n    return cachedHttpClient;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst CollectionFormatToDelimiterMap = {\n    CSV: \",\",\n    SSV: \" \",\n    Multi: \"Multi\",\n    TSV: \"\\t\",\n    Pipes: \"|\",\n};\nfunction getRequestUrl(baseUri, operationSpec, operationArguments, fallbackObject) {\n    const urlReplacements = calculateUrlReplacements(operationSpec, operationArguments, fallbackObject);\n    let isAbsolutePath = false;\n    let requestUrl = replaceAll(baseUri, urlReplacements);\n    if (operationSpec.path) {\n        let path = replaceAll(operationSpec.path, urlReplacements);\n        // QUIRK: sometimes we get a path component like /{nextLink}\n        // which may be a fully formed URL with a leading /. In that case, we should\n        // remove the leading /\n        if (operationSpec.path === \"/{nextLink}\" && path.startsWith(\"/\")) {\n            path = path.substring(1);\n        }\n        // QUIRK: sometimes we get a path component like {nextLink}\n        // which may be a fully formed URL. In that case, we should\n        // ignore the baseUri.\n        if (isAbsoluteUrl(path)) {\n            requestUrl = path;\n            isAbsolutePath = true;\n        }\n        else {\n            requestUrl = appendPath(requestUrl, path);\n        }\n    }\n    const { queryParams, sequenceParams } = calculateQueryParameters(operationSpec, operationArguments, fallbackObject);\n    /**\n     * Notice that this call sets the `noOverwrite` parameter to true if the `requestUrl`\n     * is an absolute path. This ensures that existing query parameter values in `requestUrl`\n     * do not get overwritten. On the other hand when `requestUrl` is not absolute path, it\n     * is still being built so there is nothing to overwrite.\n     */\n    requestUrl = appendQueryParams(requestUrl, queryParams, sequenceParams, isAbsolutePath);\n    return requestUrl;\n}\nfunction replaceAll(input, replacements) {\n    let result = input;\n    for (const [searchValue, replaceValue] of replacements) {\n        result = result.split(searchValue).join(replaceValue);\n    }\n    return result;\n}\nfunction calculateUrlReplacements(operationSpec, operationArguments, fallbackObject) {\n    var _a;\n    const result = new Map();\n    if ((_a = operationSpec.urlParameters) === null || _a === void 0 ? void 0 : _a.length) {\n        for (const urlParameter of operationSpec.urlParameters) {\n            let urlParameterValue = getOperationArgumentValueFromParameter(operationArguments, urlParameter, fallbackObject);\n            const parameterPathString = getPathStringFromParameter(urlParameter);\n            urlParameterValue = operationSpec.serializer.serialize(urlParameter.mapper, urlParameterValue, parameterPathString);\n            if (!urlParameter.skipEncoding) {\n                urlParameterValue = encodeURIComponent(urlParameterValue);\n            }\n            result.set(`{${urlParameter.mapper.serializedName || parameterPathString}}`, urlParameterValue);\n        }\n    }\n    return result;\n}\nfunction isAbsoluteUrl(url) {\n    return url.includes(\"://\");\n}\nfunction appendPath(url, pathToAppend) {\n    if (!pathToAppend) {\n        return url;\n    }\n    const parsedUrl = new URL(url);\n    let newPath = parsedUrl.pathname;\n    if (!newPath.endsWith(\"/\")) {\n        newPath = `${newPath}/`;\n    }\n    if (pathToAppend.startsWith(\"/\")) {\n        pathToAppend = pathToAppend.substring(1);\n    }\n    const searchStart = pathToAppend.indexOf(\"?\");\n    if (searchStart !== -1) {\n        const path = pathToAppend.substring(0, searchStart);\n        const search = pathToAppend.substring(searchStart + 1);\n        newPath = newPath + path;\n        if (search) {\n            parsedUrl.search = parsedUrl.search ? `${parsedUrl.search}&${search}` : search;\n        }\n    }\n    else {\n        newPath = newPath + pathToAppend;\n    }\n    parsedUrl.pathname = newPath;\n    return parsedUrl.toString();\n}\nfunction calculateQueryParameters(operationSpec, operationArguments, fallbackObject) {\n    var _a;\n    const result = new Map();\n    const sequenceParams = new Set();\n    if ((_a = operationSpec.queryParameters) === null || _a === void 0 ? void 0 : _a.length) {\n        for (const queryParameter of operationSpec.queryParameters) {\n            if (queryParameter.mapper.type.name === \"Sequence\" && queryParameter.mapper.serializedName) {\n                sequenceParams.add(queryParameter.mapper.serializedName);\n            }\n            let queryParameterValue = getOperationArgumentValueFromParameter(operationArguments, queryParameter, fallbackObject);\n            if ((queryParameterValue !== undefined && queryParameterValue !== null) ||\n                queryParameter.mapper.required) {\n                queryParameterValue = operationSpec.serializer.serialize(queryParameter.mapper, queryParameterValue, getPathStringFromParameter(queryParameter));\n                const delimiter = queryParameter.collectionFormat\n                    ? CollectionFormatToDelimiterMap[queryParameter.collectionFormat]\n                    : \"\";\n                if (Array.isArray(queryParameterValue)) {\n                    // replace null and undefined\n                    queryParameterValue = queryParameterValue.map((item) => {\n                        if (item === null || item === undefined) {\n                            return \"\";\n                        }\n                        return item;\n                    });\n                }\n                if (queryParameter.collectionFormat === \"Multi\" && queryParameterValue.length === 0) {\n                    continue;\n                }\n                else if (Array.isArray(queryParameterValue) &&\n                    (queryParameter.collectionFormat === \"SSV\" || queryParameter.collectionFormat === \"TSV\")) {\n                    queryParameterValue = queryParameterValue.join(delimiter);\n                }\n                if (!queryParameter.skipEncoding) {\n                    if (Array.isArray(queryParameterValue)) {\n                        queryParameterValue = queryParameterValue.map((item) => {\n                            return encodeURIComponent(item);\n                        });\n                    }\n                    else {\n                        queryParameterValue = encodeURIComponent(queryParameterValue);\n                    }\n                }\n                // Join pipes and CSV *after* encoding, or the server will be upset.\n                if (Array.isArray(queryParameterValue) &&\n                    (queryParameter.collectionFormat === \"CSV\" || queryParameter.collectionFormat === \"Pipes\")) {\n                    queryParameterValue = queryParameterValue.join(delimiter);\n                }\n                result.set(queryParameter.mapper.serializedName || getPathStringFromParameter(queryParameter), queryParameterValue);\n            }\n        }\n    }\n    return {\n        queryParams: result,\n        sequenceParams,\n    };\n}\nfunction simpleParseQueryParams(queryString) {\n    const result = new Map();\n    if (!queryString || queryString[0] !== \"?\") {\n        return result;\n    }\n    // remove the leading ?\n    queryString = queryString.slice(1);\n    const pairs = queryString.split(\"&\");\n    for (const pair of pairs) {\n        const [name, value] = pair.split(\"=\", 2);\n        const existingValue = result.get(name);\n        if (existingValue) {\n            if (Array.isArray(existingValue)) {\n                existingValue.push(value);\n            }\n            else {\n                result.set(name, [existingValue, value]);\n            }\n        }\n        else {\n            result.set(name, value);\n        }\n    }\n    return result;\n}\n/** @internal */\nfunction appendQueryParams(url, queryParams, sequenceParams, noOverwrite = false) {\n    if (queryParams.size === 0) {\n        return url;\n    }\n    const parsedUrl = new URL(url);\n    // QUIRK: parsedUrl.searchParams will have their name/value pairs decoded, which\n    // can change their meaning to the server, such as in the case of a SAS signature.\n    // To avoid accidentally un-encoding a query param, we parse the key/values ourselves\n    const combinedParams = simpleParseQueryParams(parsedUrl.search);\n    for (const [name, value] of queryParams) {\n        const existingValue = combinedParams.get(name);\n        if (Array.isArray(existingValue)) {\n            if (Array.isArray(value)) {\n                existingValue.push(...value);\n                const valueSet = new Set(existingValue);\n                combinedParams.set(name, Array.from(valueSet));\n            }\n            else {\n                existingValue.push(value);\n            }\n        }\n        else if (existingValue) {\n            if (Array.isArray(value)) {\n                value.unshift(existingValue);\n            }\n            else if (sequenceParams.has(name)) {\n                combinedParams.set(name, [existingValue, value]);\n            }\n            if (!noOverwrite) {\n                combinedParams.set(name, value);\n            }\n        }\n        else {\n            combinedParams.set(name, value);\n        }\n    }\n    const searchPieces = [];\n    for (const [name, value] of combinedParams) {\n        if (typeof value === \"string\") {\n            searchPieces.push(`${name}=${value}`);\n        }\n        else if (Array.isArray(value)) {\n            // QUIRK: If we get an array of values, include multiple key/value pairs\n            for (const subValue of value) {\n                searchPieces.push(`${name}=${subValue}`);\n            }\n        }\n        else {\n            searchPieces.push(`${name}=${value}`);\n        }\n    }\n    // QUIRK: we have to set search manually as searchParams will encode comma when it shouldn't.\n    parsedUrl.search = searchPieces.length ? `?${searchPieces.join(\"&\")}` : \"\";\n    return parsedUrl.toString();\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst logger$1 = createClientLogger(\"core-client\");\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Initializes a new instance of the ServiceClient.\n */\nclass ServiceClient {\n    /**\n     * The ServiceClient constructor\n     * @param options - The service client options that govern the behavior of the client.\n     */\n    constructor(options = {}) {\n        var _a, _b;\n        this._requestContentType = options.requestContentType;\n        this._endpoint = (_a = options.endpoint) !== null && _a !== void 0 ? _a : options.baseUri;\n        if (options.baseUri) {\n            logger$1.warning(\"The baseUri option for SDK Clients has been deprecated, please use endpoint instead.\");\n        }\n        this._allowInsecureConnection = options.allowInsecureConnection;\n        this._httpClient = options.httpClient || getCachedDefaultHttpClient$1();\n        this.pipeline = options.pipeline || createDefaultPipeline(options);\n        if ((_b = options.additionalPolicies) === null || _b === void 0 ? void 0 : _b.length) {\n            for (const { policy, position } of options.additionalPolicies) {\n                // Sign happens after Retry and is commonly needed to occur\n                // before policies that intercept post-retry.\n                const afterPhase = position === \"perRetry\" ? \"Sign\" : undefined;\n                this.pipeline.addPolicy(policy, {\n                    afterPhase,\n                });\n            }\n        }\n    }\n    /**\n     * Send the provided httpRequest.\n     */\n    async sendRequest(request) {\n        return this.pipeline.sendRequest(this._httpClient, request);\n    }\n    /**\n     * Send an HTTP request that is populated using the provided OperationSpec.\n     * @typeParam T - The typed result of the request, based on the OperationSpec.\n     * @param operationArguments - The arguments that the HTTP request's templated values will be populated from.\n     * @param operationSpec - The OperationSpec to use to populate the httpRequest.\n     */\n    async sendOperationRequest(operationArguments, operationSpec) {\n        const endpoint = operationSpec.baseUrl || this._endpoint;\n        if (!endpoint) {\n            throw new Error(\"If operationSpec.baseUrl is not specified, then the ServiceClient must have a endpoint string property that contains the base URL to use.\");\n        }\n        // Templatized URLs sometimes reference properties on the ServiceClient child class,\n        // so we have to pass `this` below in order to search these properties if they're\n        // not part of OperationArguments\n        const url = getRequestUrl(endpoint, operationSpec, operationArguments, this);\n        const request = createPipelineRequest({\n            url,\n        });\n        request.method = operationSpec.httpMethod;\n        const operationInfo = getOperationRequestInfo(request);\n        operationInfo.operationSpec = operationSpec;\n        operationInfo.operationArguments = operationArguments;\n        const contentType = operationSpec.contentType || this._requestContentType;\n        if (contentType && operationSpec.requestBody) {\n            request.headers.set(\"Content-Type\", contentType);\n        }\n        const options = operationArguments.options;\n        if (options) {\n            const requestOptions = options.requestOptions;\n            if (requestOptions) {\n                if (requestOptions.timeout) {\n                    request.timeout = requestOptions.timeout;\n                }\n                if (requestOptions.onUploadProgress) {\n                    request.onUploadProgress = requestOptions.onUploadProgress;\n                }\n                if (requestOptions.onDownloadProgress) {\n                    request.onDownloadProgress = requestOptions.onDownloadProgress;\n                }\n                if (requestOptions.shouldDeserialize !== undefined) {\n                    operationInfo.shouldDeserialize = requestOptions.shouldDeserialize;\n                }\n                if (requestOptions.allowInsecureConnection) {\n                    request.allowInsecureConnection = true;\n                }\n            }\n            if (options.abortSignal) {\n                request.abortSignal = options.abortSignal;\n            }\n            if (options.tracingOptions) {\n                request.tracingOptions = options.tracingOptions;\n            }\n        }\n        if (this._allowInsecureConnection) {\n            request.allowInsecureConnection = true;\n        }\n        if (request.streamResponseStatusCodes === undefined) {\n            request.streamResponseStatusCodes = getStreamingResponseStatusCodes(operationSpec);\n        }\n        try {\n            const rawResponse = await this.sendRequest(request);\n            const flatResponse = flattenResponse(rawResponse, operationSpec.responses[rawResponse.status]);\n            if (options === null || options === void 0 ? void 0 : options.onResponse) {\n                options.onResponse(rawResponse, flatResponse);\n            }\n            return flatResponse;\n        }\n        catch (error) {\n            if (typeof error === \"object\" && (error === null || error === void 0 ? void 0 : error.response)) {\n                const rawResponse = error.response;\n                const flatResponse = flattenResponse(rawResponse, operationSpec.responses[error.statusCode] || operationSpec.responses[\"default\"]);\n                error.details = flatResponse;\n                if (options === null || options === void 0 ? void 0 : options.onResponse) {\n                    options.onResponse(rawResponse, flatResponse, error);\n                }\n            }\n            throw error;\n        }\n    }\n}\nfunction createDefaultPipeline(options) {\n    const credentialScopes = getCredentialScopes(options);\n    const credentialOptions = options.credential && credentialScopes\n        ? { credentialScopes, credential: options.credential }\n        : undefined;\n    return createClientPipeline(Object.assign(Object.assign({}, options), { credentialOptions }));\n}\nfunction getCredentialScopes(options) {\n    if (options.credentialScopes) {\n        return options.credentialScopes;\n    }\n    if (options.endpoint) {\n        return `${options.endpoint}/.default`;\n    }\n    if (options.baseUri) {\n        return `${options.baseUri}/.default`;\n    }\n    if (options.credential && !options.credentialScopes) {\n        throw new Error(`When using credentials, the ServiceClientOptions must contain either a endpoint or a credentialScopes. Unable to create a bearerTokenAuthenticationPolicy`);\n    }\n    return undefined;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A set of constants used internally when processing requests.\n */\nconst Constants = {\n    DefaultScope: \"/.default\",\n    /**\n     * Defines constants for use with HTTP headers.\n     */\n    HeaderConstants: {\n        /**\n         * The Authorization header.\n         */\n        AUTHORIZATION: \"authorization\",\n    },\n};\nfunction isUuid(text) {\n    return /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/.test(text);\n}\n/**\n * Defines a callback to handle auth challenge for Storage APIs.\n * This implements the bearer challenge process described here: https://learn.microsoft.com/rest/api/storageservices/authorize-with-azure-active-directory#bearer-challenge\n * Handling has specific features for storage that departs to the general AAD challenge docs.\n **/\nconst authorizeRequestOnTenantChallenge = async (challengeOptions) => {\n    var _a;\n    const requestOptions = requestToOptions(challengeOptions.request);\n    const challenge = getChallenge(challengeOptions.response);\n    if (challenge) {\n        const challengeInfo = parseChallenge(challenge);\n        const challengeScopes = buildScopes(challengeOptions, challengeInfo);\n        const tenantId = extractTenantId(challengeInfo);\n        if (!tenantId) {\n            return false;\n        }\n        const accessToken = await challengeOptions.getAccessToken(challengeScopes, Object.assign(Object.assign({}, requestOptions), { tenantId }));\n        if (!accessToken) {\n            return false;\n        }\n        challengeOptions.request.headers.set(Constants.HeaderConstants.AUTHORIZATION, `${(_a = accessToken.tokenType) !== null && _a !== void 0 ? _a : \"Bearer\"} ${accessToken.token}`);\n        return true;\n    }\n    return false;\n};\n/**\n * Extracts the tenant id from the challenge information\n * The tenant id is contained in the authorization_uri as the first\n * path part.\n */\nfunction extractTenantId(challengeInfo) {\n    const parsedAuthUri = new URL(challengeInfo.authorization_uri);\n    const pathSegments = parsedAuthUri.pathname.split(\"/\");\n    const tenantId = pathSegments[1];\n    if (tenantId && isUuid(tenantId)) {\n        return tenantId;\n    }\n    return undefined;\n}\n/**\n * Builds the authentication scopes based on the information that comes in the\n * challenge information. Scopes url is present in the resource_id, if it is empty\n * we keep using the original scopes.\n */\nfunction buildScopes(challengeOptions, challengeInfo) {\n    if (!challengeInfo.resource_id) {\n        return challengeOptions.scopes;\n    }\n    const challengeScopes = new URL(challengeInfo.resource_id);\n    challengeScopes.pathname = Constants.DefaultScope;\n    let scope = challengeScopes.toString();\n    if (scope === \"https://disk.azure.com/.default\") {\n        // the extra slash is required by the service\n        scope = \"https://disk.azure.com//.default\";\n    }\n    return [scope];\n}\n/**\n * We will retrieve the challenge only if the response status code was 401,\n * and if the response contained the header \"WWW-Authenticate\" with a non-empty value.\n */\nfunction getChallenge(response) {\n    const challenge = response.headers.get(\"WWW-Authenticate\");\n    if (response.status === 401 && challenge) {\n        return challenge;\n    }\n    return;\n}\n/**\n * Converts: `Bearer a=\"b\" c=\"d\"`.\n * Into: `[ { a: 'b', c: 'd' }]`.\n *\n * @internal\n */\nfunction parseChallenge(challenge) {\n    const bearerChallenge = challenge.slice(\"Bearer \".length);\n    const challengeParts = `${bearerChallenge.trim()} `.split(\" \").filter((x) => x);\n    const keyValuePairs = challengeParts.map((keyValue) => (([key, value]) => ({ [key]: value }))(keyValue.trim().split(\"=\")));\n    // Key-value pairs to plain object:\n    return keyValuePairs.reduce((a, b) => (Object.assign(Object.assign({}, a), b)), {});\n}\n/**\n * Extracts the options form a Pipeline Request for later re-use\n */\nfunction requestToOptions(request) {\n    return {\n        abortSignal: request.abortSignal,\n        requestOptions: {\n            timeout: request.timeout,\n        },\n        tracingOptions: request.tracingOptions,\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n// We use a custom symbol to cache a reference to the original request without\n// exposing it on the public interface.\nconst originalRequestSymbol = Symbol(\"Original PipelineRequest\");\n// Symbol.for() will return the same symbol if it's already been created\n// This particular one is used in core-client to handle the case of when a request is\n// cloned but we need to retrieve the OperationSpec and OperationArguments from the\n// original request.\nconst originalClientRequestSymbol = Symbol.for(\"@azure/core-client original request\");\nfunction toPipelineRequest(webResource, options = {}) {\n    const compatWebResource = webResource;\n    const request = compatWebResource[originalRequestSymbol];\n    const headers = createHttpHeaders(webResource.headers.toJson({ preserveCase: true }));\n    if (request) {\n        request.headers = headers;\n        return request;\n    }\n    else {\n        const newRequest = createPipelineRequest({\n            url: webResource.url,\n            method: webResource.method,\n            headers,\n            withCredentials: webResource.withCredentials,\n            timeout: webResource.timeout,\n            requestId: webResource.requestId,\n            abortSignal: webResource.abortSignal,\n            body: webResource.body,\n            formData: webResource.formData,\n            disableKeepAlive: !!webResource.keepAlive,\n            onDownloadProgress: webResource.onDownloadProgress,\n            onUploadProgress: webResource.onUploadProgress,\n            proxySettings: webResource.proxySettings,\n            streamResponseStatusCodes: webResource.streamResponseStatusCodes,\n            agent: webResource.agent,\n            requestOverrides: webResource.requestOverrides,\n        });\n        if (options.originalRequest) {\n            newRequest[originalClientRequestSymbol] =\n                options.originalRequest;\n        }\n        return newRequest;\n    }\n}\nfunction toWebResourceLike(request, options) {\n    var _a;\n    const originalRequest = (_a = options === null || options === void 0 ? void 0 : options.originalRequest) !== null && _a !== void 0 ? _a : request;\n    const webResource = {\n        url: request.url,\n        method: request.method,\n        headers: toHttpHeadersLike(request.headers),\n        withCredentials: request.withCredentials,\n        timeout: request.timeout,\n        requestId: request.headers.get(\"x-ms-client-request-id\") || request.requestId,\n        abortSignal: request.abortSignal,\n        body: request.body,\n        formData: request.formData,\n        keepAlive: !!request.disableKeepAlive,\n        onDownloadProgress: request.onDownloadProgress,\n        onUploadProgress: request.onUploadProgress,\n        proxySettings: request.proxySettings,\n        streamResponseStatusCodes: request.streamResponseStatusCodes,\n        agent: request.agent,\n        requestOverrides: request.requestOverrides,\n        clone() {\n            throw new Error(\"Cannot clone a non-proxied WebResourceLike\");\n        },\n        prepare() {\n            throw new Error(\"WebResourceLike.prepare() is not supported by @azure/core-http-compat\");\n        },\n        validateRequestProperties() {\n            /** do nothing */\n        },\n    };\n    if (options === null || options === void 0 ? void 0 : options.createProxy) {\n        return new Proxy(webResource, {\n            get(target, prop, receiver) {\n                if (prop === originalRequestSymbol) {\n                    return request;\n                }\n                else if (prop === \"clone\") {\n                    return () => {\n                        return toWebResourceLike(toPipelineRequest(webResource, { originalRequest }), {\n                            createProxy: true,\n                            originalRequest,\n                        });\n                    };\n                }\n                return Reflect.get(target, prop, receiver);\n            },\n            set(target, prop, value, receiver) {\n                if (prop === \"keepAlive\") {\n                    request.disableKeepAlive = !value;\n                }\n                const passThroughProps = [\n                    \"url\",\n                    \"method\",\n                    \"withCredentials\",\n                    \"timeout\",\n                    \"requestId\",\n                    \"abortSignal\",\n                    \"body\",\n                    \"formData\",\n                    \"onDownloadProgress\",\n                    \"onUploadProgress\",\n                    \"proxySettings\",\n                    \"streamResponseStatusCodes\",\n                    \"agent\",\n                    \"requestOverrides\",\n                ];\n                if (typeof prop === \"string\" && passThroughProps.includes(prop)) {\n                    request[prop] = value;\n                }\n                return Reflect.set(target, prop, value, receiver);\n            },\n        });\n    }\n    else {\n        return webResource;\n    }\n}\n/**\n * Converts HttpHeaders from core-rest-pipeline to look like\n * HttpHeaders from core-http.\n * @param headers - HttpHeaders from core-rest-pipeline\n * @returns HttpHeaders as they looked in core-http\n */\nfunction toHttpHeadersLike(headers) {\n    return new HttpHeaders(headers.toJSON({ preserveCase: true }));\n}\n/**\n * A collection of HttpHeaders that can be sent with a HTTP request.\n */\nfunction getHeaderKey(headerName) {\n    return headerName.toLowerCase();\n}\n/**\n * A collection of HTTP header key/value pairs.\n */\nclass HttpHeaders {\n    constructor(rawHeaders) {\n        this._headersMap = {};\n        if (rawHeaders) {\n            for (const headerName in rawHeaders) {\n                this.set(headerName, rawHeaders[headerName]);\n            }\n        }\n    }\n    /**\n     * Set a header in this collection with the provided name and value. The name is\n     * case-insensitive.\n     * @param headerName - The name of the header to set. This value is case-insensitive.\n     * @param headerValue - The value of the header to set.\n     */\n    set(headerName, headerValue) {\n        this._headersMap[getHeaderKey(headerName)] = {\n            name: headerName,\n            value: headerValue.toString(),\n        };\n    }\n    /**\n     * Get the header value for the provided header name, or undefined if no header exists in this\n     * collection with the provided name.\n     * @param headerName - The name of the header.\n     */\n    get(headerName) {\n        const header = this._headersMap[getHeaderKey(headerName)];\n        return !header ? undefined : header.value;\n    }\n    /**\n     * Get whether or not this header collection contains a header entry for the provided header name.\n     */\n    contains(headerName) {\n        return !!this._headersMap[getHeaderKey(headerName)];\n    }\n    /**\n     * Remove the header with the provided headerName. Return whether or not the header existed and\n     * was removed.\n     * @param headerName - The name of the header to remove.\n     */\n    remove(headerName) {\n        const result = this.contains(headerName);\n        delete this._headersMap[getHeaderKey(headerName)];\n        return result;\n    }\n    /**\n     * Get the headers that are contained this collection as an object.\n     */\n    rawHeaders() {\n        return this.toJson({ preserveCase: true });\n    }\n    /**\n     * Get the headers that are contained in this collection as an array.\n     */\n    headersArray() {\n        const headers = [];\n        for (const headerKey in this._headersMap) {\n            headers.push(this._headersMap[headerKey]);\n        }\n        return headers;\n    }\n    /**\n     * Get the header names that are contained in this collection.\n     */\n    headerNames() {\n        const headerNames = [];\n        const headers = this.headersArray();\n        for (let i = 0; i < headers.length; ++i) {\n            headerNames.push(headers[i].name);\n        }\n        return headerNames;\n    }\n    /**\n     * Get the header values that are contained in this collection.\n     */\n    headerValues() {\n        const headerValues = [];\n        const headers = this.headersArray();\n        for (let i = 0; i < headers.length; ++i) {\n            headerValues.push(headers[i].value);\n        }\n        return headerValues;\n    }\n    /**\n     * Get the JSON object representation of this HTTP header collection.\n     */\n    toJson(options = {}) {\n        const result = {};\n        if (options.preserveCase) {\n            for (const headerKey in this._headersMap) {\n                const header = this._headersMap[headerKey];\n                result[header.name] = header.value;\n            }\n        }\n        else {\n            for (const headerKey in this._headersMap) {\n                const header = this._headersMap[headerKey];\n                result[getHeaderKey(header.name)] = header.value;\n            }\n        }\n        return result;\n    }\n    /**\n     * Get the string representation of this HTTP header collection.\n     */\n    toString() {\n        return JSON.stringify(this.toJson({ preserveCase: true }));\n    }\n    /**\n     * Create a deep clone/copy of this HttpHeaders collection.\n     */\n    clone() {\n        const resultPreservingCasing = {};\n        for (const headerKey in this._headersMap) {\n            const header = this._headersMap[headerKey];\n            resultPreservingCasing[header.name] = header.value;\n        }\n        return new HttpHeaders(resultPreservingCasing);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst originalResponse = Symbol(\"Original FullOperationResponse\");\n/**\n * A helper to convert response objects from the new pipeline back to the old one.\n * @param response - A response object from core-client.\n * @returns A response compatible with `HttpOperationResponse` from core-http.\n */\nfunction toCompatResponse(response, options) {\n    let request = toWebResourceLike(response.request);\n    let headers = toHttpHeadersLike(response.headers);\n    if (options === null || options === void 0 ? void 0 : options.createProxy) {\n        return new Proxy(response, {\n            get(target, prop, receiver) {\n                if (prop === \"headers\") {\n                    return headers;\n                }\n                else if (prop === \"request\") {\n                    return request;\n                }\n                else if (prop === originalResponse) {\n                    return response;\n                }\n                return Reflect.get(target, prop, receiver);\n            },\n            set(target, prop, value, receiver) {\n                if (prop === \"headers\") {\n                    headers = value;\n                }\n                else if (prop === \"request\") {\n                    request = value;\n                }\n                return Reflect.set(target, prop, value, receiver);\n            },\n        });\n    }\n    else {\n        return Object.assign(Object.assign({}, response), { request,\n            headers });\n    }\n}\n/**\n * A helper to convert back to a PipelineResponse\n * @param compatResponse - A response compatible with `HttpOperationResponse` from core-http.\n */\nfunction toPipelineResponse(compatResponse) {\n    const extendedCompatResponse = compatResponse;\n    const response = extendedCompatResponse[originalResponse];\n    const headers = createHttpHeaders(compatResponse.headers.toJson({ preserveCase: true }));\n    if (response) {\n        response.headers = headers;\n        return response;\n    }\n    else {\n        return Object.assign(Object.assign({}, compatResponse), { headers, request: toPipelineRequest(compatResponse.request) });\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Client to provide compatability between core V1 & V2.\n */\nclass ExtendedServiceClient extends ServiceClient {\n    constructor(options) {\n        var _a, _b;\n        super(options);\n        if (((_a = options.keepAliveOptions) === null || _a === void 0 ? void 0 : _a.enable) === false &&\n            !pipelineContainsDisableKeepAlivePolicy(this.pipeline)) {\n            this.pipeline.addPolicy(createDisableKeepAlivePolicy());\n        }\n        if (((_b = options.redirectOptions) === null || _b === void 0 ? void 0 : _b.handleRedirects) === false) {\n            this.pipeline.removePolicy({\n                name: redirectPolicyName,\n            });\n        }\n    }\n    /**\n     * Compatible send operation request function.\n     *\n     * @param operationArguments - Operation arguments\n     * @param operationSpec - Operation Spec\n     * @returns\n     */\n    async sendOperationRequest(operationArguments, operationSpec) {\n        var _a;\n        const userProvidedCallBack = (_a = operationArguments === null || operationArguments === void 0 ? void 0 : operationArguments.options) === null || _a === void 0 ? void 0 : _a.onResponse;\n        let lastResponse;\n        function onResponse(rawResponse, flatResponse, error) {\n            lastResponse = rawResponse;\n            if (userProvidedCallBack) {\n                userProvidedCallBack(rawResponse, flatResponse, error);\n            }\n        }\n        operationArguments.options = Object.assign(Object.assign({}, operationArguments.options), { onResponse });\n        const result = await super.sendOperationRequest(operationArguments, operationSpec);\n        if (lastResponse) {\n            Object.defineProperty(result, \"_response\", {\n                value: toCompatResponse(lastResponse),\n            });\n        }\n        return result;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * An enum for compatibility with RequestPolicy\n */\nvar HttpPipelineLogLevel;\n(function (HttpPipelineLogLevel) {\n    HttpPipelineLogLevel[HttpPipelineLogLevel[\"ERROR\"] = 1] = \"ERROR\";\n    HttpPipelineLogLevel[HttpPipelineLogLevel[\"INFO\"] = 3] = \"INFO\";\n    HttpPipelineLogLevel[HttpPipelineLogLevel[\"OFF\"] = 0] = \"OFF\";\n    HttpPipelineLogLevel[HttpPipelineLogLevel[\"WARNING\"] = 2] = \"WARNING\";\n})(HttpPipelineLogLevel || (HttpPipelineLogLevel = {}));\nconst mockRequestPolicyOptions = {\n    log(_logLevel, _message) {\n        /* do nothing */\n    },\n    shouldLog(_logLevel) {\n        return false;\n    },\n};\n/**\n * The name of the RequestPolicyFactoryPolicy\n */\nconst requestPolicyFactoryPolicyName = \"RequestPolicyFactoryPolicy\";\n/**\n * A policy that wraps policies written for core-http.\n * @param factories - An array of `RequestPolicyFactory` objects from a core-http pipeline\n */\nfunction createRequestPolicyFactoryPolicy(factories) {\n    const orderedFactories = factories.slice().reverse();\n    return {\n        name: requestPolicyFactoryPolicyName,\n        async sendRequest(request, next) {\n            let httpPipeline = {\n                async sendRequest(httpRequest) {\n                    const response = await next(toPipelineRequest(httpRequest));\n                    return toCompatResponse(response, { createProxy: true });\n                },\n            };\n            for (const factory of orderedFactories) {\n                httpPipeline = factory.create(httpPipeline, mockRequestPolicyOptions);\n            }\n            const webResourceLike = toWebResourceLike(request, { createProxy: true });\n            const response = await httpPipeline.sendRequest(webResourceLike);\n            return toPipelineResponse(response);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Converts a RequestPolicy based HttpClient to a PipelineRequest based HttpClient.\n * @param requestPolicyClient - A HttpClient compatible with core-http\n * @returns A HttpClient compatible with core-rest-pipeline\n */\nfunction convertHttpClient(requestPolicyClient) {\n    return {\n        sendRequest: async (request) => {\n            const response = await requestPolicyClient.sendRequest(toWebResourceLike(request, { createProxy: true }));\n            return toPipelineResponse(response);\n        },\n    };\n}\n\nconst nameStartChar = ':A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\nconst nameChar = nameStartChar + '\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040';\nconst nameRegexp = '[' + nameStartChar + '][' + nameChar + ']*';\nconst regexName = new RegExp('^' + nameRegexp + '$');\n\nfunction getAllMatches(string, regex) {\n  const matches = [];\n  let match = regex.exec(string);\n  while (match) {\n    const allmatches = [];\n    allmatches.startIndex = regex.lastIndex - match[0].length;\n    const len = match.length;\n    for (let index = 0; index < len; index++) {\n      allmatches.push(match[index]);\n    }\n    matches.push(allmatches);\n    match = regex.exec(string);\n  }\n  return matches;\n}\n\nconst isName = function(string) {\n  const match = regexName.exec(string);\n  return !(match === null || typeof match === 'undefined');\n};\n\nfunction isExist(v) {\n  return typeof v !== 'undefined';\n}\n\n// const fakeCall = function(a) {return a;};\n// const fakeCallNoReturn = function() {};\n\nconst defaultOptions$2 = {\n  allowBooleanAttributes: false, //A tag can have attributes without any value\n  unpairedTags: []\n};\n\n//const tagsPattern = new RegExp(\"<\\\\/?([\\\\w:\\\\-_\\.]+)\\\\s*\\/?>\",\"g\");\nfunction validate(xmlData, options) {\n  options = Object.assign({}, defaultOptions$2, options);\n\n  //xmlData = xmlData.replace(/(\\r\\n|\\n|\\r)/gm,\"\");//make it single line\n  //xmlData = xmlData.replace(/(^\\s*<\\?xml.*?\\?>)/g,\"\");//Remove XML starting tag\n  //xmlData = xmlData.replace(/(<!DOCTYPE[\\s\\w\\\"\\.\\/\\-\\:]+(\\[.*\\])*\\s*>)/g,\"\");//Remove DOCTYPE\n  const tags = [];\n  let tagFound = false;\n\n  //indicates that the root tag has been closed (aka. depth 0 has been reached)\n  let reachedRoot = false;\n\n  if (xmlData[0] === '\\ufeff') {\n    // check for byte order mark (BOM)\n    xmlData = xmlData.substr(1);\n  }\n  \n  for (let i = 0; i < xmlData.length; i++) {\n\n    if (xmlData[i] === '<' && xmlData[i+1] === '?') {\n      i+=2;\n      i = readPI(xmlData,i);\n      if (i.err) return i;\n    }else if (xmlData[i] === '<') {\n      //starting of tag\n      //read until you reach to '>' avoiding any '>' in attribute value\n      let tagStartPos = i;\n      i++;\n      \n      if (xmlData[i] === '!') {\n        i = readCommentAndCDATA(xmlData, i);\n        continue;\n      } else {\n        let closingTag = false;\n        if (xmlData[i] === '/') {\n          //closing tag\n          closingTag = true;\n          i++;\n        }\n        //read tagname\n        let tagName = '';\n        for (; i < xmlData.length &&\n          xmlData[i] !== '>' &&\n          xmlData[i] !== ' ' &&\n          xmlData[i] !== '\\t' &&\n          xmlData[i] !== '\\n' &&\n          xmlData[i] !== '\\r'; i++\n        ) {\n          tagName += xmlData[i];\n        }\n        tagName = tagName.trim();\n        //console.log(tagName);\n\n        if (tagName[tagName.length - 1] === '/') {\n          //self closing tag without attributes\n          tagName = tagName.substring(0, tagName.length - 1);\n          //continue;\n          i--;\n        }\n        if (!validateTagName(tagName)) {\n          let msg;\n          if (tagName.trim().length === 0) {\n            msg = \"Invalid space after '<'.\";\n          } else {\n            msg = \"Tag '\"+tagName+\"' is an invalid name.\";\n          }\n          return getErrorObject('InvalidTag', msg, getLineNumberForPosition(xmlData, i));\n        }\n\n        const result = readAttributeStr(xmlData, i);\n        if (result === false) {\n          return getErrorObject('InvalidAttr', \"Attributes for '\"+tagName+\"' have open quote.\", getLineNumberForPosition(xmlData, i));\n        }\n        let attrStr = result.value;\n        i = result.index;\n\n        if (attrStr[attrStr.length - 1] === '/') {\n          //self closing tag\n          const attrStrStart = i - attrStr.length;\n          attrStr = attrStr.substring(0, attrStr.length - 1);\n          const isValid = validateAttributeString(attrStr, options);\n          if (isValid === true) {\n            tagFound = true;\n            //continue; //text may presents after self closing tag\n          } else {\n            //the result from the nested function returns the position of the error within the attribute\n            //in order to get the 'true' error line, we need to calculate the position where the attribute begins (i - attrStr.length) and then add the position within the attribute\n            //this gives us the absolute index in the entire xml, which we can use to find the line at last\n            return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, attrStrStart + isValid.err.line));\n          }\n        } else if (closingTag) {\n          if (!result.tagClosed) {\n            return getErrorObject('InvalidTag', \"Closing tag '\"+tagName+\"' doesn't have proper closing.\", getLineNumberForPosition(xmlData, i));\n          } else if (attrStr.trim().length > 0) {\n            return getErrorObject('InvalidTag', \"Closing tag '\"+tagName+\"' can't have attributes or invalid starting.\", getLineNumberForPosition(xmlData, tagStartPos));\n          } else if (tags.length === 0) {\n            return getErrorObject('InvalidTag', \"Closing tag '\"+tagName+\"' has not been opened.\", getLineNumberForPosition(xmlData, tagStartPos));\n          } else {\n            const otg = tags.pop();\n            if (tagName !== otg.tagName) {\n              let openPos = getLineNumberForPosition(xmlData, otg.tagStartPos);\n              return getErrorObject('InvalidTag',\n                \"Expected closing tag '\"+otg.tagName+\"' (opened in line \"+openPos.line+\", col \"+openPos.col+\") instead of closing tag '\"+tagName+\"'.\",\n                getLineNumberForPosition(xmlData, tagStartPos));\n            }\n\n            //when there are no more tags, we reached the root level.\n            if (tags.length == 0) {\n              reachedRoot = true;\n            }\n          }\n        } else {\n          const isValid = validateAttributeString(attrStr, options);\n          if (isValid !== true) {\n            //the result from the nested function returns the position of the error within the attribute\n            //in order to get the 'true' error line, we need to calculate the position where the attribute begins (i - attrStr.length) and then add the position within the attribute\n            //this gives us the absolute index in the entire xml, which we can use to find the line at last\n            return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, i - attrStr.length + isValid.err.line));\n          }\n\n          //if the root level has been reached before ...\n          if (reachedRoot === true) {\n            return getErrorObject('InvalidXml', 'Multiple possible root nodes found.', getLineNumberForPosition(xmlData, i));\n          } else if(options.unpairedTags.indexOf(tagName) !== -1); else {\n            tags.push({tagName, tagStartPos});\n          }\n          tagFound = true;\n        }\n\n        //skip tag text value\n        //It may include comments and CDATA value\n        for (i++; i < xmlData.length; i++) {\n          if (xmlData[i] === '<') {\n            if (xmlData[i + 1] === '!') {\n              //comment or CADATA\n              i++;\n              i = readCommentAndCDATA(xmlData, i);\n              continue;\n            } else if (xmlData[i+1] === '?') {\n              i = readPI(xmlData, ++i);\n              if (i.err) return i;\n            } else {\n              break;\n            }\n          } else if (xmlData[i] === '&') {\n            const afterAmp = validateAmpersand(xmlData, i);\n            if (afterAmp == -1)\n              return getErrorObject('InvalidChar', \"char '&' is not expected.\", getLineNumberForPosition(xmlData, i));\n            i = afterAmp;\n          }else {\n            if (reachedRoot === true && !isWhiteSpace(xmlData[i])) {\n              return getErrorObject('InvalidXml', \"Extra text at the end\", getLineNumberForPosition(xmlData, i));\n            }\n          }\n        } //end of reading tag text value\n        if (xmlData[i] === '<') {\n          i--;\n        }\n      }\n    } else {\n      if ( isWhiteSpace(xmlData[i])) {\n        continue;\n      }\n      return getErrorObject('InvalidChar', \"char '\"+xmlData[i]+\"' is not expected.\", getLineNumberForPosition(xmlData, i));\n    }\n  }\n\n  if (!tagFound) {\n    return getErrorObject('InvalidXml', 'Start tag expected.', 1);\n  }else if (tags.length == 1) {\n      return getErrorObject('InvalidTag', \"Unclosed tag '\"+tags[0].tagName+\"'.\", getLineNumberForPosition(xmlData, tags[0].tagStartPos));\n  }else if (tags.length > 0) {\n      return getErrorObject('InvalidXml', \"Invalid '\"+\n          JSON.stringify(tags.map(t => t.tagName), null, 4).replace(/\\r?\\n/g, '')+\n          \"' found.\", {line: 1, col: 1});\n  }\n\n  return true;\n}\nfunction isWhiteSpace(char){\n  return char === ' ' || char === '\\t' || char === '\\n'  || char === '\\r';\n}\n/**\n * Read Processing insstructions and skip\n * @param {*} xmlData\n * @param {*} i\n */\nfunction readPI(xmlData, i) {\n  const start = i;\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] == '?' || xmlData[i] == ' ') {\n      //tagname\n      const tagname = xmlData.substr(start, i - start);\n      if (i > 5 && tagname === 'xml') {\n        return getErrorObject('InvalidXml', 'XML declaration allowed only at the start of the document.', getLineNumberForPosition(xmlData, i));\n      } else if (xmlData[i] == '?' && xmlData[i + 1] == '>') {\n        //check if valid attribut string\n        i++;\n        break;\n      } else {\n        continue;\n      }\n    }\n  }\n  return i;\n}\n\nfunction readCommentAndCDATA(xmlData, i) {\n  if (xmlData.length > i + 5 && xmlData[i + 1] === '-' && xmlData[i + 2] === '-') {\n    //comment\n    for (i += 3; i < xmlData.length; i++) {\n      if (xmlData[i] === '-' && xmlData[i + 1] === '-' && xmlData[i + 2] === '>') {\n        i += 2;\n        break;\n      }\n    }\n  } else if (\n    xmlData.length > i + 8 &&\n    xmlData[i + 1] === 'D' &&\n    xmlData[i + 2] === 'O' &&\n    xmlData[i + 3] === 'C' &&\n    xmlData[i + 4] === 'T' &&\n    xmlData[i + 5] === 'Y' &&\n    xmlData[i + 6] === 'P' &&\n    xmlData[i + 7] === 'E'\n  ) {\n    let angleBracketsCount = 1;\n    for (i += 8; i < xmlData.length; i++) {\n      if (xmlData[i] === '<') {\n        angleBracketsCount++;\n      } else if (xmlData[i] === '>') {\n        angleBracketsCount--;\n        if (angleBracketsCount === 0) {\n          break;\n        }\n      }\n    }\n  } else if (\n    xmlData.length > i + 9 &&\n    xmlData[i + 1] === '[' &&\n    xmlData[i + 2] === 'C' &&\n    xmlData[i + 3] === 'D' &&\n    xmlData[i + 4] === 'A' &&\n    xmlData[i + 5] === 'T' &&\n    xmlData[i + 6] === 'A' &&\n    xmlData[i + 7] === '['\n  ) {\n    for (i += 8; i < xmlData.length; i++) {\n      if (xmlData[i] === ']' && xmlData[i + 1] === ']' && xmlData[i + 2] === '>') {\n        i += 2;\n        break;\n      }\n    }\n  }\n\n  return i;\n}\n\nconst doubleQuote = '\"';\nconst singleQuote = \"'\";\n\n/**\n * Keep reading xmlData until '<' is found outside the attribute value.\n * @param {string} xmlData\n * @param {number} i\n */\nfunction readAttributeStr(xmlData, i) {\n  let attrStr = '';\n  let startChar = '';\n  let tagClosed = false;\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] === doubleQuote || xmlData[i] === singleQuote) {\n      if (startChar === '') {\n        startChar = xmlData[i];\n      } else if (startChar !== xmlData[i]) ; else {\n        startChar = '';\n      }\n    } else if (xmlData[i] === '>') {\n      if (startChar === '') {\n        tagClosed = true;\n        break;\n      }\n    }\n    attrStr += xmlData[i];\n  }\n  if (startChar !== '') {\n    return false;\n  }\n\n  return {\n    value: attrStr,\n    index: i,\n    tagClosed: tagClosed\n  };\n}\n\n/**\n * Select all the attributes whether valid or invalid.\n */\nconst validAttrStrRegxp = new RegExp('(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*([\\'\"])(([\\\\s\\\\S])*?)\\\\5)?', 'g');\n\n//attr, =\"sd\", a=\"amit's\", a=\"sd\"b=\"saf\", ab  cd=\"\"\n\nfunction validateAttributeString(attrStr, options) {\n  //console.log(\"start:\"+attrStr+\":end\");\n\n  //if(attrStr.trim().length === 0) return true; //empty string\n\n  const matches = getAllMatches(attrStr, validAttrStrRegxp);\n  const attrNames = {};\n\n  for (let i = 0; i < matches.length; i++) {\n    if (matches[i][1].length === 0) {\n      //nospace before attribute name: a=\"sd\"b=\"saf\"\n      return getErrorObject('InvalidAttr', \"Attribute '\"+matches[i][2]+\"' has no space in starting.\", getPositionFromMatch(matches[i]))\n    } else if (matches[i][3] !== undefined && matches[i][4] === undefined) {\n      return getErrorObject('InvalidAttr', \"Attribute '\"+matches[i][2]+\"' is without value.\", getPositionFromMatch(matches[i]));\n    } else if (matches[i][3] === undefined && !options.allowBooleanAttributes) {\n      //independent attribute: ab\n      return getErrorObject('InvalidAttr', \"boolean attribute '\"+matches[i][2]+\"' is not allowed.\", getPositionFromMatch(matches[i]));\n    }\n    /* else if(matches[i][6] === undefined){//attribute without value: ab=\n                    return { err: { code:\"InvalidAttr\",msg:\"attribute \" + matches[i][2] + \" has no value assigned.\"}};\n                } */\n    const attrName = matches[i][2];\n    if (!validateAttrName(attrName)) {\n      return getErrorObject('InvalidAttr', \"Attribute '\"+attrName+\"' is an invalid name.\", getPositionFromMatch(matches[i]));\n    }\n    if (!attrNames.hasOwnProperty(attrName)) {\n      //check for duplicate attribute.\n      attrNames[attrName] = 1;\n    } else {\n      return getErrorObject('InvalidAttr', \"Attribute '\"+attrName+\"' is repeated.\", getPositionFromMatch(matches[i]));\n    }\n  }\n\n  return true;\n}\n\nfunction validateNumberAmpersand(xmlData, i) {\n  let re = /\\d/;\n  if (xmlData[i] === 'x') {\n    i++;\n    re = /[\\da-fA-F]/;\n  }\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] === ';')\n      return i;\n    if (!xmlData[i].match(re))\n      break;\n  }\n  return -1;\n}\n\nfunction validateAmpersand(xmlData, i) {\n  // https://www.w3.org/TR/xml/#dt-charref\n  i++;\n  if (xmlData[i] === ';')\n    return -1;\n  if (xmlData[i] === '#') {\n    i++;\n    return validateNumberAmpersand(xmlData, i);\n  }\n  let count = 0;\n  for (; i < xmlData.length; i++, count++) {\n    if (xmlData[i].match(/\\w/) && count < 20)\n      continue;\n    if (xmlData[i] === ';')\n      break;\n    return -1;\n  }\n  return i;\n}\n\nfunction getErrorObject(code, message, lineNumber) {\n  return {\n    err: {\n      code: code,\n      msg: message,\n      line: lineNumber.line || lineNumber,\n      col: lineNumber.col,\n    },\n  };\n}\n\nfunction validateAttrName(attrName) {\n  return isName(attrName);\n}\n\n// const startsWithXML = /^xml/i;\n\nfunction validateTagName(tagname) {\n  return isName(tagname) /* && !tagname.match(startsWithXML) */;\n}\n\n//this function returns the line number for the character at the given index\nfunction getLineNumberForPosition(xmlData, index) {\n  const lines = xmlData.substring(0, index).split(/\\r?\\n/);\n  return {\n    line: lines.length,\n\n    // column number is last line's length + 1, because column numbering starts at 1:\n    col: lines[lines.length - 1].length + 1\n  };\n}\n\n//this function returns the position of the first character of match within attrStr\nfunction getPositionFromMatch(match) {\n  return match.startIndex + match[1].length;\n}\n\nconst defaultOptions$1 = {\n    preserveOrder: false,\n    attributeNamePrefix: '@_',\n    attributesGroupName: false,\n    textNodeName: '#text',\n    ignoreAttributes: true,\n    removeNSPrefix: false, // remove NS from tag name or attribute name if true\n    allowBooleanAttributes: false, //a tag can have attributes without any value\n    //ignoreRootElement : false,\n    parseTagValue: true,\n    parseAttributeValue: false,\n    trimValues: true, //Trim string values of tag and attributes\n    cdataPropName: false,\n    numberParseOptions: {\n      hex: true,\n      leadingZeros: true,\n      eNotation: true\n    },\n    tagValueProcessor: function(tagName, val) {\n      return val;\n    },\n    attributeValueProcessor: function(attrName, val) {\n      return val;\n    },\n    stopNodes: [], //nested tags will not be parsed even for errors\n    alwaysCreateTextNode: false,\n    isArray: () => false,\n    commentPropName: false,\n    unpairedTags: [],\n    processEntities: true,\n    htmlEntities: false,\n    ignoreDeclaration: false,\n    ignorePiTags: false,\n    transformTagName: false,\n    transformAttributeName: false,\n    updateTag: function(tagName, jPath, attrs){\n      return tagName\n    },\n    // skipEmptyListItem: false\n    captureMetaData: false,\n};\n   \nconst buildOptions = function(options) {\n    return Object.assign({}, defaultOptions$1, options);\n};\n\nlet METADATA_SYMBOL$1;\n\nif (typeof Symbol !== \"function\") {\n  METADATA_SYMBOL$1 = \"@@xmlMetadata\";\n} else {\n  METADATA_SYMBOL$1 = Symbol(\"XML Node Metadata\");\n}\n\nclass XmlNode{\n  constructor(tagname) {\n    this.tagname = tagname;\n    this.child = []; //nested tags, text, cdata, comments in order\n    this[\":@\"] = {}; //attributes map\n  }\n  add(key,val){\n    // this.child.push( {name : key, val: val, isCdata: isCdata });\n    if(key === \"__proto__\") key = \"#__proto__\";\n    this.child.push( {[key]: val });\n  }\n  addChild(node, startIndex) {\n    if(node.tagname === \"__proto__\") node.tagname = \"#__proto__\";\n    if(node[\":@\"] && Object.keys(node[\":@\"]).length > 0){\n      this.child.push( { [node.tagname]: node.child, [\":@\"]: node[\":@\"] });\n    }else {\n      this.child.push( { [node.tagname]: node.child });\n    }\n    // if requested, add the startIndex\n    if (startIndex !== undefined) {\n      // Note: for now we just overwrite the metadata. If we had more complex metadata,\n      // we might need to do an object append here:  metadata = { ...metadata, startIndex }\n      this.child[this.child.length - 1][METADATA_SYMBOL$1] = { startIndex };\n    }\n  }\n  /** symbol used for metadata */\n  static getMetaDataSymbol() {\n    return METADATA_SYMBOL$1;\n  }\n}\n\n//TODO: handle comments\nfunction readDocType(xmlData, i){\n    \n    const entities = {};\n    if( xmlData[i + 3] === 'O' &&\n         xmlData[i + 4] === 'C' &&\n         xmlData[i + 5] === 'T' &&\n         xmlData[i + 6] === 'Y' &&\n         xmlData[i + 7] === 'P' &&\n         xmlData[i + 8] === 'E')\n    {    \n        i = i+9;\n        let angleBracketsCount = 1;\n        let hasBody = false, comment = false;\n        let exp = \"\";\n        for(;i<xmlData.length;i++){\n            if (xmlData[i] === '<' && !comment) { //Determine the tag type\n                if( hasBody && hasSeq(xmlData, \"!ENTITY\",i)){\n                    i += 7; \n                    let entityName, val;\n                    [entityName, val,i] = readEntityExp(xmlData,i+1);\n                    if(val.indexOf(\"&\") === -1) //Parameter entities are not supported\n                        entities[ entityName ] = {\n                            regx : RegExp( `&${entityName};`,\"g\"),\n                            val: val\n                        };\n                }\n                else if( hasBody && hasSeq(xmlData, \"!ELEMENT\",i))  {\n                    i += 8;//Not supported\n                    const {index} = readElementExp(xmlData,i+1);\n                    i = index;\n                }else if( hasBody && hasSeq(xmlData, \"!ATTLIST\",i)){\n                    i += 8;//Not supported\n                    // const {index} = readAttlistExp(xmlData,i+1);\n                    // i = index;\n                }else if( hasBody && hasSeq(xmlData, \"!NOTATION\",i)) {\n                    i += 9;//Not supported\n                    const {index} = readNotationExp(xmlData,i+1);\n                    i = index;\n                }else if( hasSeq(xmlData, \"!--\",i) ) comment = true;\n                else throw new Error(\"Invalid DOCTYPE\");\n\n                angleBracketsCount++;\n                exp = \"\";\n            } else if (xmlData[i] === '>') { //Read tag content\n                if(comment){\n                    if( xmlData[i - 1] === \"-\" && xmlData[i - 2] === \"-\"){\n                        comment = false;\n                        angleBracketsCount--;\n                    }\n                }else {\n                    angleBracketsCount--;\n                }\n                if (angleBracketsCount === 0) {\n                  break;\n                }\n            }else if( xmlData[i] === '['){\n                hasBody = true;\n            }else {\n                exp += xmlData[i];\n            }\n        }\n        if(angleBracketsCount !== 0){\n            throw new Error(`Unclosed DOCTYPE`);\n        }\n    }else {\n        throw new Error(`Invalid Tag instead of DOCTYPE`);\n    }\n    return {entities, i};\n}\n\nconst skipWhitespace = (data, index) => {\n    while (index < data.length && /\\s/.test(data[index])) {\n        index++;\n    }\n    return index;\n};\n\nfunction readEntityExp(xmlData, i) {    \n    //External entities are not supported\n    //    <!ENTITY ext SYSTEM \"http://normal-website.com\" >\n\n    //Parameter entities are not supported\n    //    <!ENTITY entityname \"&anotherElement;\">\n\n    //Internal entities are supported\n    //    <!ENTITY entityname \"replacement text\">\n\n    // Skip leading whitespace after <!ENTITY\n    i = skipWhitespace(xmlData, i);\n\n    // Read entity name\n    let entityName = \"\";\n    while (i < xmlData.length && !/\\s/.test(xmlData[i]) && xmlData[i] !== '\"' && xmlData[i] !== \"'\") {\n        entityName += xmlData[i];\n        i++;\n    }\n    validateEntityName(entityName);\n\n    // Skip whitespace after entity name\n    i = skipWhitespace(xmlData, i);\n\n    // Check for unsupported constructs (external entities or parameter entities)\n    if (xmlData.substring(i, i + 6).toUpperCase() === \"SYSTEM\") {\n        throw new Error(\"External entities are not supported\");\n    }else if (xmlData[i] === \"%\") {\n        throw new Error(\"Parameter entities are not supported\");\n    }\n\n    // Read entity value (internal entity)\n    let entityValue = \"\";\n    [i, entityValue] = readIdentifierVal(xmlData, i, \"entity\");\n    i--;\n    return [entityName, entityValue, i ];\n}\n\nfunction readNotationExp(xmlData, i) {\n    // Skip leading whitespace after <!NOTATION\n    i = skipWhitespace(xmlData, i);\n\n    // Read notation name\n    let notationName = \"\";\n    while (i < xmlData.length && !/\\s/.test(xmlData[i])) {\n        notationName += xmlData[i];\n        i++;\n    }\n    validateEntityName(notationName);\n\n    // Skip whitespace after notation name\n    i = skipWhitespace(xmlData, i);\n\n    // Check identifier type (SYSTEM or PUBLIC)\n    const identifierType = xmlData.substring(i, i + 6).toUpperCase();\n    if (identifierType !== \"SYSTEM\" && identifierType !== \"PUBLIC\") {\n        throw new Error(`Expected SYSTEM or PUBLIC, found \"${identifierType}\"`);\n    }\n    i += identifierType.length;\n\n    // Skip whitespace after identifier type\n    i = skipWhitespace(xmlData, i);\n\n    // Read public identifier (if PUBLIC)\n    let publicIdentifier = null;\n    let systemIdentifier = null;\n\n    if (identifierType === \"PUBLIC\") {\n        [i, publicIdentifier ] = readIdentifierVal(xmlData, i, \"publicIdentifier\");\n\n        // Skip whitespace after public identifier\n        i = skipWhitespace(xmlData, i);\n\n        // Optionally read system identifier\n        if (xmlData[i] === '\"' || xmlData[i] === \"'\") {\n            [i, systemIdentifier ] = readIdentifierVal(xmlData, i,\"systemIdentifier\");\n        }\n    } else if (identifierType === \"SYSTEM\") {\n        // Read system identifier (mandatory for SYSTEM)\n        [i, systemIdentifier ] = readIdentifierVal(xmlData, i, \"systemIdentifier\");\n\n        if (!systemIdentifier) {\n            throw new Error(\"Missing mandatory system identifier for SYSTEM notation\");\n        }\n    }\n    \n    return {notationName, publicIdentifier, systemIdentifier, index: --i};\n}\n\nfunction readIdentifierVal(xmlData, i, type) {\n    let identifierVal = \"\";\n    const startChar = xmlData[i];\n    if (startChar !== '\"' && startChar !== \"'\") {\n        throw new Error(`Expected quoted string, found \"${startChar}\"`);\n    }\n    i++;\n\n    while (i < xmlData.length && xmlData[i] !== startChar) {\n        identifierVal += xmlData[i];\n        i++;\n    }\n\n    if (xmlData[i] !== startChar) {\n        throw new Error(`Unterminated ${type} value`);\n    }\n    i++;\n    return [i, identifierVal];\n}\n\nfunction readElementExp(xmlData, i) {\n    // <!ELEMENT br EMPTY>\n    // <!ELEMENT div ANY>\n    // <!ELEMENT title (#PCDATA)>\n    // <!ELEMENT book (title, author+)>\n    // <!ELEMENT name (content-model)>\n    \n    // Skip leading whitespace after <!ELEMENT\n    i = skipWhitespace(xmlData, i);\n\n    // Read element name\n    let elementName = \"\";\n    while (i < xmlData.length && !/\\s/.test(xmlData[i])) {\n        elementName += xmlData[i];\n        i++;\n    }\n\n    // Validate element name\n    if (!validateEntityName(elementName)) {\n        throw new Error(`Invalid element name: \"${elementName}\"`);\n    }\n\n    // Skip whitespace after element name\n    i = skipWhitespace(xmlData, i);\n    let contentModel = \"\";\n    // Expect '(' to start content model\n    if(xmlData[i] === \"E\" && hasSeq(xmlData, \"MPTY\",i)) i+=6;\n    else if(xmlData[i] === \"A\" && hasSeq(xmlData, \"NY\",i)) i+=4;\n    else if (xmlData[i] === \"(\") {\n        i++; // Move past '('\n\n        // Read content model\n        while (i < xmlData.length && xmlData[i] !== \")\") {\n            contentModel += xmlData[i];\n            i++;\n        }\n        if (xmlData[i] !== \")\") {\n            throw new Error(\"Unterminated content model\");\n        }\n\n    }else {\n        throw new Error(`Invalid Element Expression, found \"${xmlData[i]}\"`);\n    }\n    \n    return {\n        elementName,\n        contentModel: contentModel.trim(),\n        index: i\n    };\n}\n\nfunction hasSeq(data, seq,i){\n    for(let j=0;j<seq.length;j++){\n        if(seq[j]!==data[i+j+1]) return false;\n    }\n    return true;\n}\n\nfunction validateEntityName(name){\n    if (isName(name))\n\treturn name;\n    else\n        throw new Error(`Invalid entity name ${name}`);\n}\n\nconst hexRegex = /^[-+]?0x[a-fA-F0-9]+$/;\nconst numRegex = /^([\\-\\+])?(0*)([0-9]*(\\.[0-9]*)?)$/;\n// const octRegex = /^0x[a-z0-9]+/;\n// const binRegex = /0x[a-z0-9]+/;\n\n \nconst consider = {\n    hex :  true,\n    // oct: false,\n    leadingZeros: true,\n    decimalPoint: \"\\.\",\n    eNotation: true,\n    //skipLike: /regex/\n};\n\nfunction toNumber(str, options = {}){\n    options = Object.assign({}, consider, options );\n    if(!str || typeof str !== \"string\" ) return str;\n    \n    let trimmedStr  = str.trim();\n    \n    if(options.skipLike !== undefined && options.skipLike.test(trimmedStr)) return str;\n    else if(str===\"0\") return 0;\n    else if (options.hex && hexRegex.test(trimmedStr)) {\n        return parse_int(trimmedStr, 16);\n    // }else if (options.oct && octRegex.test(str)) {\n    //     return Number.parseInt(val, 8);\n    }else if (trimmedStr.search(/.+[eE].+/)!== -1) { //eNotation\n        return resolveEnotation(str,trimmedStr,options);\n    // }else if (options.parseBin && binRegex.test(str)) {\n    //     return Number.parseInt(val, 2);\n    }else {\n        //separate negative sign, leading zeros, and rest number\n        const match = numRegex.exec(trimmedStr);\n        // +00.123 => [ , '+', '00', '.123', ..\n        if(match){\n            const sign = match[1] || \"\";\n            const leadingZeros = match[2];\n            let numTrimmedByZeros = trimZeros(match[3]); //complete num without leading zeros\n            const decimalAdjacentToLeadingZeros = sign ? // 0., -00., 000.\n                str[leadingZeros.length+1] === \".\" \n                : str[leadingZeros.length] === \".\";\n\n            //trim ending zeros for floating number\n            if(!options.leadingZeros //leading zeros are not allowed\n                && (leadingZeros.length > 1 \n                    || (leadingZeros.length === 1 && !decimalAdjacentToLeadingZeros))){\n                // 00, 00.3, +03.24, 03, 03.24\n                return str;\n            }\n            else {//no leading zeros or leading zeros are allowed\n                const num = Number(trimmedStr);\n                const parsedStr = String(num);\n\n                if( num === 0) return num;\n                if(parsedStr.search(/[eE]/) !== -1){ //given number is long and parsed to eNotation\n                    if(options.eNotation) return num;\n                    else return str;\n                }else if(trimmedStr.indexOf(\".\") !== -1){ //floating number\n                    if(parsedStr === \"0\") return num; //0.0\n                    else if(parsedStr === numTrimmedByZeros) return num; //0.456. 0.79000\n                    else if( parsedStr === `${sign}${numTrimmedByZeros}`) return num;\n                    else return str;\n                }\n                \n                let n = leadingZeros? numTrimmedByZeros : trimmedStr;\n                if(leadingZeros){\n                    // -009 => -9\n                    return (n === parsedStr) || (sign+n === parsedStr) ? num : str\n                }else  {\n                    // +9\n                    return (n === parsedStr) || (n === sign+parsedStr) ? num : str\n                }\n            }\n        }else { //non-numeric string\n            return str;\n        }\n    }\n}\n\nconst eNotationRegx = /^([-+])?(0*)(\\d*(\\.\\d*)?[eE][-\\+]?\\d+)$/;\nfunction resolveEnotation(str,trimmedStr,options){\n    if(!options.eNotation) return str;\n    const notation = trimmedStr.match(eNotationRegx); \n    if(notation){\n        let sign = notation[1] || \"\";\n        const eChar = notation[3].indexOf(\"e\") === -1 ? \"E\" : \"e\";\n        const leadingZeros = notation[2];\n        const eAdjacentToLeadingZeros = sign ? // 0E.\n            str[leadingZeros.length+1] === eChar \n            : str[leadingZeros.length] === eChar;\n\n        if(leadingZeros.length > 1 && eAdjacentToLeadingZeros) return str;\n        else if(leadingZeros.length === 1 \n            && (notation[3].startsWith(`.${eChar}`) || notation[3][0] === eChar)){\n                return Number(trimmedStr);\n        }else if(options.leadingZeros && !eAdjacentToLeadingZeros){ //accept with leading zeros\n            //remove leading 0s\n            trimmedStr = (notation[1] || \"\") + notation[3];\n            return Number(trimmedStr);\n        }else return str;\n    }else {\n        return str;\n    }\n}\n\n/**\n * \n * @param {string} numStr without leading zeros\n * @returns \n */\nfunction trimZeros(numStr){\n    if(numStr && numStr.indexOf(\".\") !== -1){//float\n        numStr = numStr.replace(/0+$/, \"\"); //remove ending zeros\n        if(numStr === \".\")  numStr = \"0\";\n        else if(numStr[0] === \".\")  numStr = \"0\"+numStr;\n        else if(numStr[numStr.length-1] === \".\")  numStr = numStr.substring(0,numStr.length-1);\n        return numStr;\n    }\n    return numStr;\n}\n\nfunction parse_int(numStr, base){\n    //polyfill\n    if(parseInt) return parseInt(numStr, base);\n    else if(Number.parseInt) return Number.parseInt(numStr, base);\n    else if(window && window.parseInt) return window.parseInt(numStr, base);\n    else throw new Error(\"parseInt, Number.parseInt, window.parseInt are not supported\")\n}\n\nfunction getIgnoreAttributesFn(ignoreAttributes) {\n    if (typeof ignoreAttributes === 'function') {\n        return ignoreAttributes\n    }\n    if (Array.isArray(ignoreAttributes)) {\n        return (attrName) => {\n            for (const pattern of ignoreAttributes) {\n                if (typeof pattern === 'string' && attrName === pattern) {\n                    return true\n                }\n                if (pattern instanceof RegExp && pattern.test(attrName)) {\n                    return true\n                }\n            }\n        }\n    }\n    return () => false\n}\n\n// const regx =\n//   '<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)'\n//   .replace(/NAME/g, util.nameRegexp);\n\n//const tagsRegx = new RegExp(\"<(\\\\/?[\\\\w:\\\\-\\._]+)([^>]*)>(\\\\s*\"+cdataRegx+\")*([^<]+)?\",\"g\");\n//const tagsRegx = new RegExp(\"<(\\\\/?)((\\\\w*:)?([\\\\w:\\\\-\\._]+))([^>]*)>([^<]*)(\"+cdataRegx+\"([^<]*))*([^<]+)?\",\"g\");\n\nclass OrderedObjParser{\n  constructor(options){\n    this.options = options;\n    this.currentNode = null;\n    this.tagsNodeStack = [];\n    this.docTypeEntities = {};\n    this.lastEntities = {\n      \"apos\" : { regex: /&(apos|#39|#x27);/g, val : \"'\"},\n      \"gt\" : { regex: /&(gt|#62|#x3E);/g, val : \">\"},\n      \"lt\" : { regex: /&(lt|#60|#x3C);/g, val : \"<\"},\n      \"quot\" : { regex: /&(quot|#34|#x22);/g, val : \"\\\"\"},\n    };\n    this.ampEntity = { regex: /&(amp|#38|#x26);/g, val : \"&\"};\n    this.htmlEntities = {\n      \"space\": { regex: /&(nbsp|#160);/g, val: \" \" },\n      // \"lt\" : { regex: /&(lt|#60);/g, val: \"<\" },\n      // \"gt\" : { regex: /&(gt|#62);/g, val: \">\" },\n      // \"amp\" : { regex: /&(amp|#38);/g, val: \"&\" },\n      // \"quot\" : { regex: /&(quot|#34);/g, val: \"\\\"\" },\n      // \"apos\" : { regex: /&(apos|#39);/g, val: \"'\" },\n      \"cent\" : { regex: /&(cent|#162);/g, val: \"¢\" },\n      \"pound\" : { regex: /&(pound|#163);/g, val: \"£\" },\n      \"yen\" : { regex: /&(yen|#165);/g, val: \"¥\" },\n      \"euro\" : { regex: /&(euro|#8364);/g, val: \"€\" },\n      \"copyright\" : { regex: /&(copy|#169);/g, val: \"©\" },\n      \"reg\" : { regex: /&(reg|#174);/g, val: \"®\" },\n      \"inr\" : { regex: /&(inr|#8377);/g, val: \"₹\" },\n      \"num_dec\": { regex: /&#([0-9]{1,7});/g, val : (_, str) => String.fromCodePoint(Number.parseInt(str, 10)) },\n      \"num_hex\": { regex: /&#x([0-9a-fA-F]{1,6});/g, val : (_, str) => String.fromCodePoint(Number.parseInt(str, 16)) },\n    };\n    this.addExternalEntities = addExternalEntities;\n    this.parseXml = parseXml;\n    this.parseTextData = parseTextData;\n    this.resolveNameSpace = resolveNameSpace;\n    this.buildAttributesMap = buildAttributesMap;\n    this.isItStopNode = isItStopNode;\n    this.replaceEntitiesValue = replaceEntitiesValue$1;\n    this.readStopNodeData = readStopNodeData;\n    this.saveTextToParentTag = saveTextToParentTag;\n    this.addChild = addChild;\n    this.ignoreAttributesFn = getIgnoreAttributesFn(this.options.ignoreAttributes);\n  }\n\n}\n\nfunction addExternalEntities(externalEntities){\n  const entKeys = Object.keys(externalEntities);\n  for (let i = 0; i < entKeys.length; i++) {\n    const ent = entKeys[i];\n    this.lastEntities[ent] = {\n       regex: new RegExp(\"&\"+ent+\";\",\"g\"),\n       val : externalEntities[ent]\n    };\n  }\n}\n\n/**\n * @param {string} val\n * @param {string} tagName\n * @param {string} jPath\n * @param {boolean} dontTrim\n * @param {boolean} hasAttributes\n * @param {boolean} isLeafNode\n * @param {boolean} escapeEntities\n */\nfunction parseTextData(val, tagName, jPath, dontTrim, hasAttributes, isLeafNode, escapeEntities) {\n  if (val !== undefined) {\n    if (this.options.trimValues && !dontTrim) {\n      val = val.trim();\n    }\n    if(val.length > 0){\n      if(!escapeEntities) val = this.replaceEntitiesValue(val);\n      \n      const newval = this.options.tagValueProcessor(tagName, val, jPath, hasAttributes, isLeafNode);\n      if(newval === null || newval === undefined){\n        //don't parse\n        return val;\n      }else if(typeof newval !== typeof val || newval !== val){\n        //overwrite\n        return newval;\n      }else if(this.options.trimValues){\n        return parseValue(val, this.options.parseTagValue, this.options.numberParseOptions);\n      }else {\n        const trimmedVal = val.trim();\n        if(trimmedVal === val){\n          return parseValue(val, this.options.parseTagValue, this.options.numberParseOptions);\n        }else {\n          return val;\n        }\n      }\n    }\n  }\n}\n\nfunction resolveNameSpace(tagname) {\n  if (this.options.removeNSPrefix) {\n    const tags = tagname.split(':');\n    const prefix = tagname.charAt(0) === '/' ? '/' : '';\n    if (tags[0] === 'xmlns') {\n      return '';\n    }\n    if (tags.length === 2) {\n      tagname = prefix + tags[1];\n    }\n  }\n  return tagname;\n}\n\n//TODO: change regex to capture NS\n//const attrsRegx = new RegExp(\"([\\\\w\\\\-\\\\.\\\\:]+)\\\\s*=\\\\s*(['\\\"])((.|\\n)*?)\\\\2\",\"gm\");\nconst attrsRegx = new RegExp('([^\\\\s=]+)\\\\s*(=\\\\s*([\\'\"])([\\\\s\\\\S]*?)\\\\3)?', 'gm');\n\nfunction buildAttributesMap(attrStr, jPath, tagName) {\n  if (this.options.ignoreAttributes !== true && typeof attrStr === 'string') {\n    // attrStr = attrStr.replace(/\\r?\\n/g, ' ');\n    //attrStr = attrStr || attrStr.trim();\n\n    const matches = getAllMatches(attrStr, attrsRegx);\n    const len = matches.length; //don't make it inline\n    const attrs = {};\n    for (let i = 0; i < len; i++) {\n      const attrName = this.resolveNameSpace(matches[i][1]);\n      if (this.ignoreAttributesFn(attrName, jPath)) {\n        continue\n      }\n      let oldVal = matches[i][4];\n      let aName = this.options.attributeNamePrefix + attrName;\n      if (attrName.length) {\n        if (this.options.transformAttributeName) {\n          aName = this.options.transformAttributeName(aName);\n        }\n        if(aName === \"__proto__\") aName  = \"#__proto__\";\n        if (oldVal !== undefined) {\n          if (this.options.trimValues) {\n            oldVal = oldVal.trim();\n          }\n          oldVal = this.replaceEntitiesValue(oldVal);\n          const newVal = this.options.attributeValueProcessor(attrName, oldVal, jPath);\n          if(newVal === null || newVal === undefined){\n            //don't parse\n            attrs[aName] = oldVal;\n          }else if(typeof newVal !== typeof oldVal || newVal !== oldVal){\n            //overwrite\n            attrs[aName] = newVal;\n          }else {\n            //parse\n            attrs[aName] = parseValue(\n              oldVal,\n              this.options.parseAttributeValue,\n              this.options.numberParseOptions\n            );\n          }\n        } else if (this.options.allowBooleanAttributes) {\n          attrs[aName] = true;\n        }\n      }\n    }\n    if (!Object.keys(attrs).length) {\n      return;\n    }\n    if (this.options.attributesGroupName) {\n      const attrCollection = {};\n      attrCollection[this.options.attributesGroupName] = attrs;\n      return attrCollection;\n    }\n    return attrs\n  }\n}\n\nconst parseXml = function(xmlData) {\n  xmlData = xmlData.replace(/\\r\\n?/g, \"\\n\"); //TODO: remove this line\n  const xmlObj = new XmlNode('!xml');\n  let currentNode = xmlObj;\n  let textData = \"\";\n  let jPath = \"\";\n  for(let i=0; i< xmlData.length; i++){//for each char in XML data\n    const ch = xmlData[i];\n    if(ch === '<'){\n      // const nextIndex = i+1;\n      // const _2ndChar = xmlData[nextIndex];\n      if( xmlData[i+1] === '/') {//Closing Tag\n        const closeIndex = findClosingIndex(xmlData, \">\", i, \"Closing Tag is not closed.\");\n        let tagName = xmlData.substring(i+2,closeIndex).trim();\n\n        if(this.options.removeNSPrefix){\n          const colonIndex = tagName.indexOf(\":\");\n          if(colonIndex !== -1){\n            tagName = tagName.substr(colonIndex+1);\n          }\n        }\n\n        if(this.options.transformTagName) {\n          tagName = this.options.transformTagName(tagName);\n        }\n\n        if(currentNode){\n          textData = this.saveTextToParentTag(textData, currentNode, jPath);\n        }\n\n        //check if last tag of nested tag was unpaired tag\n        const lastTagName = jPath.substring(jPath.lastIndexOf(\".\")+1);\n        if(tagName && this.options.unpairedTags.indexOf(tagName) !== -1 ){\n          throw new Error(`Unpaired tag can not be used as closing tag: </${tagName}>`);\n        }\n        let propIndex = 0;\n        if(lastTagName && this.options.unpairedTags.indexOf(lastTagName) !== -1 ){\n          propIndex = jPath.lastIndexOf('.', jPath.lastIndexOf('.')-1);\n          this.tagsNodeStack.pop();\n        }else {\n          propIndex = jPath.lastIndexOf(\".\");\n        }\n        jPath = jPath.substring(0, propIndex);\n\n        currentNode = this.tagsNodeStack.pop();//avoid recursion, set the parent tag scope\n        textData = \"\";\n        i = closeIndex;\n      } else if( xmlData[i+1] === '?') {\n\n        let tagData = readTagExp(xmlData,i, false, \"?>\");\n        if(!tagData) throw new Error(\"Pi Tag is not closed.\");\n\n        textData = this.saveTextToParentTag(textData, currentNode, jPath);\n        if( (this.options.ignoreDeclaration && tagData.tagName === \"?xml\") || this.options.ignorePiTags);else {\n  \n          const childNode = new XmlNode(tagData.tagName);\n          childNode.add(this.options.textNodeName, \"\");\n          \n          if(tagData.tagName !== tagData.tagExp && tagData.attrExpPresent){\n            childNode[\":@\"] = this.buildAttributesMap(tagData.tagExp, jPath, tagData.tagName);\n          }\n          this.addChild(currentNode, childNode, jPath, i);\n        }\n\n\n        i = tagData.closeIndex + 1;\n      } else if(xmlData.substr(i + 1, 3) === '!--') {\n        const endIndex = findClosingIndex(xmlData, \"-->\", i+4, \"Comment is not closed.\");\n        if(this.options.commentPropName){\n          const comment = xmlData.substring(i + 4, endIndex - 2);\n\n          textData = this.saveTextToParentTag(textData, currentNode, jPath);\n\n          currentNode.add(this.options.commentPropName, [ { [this.options.textNodeName] : comment } ]);\n        }\n        i = endIndex;\n      } else if( xmlData.substr(i + 1, 2) === '!D') {\n        const result = readDocType(xmlData, i);\n        this.docTypeEntities = result.entities;\n        i = result.i;\n      }else if(xmlData.substr(i + 1, 2) === '![') {\n        const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"CDATA is not closed.\") - 2;\n        const tagExp = xmlData.substring(i + 9,closeIndex);\n\n        textData = this.saveTextToParentTag(textData, currentNode, jPath);\n\n        let val = this.parseTextData(tagExp, currentNode.tagname, jPath, true, false, true, true);\n        if(val == undefined) val = \"\";\n\n        //cdata should be set even if it is 0 length string\n        if(this.options.cdataPropName){\n          currentNode.add(this.options.cdataPropName, [ { [this.options.textNodeName] : tagExp } ]);\n        }else {\n          currentNode.add(this.options.textNodeName, val);\n        }\n        \n        i = closeIndex + 2;\n      }else {//Opening tag\n        let result = readTagExp(xmlData,i, this.options.removeNSPrefix);\n        let tagName= result.tagName;\n        const rawTagName = result.rawTagName;\n        let tagExp = result.tagExp;\n        let attrExpPresent = result.attrExpPresent;\n        let closeIndex = result.closeIndex;\n\n        if (this.options.transformTagName) {\n          tagName = this.options.transformTagName(tagName);\n        }\n        \n        //save text as child node\n        if (currentNode && textData) {\n          if(currentNode.tagname !== '!xml'){\n            //when nested tag is found\n            textData = this.saveTextToParentTag(textData, currentNode, jPath, false);\n          }\n        }\n\n        //check if last tag was unpaired tag\n        const lastTag = currentNode;\n        if(lastTag && this.options.unpairedTags.indexOf(lastTag.tagname) !== -1 ){\n          currentNode = this.tagsNodeStack.pop();\n          jPath = jPath.substring(0, jPath.lastIndexOf(\".\"));\n        }\n        if(tagName !== xmlObj.tagname){\n          jPath += jPath ? \".\" + tagName : tagName;\n        }\n        const startIndex = i;\n        if (this.isItStopNode(this.options.stopNodes, jPath, tagName)) {\n          let tagContent = \"\";\n          //self-closing tag\n          if(tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1){\n            if(tagName[tagName.length - 1] === \"/\"){ //remove trailing '/'\n              tagName = tagName.substr(0, tagName.length - 1);\n              jPath = jPath.substr(0, jPath.length - 1);\n              tagExp = tagName;\n            }else {\n              tagExp = tagExp.substr(0, tagExp.length - 1);\n            }\n            i = result.closeIndex;\n          }\n          //unpaired tag\n          else if(this.options.unpairedTags.indexOf(tagName) !== -1){\n            \n            i = result.closeIndex;\n          }\n          //normal tag\n          else {\n            //read until closing tag is found\n            const result = this.readStopNodeData(xmlData, rawTagName, closeIndex + 1);\n            if(!result) throw new Error(`Unexpected end of ${rawTagName}`);\n            i = result.i;\n            tagContent = result.tagContent;\n          }\n\n          const childNode = new XmlNode(tagName);\n\n          if(tagName !== tagExp && attrExpPresent){\n            childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n          }\n          if(tagContent) {\n            tagContent = this.parseTextData(tagContent, tagName, jPath, true, attrExpPresent, true, true);\n          }\n          \n          jPath = jPath.substr(0, jPath.lastIndexOf(\".\"));\n          childNode.add(this.options.textNodeName, tagContent);\n          \n          this.addChild(currentNode, childNode, jPath, startIndex);\n        }else {\n  //selfClosing tag\n          if(tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1){\n            if(tagName[tagName.length - 1] === \"/\"){ //remove trailing '/'\n              tagName = tagName.substr(0, tagName.length - 1);\n              jPath = jPath.substr(0, jPath.length - 1);\n              tagExp = tagName;\n            }else {\n              tagExp = tagExp.substr(0, tagExp.length - 1);\n            }\n            \n            if(this.options.transformTagName) {\n              tagName = this.options.transformTagName(tagName);\n            }\n\n            const childNode = new XmlNode(tagName);\n            if(tagName !== tagExp && attrExpPresent){\n              childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n            }\n            this.addChild(currentNode, childNode, jPath, startIndex);\n            jPath = jPath.substr(0, jPath.lastIndexOf(\".\"));\n          }\n    //opening tag\n          else {\n            const childNode = new XmlNode( tagName);\n            this.tagsNodeStack.push(currentNode);\n            \n            if(tagName !== tagExp && attrExpPresent){\n              childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n            }\n            this.addChild(currentNode, childNode, jPath, startIndex);\n            currentNode = childNode;\n          }\n          textData = \"\";\n          i = closeIndex;\n        }\n      }\n    }else {\n      textData += xmlData[i];\n    }\n  }\n  return xmlObj.child;\n};\n\nfunction addChild(currentNode, childNode, jPath, startIndex){\n  // unset startIndex if not requested\n  if (!this.options.captureMetaData) startIndex = undefined;\n  const result = this.options.updateTag(childNode.tagname, jPath, childNode[\":@\"]);\n  if(result === false); else if(typeof result === \"string\"){\n    childNode.tagname = result;\n    currentNode.addChild(childNode, startIndex);\n  }else {\n    currentNode.addChild(childNode, startIndex);\n  }\n}\n\nconst replaceEntitiesValue$1 = function(val){\n\n  if(this.options.processEntities){\n    for(let entityName in this.docTypeEntities){\n      const entity = this.docTypeEntities[entityName];\n      val = val.replace( entity.regx, entity.val);\n    }\n    for(let entityName in this.lastEntities){\n      const entity = this.lastEntities[entityName];\n      val = val.replace( entity.regex, entity.val);\n    }\n    if(this.options.htmlEntities){\n      for(let entityName in this.htmlEntities){\n        const entity = this.htmlEntities[entityName];\n        val = val.replace( entity.regex, entity.val);\n      }\n    }\n    val = val.replace( this.ampEntity.regex, this.ampEntity.val);\n  }\n  return val;\n};\nfunction saveTextToParentTag(textData, currentNode, jPath, isLeafNode) {\n  if (textData) { //store previously collected data as textNode\n    if(isLeafNode === undefined) isLeafNode = currentNode.child.length === 0;\n    \n    textData = this.parseTextData(textData,\n      currentNode.tagname,\n      jPath,\n      false,\n      currentNode[\":@\"] ? Object.keys(currentNode[\":@\"]).length !== 0 : false,\n      isLeafNode);\n\n    if (textData !== undefined && textData !== \"\")\n      currentNode.add(this.options.textNodeName, textData);\n    textData = \"\";\n  }\n  return textData;\n}\n\n//TODO: use jPath to simplify the logic\n/**\n * \n * @param {string[]} stopNodes \n * @param {string} jPath\n * @param {string} currentTagName \n */\nfunction isItStopNode(stopNodes, jPath, currentTagName){\n  const allNodesExp = \"*.\" + currentTagName;\n  for (const stopNodePath in stopNodes) {\n    const stopNodeExp = stopNodes[stopNodePath];\n    if( allNodesExp === stopNodeExp || jPath === stopNodeExp  ) return true;\n  }\n  return false;\n}\n\n/**\n * Returns the tag Expression and where it is ending handling single-double quotes situation\n * @param {string} xmlData \n * @param {number} i starting index\n * @returns \n */\nfunction tagExpWithClosingIndex(xmlData, i, closingChar = \">\"){\n  let attrBoundary;\n  let tagExp = \"\";\n  for (let index = i; index < xmlData.length; index++) {\n    let ch = xmlData[index];\n    if (attrBoundary) {\n        if (ch === attrBoundary) attrBoundary = \"\";//reset\n    } else if (ch === '\"' || ch === \"'\") {\n        attrBoundary = ch;\n    } else if (ch === closingChar[0]) {\n      if(closingChar[1]){\n        if(xmlData[index + 1] === closingChar[1]){\n          return {\n            data: tagExp,\n            index: index\n          }\n        }\n      }else {\n        return {\n          data: tagExp,\n          index: index\n        }\n      }\n    } else if (ch === '\\t') {\n      ch = \" \";\n    }\n    tagExp += ch;\n  }\n}\n\nfunction findClosingIndex(xmlData, str, i, errMsg){\n  const closingIndex = xmlData.indexOf(str, i);\n  if(closingIndex === -1){\n    throw new Error(errMsg)\n  }else {\n    return closingIndex + str.length - 1;\n  }\n}\n\nfunction readTagExp(xmlData,i, removeNSPrefix, closingChar = \">\"){\n  const result = tagExpWithClosingIndex(xmlData, i+1, closingChar);\n  if(!result) return;\n  let tagExp = result.data;\n  const closeIndex = result.index;\n  const separatorIndex = tagExp.search(/\\s/);\n  let tagName = tagExp;\n  let attrExpPresent = true;\n  if(separatorIndex !== -1){//separate tag name and attributes expression\n    tagName = tagExp.substring(0, separatorIndex);\n    tagExp = tagExp.substring(separatorIndex + 1).trimStart();\n  }\n\n  const rawTagName = tagName;\n  if(removeNSPrefix){\n    const colonIndex = tagName.indexOf(\":\");\n    if(colonIndex !== -1){\n      tagName = tagName.substr(colonIndex+1);\n      attrExpPresent = tagName !== result.data.substr(colonIndex + 1);\n    }\n  }\n\n  return {\n    tagName: tagName,\n    tagExp: tagExp,\n    closeIndex: closeIndex,\n    attrExpPresent: attrExpPresent,\n    rawTagName: rawTagName,\n  }\n}\n/**\n * find paired tag for a stop node\n * @param {string} xmlData \n * @param {string} tagName \n * @param {number} i \n */\nfunction readStopNodeData(xmlData, tagName, i){\n  const startIndex = i;\n  // Starting at 1 since we already have an open tag\n  let openTagCount = 1;\n\n  for (; i < xmlData.length; i++) {\n    if( xmlData[i] === \"<\"){ \n      if (xmlData[i+1] === \"/\") {//close tag\n          const closeIndex = findClosingIndex(xmlData, \">\", i, `${tagName} is not closed`);\n          let closeTagName = xmlData.substring(i+2,closeIndex).trim();\n          if(closeTagName === tagName){\n            openTagCount--;\n            if (openTagCount === 0) {\n              return {\n                tagContent: xmlData.substring(startIndex, i),\n                i : closeIndex\n              }\n            }\n          }\n          i=closeIndex;\n        } else if(xmlData[i+1] === '?') { \n          const closeIndex = findClosingIndex(xmlData, \"?>\", i+1, \"StopNode is not closed.\");\n          i=closeIndex;\n        } else if(xmlData.substr(i + 1, 3) === '!--') { \n          const closeIndex = findClosingIndex(xmlData, \"-->\", i+3, \"StopNode is not closed.\");\n          i=closeIndex;\n        } else if(xmlData.substr(i + 1, 2) === '![') { \n          const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"StopNode is not closed.\") - 2;\n          i=closeIndex;\n        } else {\n          const tagData = readTagExp(xmlData, i, '>');\n\n          if (tagData) {\n            const openTagName = tagData && tagData.tagName;\n            if (openTagName === tagName && tagData.tagExp[tagData.tagExp.length-1] !== \"/\") {\n              openTagCount++;\n            }\n            i=tagData.closeIndex;\n          }\n        }\n      }\n  }//end for loop\n}\n\nfunction parseValue(val, shouldParse, options) {\n  if (shouldParse && typeof val === 'string') {\n    //console.log(options)\n    const newval = val.trim();\n    if(newval === 'true' ) return true;\n    else if(newval === 'false' ) return false;\n    else return toNumber(val, options);\n  } else {\n    if (isExist(val)) {\n      return val;\n    } else {\n      return '';\n    }\n  }\n}\n\nconst METADATA_SYMBOL = XmlNode.getMetaDataSymbol();\n\n/**\n * \n * @param {array} node \n * @param {any} options \n * @returns \n */\nfunction prettify(node, options){\n  return compress( node, options);\n}\n\n/**\n * \n * @param {array} arr \n * @param {object} options \n * @param {string} jPath \n * @returns object\n */\nfunction compress(arr, options, jPath){\n  let text;\n  const compressedObj = {};\n  for (let i = 0; i < arr.length; i++) {\n    const tagObj = arr[i];\n    const property = propName$1(tagObj);\n    let newJpath = \"\";\n    if(jPath === undefined) newJpath = property;\n    else newJpath = jPath + \".\" + property;\n\n    if(property === options.textNodeName){\n      if(text === undefined) text = tagObj[property];\n      else text += \"\" + tagObj[property];\n    }else if(property === undefined){\n      continue;\n    }else if(tagObj[property]){\n      \n      let val = compress(tagObj[property], options, newJpath);\n      const isLeaf = isLeafTag(val, options);\n      if (tagObj[METADATA_SYMBOL] !== undefined) {\n        val[METADATA_SYMBOL] = tagObj[METADATA_SYMBOL]; // copy over metadata\n      }\n\n      if(tagObj[\":@\"]){\n        assignAttributes( val, tagObj[\":@\"], newJpath, options);\n      }else if(Object.keys(val).length === 1 && val[options.textNodeName] !== undefined && !options.alwaysCreateTextNode){\n        val = val[options.textNodeName];\n      }else if(Object.keys(val).length === 0){\n        if(options.alwaysCreateTextNode) val[options.textNodeName] = \"\";\n        else val = \"\";\n      }\n\n      if(compressedObj[property] !== undefined && compressedObj.hasOwnProperty(property)) {\n        if(!Array.isArray(compressedObj[property])) {\n            compressedObj[property] = [ compressedObj[property] ];\n        }\n        compressedObj[property].push(val);\n      }else {\n        //TODO: if a node is not an array, then check if it should be an array\n        //also determine if it is a leaf node\n        if (options.isArray(property, newJpath, isLeaf )) {\n          compressedObj[property] = [val];\n        }else {\n          compressedObj[property] = val;\n        }\n      }\n    }\n    \n  }\n  // if(text && text.length > 0) compressedObj[options.textNodeName] = text;\n  if(typeof text === \"string\"){\n    if(text.length > 0) compressedObj[options.textNodeName] = text;\n  }else if(text !== undefined) compressedObj[options.textNodeName] = text;\n  return compressedObj;\n}\n\nfunction propName$1(obj){\n  const keys = Object.keys(obj);\n  for (let i = 0; i < keys.length; i++) {\n    const key = keys[i];\n    if(key !== \":@\") return key;\n  }\n}\n\nfunction assignAttributes(obj, attrMap, jpath, options){\n  if (attrMap) {\n    const keys = Object.keys(attrMap);\n    const len = keys.length; //don't make it inline\n    for (let i = 0; i < len; i++) {\n      const atrrName = keys[i];\n      if (options.isArray(atrrName, jpath + \".\" + atrrName, true, true)) {\n        obj[atrrName] = [ attrMap[atrrName] ];\n      } else {\n        obj[atrrName] = attrMap[atrrName];\n      }\n    }\n  }\n}\n\nfunction isLeafTag(obj, options){\n  const { textNodeName } = options;\n  const propCount = Object.keys(obj).length;\n  \n  if (propCount === 0) {\n    return true;\n  }\n\n  if (\n    propCount === 1 &&\n    (obj[textNodeName] || typeof obj[textNodeName] === \"boolean\" || obj[textNodeName] === 0)\n  ) {\n    return true;\n  }\n\n  return false;\n}\n\nclass XMLParser{\n    \n    constructor(options){\n        this.externalEntities = {};\n        this.options = buildOptions(options);\n        \n    }\n    /**\n     * Parse XML dats to JS object \n     * @param {string|Buffer} xmlData \n     * @param {boolean|Object} validationOption \n     */\n    parse(xmlData,validationOption){\n        if(typeof xmlData === \"string\");else if( xmlData.toString){\n            xmlData = xmlData.toString();\n        }else {\n            throw new Error(\"XML data is accepted in String or Bytes[] form.\")\n        }\n        if( validationOption){\n            if(validationOption === true) validationOption = {}; //validate with default options\n            \n            const result = validate(xmlData, validationOption);\n            if (result !== true) {\n              throw Error( `${result.err.msg}:${result.err.line}:${result.err.col}` )\n            }\n          }\n        const orderedObjParser = new OrderedObjParser(this.options);\n        orderedObjParser.addExternalEntities(this.externalEntities);\n        const orderedResult = orderedObjParser.parseXml(xmlData);\n        if(this.options.preserveOrder || orderedResult === undefined) return orderedResult;\n        else return prettify(orderedResult, this.options);\n    }\n\n    /**\n     * Add Entity which is not by default supported by this library\n     * @param {string} key \n     * @param {string} value \n     */\n    addEntity(key, value){\n        if(value.indexOf(\"&\") !== -1){\n            throw new Error(\"Entity value can't have '&'\")\n        }else if(key.indexOf(\"&\") !== -1 || key.indexOf(\";\") !== -1){\n            throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'\")\n        }else if(value === \"&\"){\n            throw new Error(\"An entity with value '&' is not permitted\");\n        }else {\n            this.externalEntities[key] = value;\n        }\n    }\n\n    /**\n     * Returns a Symbol that can be used to access the metadata\n     * property on a node.\n     * \n     * If Symbol is not available in the environment, an ordinary property is used\n     * and the name of the property is here returned.\n     * \n     * The XMLMetaData property is only present when `captureMetaData`\n     * is true in the options.\n     */\n    static getMetaDataSymbol() {\n        return XmlNode.getMetaDataSymbol();\n    }\n}\n\nconst EOL = \"\\n\";\n\n/**\n * \n * @param {array} jArray \n * @param {any} options \n * @returns \n */\nfunction toXml(jArray, options) {\n    let indentation = \"\";\n    if (options.format && options.indentBy.length > 0) {\n        indentation = EOL;\n    }\n    return arrToStr(jArray, options, \"\", indentation);\n}\n\nfunction arrToStr(arr, options, jPath, indentation) {\n    let xmlStr = \"\";\n    let isPreviousElementTag = false;\n\n    for (let i = 0; i < arr.length; i++) {\n        const tagObj = arr[i];\n        const tagName = propName(tagObj);\n        if(tagName === undefined) continue;\n\n        let newJPath = \"\";\n        if (jPath.length === 0) newJPath = tagName;\n        else newJPath = `${jPath}.${tagName}`;\n\n        if (tagName === options.textNodeName) {\n            let tagText = tagObj[tagName];\n            if (!isStopNode(newJPath, options)) {\n                tagText = options.tagValueProcessor(tagName, tagText);\n                tagText = replaceEntitiesValue(tagText, options);\n            }\n            if (isPreviousElementTag) {\n                xmlStr += indentation;\n            }\n            xmlStr += tagText;\n            isPreviousElementTag = false;\n            continue;\n        } else if (tagName === options.cdataPropName) {\n            if (isPreviousElementTag) {\n                xmlStr += indentation;\n            }\n            xmlStr += `<![CDATA[${tagObj[tagName][0][options.textNodeName]}]]>`;\n            isPreviousElementTag = false;\n            continue;\n        } else if (tagName === options.commentPropName) {\n            xmlStr += indentation + `<!--${tagObj[tagName][0][options.textNodeName]}-->`;\n            isPreviousElementTag = true;\n            continue;\n        } else if (tagName[0] === \"?\") {\n            const attStr = attr_to_str(tagObj[\":@\"], options);\n            const tempInd = tagName === \"?xml\" ? \"\" : indentation;\n            let piTextNodeName = tagObj[tagName][0][options.textNodeName];\n            piTextNodeName = piTextNodeName.length !== 0 ? \" \" + piTextNodeName : \"\"; //remove extra spacing\n            xmlStr += tempInd + `<${tagName}${piTextNodeName}${attStr}?>`;\n            isPreviousElementTag = true;\n            continue;\n        }\n        let newIdentation = indentation;\n        if (newIdentation !== \"\") {\n            newIdentation += options.indentBy;\n        }\n        const attStr = attr_to_str(tagObj[\":@\"], options);\n        const tagStart = indentation + `<${tagName}${attStr}`;\n        const tagValue = arrToStr(tagObj[tagName], options, newJPath, newIdentation);\n        if (options.unpairedTags.indexOf(tagName) !== -1) {\n            if (options.suppressUnpairedNode) xmlStr += tagStart + \">\";\n            else xmlStr += tagStart + \"/>\";\n        } else if ((!tagValue || tagValue.length === 0) && options.suppressEmptyNode) {\n            xmlStr += tagStart + \"/>\";\n        } else if (tagValue && tagValue.endsWith(\">\")) {\n            xmlStr += tagStart + `>${tagValue}${indentation}</${tagName}>`;\n        } else {\n            xmlStr += tagStart + \">\";\n            if (tagValue && indentation !== \"\" && (tagValue.includes(\"/>\") || tagValue.includes(\"</\"))) {\n                xmlStr += indentation + options.indentBy + tagValue + indentation;\n            } else {\n                xmlStr += tagValue;\n            }\n            xmlStr += `</${tagName}>`;\n        }\n        isPreviousElementTag = true;\n    }\n\n    return xmlStr;\n}\n\nfunction propName(obj) {\n    const keys = Object.keys(obj);\n    for (let i = 0; i < keys.length; i++) {\n        const key = keys[i];\n        if(!obj.hasOwnProperty(key)) continue;\n        if (key !== \":@\") return key;\n    }\n}\n\nfunction attr_to_str(attrMap, options) {\n    let attrStr = \"\";\n    if (attrMap && !options.ignoreAttributes) {\n        for (let attr in attrMap) {\n            if(!attrMap.hasOwnProperty(attr)) continue;\n            let attrVal = options.attributeValueProcessor(attr, attrMap[attr]);\n            attrVal = replaceEntitiesValue(attrVal, options);\n            if (attrVal === true && options.suppressBooleanAttributes) {\n                attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}`;\n            } else {\n                attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}=\"${attrVal}\"`;\n            }\n        }\n    }\n    return attrStr;\n}\n\nfunction isStopNode(jPath, options) {\n    jPath = jPath.substr(0, jPath.length - options.textNodeName.length - 1);\n    let tagName = jPath.substr(jPath.lastIndexOf(\".\") + 1);\n    for (let index in options.stopNodes) {\n        if (options.stopNodes[index] === jPath || options.stopNodes[index] === \"*.\" + tagName) return true;\n    }\n    return false;\n}\n\nfunction replaceEntitiesValue(textValue, options) {\n    if (textValue && textValue.length > 0 && options.processEntities) {\n        for (let i = 0; i < options.entities.length; i++) {\n            const entity = options.entities[i];\n            textValue = textValue.replace(entity.regex, entity.val);\n        }\n    }\n    return textValue;\n}\n\nconst defaultOptions = {\n  attributeNamePrefix: '@_',\n  attributesGroupName: false,\n  textNodeName: '#text',\n  ignoreAttributes: true,\n  cdataPropName: false,\n  format: false,\n  indentBy: '  ',\n  suppressEmptyNode: false,\n  suppressUnpairedNode: true,\n  suppressBooleanAttributes: true,\n  tagValueProcessor: function(key, a) {\n    return a;\n  },\n  attributeValueProcessor: function(attrName, a) {\n    return a;\n  },\n  preserveOrder: false,\n  commentPropName: false,\n  unpairedTags: [],\n  entities: [\n    { regex: new RegExp(\"&\", \"g\"), val: \"&amp;\" },//it must be on top\n    { regex: new RegExp(\">\", \"g\"), val: \"&gt;\" },\n    { regex: new RegExp(\"<\", \"g\"), val: \"&lt;\" },\n    { regex: new RegExp(\"\\'\", \"g\"), val: \"&apos;\" },\n    { regex: new RegExp(\"\\\"\", \"g\"), val: \"&quot;\" }\n  ],\n  processEntities: true,\n  stopNodes: [],\n  // transformTagName: false,\n  // transformAttributeName: false,\n  oneListGroup: false\n};\n\nfunction Builder(options) {\n  this.options = Object.assign({}, defaultOptions, options);\n  if (this.options.ignoreAttributes === true || this.options.attributesGroupName) {\n    this.isAttribute = function(/*a*/) {\n      return false;\n    };\n  } else {\n    this.ignoreAttributesFn = getIgnoreAttributesFn(this.options.ignoreAttributes);\n    this.attrPrefixLen = this.options.attributeNamePrefix.length;\n    this.isAttribute = isAttribute;\n  }\n\n  this.processTextOrObjNode = processTextOrObjNode;\n\n  if (this.options.format) {\n    this.indentate = indentate;\n    this.tagEndChar = '>\\n';\n    this.newLine = '\\n';\n  } else {\n    this.indentate = function() {\n      return '';\n    };\n    this.tagEndChar = '>';\n    this.newLine = '';\n  }\n}\n\nBuilder.prototype.build = function(jObj) {\n  if(this.options.preserveOrder){\n    return toXml(jObj, this.options);\n  }else {\n    if(Array.isArray(jObj) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1){\n      jObj = {\n        [this.options.arrayNodeName] : jObj\n      };\n    }\n    return this.j2x(jObj, 0, []).val;\n  }\n};\n\nBuilder.prototype.j2x = function(jObj, level, ajPath) {\n  let attrStr = '';\n  let val = '';\n  const jPath = ajPath.join('.');\n  for (let key in jObj) {\n    if(!Object.prototype.hasOwnProperty.call(jObj, key)) continue;\n    if (typeof jObj[key] === 'undefined') {\n      // supress undefined node only if it is not an attribute\n      if (this.isAttribute(key)) {\n        val += '';\n      }\n    } else if (jObj[key] === null) {\n      // null attribute should be ignored by the attribute list, but should not cause the tag closing\n      if (this.isAttribute(key)) {\n        val += '';\n      } else if (key === this.options.cdataPropName) {\n        val += '';\n      } else if (key[0] === '?') {\n        val += this.indentate(level) + '<' + key + '?' + this.tagEndChar;\n      } else {\n        val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n      }\n      // val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n    } else if (jObj[key] instanceof Date) {\n      val += this.buildTextValNode(jObj[key], key, '', level);\n    } else if (typeof jObj[key] !== 'object') {\n      //premitive type\n      const attr = this.isAttribute(key);\n      if (attr && !this.ignoreAttributesFn(attr, jPath)) {\n        attrStr += this.buildAttrPairStr(attr, '' + jObj[key]);\n      } else if (!attr) {\n        //tag value\n        if (key === this.options.textNodeName) {\n          let newval = this.options.tagValueProcessor(key, '' + jObj[key]);\n          val += this.replaceEntitiesValue(newval);\n        } else {\n          val += this.buildTextValNode(jObj[key], key, '', level);\n        }\n      }\n    } else if (Array.isArray(jObj[key])) {\n      //repeated nodes\n      const arrLen = jObj[key].length;\n      let listTagVal = \"\";\n      let listTagAttr = \"\";\n      for (let j = 0; j < arrLen; j++) {\n        const item = jObj[key][j];\n        if (typeof item === 'undefined') ; else if (item === null) {\n          if(key[0] === \"?\") val += this.indentate(level) + '<' + key + '?' + this.tagEndChar;\n          else val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n          // val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n        } else if (typeof item === 'object') {\n          if(this.options.oneListGroup){\n            const result = this.j2x(item, level + 1, ajPath.concat(key));\n            listTagVal += result.val;\n            if (this.options.attributesGroupName && item.hasOwnProperty(this.options.attributesGroupName)) {\n              listTagAttr += result.attrStr;\n            }\n          }else {\n            listTagVal += this.processTextOrObjNode(item, key, level, ajPath);\n          }\n        } else {\n          if (this.options.oneListGroup) {\n            let textValue = this.options.tagValueProcessor(key, item);\n            textValue = this.replaceEntitiesValue(textValue);\n            listTagVal += textValue;\n          } else {\n            listTagVal += this.buildTextValNode(item, key, '', level);\n          }\n        }\n      }\n      if(this.options.oneListGroup){\n        listTagVal = this.buildObjectNode(listTagVal, key, listTagAttr, level);\n      }\n      val += listTagVal;\n    } else {\n      //nested node\n      if (this.options.attributesGroupName && key === this.options.attributesGroupName) {\n        const Ks = Object.keys(jObj[key]);\n        const L = Ks.length;\n        for (let j = 0; j < L; j++) {\n          attrStr += this.buildAttrPairStr(Ks[j], '' + jObj[key][Ks[j]]);\n        }\n      } else {\n        val += this.processTextOrObjNode(jObj[key], key, level, ajPath);\n      }\n    }\n  }\n  return {attrStr: attrStr, val: val};\n};\n\nBuilder.prototype.buildAttrPairStr = function(attrName, val){\n  val = this.options.attributeValueProcessor(attrName, '' + val);\n  val = this.replaceEntitiesValue(val);\n  if (this.options.suppressBooleanAttributes && val === \"true\") {\n    return ' ' + attrName;\n  } else return ' ' + attrName + '=\"' + val + '\"';\n};\n\nfunction processTextOrObjNode (object, key, level, ajPath) {\n  const result = this.j2x(object, level + 1, ajPath.concat(key));\n  if (object[this.options.textNodeName] !== undefined && Object.keys(object).length === 1) {\n    return this.buildTextValNode(object[this.options.textNodeName], key, result.attrStr, level);\n  } else {\n    return this.buildObjectNode(result.val, key, result.attrStr, level);\n  }\n}\n\nBuilder.prototype.buildObjectNode = function(val, key, attrStr, level) {\n  if(val === \"\"){\n    if(key[0] === \"?\") return  this.indentate(level) + '<' + key + attrStr+ '?' + this.tagEndChar;\n    else {\n      return this.indentate(level) + '<' + key + attrStr + this.closeTag(key) + this.tagEndChar;\n    }\n  }else {\n\n    let tagEndExp = '</' + key + this.tagEndChar;\n    let piClosingChar = \"\";\n    \n    if(key[0] === \"?\") {\n      piClosingChar = \"?\";\n      tagEndExp = \"\";\n    }\n  \n    // attrStr is an empty string in case the attribute came as undefined or null\n    if ((attrStr || attrStr === '') && val.indexOf('<') === -1) {\n      return ( this.indentate(level) + '<' +  key + attrStr + piClosingChar + '>' + val + tagEndExp );\n    } else if (this.options.commentPropName !== false && key === this.options.commentPropName && piClosingChar.length === 0) {\n      return this.indentate(level) + `<!--${val}-->` + this.newLine;\n    }else {\n      return (\n        this.indentate(level) + '<' + key + attrStr + piClosingChar + this.tagEndChar +\n        val +\n        this.indentate(level) + tagEndExp    );\n    }\n  }\n};\n\nBuilder.prototype.closeTag = function(key){\n  let closeTag = \"\";\n  if(this.options.unpairedTags.indexOf(key) !== -1){ //unpaired\n    if(!this.options.suppressUnpairedNode) closeTag = \"/\";\n  }else if(this.options.suppressEmptyNode){ //empty\n    closeTag = \"/\";\n  }else {\n    closeTag = `></${key}`;\n  }\n  return closeTag;\n};\n\nBuilder.prototype.buildTextValNode = function(val, key, attrStr, level) {\n  if (this.options.cdataPropName !== false && key === this.options.cdataPropName) {\n    return this.indentate(level) + `<![CDATA[${val}]]>` +  this.newLine;\n  }else if (this.options.commentPropName !== false && key === this.options.commentPropName) {\n    return this.indentate(level) + `<!--${val}-->` +  this.newLine;\n  }else if(key[0] === \"?\") {//PI tag\n    return  this.indentate(level) + '<' + key + attrStr+ '?' + this.tagEndChar; \n  }else {\n    let textValue = this.options.tagValueProcessor(key, val);\n    textValue = this.replaceEntitiesValue(textValue);\n  \n    if( textValue === ''){\n      return this.indentate(level) + '<' + key + attrStr + this.closeTag(key) + this.tagEndChar;\n    }else {\n      return this.indentate(level) + '<' + key + attrStr + '>' +\n         textValue +\n        '</' + key + this.tagEndChar;\n    }\n  }\n};\n\nBuilder.prototype.replaceEntitiesValue = function(textValue){\n  if(textValue && textValue.length > 0 && this.options.processEntities){\n    for (let i=0; i<this.options.entities.length; i++) {\n      const entity = this.options.entities[i];\n      textValue = textValue.replace(entity.regex, entity.val);\n    }\n  }\n  return textValue;\n};\n\nfunction indentate(level) {\n  return this.options.indentBy.repeat(level);\n}\n\nfunction isAttribute(name /*, options*/) {\n  if (name.startsWith(this.options.attributeNamePrefix) && name !== this.options.textNodeName) {\n    return name.substr(this.attrPrefixLen);\n  } else {\n    return false;\n  }\n}\n\nconst XMLValidator = {\n  validate: validate\n};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Default key used to access the XML attributes.\n */\nconst XML_ATTRKEY = \"$\";\n/**\n * Default key used to access the XML value content.\n */\nconst XML_CHARKEY = \"_\";\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction getCommonOptions(options) {\n    var _a;\n    return {\n        attributesGroupName: XML_ATTRKEY,\n        textNodeName: (_a = options.xmlCharKey) !== null && _a !== void 0 ? _a : XML_CHARKEY,\n        ignoreAttributes: false,\n        suppressBooleanAttributes: false,\n    };\n}\nfunction getSerializerOptions(options = {}) {\n    var _a, _b;\n    return Object.assign(Object.assign({}, getCommonOptions(options)), { attributeNamePrefix: \"@_\", format: true, suppressEmptyNode: true, indentBy: \"\", rootNodeName: (_a = options.rootName) !== null && _a !== void 0 ? _a : \"root\", cdataPropName: (_b = options.cdataPropName) !== null && _b !== void 0 ? _b : \"__cdata\" });\n}\nfunction getParserOptions(options = {}) {\n    return Object.assign(Object.assign({}, getCommonOptions(options)), { parseAttributeValue: false, parseTagValue: false, attributeNamePrefix: \"\", stopNodes: options.stopNodes, processEntities: true, trimValues: false });\n}\n/**\n * Converts given JSON object to XML string\n * @param obj - JSON object to be converted into XML string\n * @param opts - Options that govern the XML building of given JSON object\n * `rootName` indicates the name of the root element in the resulting XML\n */\nfunction stringifyXML(obj, opts = {}) {\n    const parserOptions = getSerializerOptions(opts);\n    const j2x = new Builder(parserOptions);\n    const node = { [parserOptions.rootNodeName]: obj };\n    const xmlData = j2x.build(node);\n    return `<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>${xmlData}`.replace(/\\n/g, \"\");\n}\n/**\n * Converts given XML string into JSON\n * @param str - String containing the XML content to be parsed into JSON\n * @param opts - Options that govern the parsing of given xml string\n * `includeRoot` indicates whether the root element is to be included or not in the output\n */\nasync function parseXML(str, opts = {}) {\n    if (!str) {\n        throw new Error(\"Document is empty\");\n    }\n    const validation = XMLValidator.validate(str);\n    if (validation !== true) {\n        throw validation;\n    }\n    const parser = new XMLParser(getParserOptions(opts));\n    const parsedXml = parser.parse(str);\n    // Remove the <?xml version=\"...\" ?> node.\n    // This is a change in behavior on fxp v4. Issue #424\n    if (parsedXml[\"?xml\"]) {\n        delete parsedXml[\"?xml\"];\n    }\n    if (!opts.includeRoot) {\n        for (const key of Object.keys(parsedXml)) {\n            const value = parsedXml[key];\n            return typeof value === \"object\" ? Object.assign({}, value) : value;\n        }\n    }\n    return parsedXml;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The `@azure/logger` configuration for this package.\n */\nconst logger = createClientLogger(\"storage-blob\");\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n/**\n * This error is thrown when an asynchronous operation has been aborted.\n * Check for this error by testing the `name` that the name property of the\n * error matches `\"AbortError\"`.\n *\n * @example\n * ```ts\n * const controller = new AbortController();\n * controller.abort();\n * try {\n *   doAsyncWork(controller.signal)\n * } catch (e) {\n *   if (e.name === 'AbortError') {\n *     // handle abort error here.\n *   }\n * }\n * ```\n */\nlet AbortError$2 = class AbortError extends Error {\n    constructor(message) {\n        super(message);\n        this.name = \"AbortError\";\n    }\n};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The base class from which all request policies derive.\n */\nclass BaseRequestPolicy {\n    /**\n     * The main method to implement that manipulates a request/response.\n     */\n    constructor(\n    /**\n     * The next policy in the pipeline. Each policy is responsible for executing the next one if the request is to continue through the pipeline.\n     */\n    _nextPolicy, \n    /**\n     * The options that can be passed to a given request policy.\n     */\n    _options) {\n        this._nextPolicy = _nextPolicy;\n        this._options = _options;\n    }\n    /**\n     * Get whether or not a log with the provided log level should be logged.\n     * @param logLevel - The log level of the log that will be logged.\n     * @returns Whether or not a log with the provided log level should be logged.\n     */\n    shouldLog(logLevel) {\n        return this._options.shouldLog(logLevel);\n    }\n    /**\n     * Attempt to log the provided message to the provided logger. If no logger was provided or if\n     * the log level does not meat the logger's threshold, then nothing will be logged.\n     * @param logLevel - The log level of this log.\n     * @param message - The message of this log.\n     */\n    log(logLevel, message) {\n        this._options.log(logLevel, message);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst SDK_VERSION = \"12.27.0\";\nconst SERVICE_VERSION = \"2025-05-05\";\nconst BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB\nconst BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB\nconst BLOCK_BLOB_MAX_BLOCKS = 50000;\nconst DEFAULT_BLOCK_BUFFER_SIZE_BYTES = 8 * 1024 * 1024; // 8MB\nconst DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES = 4 * 1024 * 1024; // 4MB\nconst DEFAULT_MAX_DOWNLOAD_RETRY_REQUESTS = 5;\nconst REQUEST_TIMEOUT = 100 * 1000; // In ms\n/**\n * The OAuth scope to use with Azure Storage.\n */\nconst StorageOAuthScopes = \"https://storage.azure.com/.default\";\nconst URLConstants = {\n    Parameters: {\n        FORCE_BROWSER_NO_CACHE: \"_\",\n        SNAPSHOT: \"snapshot\",\n        VERSIONID: \"versionid\",\n        TIMEOUT: \"timeout\",\n    },\n};\nconst HTTPURLConnection = {\n    HTTP_ACCEPTED: 202};\nconst HeaderConstants = {\n    AUTHORIZATION: \"Authorization\",\n    CONTENT_ENCODING: \"Content-Encoding\",\n    CONTENT_ID: \"Content-ID\",\n    CONTENT_LANGUAGE: \"Content-Language\",\n    CONTENT_LENGTH: \"Content-Length\",\n    CONTENT_MD5: \"Content-Md5\",\n    CONTENT_TRANSFER_ENCODING: \"Content-Transfer-Encoding\",\n    CONTENT_TYPE: \"Content-Type\",\n    COOKIE: \"Cookie\",\n    DATE: \"date\",\n    IF_MATCH: \"if-match\",\n    IF_MODIFIED_SINCE: \"if-modified-since\",\n    IF_NONE_MATCH: \"if-none-match\",\n    IF_UNMODIFIED_SINCE: \"if-unmodified-since\",\n    PREFIX_FOR_STORAGE: \"x-ms-\",\n    RANGE: \"Range\",\n    X_MS_DATE: \"x-ms-date\",\n    X_MS_ERROR_CODE: \"x-ms-error-code\",\n    X_MS_VERSION: \"x-ms-version\"};\nconst ETagNone = \"\";\nconst ETagAny = \"*\";\nconst SIZE_1_MB = 1 * 1024 * 1024;\nconst BATCH_MAX_REQUEST = 256;\nconst BATCH_MAX_PAYLOAD_IN_BYTES = 4 * SIZE_1_MB;\nconst HTTP_LINE_ENDING = \"\\r\\n\";\nconst HTTP_VERSION_1_1 = \"HTTP/1.1\";\nconst EncryptionAlgorithmAES25 = \"AES256\";\nconst DevelopmentConnectionString = `DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;`;\nconst StorageBlobLoggingAllowedHeaderNames = [\n    \"Access-Control-Allow-Origin\",\n    \"Cache-Control\",\n    \"Content-Length\",\n    \"Content-Type\",\n    \"Date\",\n    \"Request-Id\",\n    \"traceparent\",\n    \"Transfer-Encoding\",\n    \"User-Agent\",\n    \"x-ms-client-request-id\",\n    \"x-ms-date\",\n    \"x-ms-error-code\",\n    \"x-ms-request-id\",\n    \"x-ms-return-client-request-id\",\n    \"x-ms-version\",\n    \"Accept-Ranges\",\n    \"Content-Disposition\",\n    \"Content-Encoding\",\n    \"Content-Language\",\n    \"Content-MD5\",\n    \"Content-Range\",\n    \"ETag\",\n    \"Last-Modified\",\n    \"Server\",\n    \"Vary\",\n    \"x-ms-content-crc64\",\n    \"x-ms-copy-action\",\n    \"x-ms-copy-completion-time\",\n    \"x-ms-copy-id\",\n    \"x-ms-copy-progress\",\n    \"x-ms-copy-status\",\n    \"x-ms-has-immutability-policy\",\n    \"x-ms-has-legal-hold\",\n    \"x-ms-lease-state\",\n    \"x-ms-lease-status\",\n    \"x-ms-range\",\n    \"x-ms-request-server-encrypted\",\n    \"x-ms-server-encrypted\",\n    \"x-ms-snapshot\",\n    \"x-ms-source-range\",\n    \"If-Match\",\n    \"If-Modified-Since\",\n    \"If-None-Match\",\n    \"If-Unmodified-Since\",\n    \"x-ms-access-tier\",\n    \"x-ms-access-tier-change-time\",\n    \"x-ms-access-tier-inferred\",\n    \"x-ms-account-kind\",\n    \"x-ms-archive-status\",\n    \"x-ms-blob-append-offset\",\n    \"x-ms-blob-cache-control\",\n    \"x-ms-blob-committed-block-count\",\n    \"x-ms-blob-condition-appendpos\",\n    \"x-ms-blob-condition-maxsize\",\n    \"x-ms-blob-content-disposition\",\n    \"x-ms-blob-content-encoding\",\n    \"x-ms-blob-content-language\",\n    \"x-ms-blob-content-length\",\n    \"x-ms-blob-content-md5\",\n    \"x-ms-blob-content-type\",\n    \"x-ms-blob-public-access\",\n    \"x-ms-blob-sequence-number\",\n    \"x-ms-blob-type\",\n    \"x-ms-copy-destination-snapshot\",\n    \"x-ms-creation-time\",\n    \"x-ms-default-encryption-scope\",\n    \"x-ms-delete-snapshots\",\n    \"x-ms-delete-type-permanent\",\n    \"x-ms-deny-encryption-scope-override\",\n    \"x-ms-encryption-algorithm\",\n    \"x-ms-if-sequence-number-eq\",\n    \"x-ms-if-sequence-number-le\",\n    \"x-ms-if-sequence-number-lt\",\n    \"x-ms-incremental-copy\",\n    \"x-ms-lease-action\",\n    \"x-ms-lease-break-period\",\n    \"x-ms-lease-duration\",\n    \"x-ms-lease-id\",\n    \"x-ms-lease-time\",\n    \"x-ms-page-write\",\n    \"x-ms-proposed-lease-id\",\n    \"x-ms-range-get-content-md5\",\n    \"x-ms-rehydrate-priority\",\n    \"x-ms-sequence-number-action\",\n    \"x-ms-sku-name\",\n    \"x-ms-source-content-md5\",\n    \"x-ms-source-if-match\",\n    \"x-ms-source-if-modified-since\",\n    \"x-ms-source-if-none-match\",\n    \"x-ms-source-if-unmodified-since\",\n    \"x-ms-tag-count\",\n    \"x-ms-encryption-key-sha256\",\n    \"x-ms-copy-source-error-code\",\n    \"x-ms-copy-source-status-code\",\n    \"x-ms-if-tags\",\n    \"x-ms-source-if-tags\",\n];\nconst StorageBlobLoggingAllowedQueryParameters = [\n    \"comp\",\n    \"maxresults\",\n    \"rscc\",\n    \"rscd\",\n    \"rsce\",\n    \"rscl\",\n    \"rsct\",\n    \"se\",\n    \"si\",\n    \"sip\",\n    \"sp\",\n    \"spr\",\n    \"sr\",\n    \"srt\",\n    \"ss\",\n    \"st\",\n    \"sv\",\n    \"include\",\n    \"marker\",\n    \"prefix\",\n    \"copyid\",\n    \"restype\",\n    \"blockid\",\n    \"blocklisttype\",\n    \"delimiter\",\n    \"prevsnapshot\",\n    \"ske\",\n    \"skoid\",\n    \"sks\",\n    \"skt\",\n    \"sktid\",\n    \"skv\",\n    \"snapshot\",\n];\nconst BlobUsesCustomerSpecifiedEncryptionMsg = \"BlobUsesCustomerSpecifiedEncryption\";\nconst BlobDoesNotUseCustomerSpecifiedEncryption = \"BlobDoesNotUseCustomerSpecifiedEncryption\";\n/// List of ports used for path style addressing.\n/// Path style addressing means that storage account is put in URI's Path segment in instead of in host.\nconst PathStylePorts = [\n    \"10000\",\n    \"10001\",\n    \"10002\",\n    \"10003\",\n    \"10004\",\n    \"10100\",\n    \"10101\",\n    \"10102\",\n    \"10103\",\n    \"10104\",\n    \"11000\",\n    \"11001\",\n    \"11002\",\n    \"11003\",\n    \"11004\",\n    \"11100\",\n    \"11101\",\n    \"11102\",\n    \"11103\",\n    \"11104\",\n];\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Reserved URL characters must be properly escaped for Storage services like Blob or File.\n *\n * ## URL encode and escape strategy for JS SDKs\n *\n * When customers pass a URL string into XxxClient classes constructor, the URL string may already be URL encoded or not.\n * But before sending to Azure Storage server, the URL must be encoded. However, it's hard for a SDK to guess whether the URL\n * string has been encoded or not. We have 2 potential strategies, and chose strategy two for the XxxClient constructors.\n *\n * ### Strategy One: Assume the customer URL string is not encoded, and always encode URL string in SDK.\n *\n * This is what legacy V2 SDK does, simple and works for most of the cases.\n * - When customer URL string is \"http://account.blob.core.windows.net/con/b:\",\n *   SDK will encode it to \"http://account.blob.core.windows.net/con/b%3A\" and send to server. A blob named \"b:\" will be created.\n * - When customer URL string is \"http://account.blob.core.windows.net/con/b%3A\",\n *   SDK will encode it to \"http://account.blob.core.windows.net/con/b%253A\" and send to server. A blob named \"b%3A\" will be created.\n *\n * But this strategy will make it not possible to create a blob with \"?\" in it's name. Because when customer URL string is\n * \"http://account.blob.core.windows.net/con/blob?name\", the \"?name\" will be treated as URL paramter instead of blob name.\n * If customer URL string is \"http://account.blob.core.windows.net/con/blob%3Fname\", a blob named \"blob%3Fname\" will be created.\n * V2 SDK doesn't have this issue because it doesn't allow customer pass in a full URL, it accepts a separate blob name and encodeURIComponent for it.\n * We cannot accept a SDK cannot create a blob name with \"?\". So we implement strategy two:\n *\n * ### Strategy Two: SDK doesn't assume the URL has been encoded or not. It will just escape the special characters.\n *\n * This is what V10 Blob Go SDK does. It accepts a URL type in Go, and call url.EscapedPath() to escape the special chars unescaped.\n * - When customer URL string is \"http://account.blob.core.windows.net/con/b:\",\n *   SDK will escape \":\" like \"http://account.blob.core.windows.net/con/b%3A\" and send to server. A blob named \"b:\" will be created.\n * - When customer URL string is \"http://account.blob.core.windows.net/con/b%3A\",\n *   There is no special characters, so send \"http://account.blob.core.windows.net/con/b%3A\" to server. A blob named \"b:\" will be created.\n * - When customer URL string is \"http://account.blob.core.windows.net/con/b%253A\",\n *   There is no special characters, so send \"http://account.blob.core.windows.net/con/b%253A\" to server. A blob named \"b%3A\" will be created.\n *\n * This strategy gives us flexibility to create with any special characters. But \"%\" will be treated as a special characters, if the URL string\n * is not encoded, there shouldn't a \"%\" in the URL string, otherwise the URL is not a valid URL.\n * If customer needs to create a blob with \"%\" in it's blob name, use \"%25\" instead of \"%\". Just like above 3rd sample.\n * And following URL strings are invalid:\n * - \"http://account.blob.core.windows.net/con/b%\"\n * - \"http://account.blob.core.windows.net/con/b%2\"\n * - \"http://account.blob.core.windows.net/con/b%G\"\n *\n * Another special character is \"?\", use \"%2F\" to represent a blob name with \"?\" in a URL string.\n *\n * ### Strategy for containerName, blobName or other specific XXXName parameters in methods such as `containerClient.getBlobClient(blobName)`\n *\n * We will apply strategy one, and call encodeURIComponent for these parameters like blobName. Because what customers passes in is a plain name instead of a URL.\n *\n * @see https://learn.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata\n * @see https://learn.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-shares--directories--files--and-metadata\n *\n * @param url -\n */\nfunction escapeURLPath(url) {\n    const urlParsed = new URL(url);\n    let path = urlParsed.pathname;\n    path = path || \"/\";\n    path = escape(path);\n    urlParsed.pathname = path;\n    return urlParsed.toString();\n}\nfunction getProxyUriFromDevConnString(connectionString) {\n    // Development Connection String\n    // https://learn.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string#connect-to-the-emulator-account-using-the-well-known-account-name-and-key\n    let proxyUri = \"\";\n    if (connectionString.search(\"DevelopmentStorageProxyUri=\") !== -1) {\n        // CONNECTION_STRING=UseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://myProxyUri\n        const matchCredentials = connectionString.split(\";\");\n        for (const element of matchCredentials) {\n            if (element.trim().startsWith(\"DevelopmentStorageProxyUri=\")) {\n                proxyUri = element.trim().match(\"DevelopmentStorageProxyUri=(.*)\")[1];\n            }\n        }\n    }\n    return proxyUri;\n}\nfunction getValueInConnString(connectionString, argument) {\n    const elements = connectionString.split(\";\");\n    for (const element of elements) {\n        if (element.trim().startsWith(argument)) {\n            return element.trim().match(argument + \"=(.*)\")[1];\n        }\n    }\n    return \"\";\n}\n/**\n * Extracts the parts of an Azure Storage account connection string.\n *\n * @param connectionString - Connection string.\n * @returns String key value pairs of the storage account's url and credentials.\n */\nfunction extractConnectionStringParts(connectionString) {\n    let proxyUri = \"\";\n    if (connectionString.startsWith(\"UseDevelopmentStorage=true\")) {\n        // Development connection string\n        proxyUri = getProxyUriFromDevConnString(connectionString);\n        connectionString = DevelopmentConnectionString;\n    }\n    // Matching BlobEndpoint in the Account connection string\n    let blobEndpoint = getValueInConnString(connectionString, \"BlobEndpoint\");\n    // Slicing off '/' at the end if exists\n    // (The methods that use `extractConnectionStringParts` expect the url to not have `/` at the end)\n    blobEndpoint = blobEndpoint.endsWith(\"/\") ? blobEndpoint.slice(0, -1) : blobEndpoint;\n    if (connectionString.search(\"DefaultEndpointsProtocol=\") !== -1 &&\n        connectionString.search(\"AccountKey=\") !== -1) {\n        // Account connection string\n        let defaultEndpointsProtocol = \"\";\n        let accountName = \"\";\n        let accountKey = Buffer.from(\"accountKey\", \"base64\");\n        let endpointSuffix = \"\";\n        // Get account name and key\n        accountName = getValueInConnString(connectionString, \"AccountName\");\n        accountKey = Buffer.from(getValueInConnString(connectionString, \"AccountKey\"), \"base64\");\n        if (!blobEndpoint) {\n            // BlobEndpoint is not present in the Account connection string\n            // Can be obtained from `${defaultEndpointsProtocol}://${accountName}.blob.${endpointSuffix}`\n            defaultEndpointsProtocol = getValueInConnString(connectionString, \"DefaultEndpointsProtocol\");\n            const protocol = defaultEndpointsProtocol.toLowerCase();\n            if (protocol !== \"https\" && protocol !== \"http\") {\n                throw new Error(\"Invalid DefaultEndpointsProtocol in the provided Connection String. Expecting 'https' or 'http'\");\n            }\n            endpointSuffix = getValueInConnString(connectionString, \"EndpointSuffix\");\n            if (!endpointSuffix) {\n                throw new Error(\"Invalid EndpointSuffix in the provided Connection String\");\n            }\n            blobEndpoint = `${defaultEndpointsProtocol}://${accountName}.blob.${endpointSuffix}`;\n        }\n        if (!accountName) {\n            throw new Error(\"Invalid AccountName in the provided Connection String\");\n        }\n        else if (accountKey.length === 0) {\n            throw new Error(\"Invalid AccountKey in the provided Connection String\");\n        }\n        return {\n            kind: \"AccountConnString\",\n            url: blobEndpoint,\n            accountName,\n            accountKey,\n            proxyUri,\n        };\n    }\n    else {\n        // SAS connection string\n        let accountSas = getValueInConnString(connectionString, \"SharedAccessSignature\");\n        let accountName = getValueInConnString(connectionString, \"AccountName\");\n        // if accountName is empty, try to read it from BlobEndpoint\n        if (!accountName) {\n            accountName = getAccountNameFromUrl(blobEndpoint);\n        }\n        if (!blobEndpoint) {\n            throw new Error(\"Invalid BlobEndpoint in the provided SAS Connection String\");\n        }\n        else if (!accountSas) {\n            throw new Error(\"Invalid SharedAccessSignature in the provided SAS Connection String\");\n        }\n        // client constructors assume accountSas does *not* start with ?\n        if (accountSas.startsWith(\"?\")) {\n            accountSas = accountSas.substring(1);\n        }\n        return { kind: \"SASConnString\", url: blobEndpoint, accountName, accountSas };\n    }\n}\n/**\n * Internal escape method implemented Strategy Two mentioned in escapeURL() description.\n *\n * @param text -\n */\nfunction escape(text) {\n    return encodeURIComponent(text)\n        .replace(/%2F/g, \"/\") // Don't escape for \"/\"\n        .replace(/'/g, \"%27\") // Escape for \"'\"\n        .replace(/\\+/g, \"%20\")\n        .replace(/%25/g, \"%\"); // Revert encoded \"%\"\n}\n/**\n * Append a string to URL path. Will remove duplicated \"/\" in front of the string\n * when URL path ends with a \"/\".\n *\n * @param url - Source URL string\n * @param name - String to be appended to URL\n * @returns An updated URL string\n */\nfunction appendToURLPath(url, name) {\n    const urlParsed = new URL(url);\n    let path = urlParsed.pathname;\n    path = path ? (path.endsWith(\"/\") ? `${path}${name}` : `${path}/${name}`) : name;\n    urlParsed.pathname = path;\n    return urlParsed.toString();\n}\n/**\n * Set URL parameter name and value. If name exists in URL parameters, old value\n * will be replaced by name key. If not provide value, the parameter will be deleted.\n *\n * @param url - Source URL string\n * @param name - Parameter name\n * @param value - Parameter value\n * @returns An updated URL string\n */\nfunction setURLParameter(url, name, value) {\n    const urlParsed = new URL(url);\n    const encodedName = encodeURIComponent(name);\n    const encodedValue = value ? encodeURIComponent(value) : undefined;\n    // mutating searchParams will change the encoding, so we have to do this ourselves\n    const searchString = urlParsed.search === \"\" ? \"?\" : urlParsed.search;\n    const searchPieces = [];\n    for (const pair of searchString.slice(1).split(\"&\")) {\n        if (pair) {\n            const [key] = pair.split(\"=\", 2);\n            if (key !== encodedName) {\n                searchPieces.push(pair);\n            }\n        }\n    }\n    if (encodedValue) {\n        searchPieces.push(`${encodedName}=${encodedValue}`);\n    }\n    urlParsed.search = searchPieces.length ? `?${searchPieces.join(\"&\")}` : \"\";\n    return urlParsed.toString();\n}\n/**\n * Get URL parameter by name.\n *\n * @param url -\n * @param name -\n */\nfunction getURLParameter(url, name) {\n    var _a;\n    const urlParsed = new URL(url);\n    return (_a = urlParsed.searchParams.get(name)) !== null && _a !== void 0 ? _a : undefined;\n}\n/**\n * Set URL host.\n *\n * @param url - Source URL string\n * @param host - New host string\n * @returns An updated URL string\n */\nfunction setURLHost(url, host) {\n    const urlParsed = new URL(url);\n    urlParsed.hostname = host;\n    return urlParsed.toString();\n}\n/**\n * Get URL path from an URL string.\n *\n * @param url - Source URL string\n */\nfunction getURLPath(url) {\n    try {\n        const urlParsed = new URL(url);\n        return urlParsed.pathname;\n    }\n    catch (e) {\n        return undefined;\n    }\n}\n/**\n * Get URL scheme from an URL string.\n *\n * @param url - Source URL string\n */\nfunction getURLScheme(url) {\n    try {\n        const urlParsed = new URL(url);\n        return urlParsed.protocol.endsWith(\":\") ? urlParsed.protocol.slice(0, -1) : urlParsed.protocol;\n    }\n    catch (e) {\n        return undefined;\n    }\n}\n/**\n * Get URL path and query from an URL string.\n *\n * @param url - Source URL string\n */\nfunction getURLPathAndQuery(url) {\n    const urlParsed = new URL(url);\n    const pathString = urlParsed.pathname;\n    if (!pathString) {\n        throw new RangeError(\"Invalid url without valid path.\");\n    }\n    let queryString = urlParsed.search || \"\";\n    queryString = queryString.trim();\n    if (queryString !== \"\") {\n        queryString = queryString.startsWith(\"?\") ? queryString : `?${queryString}`; // Ensure query string start with '?'\n    }\n    return `${pathString}${queryString}`;\n}\n/**\n * Get URL query key value pairs from an URL string.\n *\n * @param url -\n */\nfunction getURLQueries(url) {\n    let queryString = new URL(url).search;\n    if (!queryString) {\n        return {};\n    }\n    queryString = queryString.trim();\n    queryString = queryString.startsWith(\"?\") ? queryString.substring(1) : queryString;\n    let querySubStrings = queryString.split(\"&\");\n    querySubStrings = querySubStrings.filter((value) => {\n        const indexOfEqual = value.indexOf(\"=\");\n        const lastIndexOfEqual = value.lastIndexOf(\"=\");\n        return (indexOfEqual > 0 && indexOfEqual === lastIndexOfEqual && lastIndexOfEqual < value.length - 1);\n    });\n    const queries = {};\n    for (const querySubString of querySubStrings) {\n        const splitResults = querySubString.split(\"=\");\n        const key = splitResults[0];\n        const value = splitResults[1];\n        queries[key] = value;\n    }\n    return queries;\n}\n/**\n * Append a string to URL query.\n *\n * @param url - Source URL string.\n * @param queryParts - String to be appended to the URL query.\n * @returns An updated URL string.\n */\nfunction appendToURLQuery(url, queryParts) {\n    const urlParsed = new URL(url);\n    let query = urlParsed.search;\n    if (query) {\n        query += \"&\" + queryParts;\n    }\n    else {\n        query = queryParts;\n    }\n    urlParsed.search = query;\n    return urlParsed.toString();\n}\n/**\n * Rounds a date off to seconds.\n *\n * @param date -\n * @param withMilliseconds - If true, YYYY-MM-DDThh:mm:ss.fffffffZ will be returned;\n *                                          If false, YYYY-MM-DDThh:mm:ssZ will be returned.\n * @returns Date string in ISO8061 format, with or without 7 milliseconds component\n */\nfunction truncatedISO8061Date(date, withMilliseconds = true) {\n    // Date.toISOString() will return like \"2018-10-29T06:34:36.139Z\"\n    const dateString = date.toISOString();\n    return withMilliseconds\n        ? dateString.substring(0, dateString.length - 1) + \"0000\" + \"Z\"\n        : dateString.substring(0, dateString.length - 5) + \"Z\";\n}\n/**\n * Base64 encode.\n *\n * @param content -\n */\nfunction base64encode$1(content) {\n    return !isNode ? btoa(content) : Buffer.from(content).toString(\"base64\");\n}\n/**\n * Generate a 64 bytes base64 block ID string.\n *\n * @param blockIndex -\n */\nfunction generateBlockID(blockIDPrefix, blockIndex) {\n    // To generate a 64 bytes base64 string, source string should be 48\n    const maxSourceStringLength = 48;\n    // A blob can have a maximum of 100,000 uncommitted blocks at any given time\n    const maxBlockIndexLength = 6;\n    const maxAllowedBlockIDPrefixLength = maxSourceStringLength - maxBlockIndexLength;\n    if (blockIDPrefix.length > maxAllowedBlockIDPrefixLength) {\n        blockIDPrefix = blockIDPrefix.slice(0, maxAllowedBlockIDPrefixLength);\n    }\n    const res = blockIDPrefix +\n        padStart(blockIndex.toString(), maxSourceStringLength - blockIDPrefix.length, \"0\");\n    return base64encode$1(res);\n}\n/**\n * Delay specified time interval.\n *\n * @param timeInMs -\n * @param aborter -\n * @param abortError -\n */\nasync function delay$1(timeInMs, aborter, abortError) {\n    return new Promise((resolve, reject) => {\n        /* eslint-disable-next-line prefer-const */\n        let timeout;\n        const abortHandler = () => {\n            if (timeout !== undefined) {\n                clearTimeout(timeout);\n            }\n            reject(abortError);\n        };\n        const resolveHandler = () => {\n            if (aborter !== undefined) {\n                aborter.removeEventListener(\"abort\", abortHandler);\n            }\n            resolve();\n        };\n        timeout = setTimeout(resolveHandler, timeInMs);\n        if (aborter !== undefined) {\n            aborter.addEventListener(\"abort\", abortHandler);\n        }\n    });\n}\n/**\n * String.prototype.padStart()\n *\n * @param currentString -\n * @param targetLength -\n * @param padString -\n */\nfunction padStart(currentString, targetLength, padString = \" \") {\n    // @ts-expect-error: TS doesn't know this code needs to run downlevel sometimes\n    if (String.prototype.padStart) {\n        return currentString.padStart(targetLength, padString);\n    }\n    padString = padString || \" \";\n    if (currentString.length > targetLength) {\n        return currentString;\n    }\n    else {\n        targetLength = targetLength - currentString.length;\n        if (targetLength > padString.length) {\n            padString += padString.repeat(targetLength / padString.length);\n        }\n        return padString.slice(0, targetLength) + currentString;\n    }\n}\n/**\n * If two strings are equal when compared case insensitive.\n *\n * @param str1 -\n * @param str2 -\n */\nfunction iEqual(str1, str2) {\n    return str1.toLocaleLowerCase() === str2.toLocaleLowerCase();\n}\n/**\n * Extracts account name from the url\n * @param url - url to extract the account name from\n * @returns with the account name\n */\nfunction getAccountNameFromUrl(url) {\n    const parsedUrl = new URL(url);\n    let accountName;\n    try {\n        if (parsedUrl.hostname.split(\".\")[1] === \"blob\") {\n            // `${defaultEndpointsProtocol}://${accountName}.blob.${endpointSuffix}`;\n            accountName = parsedUrl.hostname.split(\".\")[0];\n        }\n        else if (isIpEndpointStyle(parsedUrl)) {\n            // IPv4/IPv6 address hosts... Example - http://192.0.0.10:10001/devstoreaccount1/\n            // Single word domain without a [dot] in the endpoint... Example - http://localhost:10001/devstoreaccount1/\n            // .getPath() -> /devstoreaccount1/\n            accountName = parsedUrl.pathname.split(\"/\")[1];\n        }\n        else {\n            // Custom domain case: \"https://customdomain.com/containername/blob\".\n            accountName = \"\";\n        }\n        return accountName;\n    }\n    catch (error) {\n        throw new Error(\"Unable to extract accountName with provided information.\");\n    }\n}\nfunction isIpEndpointStyle(parsedUrl) {\n    const host = parsedUrl.host;\n    // Case 1: Ipv6, use a broad regex to find out candidates whose host contains two ':'.\n    // Case 2: localhost(:port) or host.docker.internal, use broad regex to match port part.\n    // Case 3: Ipv4, use broad regex which just check if host contains Ipv4.\n    // For valid host please refer to https://man7.org/linux/man-pages/man7/hostname.7.html.\n    return (/^.*:.*:.*$|^(localhost|host.docker.internal)(:[0-9]+)?$|^(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])(\\.(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])){3}(:[0-9]+)?$/.test(host) ||\n        (Boolean(parsedUrl.port) && PathStylePorts.includes(parsedUrl.port)));\n}\n/**\n * Convert Tags to encoded string.\n *\n * @param tags -\n */\nfunction toBlobTagsString(tags) {\n    if (tags === undefined) {\n        return undefined;\n    }\n    const tagPairs = [];\n    for (const key in tags) {\n        if (Object.prototype.hasOwnProperty.call(tags, key)) {\n            const value = tags[key];\n            tagPairs.push(`${encodeURIComponent(key)}=${encodeURIComponent(value)}`);\n        }\n    }\n    return tagPairs.join(\"&\");\n}\n/**\n * Convert Tags type to BlobTags.\n *\n * @param tags -\n */\nfunction toBlobTags(tags) {\n    if (tags === undefined) {\n        return undefined;\n    }\n    const res = {\n        blobTagSet: [],\n    };\n    for (const key in tags) {\n        if (Object.prototype.hasOwnProperty.call(tags, key)) {\n            const value = tags[key];\n            res.blobTagSet.push({\n                key,\n                value,\n            });\n        }\n    }\n    return res;\n}\n/**\n * Covert BlobTags to Tags type.\n *\n * @param tags -\n */\nfunction toTags(tags) {\n    if (tags === undefined) {\n        return undefined;\n    }\n    const res = {};\n    for (const blobTag of tags.blobTagSet) {\n        res[blobTag.key] = blobTag.value;\n    }\n    return res;\n}\n/**\n * Convert BlobQueryTextConfiguration to QuerySerialization type.\n *\n * @param textConfiguration -\n */\nfunction toQuerySerialization(textConfiguration) {\n    if (textConfiguration === undefined) {\n        return undefined;\n    }\n    switch (textConfiguration.kind) {\n        case \"csv\":\n            return {\n                format: {\n                    type: \"delimited\",\n                    delimitedTextConfiguration: {\n                        columnSeparator: textConfiguration.columnSeparator || \",\",\n                        fieldQuote: textConfiguration.fieldQuote || \"\",\n                        recordSeparator: textConfiguration.recordSeparator,\n                        escapeChar: textConfiguration.escapeCharacter || \"\",\n                        headersPresent: textConfiguration.hasHeaders || false,\n                    },\n                },\n            };\n        case \"json\":\n            return {\n                format: {\n                    type: \"json\",\n                    jsonTextConfiguration: {\n                        recordSeparator: textConfiguration.recordSeparator,\n                    },\n                },\n            };\n        case \"arrow\":\n            return {\n                format: {\n                    type: \"arrow\",\n                    arrowConfiguration: {\n                        schema: textConfiguration.schema,\n                    },\n                },\n            };\n        case \"parquet\":\n            return {\n                format: {\n                    type: \"parquet\",\n                },\n            };\n        default:\n            throw Error(\"Invalid BlobQueryTextConfiguration.\");\n    }\n}\nfunction parseObjectReplicationRecord(objectReplicationRecord) {\n    if (!objectReplicationRecord) {\n        return undefined;\n    }\n    if (\"policy-id\" in objectReplicationRecord) {\n        // If the dictionary contains a key with policy id, we are not required to do any parsing since\n        // the policy id should already be stored in the ObjectReplicationDestinationPolicyId.\n        return undefined;\n    }\n    const orProperties = [];\n    for (const key in objectReplicationRecord) {\n        const ids = key.split(\"_\");\n        const policyPrefix = \"or-\";\n        if (ids[0].startsWith(policyPrefix)) {\n            ids[0] = ids[0].substring(policyPrefix.length);\n        }\n        const rule = {\n            ruleId: ids[1],\n            replicationStatus: objectReplicationRecord[key],\n        };\n        const policyIndex = orProperties.findIndex((policy) => policy.policyId === ids[0]);\n        if (policyIndex > -1) {\n            orProperties[policyIndex].rules.push(rule);\n        }\n        else {\n            orProperties.push({\n                policyId: ids[0],\n                rules: [rule],\n            });\n        }\n    }\n    return orProperties;\n}\nfunction httpAuthorizationToString(httpAuthorization) {\n    return httpAuthorization ? httpAuthorization.scheme + \" \" + httpAuthorization.value : undefined;\n}\nfunction BlobNameToString(name) {\n    if (name.encoded) {\n        return decodeURIComponent(name.content);\n    }\n    else {\n        return name.content;\n    }\n}\nfunction ConvertInternalResponseOfListBlobFlat(internalResponse) {\n    return Object.assign(Object.assign({}, internalResponse), { segment: {\n            blobItems: internalResponse.segment.blobItems.map((blobItemInteral) => {\n                const blobItem = Object.assign(Object.assign({}, blobItemInteral), { name: BlobNameToString(blobItemInteral.name) });\n                return blobItem;\n            }),\n        } });\n}\nfunction ConvertInternalResponseOfListBlobHierarchy(internalResponse) {\n    var _a;\n    return Object.assign(Object.assign({}, internalResponse), { segment: {\n            blobPrefixes: (_a = internalResponse.segment.blobPrefixes) === null || _a === void 0 ? void 0 : _a.map((blobPrefixInternal) => {\n                const blobPrefix = Object.assign(Object.assign({}, blobPrefixInternal), { name: BlobNameToString(blobPrefixInternal.name) });\n                return blobPrefix;\n            }),\n            blobItems: internalResponse.segment.blobItems.map((blobItemInteral) => {\n                const blobItem = Object.assign(Object.assign({}, blobItemInteral), { name: BlobNameToString(blobItemInteral.name) });\n                return blobItem;\n            }),\n        } });\n}\nfunction* ExtractPageRangeInfoItems(getPageRangesSegment) {\n    let pageRange = [];\n    let clearRange = [];\n    if (getPageRangesSegment.pageRange)\n        pageRange = getPageRangesSegment.pageRange;\n    if (getPageRangesSegment.clearRange)\n        clearRange = getPageRangesSegment.clearRange;\n    let pageRangeIndex = 0;\n    let clearRangeIndex = 0;\n    while (pageRangeIndex < pageRange.length && clearRangeIndex < clearRange.length) {\n        if (pageRange[pageRangeIndex].start < clearRange[clearRangeIndex].start) {\n            yield {\n                start: pageRange[pageRangeIndex].start,\n                end: pageRange[pageRangeIndex].end,\n                isClear: false,\n            };\n            ++pageRangeIndex;\n        }\n        else {\n            yield {\n                start: clearRange[clearRangeIndex].start,\n                end: clearRange[clearRangeIndex].end,\n                isClear: true,\n            };\n            ++clearRangeIndex;\n        }\n    }\n    for (; pageRangeIndex < pageRange.length; ++pageRangeIndex) {\n        yield {\n            start: pageRange[pageRangeIndex].start,\n            end: pageRange[pageRangeIndex].end,\n            isClear: false,\n        };\n    }\n    for (; clearRangeIndex < clearRange.length; ++clearRangeIndex) {\n        yield {\n            start: clearRange[clearRangeIndex].start,\n            end: clearRange[clearRangeIndex].end,\n            isClear: true,\n        };\n    }\n}\n/**\n * Escape the blobName but keep path separator ('/').\n */\nfunction EscapePath(blobName) {\n    const split = blobName.split(\"/\");\n    for (let i = 0; i < split.length; i++) {\n        split[i] = encodeURIComponent(split[i]);\n    }\n    return split.join(\"/\");\n}\n/**\n * A typesafe helper for ensuring that a given response object has\n * the original _response attached.\n * @param response - A response object from calling a client operation\n * @returns The same object, but with known _response property\n */\nfunction assertResponse(response) {\n    if (`_response` in response) {\n        return response;\n    }\n    throw new TypeError(`Unexpected response object ${response}`);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * RetryPolicy types.\n */\nvar StorageRetryPolicyType$1;\n(function (StorageRetryPolicyType) {\n    /**\n     * Exponential retry. Retry time delay grows exponentially.\n     */\n    StorageRetryPolicyType[StorageRetryPolicyType[\"EXPONENTIAL\"] = 0] = \"EXPONENTIAL\";\n    /**\n     * Linear retry. Retry time delay grows linearly.\n     */\n    StorageRetryPolicyType[StorageRetryPolicyType[\"FIXED\"] = 1] = \"FIXED\";\n})(StorageRetryPolicyType$1 || (StorageRetryPolicyType$1 = {}));\n// Default values of StorageRetryOptions\nconst DEFAULT_RETRY_OPTIONS$1 = {\n    maxRetryDelayInMs: 120 * 1000,\n    maxTries: 4,\n    retryDelayInMs: 4 * 1000,\n    retryPolicyType: StorageRetryPolicyType$1.EXPONENTIAL,\n    secondaryHost: \"\",\n    tryTimeoutInMs: undefined, // Use server side default timeout strategy\n};\nconst RETRY_ABORT_ERROR$1 = new AbortError$2(\"The operation was aborted.\");\n/**\n * Retry policy with exponential retry and linear retry implemented.\n */\nclass StorageRetryPolicy extends BaseRequestPolicy {\n    /**\n     * Creates an instance of RetryPolicy.\n     *\n     * @param nextPolicy -\n     * @param options -\n     * @param retryOptions -\n     */\n    constructor(nextPolicy, options, retryOptions = DEFAULT_RETRY_OPTIONS$1) {\n        super(nextPolicy, options);\n        // Initialize retry options\n        this.retryOptions = {\n            retryPolicyType: retryOptions.retryPolicyType\n                ? retryOptions.retryPolicyType\n                : DEFAULT_RETRY_OPTIONS$1.retryPolicyType,\n            maxTries: retryOptions.maxTries && retryOptions.maxTries >= 1\n                ? Math.floor(retryOptions.maxTries)\n                : DEFAULT_RETRY_OPTIONS$1.maxTries,\n            tryTimeoutInMs: retryOptions.tryTimeoutInMs && retryOptions.tryTimeoutInMs >= 0\n                ? retryOptions.tryTimeoutInMs\n                : DEFAULT_RETRY_OPTIONS$1.tryTimeoutInMs,\n            retryDelayInMs: retryOptions.retryDelayInMs && retryOptions.retryDelayInMs >= 0\n                ? Math.min(retryOptions.retryDelayInMs, retryOptions.maxRetryDelayInMs\n                    ? retryOptions.maxRetryDelayInMs\n                    : DEFAULT_RETRY_OPTIONS$1.maxRetryDelayInMs)\n                : DEFAULT_RETRY_OPTIONS$1.retryDelayInMs,\n            maxRetryDelayInMs: retryOptions.maxRetryDelayInMs && retryOptions.maxRetryDelayInMs >= 0\n                ? retryOptions.maxRetryDelayInMs\n                : DEFAULT_RETRY_OPTIONS$1.maxRetryDelayInMs,\n            secondaryHost: retryOptions.secondaryHost\n                ? retryOptions.secondaryHost\n                : DEFAULT_RETRY_OPTIONS$1.secondaryHost,\n        };\n    }\n    /**\n     * Sends request.\n     *\n     * @param request -\n     */\n    async sendRequest(request) {\n        return this.attemptSendRequest(request, false, 1);\n    }\n    /**\n     * Decide and perform next retry. Won't mutate request parameter.\n     *\n     * @param request -\n     * @param secondaryHas404 -  If attempt was against the secondary & it returned a StatusNotFound (404), then\n     *                                   the resource was not found. This may be due to replication delay. So, in this\n     *                                   case, we'll never try the secondary again for this operation.\n     * @param attempt -           How many retries has been attempted to performed, starting from 1, which includes\n     *                                   the attempt will be performed by this method call.\n     */\n    async attemptSendRequest(request, secondaryHas404, attempt) {\n        const newRequest = request.clone();\n        const isPrimaryRetry = secondaryHas404 ||\n            !this.retryOptions.secondaryHost ||\n            !(request.method === \"GET\" || request.method === \"HEAD\" || request.method === \"OPTIONS\") ||\n            attempt % 2 === 1;\n        if (!isPrimaryRetry) {\n            newRequest.url = setURLHost(newRequest.url, this.retryOptions.secondaryHost);\n        }\n        // Set the server-side timeout query parameter \"timeout=[seconds]\"\n        if (this.retryOptions.tryTimeoutInMs) {\n            newRequest.url = setURLParameter(newRequest.url, URLConstants.Parameters.TIMEOUT, Math.floor(this.retryOptions.tryTimeoutInMs / 1000).toString());\n        }\n        let response;\n        try {\n            logger.info(`RetryPolicy: =====> Try=${attempt} ${isPrimaryRetry ? \"Primary\" : \"Secondary\"}`);\n            response = await this._nextPolicy.sendRequest(newRequest);\n            if (!this.shouldRetry(isPrimaryRetry, attempt, response)) {\n                return response;\n            }\n            secondaryHas404 = secondaryHas404 || (!isPrimaryRetry && response.status === 404);\n        }\n        catch (err) {\n            logger.error(`RetryPolicy: Caught error, message: ${err.message}, code: ${err.code}`);\n            if (!this.shouldRetry(isPrimaryRetry, attempt, response, err)) {\n                throw err;\n            }\n        }\n        await this.delay(isPrimaryRetry, attempt, request.abortSignal);\n        return this.attemptSendRequest(request, secondaryHas404, ++attempt);\n    }\n    /**\n     * Decide whether to retry according to last HTTP response and retry counters.\n     *\n     * @param isPrimaryRetry -\n     * @param attempt -\n     * @param response -\n     * @param err -\n     */\n    shouldRetry(isPrimaryRetry, attempt, response, err) {\n        if (attempt >= this.retryOptions.maxTries) {\n            logger.info(`RetryPolicy: Attempt(s) ${attempt} >= maxTries ${this.retryOptions\n                .maxTries}, no further try.`);\n            return false;\n        }\n        // Handle network failures, you may need to customize the list when you implement\n        // your own http client\n        const retriableErrors = [\n            \"ETIMEDOUT\",\n            \"ESOCKETTIMEDOUT\",\n            \"ECONNREFUSED\",\n            \"ECONNRESET\",\n            \"ENOENT\",\n            \"ENOTFOUND\",\n            \"TIMEOUT\",\n            \"EPIPE\",\n            \"REQUEST_SEND_ERROR\", // For default xhr based http client provided in ms-rest-js\n        ];\n        if (err) {\n            for (const retriableError of retriableErrors) {\n                if (err.name.toUpperCase().includes(retriableError) ||\n                    err.message.toUpperCase().includes(retriableError) ||\n                    (err.code && err.code.toString().toUpperCase() === retriableError)) {\n                    logger.info(`RetryPolicy: Network error ${retriableError} found, will retry.`);\n                    return true;\n                }\n            }\n        }\n        // If attempt was against the secondary & it returned a StatusNotFound (404), then\n        // the resource was not found. This may be due to replication delay. So, in this\n        // case, we'll never try the secondary again for this operation.\n        if (response || err) {\n            const statusCode = response ? response.status : err ? err.statusCode : 0;\n            if (!isPrimaryRetry && statusCode === 404) {\n                logger.info(`RetryPolicy: Secondary access with 404, will retry.`);\n                return true;\n            }\n            // Server internal error or server timeout\n            if (statusCode === 503 || statusCode === 500) {\n                logger.info(`RetryPolicy: Will retry for status code ${statusCode}.`);\n                return true;\n            }\n        }\n        // [Copy source error code] Feature is pending on service side, skip retry on copy source error for now.\n        // if (response) {\n        //   // Retry select Copy Source Error Codes.\n        //   if (response?.status >= 400) {\n        //     const copySourceError = response.headers.get(HeaderConstants.X_MS_CopySourceErrorCode);\n        //     if (copySourceError !== undefined) {\n        //       switch (copySourceError) {\n        //         case \"InternalError\":\n        //         case \"OperationTimedOut\":\n        //         case \"ServerBusy\":\n        //           return true;\n        //       }\n        //     }\n        //   }\n        // }\n        if ((err === null || err === void 0 ? void 0 : err.code) === \"PARSE_ERROR\" && (err === null || err === void 0 ? void 0 : err.message.startsWith(`Error \"Error: Unclosed root tag`))) {\n            logger.info(\"RetryPolicy: Incomplete XML response likely due to service timeout, will retry.\");\n            return true;\n        }\n        return false;\n    }\n    /**\n     * Delay a calculated time between retries.\n     *\n     * @param isPrimaryRetry -\n     * @param attempt -\n     * @param abortSignal -\n     */\n    async delay(isPrimaryRetry, attempt, abortSignal) {\n        let delayTimeInMs = 0;\n        if (isPrimaryRetry) {\n            switch (this.retryOptions.retryPolicyType) {\n                case StorageRetryPolicyType$1.EXPONENTIAL:\n                    delayTimeInMs = Math.min((Math.pow(2, attempt - 1) - 1) * this.retryOptions.retryDelayInMs, this.retryOptions.maxRetryDelayInMs);\n                    break;\n                case StorageRetryPolicyType$1.FIXED:\n                    delayTimeInMs = this.retryOptions.retryDelayInMs;\n                    break;\n            }\n        }\n        else {\n            delayTimeInMs = Math.random() * 1000;\n        }\n        logger.info(`RetryPolicy: Delay for ${delayTimeInMs}ms`);\n        return delay$1(delayTimeInMs, abortSignal, RETRY_ABORT_ERROR$1);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * StorageRetryPolicyFactory is a factory class helping generating {@link StorageRetryPolicy} objects.\n */\nclass StorageRetryPolicyFactory {\n    /**\n     * Creates an instance of StorageRetryPolicyFactory.\n     * @param retryOptions -\n     */\n    constructor(retryOptions) {\n        this.retryOptions = retryOptions;\n    }\n    /**\n     * Creates a StorageRetryPolicy object.\n     *\n     * @param nextPolicy -\n     * @param options -\n     */\n    create(nextPolicy, options) {\n        return new StorageRetryPolicy(nextPolicy, options, this.retryOptions);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Credential policy used to sign HTTP(S) requests before sending. This is an\n * abstract class.\n */\nclass CredentialPolicy extends BaseRequestPolicy {\n    /**\n     * Sends out request.\n     *\n     * @param request -\n     */\n    sendRequest(request) {\n        return this._nextPolicy.sendRequest(this.signRequest(request));\n    }\n    /**\n     * Child classes must implement this method with request signing. This method\n     * will be executed in {@link sendRequest}.\n     *\n     * @param request -\n     */\n    signRequest(request) {\n        // Child classes must override this method with request signing. This method\n        // will be executed in sendRequest().\n        return request;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/*\n * We need to imitate .Net culture-aware sorting, which is used in storage service.\n * Below tables contain sort-keys for en-US culture.\n */\nconst table_lv0 = new Uint32Array([\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71c, 0x0, 0x71f, 0x721,\n    0x723, 0x725, 0x0, 0x0, 0x0, 0x72d, 0x803, 0x0, 0x0, 0x733, 0x0, 0xd03, 0xd1a, 0xd1c, 0xd1e,\n    0xd20, 0xd22, 0xd24, 0xd26, 0xd28, 0xd2a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe02, 0xe09, 0xe0a,\n    0xe1a, 0xe21, 0xe23, 0xe25, 0xe2c, 0xe32, 0xe35, 0xe36, 0xe48, 0xe51, 0xe70, 0xe7c, 0xe7e, 0xe89,\n    0xe8a, 0xe91, 0xe99, 0xe9f, 0xea2, 0xea4, 0xea6, 0xea7, 0xea9, 0x0, 0x0, 0x0, 0x743, 0x744, 0x748,\n    0xe02, 0xe09, 0xe0a, 0xe1a, 0xe21, 0xe23, 0xe25, 0xe2c, 0xe32, 0xe35, 0xe36, 0xe48, 0xe51, 0xe70,\n    0xe7c, 0xe7e, 0xe89, 0xe8a, 0xe91, 0xe99, 0xe9f, 0xea2, 0xea4, 0xea6, 0xea7, 0xea9, 0x0, 0x74c,\n    0x0, 0x750, 0x0,\n]);\nconst table_lv2 = new Uint32Array([\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12,\n    0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12,\n    0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n]);\nconst table_lv4 = new Uint32Array([\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x8012, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8212, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,\n]);\nfunction compareHeader(lhs, rhs) {\n    if (isLessThan(lhs, rhs))\n        return -1;\n    return 1;\n}\nfunction isLessThan(lhs, rhs) {\n    const tables = [table_lv0, table_lv2, table_lv4];\n    let curr_level = 0;\n    let i = 0;\n    let j = 0;\n    while (curr_level < tables.length) {\n        if (curr_level === tables.length - 1 && i !== j) {\n            return i > j;\n        }\n        const weight1 = i < lhs.length ? tables[curr_level][lhs[i].charCodeAt(0)] : 0x1;\n        const weight2 = j < rhs.length ? tables[curr_level][rhs[j].charCodeAt(0)] : 0x1;\n        if (weight1 === 0x1 && weight2 === 0x1) {\n            i = 0;\n            j = 0;\n            ++curr_level;\n        }\n        else if (weight1 === weight2) {\n            ++i;\n            ++j;\n        }\n        else if (weight1 === 0) {\n            ++i;\n        }\n        else if (weight2 === 0) {\n            ++j;\n        }\n        else {\n            return weight1 < weight2;\n        }\n    }\n    return false;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * StorageSharedKeyCredentialPolicy is a policy used to sign HTTP request with a shared key.\n */\nclass StorageSharedKeyCredentialPolicy extends CredentialPolicy {\n    /**\n     * Creates an instance of StorageSharedKeyCredentialPolicy.\n     * @param nextPolicy -\n     * @param options -\n     * @param factory -\n     */\n    constructor(nextPolicy, options, factory) {\n        super(nextPolicy, options);\n        this.factory = factory;\n    }\n    /**\n     * Signs request.\n     *\n     * @param request -\n     */\n    signRequest(request) {\n        request.headers.set(HeaderConstants.X_MS_DATE, new Date().toUTCString());\n        if (request.body &&\n            (typeof request.body === \"string\" || request.body !== undefined) &&\n            request.body.length > 0) {\n            request.headers.set(HeaderConstants.CONTENT_LENGTH, Buffer.byteLength(request.body));\n        }\n        const stringToSign = [\n            request.method.toUpperCase(),\n            this.getHeaderValueToSign(request, HeaderConstants.CONTENT_LANGUAGE),\n            this.getHeaderValueToSign(request, HeaderConstants.CONTENT_ENCODING),\n            this.getHeaderValueToSign(request, HeaderConstants.CONTENT_LENGTH),\n            this.getHeaderValueToSign(request, HeaderConstants.CONTENT_MD5),\n            this.getHeaderValueToSign(request, HeaderConstants.CONTENT_TYPE),\n            this.getHeaderValueToSign(request, HeaderConstants.DATE),\n            this.getHeaderValueToSign(request, HeaderConstants.IF_MODIFIED_SINCE),\n            this.getHeaderValueToSign(request, HeaderConstants.IF_MATCH),\n            this.getHeaderValueToSign(request, HeaderConstants.IF_NONE_MATCH),\n            this.getHeaderValueToSign(request, HeaderConstants.IF_UNMODIFIED_SINCE),\n            this.getHeaderValueToSign(request, HeaderConstants.RANGE),\n        ].join(\"\\n\") +\n            \"\\n\" +\n            this.getCanonicalizedHeadersString(request) +\n            this.getCanonicalizedResourceString(request);\n        const signature = this.factory.computeHMACSHA256(stringToSign);\n        request.headers.set(HeaderConstants.AUTHORIZATION, `SharedKey ${this.factory.accountName}:${signature}`);\n        // console.log(`[URL]:${request.url}`);\n        // console.log(`[HEADERS]:${request.headers.toString()}`);\n        // console.log(`[STRING TO SIGN]:${JSON.stringify(stringToSign)}`);\n        // console.log(`[KEY]: ${request.headers.get(HeaderConstants.AUTHORIZATION)}`);\n        return request;\n    }\n    /**\n     * Retrieve header value according to shared key sign rules.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/authenticate-with-shared-key\n     *\n     * @param request -\n     * @param headerName -\n     */\n    getHeaderValueToSign(request, headerName) {\n        const value = request.headers.get(headerName);\n        if (!value) {\n            return \"\";\n        }\n        // When using version 2015-02-21 or later, if Content-Length is zero, then\n        // set the Content-Length part of the StringToSign to an empty string.\n        // https://learn.microsoft.com/en-us/rest/api/storageservices/authenticate-with-shared-key\n        if (headerName === HeaderConstants.CONTENT_LENGTH && value === \"0\") {\n            return \"\";\n        }\n        return value;\n    }\n    /**\n     * To construct the CanonicalizedHeaders portion of the signature string, follow these steps:\n     * 1. Retrieve all headers for the resource that begin with x-ms-, including the x-ms-date header.\n     * 2. Convert each HTTP header name to lowercase.\n     * 3. Sort the headers lexicographically by header name, in ascending order.\n     *    Each header may appear only once in the string.\n     * 4. Replace any linear whitespace in the header value with a single space.\n     * 5. Trim any whitespace around the colon in the header.\n     * 6. Finally, append a new-line character to each canonicalized header in the resulting list.\n     *    Construct the CanonicalizedHeaders string by concatenating all headers in this list into a single string.\n     *\n     * @param request -\n     */\n    getCanonicalizedHeadersString(request) {\n        let headersArray = request.headers.headersArray().filter((value) => {\n            return value.name.toLowerCase().startsWith(HeaderConstants.PREFIX_FOR_STORAGE);\n        });\n        headersArray.sort((a, b) => {\n            return compareHeader(a.name.toLowerCase(), b.name.toLowerCase());\n        });\n        // Remove duplicate headers\n        headersArray = headersArray.filter((value, index, array) => {\n            if (index > 0 && value.name.toLowerCase() === array[index - 1].name.toLowerCase()) {\n                return false;\n            }\n            return true;\n        });\n        let canonicalizedHeadersStringToSign = \"\";\n        headersArray.forEach((header) => {\n            canonicalizedHeadersStringToSign += `${header.name\n                .toLowerCase()\n                .trimRight()}:${header.value.trimLeft()}\\n`;\n        });\n        return canonicalizedHeadersStringToSign;\n    }\n    /**\n     * Retrieves the webResource canonicalized resource string.\n     *\n     * @param request -\n     */\n    getCanonicalizedResourceString(request) {\n        const path = getURLPath(request.url) || \"/\";\n        let canonicalizedResourceString = \"\";\n        canonicalizedResourceString += `/${this.factory.accountName}${path}`;\n        const queries = getURLQueries(request.url);\n        const lowercaseQueries = {};\n        if (queries) {\n            const queryKeys = [];\n            for (const key in queries) {\n                if (Object.prototype.hasOwnProperty.call(queries, key)) {\n                    const lowercaseKey = key.toLowerCase();\n                    lowercaseQueries[lowercaseKey] = queries[key];\n                    queryKeys.push(lowercaseKey);\n                }\n            }\n            queryKeys.sort();\n            for (const key of queryKeys) {\n                canonicalizedResourceString += `\\n${key}:${decodeURIComponent(lowercaseQueries[key])}`;\n            }\n        }\n        return canonicalizedResourceString;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Credential is an abstract class for Azure Storage HTTP requests signing. This\n * class will host an credentialPolicyCreator factory which generates CredentialPolicy.\n */\nclass Credential {\n    /**\n     * Creates a RequestPolicy object.\n     *\n     * @param _nextPolicy -\n     * @param _options -\n     */\n    create(_nextPolicy, _options) {\n        throw new Error(\"Method should be implemented in children classes.\");\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * StorageSharedKeyCredential for account key authorization of Azure Storage service.\n */\nclass StorageSharedKeyCredential extends Credential {\n    /**\n     * Creates an instance of StorageSharedKeyCredential.\n     * @param accountName -\n     * @param accountKey -\n     */\n    constructor(accountName, accountKey) {\n        super();\n        this.accountName = accountName;\n        this.accountKey = Buffer.from(accountKey, \"base64\");\n    }\n    /**\n     * Creates a StorageSharedKeyCredentialPolicy object.\n     *\n     * @param nextPolicy -\n     * @param options -\n     */\n    create(nextPolicy, options) {\n        return new StorageSharedKeyCredentialPolicy(nextPolicy, options, this);\n    }\n    /**\n     * Generates a hash signature for an HTTP request or for a SAS.\n     *\n     * @param stringToSign -\n     */\n    computeHMACSHA256(stringToSign) {\n        return createHmac(\"sha256\", this.accountKey).update(stringToSign, \"utf8\").digest(\"base64\");\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * AnonymousCredentialPolicy is used with HTTP(S) requests that read public resources\n * or for use with Shared Access Signatures (SAS).\n */\nclass AnonymousCredentialPolicy extends CredentialPolicy {\n    /**\n     * Creates an instance of AnonymousCredentialPolicy.\n     * @param nextPolicy -\n     * @param options -\n     */\n    // The base class has a protected constructor. Adding a public one to enable constructing of this class.\n    /* eslint-disable-next-line @typescript-eslint/no-useless-constructor*/\n    constructor(nextPolicy, options) {\n        super(nextPolicy, options);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * AnonymousCredential provides a credentialPolicyCreator member used to create\n * AnonymousCredentialPolicy objects. AnonymousCredentialPolicy is used with\n * HTTP(S) requests that read public resources or for use with Shared Access\n * Signatures (SAS).\n */\nclass AnonymousCredential extends Credential {\n    /**\n     * Creates an {@link AnonymousCredentialPolicy} object.\n     *\n     * @param nextPolicy -\n     * @param options -\n     */\n    create(nextPolicy, options) {\n        return new AnonymousCredentialPolicy(nextPolicy, options);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nlet _defaultHttpClient;\nfunction getCachedDefaultHttpClient() {\n    if (!_defaultHttpClient) {\n        _defaultHttpClient = createDefaultHttpClient();\n    }\n    return _defaultHttpClient;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the StorageBrowserPolicy.\n */\nconst storageBrowserPolicyName = \"storageBrowserPolicy\";\n/**\n * storageBrowserPolicy is a policy used to prevent browsers from caching requests\n * and to remove cookies and explicit content-length headers.\n */\nfunction storageBrowserPolicy() {\n    return {\n        name: storageBrowserPolicyName,\n        async sendRequest(request, next) {\n            if (isNode) {\n                return next(request);\n            }\n            if (request.method === \"GET\" || request.method === \"HEAD\") {\n                request.url = setURLParameter(request.url, URLConstants.Parameters.FORCE_BROWSER_NO_CACHE, new Date().getTime().toString());\n            }\n            request.headers.delete(HeaderConstants.COOKIE);\n            // According to XHR standards, content-length should be fully controlled by browsers\n            request.headers.delete(HeaderConstants.CONTENT_LENGTH);\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Name of the {@link storageRetryPolicy}\n */\nconst storageRetryPolicyName = \"storageRetryPolicy\";\n/**\n * RetryPolicy types.\n */\nvar StorageRetryPolicyType;\n(function (StorageRetryPolicyType) {\n    /**\n     * Exponential retry. Retry time delay grows exponentially.\n     */\n    StorageRetryPolicyType[StorageRetryPolicyType[\"EXPONENTIAL\"] = 0] = \"EXPONENTIAL\";\n    /**\n     * Linear retry. Retry time delay grows linearly.\n     */\n    StorageRetryPolicyType[StorageRetryPolicyType[\"FIXED\"] = 1] = \"FIXED\";\n})(StorageRetryPolicyType || (StorageRetryPolicyType = {}));\n// Default values of StorageRetryOptions\nconst DEFAULT_RETRY_OPTIONS = {\n    maxRetryDelayInMs: 120 * 1000,\n    maxTries: 4,\n    retryDelayInMs: 4 * 1000,\n    retryPolicyType: StorageRetryPolicyType.EXPONENTIAL,\n    secondaryHost: \"\",\n    tryTimeoutInMs: undefined, // Use server side default timeout strategy\n};\nconst retriableErrors = [\n    \"ETIMEDOUT\",\n    \"ESOCKETTIMEDOUT\",\n    \"ECONNREFUSED\",\n    \"ECONNRESET\",\n    \"ENOENT\",\n    \"ENOTFOUND\",\n    \"TIMEOUT\",\n    \"EPIPE\",\n    \"REQUEST_SEND_ERROR\",\n];\nconst RETRY_ABORT_ERROR = new AbortError$2(\"The operation was aborted.\");\n/**\n * Retry policy with exponential retry and linear retry implemented.\n */\nfunction storageRetryPolicy(options = {}) {\n    var _a, _b, _c, _d, _e, _f;\n    const retryPolicyType = (_a = options.retryPolicyType) !== null && _a !== void 0 ? _a : DEFAULT_RETRY_OPTIONS.retryPolicyType;\n    const maxTries = (_b = options.maxTries) !== null && _b !== void 0 ? _b : DEFAULT_RETRY_OPTIONS.maxTries;\n    const retryDelayInMs = (_c = options.retryDelayInMs) !== null && _c !== void 0 ? _c : DEFAULT_RETRY_OPTIONS.retryDelayInMs;\n    const maxRetryDelayInMs = (_d = options.maxRetryDelayInMs) !== null && _d !== void 0 ? _d : DEFAULT_RETRY_OPTIONS.maxRetryDelayInMs;\n    const secondaryHost = (_e = options.secondaryHost) !== null && _e !== void 0 ? _e : DEFAULT_RETRY_OPTIONS.secondaryHost;\n    const tryTimeoutInMs = (_f = options.tryTimeoutInMs) !== null && _f !== void 0 ? _f : DEFAULT_RETRY_OPTIONS.tryTimeoutInMs;\n    function shouldRetry({ isPrimaryRetry, attempt, response, error, }) {\n        var _a, _b;\n        if (attempt >= maxTries) {\n            logger.info(`RetryPolicy: Attempt(s) ${attempt} >= maxTries ${maxTries}, no further try.`);\n            return false;\n        }\n        if (error) {\n            for (const retriableError of retriableErrors) {\n                if (error.name.toUpperCase().includes(retriableError) ||\n                    error.message.toUpperCase().includes(retriableError) ||\n                    (error.code && error.code.toString().toUpperCase() === retriableError)) {\n                    logger.info(`RetryPolicy: Network error ${retriableError} found, will retry.`);\n                    return true;\n                }\n            }\n            if ((error === null || error === void 0 ? void 0 : error.code) === \"PARSE_ERROR\" &&\n                (error === null || error === void 0 ? void 0 : error.message.startsWith(`Error \"Error: Unclosed root tag`))) {\n                logger.info(\"RetryPolicy: Incomplete XML response likely due to service timeout, will retry.\");\n                return true;\n            }\n        }\n        // If attempt was against the secondary & it returned a StatusNotFound (404), then\n        // the resource was not found. This may be due to replication delay. So, in this\n        // case, we'll never try the secondary again for this operation.\n        if (response || error) {\n            const statusCode = (_b = (_a = response === null || response === void 0 ? void 0 : response.status) !== null && _a !== void 0 ? _a : error === null || error === void 0 ? void 0 : error.statusCode) !== null && _b !== void 0 ? _b : 0;\n            if (!isPrimaryRetry && statusCode === 404) {\n                logger.info(`RetryPolicy: Secondary access with 404, will retry.`);\n                return true;\n            }\n            // Server internal error or server timeout\n            if (statusCode === 503 || statusCode === 500) {\n                logger.info(`RetryPolicy: Will retry for status code ${statusCode}.`);\n                return true;\n            }\n        }\n        // [Copy source error code] Feature is pending on service side, skip retry on copy source error for now.\n        // if (response) {\n        //   // Retry select Copy Source Error Codes.\n        //   if (response?.status >= 400) {\n        //     const copySourceError = response.headers.get(HeaderConstants.X_MS_CopySourceErrorCode);\n        //     if (copySourceError !== undefined) {\n        //       switch (copySourceError) {\n        //         case \"InternalError\":\n        //         case \"OperationTimedOut\":\n        //         case \"ServerBusy\":\n        //           return true;\n        //       }\n        //     }\n        //   }\n        // }\n        return false;\n    }\n    function calculateDelay(isPrimaryRetry, attempt) {\n        let delayTimeInMs = 0;\n        if (isPrimaryRetry) {\n            switch (retryPolicyType) {\n                case StorageRetryPolicyType.EXPONENTIAL:\n                    delayTimeInMs = Math.min((Math.pow(2, attempt - 1) - 1) * retryDelayInMs, maxRetryDelayInMs);\n                    break;\n                case StorageRetryPolicyType.FIXED:\n                    delayTimeInMs = retryDelayInMs;\n                    break;\n            }\n        }\n        else {\n            delayTimeInMs = Math.random() * 1000;\n        }\n        logger.info(`RetryPolicy: Delay for ${delayTimeInMs}ms`);\n        return delayTimeInMs;\n    }\n    return {\n        name: storageRetryPolicyName,\n        async sendRequest(request, next) {\n            // Set the server-side timeout query parameter \"timeout=[seconds]\"\n            if (tryTimeoutInMs) {\n                request.url = setURLParameter(request.url, URLConstants.Parameters.TIMEOUT, String(Math.floor(tryTimeoutInMs / 1000)));\n            }\n            const primaryUrl = request.url;\n            const secondaryUrl = secondaryHost ? setURLHost(request.url, secondaryHost) : undefined;\n            let secondaryHas404 = false;\n            let attempt = 1;\n            let retryAgain = true;\n            let response;\n            let error;\n            while (retryAgain) {\n                const isPrimaryRetry = secondaryHas404 ||\n                    !secondaryUrl ||\n                    ![\"GET\", \"HEAD\", \"OPTIONS\"].includes(request.method) ||\n                    attempt % 2 === 1;\n                request.url = isPrimaryRetry ? primaryUrl : secondaryUrl;\n                response = undefined;\n                error = undefined;\n                try {\n                    logger.info(`RetryPolicy: =====> Try=${attempt} ${isPrimaryRetry ? \"Primary\" : \"Secondary\"}`);\n                    response = await next(request);\n                    secondaryHas404 = secondaryHas404 || (!isPrimaryRetry && response.status === 404);\n                }\n                catch (e) {\n                    if (isRestError(e)) {\n                        logger.error(`RetryPolicy: Caught error, message: ${e.message}, code: ${e.code}`);\n                        error = e;\n                    }\n                    else {\n                        logger.error(`RetryPolicy: Caught error, message: ${getErrorMessage(e)}`);\n                        throw e;\n                    }\n                }\n                retryAgain = shouldRetry({ isPrimaryRetry, attempt, response, error });\n                if (retryAgain) {\n                    await delay$1(calculateDelay(isPrimaryRetry, attempt), request.abortSignal, RETRY_ABORT_ERROR);\n                }\n                attempt++;\n            }\n            if (response) {\n                return response;\n            }\n            throw error !== null && error !== void 0 ? error : new RestError(\"RetryPolicy failed without known error.\");\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the storageSharedKeyCredentialPolicy.\n */\nconst storageSharedKeyCredentialPolicyName = \"storageSharedKeyCredentialPolicy\";\n/**\n * storageSharedKeyCredentialPolicy handles signing requests using storage account keys.\n */\nfunction storageSharedKeyCredentialPolicy(options) {\n    function signRequest(request) {\n        request.headers.set(HeaderConstants.X_MS_DATE, new Date().toUTCString());\n        if (request.body &&\n            (typeof request.body === \"string\" || Buffer.isBuffer(request.body)) &&\n            request.body.length > 0) {\n            request.headers.set(HeaderConstants.CONTENT_LENGTH, Buffer.byteLength(request.body));\n        }\n        const stringToSign = [\n            request.method.toUpperCase(),\n            getHeaderValueToSign(request, HeaderConstants.CONTENT_LANGUAGE),\n            getHeaderValueToSign(request, HeaderConstants.CONTENT_ENCODING),\n            getHeaderValueToSign(request, HeaderConstants.CONTENT_LENGTH),\n            getHeaderValueToSign(request, HeaderConstants.CONTENT_MD5),\n            getHeaderValueToSign(request, HeaderConstants.CONTENT_TYPE),\n            getHeaderValueToSign(request, HeaderConstants.DATE),\n            getHeaderValueToSign(request, HeaderConstants.IF_MODIFIED_SINCE),\n            getHeaderValueToSign(request, HeaderConstants.IF_MATCH),\n            getHeaderValueToSign(request, HeaderConstants.IF_NONE_MATCH),\n            getHeaderValueToSign(request, HeaderConstants.IF_UNMODIFIED_SINCE),\n            getHeaderValueToSign(request, HeaderConstants.RANGE),\n        ].join(\"\\n\") +\n            \"\\n\" +\n            getCanonicalizedHeadersString(request) +\n            getCanonicalizedResourceString(request);\n        const signature = createHmac(\"sha256\", options.accountKey)\n            .update(stringToSign, \"utf8\")\n            .digest(\"base64\");\n        request.headers.set(HeaderConstants.AUTHORIZATION, `SharedKey ${options.accountName}:${signature}`);\n        // console.log(`[URL]:${request.url}`);\n        // console.log(`[HEADERS]:${request.headers.toString()}`);\n        // console.log(`[STRING TO SIGN]:${JSON.stringify(stringToSign)}`);\n        // console.log(`[KEY]: ${request.headers.get(HeaderConstants.AUTHORIZATION)}`);\n    }\n    /**\n     * Retrieve header value according to shared key sign rules.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/authenticate-with-shared-key\n     */\n    function getHeaderValueToSign(request, headerName) {\n        const value = request.headers.get(headerName);\n        if (!value) {\n            return \"\";\n        }\n        // When using version 2015-02-21 or later, if Content-Length is zero, then\n        // set the Content-Length part of the StringToSign to an empty string.\n        // https://learn.microsoft.com/en-us/rest/api/storageservices/authenticate-with-shared-key\n        if (headerName === HeaderConstants.CONTENT_LENGTH && value === \"0\") {\n            return \"\";\n        }\n        return value;\n    }\n    /**\n     * To construct the CanonicalizedHeaders portion of the signature string, follow these steps:\n     * 1. Retrieve all headers for the resource that begin with x-ms-, including the x-ms-date header.\n     * 2. Convert each HTTP header name to lowercase.\n     * 3. Sort the headers lexicographically by header name, in ascending order.\n     *    Each header may appear only once in the string.\n     * 4. Replace any linear whitespace in the header value with a single space.\n     * 5. Trim any whitespace around the colon in the header.\n     * 6. Finally, append a new-line character to each canonicalized header in the resulting list.\n     *    Construct the CanonicalizedHeaders string by concatenating all headers in this list into a single string.\n     *\n     */\n    function getCanonicalizedHeadersString(request) {\n        let headersArray = [];\n        for (const [name, value] of request.headers) {\n            if (name.toLowerCase().startsWith(HeaderConstants.PREFIX_FOR_STORAGE)) {\n                headersArray.push({ name, value });\n            }\n        }\n        headersArray.sort((a, b) => {\n            return compareHeader(a.name.toLowerCase(), b.name.toLowerCase());\n        });\n        // Remove duplicate headers\n        headersArray = headersArray.filter((value, index, array) => {\n            if (index > 0 && value.name.toLowerCase() === array[index - 1].name.toLowerCase()) {\n                return false;\n            }\n            return true;\n        });\n        let canonicalizedHeadersStringToSign = \"\";\n        headersArray.forEach((header) => {\n            canonicalizedHeadersStringToSign += `${header.name\n                .toLowerCase()\n                .trimRight()}:${header.value.trimLeft()}\\n`;\n        });\n        return canonicalizedHeadersStringToSign;\n    }\n    function getCanonicalizedResourceString(request) {\n        const path = getURLPath(request.url) || \"/\";\n        let canonicalizedResourceString = \"\";\n        canonicalizedResourceString += `/${options.accountName}${path}`;\n        const queries = getURLQueries(request.url);\n        const lowercaseQueries = {};\n        if (queries) {\n            const queryKeys = [];\n            for (const key in queries) {\n                if (Object.prototype.hasOwnProperty.call(queries, key)) {\n                    const lowercaseKey = key.toLowerCase();\n                    lowercaseQueries[lowercaseKey] = queries[key];\n                    queryKeys.push(lowercaseKey);\n                }\n            }\n            queryKeys.sort();\n            for (const key of queryKeys) {\n                canonicalizedResourceString += `\\n${key}:${decodeURIComponent(lowercaseQueries[key])}`;\n            }\n        }\n        return canonicalizedResourceString;\n    }\n    return {\n        name: storageSharedKeyCredentialPolicyName,\n        async sendRequest(request, next) {\n            signRequest(request);\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * StorageBrowserPolicy will handle differences between Node.js and browser runtime, including:\n *\n * 1. Browsers cache GET/HEAD requests by adding conditional headers such as 'IF_MODIFIED_SINCE'.\n * StorageBrowserPolicy is a policy used to add a timestamp query to GET/HEAD request URL\n * thus avoid the browser cache.\n *\n * 2. Remove cookie header for security\n *\n * 3. Remove content-length header to avoid browsers warning\n */\nclass StorageBrowserPolicy extends BaseRequestPolicy {\n    /**\n     * Creates an instance of StorageBrowserPolicy.\n     * @param nextPolicy -\n     * @param options -\n     */\n    // The base class has a protected constructor. Adding a public one to enable constructing of this class.\n    /* eslint-disable-next-line @typescript-eslint/no-useless-constructor*/\n    constructor(nextPolicy, options) {\n        super(nextPolicy, options);\n    }\n    /**\n     * Sends out request.\n     *\n     * @param request -\n     */\n    async sendRequest(request) {\n        if (isNode) {\n            return this._nextPolicy.sendRequest(request);\n        }\n        if (request.method.toUpperCase() === \"GET\" || request.method.toUpperCase() === \"HEAD\") {\n            request.url = setURLParameter(request.url, URLConstants.Parameters.FORCE_BROWSER_NO_CACHE, new Date().getTime().toString());\n        }\n        request.headers.remove(HeaderConstants.COOKIE);\n        // According to XHR standards, content-length should be fully controlled by browsers\n        request.headers.remove(HeaderConstants.CONTENT_LENGTH);\n        return this._nextPolicy.sendRequest(request);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * StorageBrowserPolicyFactory is a factory class helping generating StorageBrowserPolicy objects.\n */\nclass StorageBrowserPolicyFactory {\n    /**\n     * Creates a StorageBrowserPolicyFactory object.\n     *\n     * @param nextPolicy -\n     * @param options -\n     */\n    create(nextPolicy, options) {\n        return new StorageBrowserPolicy(nextPolicy, options);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * The programmatic identifier of the storageCorrectContentLengthPolicy.\n */\nconst storageCorrectContentLengthPolicyName = \"StorageCorrectContentLengthPolicy\";\n/**\n * storageCorrectContentLengthPolicy to correctly set Content-Length header with request body length.\n */\nfunction storageCorrectContentLengthPolicy() {\n    function correctContentLength(request) {\n        if (request.body &&\n            (typeof request.body === \"string\" || Buffer.isBuffer(request.body)) &&\n            request.body.length > 0) {\n            request.headers.set(HeaderConstants.CONTENT_LENGTH, Buffer.byteLength(request.body));\n        }\n    }\n    return {\n        name: storageCorrectContentLengthPolicyName,\n        async sendRequest(request, next) {\n            correctContentLength(request);\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A helper to decide if a given argument satisfies the Pipeline contract\n * @param pipeline - An argument that may be a Pipeline\n * @returns true when the argument satisfies the Pipeline contract\n */\nfunction isPipelineLike(pipeline) {\n    if (!pipeline || typeof pipeline !== \"object\") {\n        return false;\n    }\n    const castPipeline = pipeline;\n    return (Array.isArray(castPipeline.factories) &&\n        typeof castPipeline.options === \"object\" &&\n        typeof castPipeline.toServiceClientOptions === \"function\");\n}\n/**\n * A Pipeline class containing HTTP request policies.\n * You can create a default Pipeline by calling {@link newPipeline}.\n * Or you can create a Pipeline with your own policies by the constructor of Pipeline.\n *\n * Refer to {@link newPipeline} and provided policies before implementing your\n * customized Pipeline.\n */\nclass Pipeline {\n    /**\n     * Creates an instance of Pipeline. Customize HTTPClient by implementing IHttpClient interface.\n     *\n     * @param factories -\n     * @param options -\n     */\n    constructor(factories, options = {}) {\n        this.factories = factories;\n        this.options = options;\n    }\n    /**\n     * Transfer Pipeline object to ServiceClientOptions object which is required by\n     * ServiceClient constructor.\n     *\n     * @returns The ServiceClientOptions object from this Pipeline.\n     */\n    toServiceClientOptions() {\n        return {\n            httpClient: this.options.httpClient,\n            requestPolicyFactories: this.factories,\n        };\n    }\n}\n/**\n * Creates a new Pipeline object with Credential provided.\n *\n * @param credential -  Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the `@azure/identity` package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.\n * @param pipelineOptions - Optional. Options.\n * @returns A new Pipeline object.\n */\nfunction newPipeline(credential, pipelineOptions = {}) {\n    if (!credential) {\n        credential = new AnonymousCredential();\n    }\n    const pipeline = new Pipeline([], pipelineOptions);\n    pipeline._credential = credential;\n    return pipeline;\n}\nfunction processDownlevelPipeline(pipeline) {\n    const knownFactoryFunctions = [\n        isAnonymousCredential,\n        isStorageSharedKeyCredential,\n        isCoreHttpBearerTokenFactory,\n        isStorageBrowserPolicyFactory,\n        isStorageRetryPolicyFactory,\n        isStorageTelemetryPolicyFactory,\n        isCoreHttpPolicyFactory,\n    ];\n    if (pipeline.factories.length) {\n        const novelFactories = pipeline.factories.filter((factory) => {\n            return !knownFactoryFunctions.some((knownFactory) => knownFactory(factory));\n        });\n        if (novelFactories.length) {\n            const hasInjector = novelFactories.some((factory) => isInjectorPolicyFactory(factory));\n            // if there are any left over, wrap in a requestPolicyFactoryPolicy\n            return {\n                wrappedPolicies: createRequestPolicyFactoryPolicy(novelFactories),\n                afterRetry: hasInjector,\n            };\n        }\n    }\n    return undefined;\n}\nfunction getCoreClientOptions(pipeline) {\n    var _a;\n    const _b = pipeline.options, { httpClient: v1Client } = _b, restOptions = __rest(_b, [\"httpClient\"]);\n    let httpClient = pipeline._coreHttpClient;\n    if (!httpClient) {\n        httpClient = v1Client ? convertHttpClient(v1Client) : getCachedDefaultHttpClient();\n        pipeline._coreHttpClient = httpClient;\n    }\n    let corePipeline = pipeline._corePipeline;\n    if (!corePipeline) {\n        const packageDetails = `azsdk-js-azure-storage-blob/${SDK_VERSION}`;\n        const userAgentPrefix = restOptions.userAgentOptions && restOptions.userAgentOptions.userAgentPrefix\n            ? `${restOptions.userAgentOptions.userAgentPrefix} ${packageDetails}`\n            : `${packageDetails}`;\n        corePipeline = createClientPipeline(Object.assign(Object.assign({}, restOptions), { loggingOptions: {\n                additionalAllowedHeaderNames: StorageBlobLoggingAllowedHeaderNames,\n                additionalAllowedQueryParameters: StorageBlobLoggingAllowedQueryParameters,\n                logger: logger.info,\n            }, userAgentOptions: {\n                userAgentPrefix,\n            }, serializationOptions: {\n                stringifyXML,\n                serializerOptions: {\n                    xml: {\n                        // Use customized XML char key of \"#\" so we can deserialize metadata\n                        // with \"_\" key\n                        xmlCharKey: \"#\",\n                    },\n                },\n            }, deserializationOptions: {\n                parseXML,\n                serializerOptions: {\n                    xml: {\n                        // Use customized XML char key of \"#\" so we can deserialize metadata\n                        // with \"_\" key\n                        xmlCharKey: \"#\",\n                    },\n                },\n            } }));\n        corePipeline.removePolicy({ phase: \"Retry\" });\n        corePipeline.removePolicy({ name: decompressResponsePolicyName });\n        corePipeline.addPolicy(storageCorrectContentLengthPolicy());\n        corePipeline.addPolicy(storageRetryPolicy(restOptions.retryOptions), { phase: \"Retry\" });\n        corePipeline.addPolicy(storageBrowserPolicy());\n        const downlevelResults = processDownlevelPipeline(pipeline);\n        if (downlevelResults) {\n            corePipeline.addPolicy(downlevelResults.wrappedPolicies, downlevelResults.afterRetry ? { afterPhase: \"Retry\" } : undefined);\n        }\n        const credential = getCredentialFromPipeline(pipeline);\n        if (isTokenCredential(credential)) {\n            corePipeline.addPolicy(bearerTokenAuthenticationPolicy({\n                credential,\n                scopes: (_a = restOptions.audience) !== null && _a !== void 0 ? _a : StorageOAuthScopes,\n                challengeCallbacks: { authorizeRequestOnChallenge: authorizeRequestOnTenantChallenge },\n            }), { phase: \"Sign\" });\n        }\n        else if (credential instanceof StorageSharedKeyCredential) {\n            corePipeline.addPolicy(storageSharedKeyCredentialPolicy({\n                accountName: credential.accountName,\n                accountKey: credential.accountKey,\n            }), { phase: \"Sign\" });\n        }\n        pipeline._corePipeline = corePipeline;\n    }\n    return Object.assign(Object.assign({}, restOptions), { allowInsecureConnection: true, httpClient, pipeline: corePipeline });\n}\nfunction getCredentialFromPipeline(pipeline) {\n    // see if we squirreled one away on the type itself\n    if (pipeline._credential) {\n        return pipeline._credential;\n    }\n    // if it came from another package, loop over the factories and look for one like before\n    let credential = new AnonymousCredential();\n    for (const factory of pipeline.factories) {\n        if (isTokenCredential(factory.credential)) {\n            // Only works if the factory has been attached a \"credential\" property.\n            // We do that in newPipeline() when using TokenCredential.\n            credential = factory.credential;\n        }\n        else if (isStorageSharedKeyCredential(factory)) {\n            return factory;\n        }\n    }\n    return credential;\n}\nfunction isStorageSharedKeyCredential(factory) {\n    if (factory instanceof StorageSharedKeyCredential) {\n        return true;\n    }\n    return factory.constructor.name === \"StorageSharedKeyCredential\";\n}\nfunction isAnonymousCredential(factory) {\n    if (factory instanceof AnonymousCredential) {\n        return true;\n    }\n    return factory.constructor.name === \"AnonymousCredential\";\n}\nfunction isCoreHttpBearerTokenFactory(factory) {\n    return isTokenCredential(factory.credential);\n}\nfunction isStorageBrowserPolicyFactory(factory) {\n    if (factory instanceof StorageBrowserPolicyFactory) {\n        return true;\n    }\n    return factory.constructor.name === \"StorageBrowserPolicyFactory\";\n}\nfunction isStorageRetryPolicyFactory(factory) {\n    if (factory instanceof StorageRetryPolicyFactory) {\n        return true;\n    }\n    return factory.constructor.name === \"StorageRetryPolicyFactory\";\n}\nfunction isStorageTelemetryPolicyFactory(factory) {\n    return factory.constructor.name === \"TelemetryPolicyFactory\";\n}\nfunction isInjectorPolicyFactory(factory) {\n    return factory.constructor.name === \"InjectorPolicyFactory\";\n}\nfunction isCoreHttpPolicyFactory(factory) {\n    const knownPolicies = [\n        \"GenerateClientRequestIdPolicy\",\n        \"TracingPolicy\",\n        \"LogPolicy\",\n        \"ProxyPolicy\",\n        \"DisableResponseDecompressionPolicy\",\n        \"KeepAlivePolicy\",\n        \"DeserializationPolicy\",\n    ];\n    const mockHttpClient = {\n        sendRequest: async (request) => {\n            return {\n                request,\n                headers: request.headers.clone(),\n                status: 500,\n            };\n        },\n    };\n    const mockRequestPolicyOptions = {\n        log(_logLevel, _message) {\n            /* do nothing */\n        },\n        shouldLog(_logLevel) {\n            return false;\n        },\n    };\n    const policyInstance = factory.create(mockHttpClient, mockRequestPolicyOptions);\n    const policyName = policyInstance.constructor.name;\n    // bundlers sometimes add a custom suffix to the class name to make it unique\n    return knownPolicies.some((knownPolicyName) => {\n        return policyName.startsWith(knownPolicyName);\n    });\n}\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\nconst BlobServiceProperties = {\n    serializedName: \"BlobServiceProperties\",\n    xmlName: \"StorageServiceProperties\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobServiceProperties\",\n        modelProperties: {\n            blobAnalyticsLogging: {\n                serializedName: \"Logging\",\n                xmlName: \"Logging\",\n                type: {\n                    name: \"Composite\",\n                    className: \"Logging\",\n                },\n            },\n            hourMetrics: {\n                serializedName: \"HourMetrics\",\n                xmlName: \"HourMetrics\",\n                type: {\n                    name: \"Composite\",\n                    className: \"Metrics\",\n                },\n            },\n            minuteMetrics: {\n                serializedName: \"MinuteMetrics\",\n                xmlName: \"MinuteMetrics\",\n                type: {\n                    name: \"Composite\",\n                    className: \"Metrics\",\n                },\n            },\n            cors: {\n                serializedName: \"Cors\",\n                xmlName: \"Cors\",\n                xmlIsWrapped: true,\n                xmlElementName: \"CorsRule\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"CorsRule\",\n                        },\n                    },\n                },\n            },\n            defaultServiceVersion: {\n                serializedName: \"DefaultServiceVersion\",\n                xmlName: \"DefaultServiceVersion\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            deleteRetentionPolicy: {\n                serializedName: \"DeleteRetentionPolicy\",\n                xmlName: \"DeleteRetentionPolicy\",\n                type: {\n                    name: \"Composite\",\n                    className: \"RetentionPolicy\",\n                },\n            },\n            staticWebsite: {\n                serializedName: \"StaticWebsite\",\n                xmlName: \"StaticWebsite\",\n                type: {\n                    name: \"Composite\",\n                    className: \"StaticWebsite\",\n                },\n            },\n        },\n    },\n};\nconst Logging = {\n    serializedName: \"Logging\",\n    type: {\n        name: \"Composite\",\n        className: \"Logging\",\n        modelProperties: {\n            version: {\n                serializedName: \"Version\",\n                required: true,\n                xmlName: \"Version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            deleteProperty: {\n                serializedName: \"Delete\",\n                required: true,\n                xmlName: \"Delete\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            read: {\n                serializedName: \"Read\",\n                required: true,\n                xmlName: \"Read\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            write: {\n                serializedName: \"Write\",\n                required: true,\n                xmlName: \"Write\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            retentionPolicy: {\n                serializedName: \"RetentionPolicy\",\n                xmlName: \"RetentionPolicy\",\n                type: {\n                    name: \"Composite\",\n                    className: \"RetentionPolicy\",\n                },\n            },\n        },\n    },\n};\nconst RetentionPolicy = {\n    serializedName: \"RetentionPolicy\",\n    type: {\n        name: \"Composite\",\n        className: \"RetentionPolicy\",\n        modelProperties: {\n            enabled: {\n                serializedName: \"Enabled\",\n                required: true,\n                xmlName: \"Enabled\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            days: {\n                constraints: {\n                    InclusiveMinimum: 1,\n                },\n                serializedName: \"Days\",\n                xmlName: \"Days\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n        },\n    },\n};\nconst Metrics = {\n    serializedName: \"Metrics\",\n    type: {\n        name: \"Composite\",\n        className: \"Metrics\",\n        modelProperties: {\n            version: {\n                serializedName: \"Version\",\n                xmlName: \"Version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            enabled: {\n                serializedName: \"Enabled\",\n                required: true,\n                xmlName: \"Enabled\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            includeAPIs: {\n                serializedName: \"IncludeAPIs\",\n                xmlName: \"IncludeAPIs\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            retentionPolicy: {\n                serializedName: \"RetentionPolicy\",\n                xmlName: \"RetentionPolicy\",\n                type: {\n                    name: \"Composite\",\n                    className: \"RetentionPolicy\",\n                },\n            },\n        },\n    },\n};\nconst CorsRule = {\n    serializedName: \"CorsRule\",\n    type: {\n        name: \"Composite\",\n        className: \"CorsRule\",\n        modelProperties: {\n            allowedOrigins: {\n                serializedName: \"AllowedOrigins\",\n                required: true,\n                xmlName: \"AllowedOrigins\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            allowedMethods: {\n                serializedName: \"AllowedMethods\",\n                required: true,\n                xmlName: \"AllowedMethods\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            allowedHeaders: {\n                serializedName: \"AllowedHeaders\",\n                required: true,\n                xmlName: \"AllowedHeaders\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            exposedHeaders: {\n                serializedName: \"ExposedHeaders\",\n                required: true,\n                xmlName: \"ExposedHeaders\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            maxAgeInSeconds: {\n                constraints: {\n                    InclusiveMinimum: 0,\n                },\n                serializedName: \"MaxAgeInSeconds\",\n                required: true,\n                xmlName: \"MaxAgeInSeconds\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n        },\n    },\n};\nconst StaticWebsite = {\n    serializedName: \"StaticWebsite\",\n    type: {\n        name: \"Composite\",\n        className: \"StaticWebsite\",\n        modelProperties: {\n            enabled: {\n                serializedName: \"Enabled\",\n                required: true,\n                xmlName: \"Enabled\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            indexDocument: {\n                serializedName: \"IndexDocument\",\n                xmlName: \"IndexDocument\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorDocument404Path: {\n                serializedName: \"ErrorDocument404Path\",\n                xmlName: \"ErrorDocument404Path\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            defaultIndexDocumentPath: {\n                serializedName: \"DefaultIndexDocumentPath\",\n                xmlName: \"DefaultIndexDocumentPath\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst StorageError = {\n    serializedName: \"StorageError\",\n    type: {\n        name: \"Composite\",\n        className: \"StorageError\",\n        modelProperties: {\n            message: {\n                serializedName: \"Message\",\n                xmlName: \"Message\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            code: {\n                serializedName: \"Code\",\n                xmlName: \"Code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            authenticationErrorDetail: {\n                serializedName: \"AuthenticationErrorDetail\",\n                xmlName: \"AuthenticationErrorDetail\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobServiceStatistics = {\n    serializedName: \"BlobServiceStatistics\",\n    xmlName: \"StorageServiceStats\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobServiceStatistics\",\n        modelProperties: {\n            geoReplication: {\n                serializedName: \"GeoReplication\",\n                xmlName: \"GeoReplication\",\n                type: {\n                    name: \"Composite\",\n                    className: \"GeoReplication\",\n                },\n            },\n        },\n    },\n};\nconst GeoReplication = {\n    serializedName: \"GeoReplication\",\n    type: {\n        name: \"Composite\",\n        className: \"GeoReplication\",\n        modelProperties: {\n            status: {\n                serializedName: \"Status\",\n                required: true,\n                xmlName: \"Status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"live\", \"bootstrap\", \"unavailable\"],\n                },\n            },\n            lastSyncOn: {\n                serializedName: \"LastSyncTime\",\n                required: true,\n                xmlName: \"LastSyncTime\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst ListContainersSegmentResponse = {\n    serializedName: \"ListContainersSegmentResponse\",\n    xmlName: \"EnumerationResults\",\n    type: {\n        name: \"Composite\",\n        className: \"ListContainersSegmentResponse\",\n        modelProperties: {\n            serviceEndpoint: {\n                serializedName: \"ServiceEndpoint\",\n                required: true,\n                xmlName: \"ServiceEndpoint\",\n                xmlIsAttribute: true,\n                type: {\n                    name: \"String\",\n                },\n            },\n            prefix: {\n                serializedName: \"Prefix\",\n                xmlName: \"Prefix\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            marker: {\n                serializedName: \"Marker\",\n                xmlName: \"Marker\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            maxPageSize: {\n                serializedName: \"MaxResults\",\n                xmlName: \"MaxResults\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            containerItems: {\n                serializedName: \"ContainerItems\",\n                required: true,\n                xmlName: \"Containers\",\n                xmlIsWrapped: true,\n                xmlElementName: \"Container\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"ContainerItem\",\n                        },\n                    },\n                },\n            },\n            continuationToken: {\n                serializedName: \"NextMarker\",\n                xmlName: \"NextMarker\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerItem = {\n    serializedName: \"ContainerItem\",\n    xmlName: \"Container\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerItem\",\n        modelProperties: {\n            name: {\n                serializedName: \"Name\",\n                required: true,\n                xmlName: \"Name\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            deleted: {\n                serializedName: \"Deleted\",\n                xmlName: \"Deleted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            version: {\n                serializedName: \"Version\",\n                xmlName: \"Version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            properties: {\n                serializedName: \"Properties\",\n                xmlName: \"Properties\",\n                type: {\n                    name: \"Composite\",\n                    className: \"ContainerProperties\",\n                },\n            },\n            metadata: {\n                serializedName: \"Metadata\",\n                xmlName: \"Metadata\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n        },\n    },\n};\nconst ContainerProperties = {\n    serializedName: \"ContainerProperties\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerProperties\",\n        modelProperties: {\n            lastModified: {\n                serializedName: \"Last-Modified\",\n                required: true,\n                xmlName: \"Last-Modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            etag: {\n                serializedName: \"Etag\",\n                required: true,\n                xmlName: \"Etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            leaseStatus: {\n                serializedName: \"LeaseStatus\",\n                xmlName: \"LeaseStatus\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"locked\", \"unlocked\"],\n                },\n            },\n            leaseState: {\n                serializedName: \"LeaseState\",\n                xmlName: \"LeaseState\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"available\",\n                        \"leased\",\n                        \"expired\",\n                        \"breaking\",\n                        \"broken\",\n                    ],\n                },\n            },\n            leaseDuration: {\n                serializedName: \"LeaseDuration\",\n                xmlName: \"LeaseDuration\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"infinite\", \"fixed\"],\n                },\n            },\n            publicAccess: {\n                serializedName: \"PublicAccess\",\n                xmlName: \"PublicAccess\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"container\", \"blob\"],\n                },\n            },\n            hasImmutabilityPolicy: {\n                serializedName: \"HasImmutabilityPolicy\",\n                xmlName: \"HasImmutabilityPolicy\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            hasLegalHold: {\n                serializedName: \"HasLegalHold\",\n                xmlName: \"HasLegalHold\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            defaultEncryptionScope: {\n                serializedName: \"DefaultEncryptionScope\",\n                xmlName: \"DefaultEncryptionScope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            preventEncryptionScopeOverride: {\n                serializedName: \"DenyEncryptionScopeOverride\",\n                xmlName: \"DenyEncryptionScopeOverride\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            deletedOn: {\n                serializedName: \"DeletedTime\",\n                xmlName: \"DeletedTime\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            remainingRetentionDays: {\n                serializedName: \"RemainingRetentionDays\",\n                xmlName: \"RemainingRetentionDays\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            isImmutableStorageWithVersioningEnabled: {\n                serializedName: \"ImmutableStorageWithVersioningEnabled\",\n                xmlName: \"ImmutableStorageWithVersioningEnabled\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n        },\n    },\n};\nconst KeyInfo = {\n    serializedName: \"KeyInfo\",\n    type: {\n        name: \"Composite\",\n        className: \"KeyInfo\",\n        modelProperties: {\n            startsOn: {\n                serializedName: \"Start\",\n                required: true,\n                xmlName: \"Start\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            expiresOn: {\n                serializedName: \"Expiry\",\n                required: true,\n                xmlName: \"Expiry\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst UserDelegationKey = {\n    serializedName: \"UserDelegationKey\",\n    type: {\n        name: \"Composite\",\n        className: \"UserDelegationKey\",\n        modelProperties: {\n            signedObjectId: {\n                serializedName: \"SignedOid\",\n                required: true,\n                xmlName: \"SignedOid\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            signedTenantId: {\n                serializedName: \"SignedTid\",\n                required: true,\n                xmlName: \"SignedTid\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            signedStartsOn: {\n                serializedName: \"SignedStart\",\n                required: true,\n                xmlName: \"SignedStart\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            signedExpiresOn: {\n                serializedName: \"SignedExpiry\",\n                required: true,\n                xmlName: \"SignedExpiry\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            signedService: {\n                serializedName: \"SignedService\",\n                required: true,\n                xmlName: \"SignedService\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            signedVersion: {\n                serializedName: \"SignedVersion\",\n                required: true,\n                xmlName: \"SignedVersion\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            value: {\n                serializedName: \"Value\",\n                required: true,\n                xmlName: \"Value\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst FilterBlobSegment = {\n    serializedName: \"FilterBlobSegment\",\n    xmlName: \"EnumerationResults\",\n    type: {\n        name: \"Composite\",\n        className: \"FilterBlobSegment\",\n        modelProperties: {\n            serviceEndpoint: {\n                serializedName: \"ServiceEndpoint\",\n                required: true,\n                xmlName: \"ServiceEndpoint\",\n                xmlIsAttribute: true,\n                type: {\n                    name: \"String\",\n                },\n            },\n            where: {\n                serializedName: \"Where\",\n                required: true,\n                xmlName: \"Where\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobs: {\n                serializedName: \"Blobs\",\n                required: true,\n                xmlName: \"Blobs\",\n                xmlIsWrapped: true,\n                xmlElementName: \"Blob\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"FilterBlobItem\",\n                        },\n                    },\n                },\n            },\n            continuationToken: {\n                serializedName: \"NextMarker\",\n                xmlName: \"NextMarker\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst FilterBlobItem = {\n    serializedName: \"FilterBlobItem\",\n    xmlName: \"Blob\",\n    type: {\n        name: \"Composite\",\n        className: \"FilterBlobItem\",\n        modelProperties: {\n            name: {\n                serializedName: \"Name\",\n                required: true,\n                xmlName: \"Name\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            containerName: {\n                serializedName: \"ContainerName\",\n                required: true,\n                xmlName: \"ContainerName\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            tags: {\n                serializedName: \"Tags\",\n                xmlName: \"Tags\",\n                type: {\n                    name: \"Composite\",\n                    className: \"BlobTags\",\n                },\n            },\n        },\n    },\n};\nconst BlobTags = {\n    serializedName: \"BlobTags\",\n    xmlName: \"Tags\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobTags\",\n        modelProperties: {\n            blobTagSet: {\n                serializedName: \"BlobTagSet\",\n                required: true,\n                xmlName: \"TagSet\",\n                xmlIsWrapped: true,\n                xmlElementName: \"Tag\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"BlobTag\",\n                        },\n                    },\n                },\n            },\n        },\n    },\n};\nconst BlobTag = {\n    serializedName: \"BlobTag\",\n    xmlName: \"Tag\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobTag\",\n        modelProperties: {\n            key: {\n                serializedName: \"Key\",\n                required: true,\n                xmlName: \"Key\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            value: {\n                serializedName: \"Value\",\n                required: true,\n                xmlName: \"Value\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst SignedIdentifier = {\n    serializedName: \"SignedIdentifier\",\n    xmlName: \"SignedIdentifier\",\n    type: {\n        name: \"Composite\",\n        className: \"SignedIdentifier\",\n        modelProperties: {\n            id: {\n                serializedName: \"Id\",\n                required: true,\n                xmlName: \"Id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            accessPolicy: {\n                serializedName: \"AccessPolicy\",\n                xmlName: \"AccessPolicy\",\n                type: {\n                    name: \"Composite\",\n                    className: \"AccessPolicy\",\n                },\n            },\n        },\n    },\n};\nconst AccessPolicy = {\n    serializedName: \"AccessPolicy\",\n    type: {\n        name: \"Composite\",\n        className: \"AccessPolicy\",\n        modelProperties: {\n            startsOn: {\n                serializedName: \"Start\",\n                xmlName: \"Start\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            expiresOn: {\n                serializedName: \"Expiry\",\n                xmlName: \"Expiry\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            permissions: {\n                serializedName: \"Permission\",\n                xmlName: \"Permission\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ListBlobsFlatSegmentResponse = {\n    serializedName: \"ListBlobsFlatSegmentResponse\",\n    xmlName: \"EnumerationResults\",\n    type: {\n        name: \"Composite\",\n        className: \"ListBlobsFlatSegmentResponse\",\n        modelProperties: {\n            serviceEndpoint: {\n                serializedName: \"ServiceEndpoint\",\n                required: true,\n                xmlName: \"ServiceEndpoint\",\n                xmlIsAttribute: true,\n                type: {\n                    name: \"String\",\n                },\n            },\n            containerName: {\n                serializedName: \"ContainerName\",\n                required: true,\n                xmlName: \"ContainerName\",\n                xmlIsAttribute: true,\n                type: {\n                    name: \"String\",\n                },\n            },\n            prefix: {\n                serializedName: \"Prefix\",\n                xmlName: \"Prefix\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            marker: {\n                serializedName: \"Marker\",\n                xmlName: \"Marker\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            maxPageSize: {\n                serializedName: \"MaxResults\",\n                xmlName: \"MaxResults\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            segment: {\n                serializedName: \"Segment\",\n                xmlName: \"Blobs\",\n                type: {\n                    name: \"Composite\",\n                    className: \"BlobFlatListSegment\",\n                },\n            },\n            continuationToken: {\n                serializedName: \"NextMarker\",\n                xmlName: \"NextMarker\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobFlatListSegment = {\n    serializedName: \"BlobFlatListSegment\",\n    xmlName: \"Blobs\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobFlatListSegment\",\n        modelProperties: {\n            blobItems: {\n                serializedName: \"BlobItems\",\n                required: true,\n                xmlName: \"BlobItems\",\n                xmlElementName: \"Blob\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"BlobItemInternal\",\n                        },\n                    },\n                },\n            },\n        },\n    },\n};\nconst BlobItemInternal = {\n    serializedName: \"BlobItemInternal\",\n    xmlName: \"Blob\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobItemInternal\",\n        modelProperties: {\n            name: {\n                serializedName: \"Name\",\n                xmlName: \"Name\",\n                type: {\n                    name: \"Composite\",\n                    className: \"BlobName\",\n                },\n            },\n            deleted: {\n                serializedName: \"Deleted\",\n                required: true,\n                xmlName: \"Deleted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            snapshot: {\n                serializedName: \"Snapshot\",\n                required: true,\n                xmlName: \"Snapshot\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"VersionId\",\n                xmlName: \"VersionId\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            isCurrentVersion: {\n                serializedName: \"IsCurrentVersion\",\n                xmlName: \"IsCurrentVersion\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            properties: {\n                serializedName: \"Properties\",\n                xmlName: \"Properties\",\n                type: {\n                    name: \"Composite\",\n                    className: \"BlobPropertiesInternal\",\n                },\n            },\n            metadata: {\n                serializedName: \"Metadata\",\n                xmlName: \"Metadata\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n            blobTags: {\n                serializedName: \"BlobTags\",\n                xmlName: \"Tags\",\n                type: {\n                    name: \"Composite\",\n                    className: \"BlobTags\",\n                },\n            },\n            objectReplicationMetadata: {\n                serializedName: \"ObjectReplicationMetadata\",\n                xmlName: \"OrMetadata\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n            hasVersionsOnly: {\n                serializedName: \"HasVersionsOnly\",\n                xmlName: \"HasVersionsOnly\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n        },\n    },\n};\nconst BlobName = {\n    serializedName: \"BlobName\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobName\",\n        modelProperties: {\n            encoded: {\n                serializedName: \"Encoded\",\n                xmlName: \"Encoded\",\n                xmlIsAttribute: true,\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            content: {\n                serializedName: \"content\",\n                xmlName: \"content\",\n                xmlIsMsText: true,\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobPropertiesInternal = {\n    serializedName: \"BlobPropertiesInternal\",\n    xmlName: \"Properties\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobPropertiesInternal\",\n        modelProperties: {\n            createdOn: {\n                serializedName: \"Creation-Time\",\n                xmlName: \"Creation-Time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            lastModified: {\n                serializedName: \"Last-Modified\",\n                required: true,\n                xmlName: \"Last-Modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            etag: {\n                serializedName: \"Etag\",\n                required: true,\n                xmlName: \"Etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentLength: {\n                serializedName: \"Content-Length\",\n                xmlName: \"Content-Length\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            contentType: {\n                serializedName: \"Content-Type\",\n                xmlName: \"Content-Type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentEncoding: {\n                serializedName: \"Content-Encoding\",\n                xmlName: \"Content-Encoding\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentLanguage: {\n                serializedName: \"Content-Language\",\n                xmlName: \"Content-Language\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"Content-MD5\",\n                xmlName: \"Content-MD5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            contentDisposition: {\n                serializedName: \"Content-Disposition\",\n                xmlName: \"Content-Disposition\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            cacheControl: {\n                serializedName: \"Cache-Control\",\n                xmlName: \"Cache-Control\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            blobType: {\n                serializedName: \"BlobType\",\n                xmlName: \"BlobType\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"BlockBlob\", \"PageBlob\", \"AppendBlob\"],\n                },\n            },\n            leaseStatus: {\n                serializedName: \"LeaseStatus\",\n                xmlName: \"LeaseStatus\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"locked\", \"unlocked\"],\n                },\n            },\n            leaseState: {\n                serializedName: \"LeaseState\",\n                xmlName: \"LeaseState\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"available\",\n                        \"leased\",\n                        \"expired\",\n                        \"breaking\",\n                        \"broken\",\n                    ],\n                },\n            },\n            leaseDuration: {\n                serializedName: \"LeaseDuration\",\n                xmlName: \"LeaseDuration\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"infinite\", \"fixed\"],\n                },\n            },\n            copyId: {\n                serializedName: \"CopyId\",\n                xmlName: \"CopyId\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyStatus: {\n                serializedName: \"CopyStatus\",\n                xmlName: \"CopyStatus\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"pending\", \"success\", \"aborted\", \"failed\"],\n                },\n            },\n            copySource: {\n                serializedName: \"CopySource\",\n                xmlName: \"CopySource\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyProgress: {\n                serializedName: \"CopyProgress\",\n                xmlName: \"CopyProgress\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyCompletedOn: {\n                serializedName: \"CopyCompletionTime\",\n                xmlName: \"CopyCompletionTime\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            copyStatusDescription: {\n                serializedName: \"CopyStatusDescription\",\n                xmlName: \"CopyStatusDescription\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            serverEncrypted: {\n                serializedName: \"ServerEncrypted\",\n                xmlName: \"ServerEncrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            incrementalCopy: {\n                serializedName: \"IncrementalCopy\",\n                xmlName: \"IncrementalCopy\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            destinationSnapshot: {\n                serializedName: \"DestinationSnapshot\",\n                xmlName: \"DestinationSnapshot\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            deletedOn: {\n                serializedName: \"DeletedTime\",\n                xmlName: \"DeletedTime\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            remainingRetentionDays: {\n                serializedName: \"RemainingRetentionDays\",\n                xmlName: \"RemainingRetentionDays\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            accessTier: {\n                serializedName: \"AccessTier\",\n                xmlName: \"AccessTier\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"P4\",\n                        \"P6\",\n                        \"P10\",\n                        \"P15\",\n                        \"P20\",\n                        \"P30\",\n                        \"P40\",\n                        \"P50\",\n                        \"P60\",\n                        \"P70\",\n                        \"P80\",\n                        \"Hot\",\n                        \"Cool\",\n                        \"Archive\",\n                        \"Cold\",\n                    ],\n                },\n            },\n            accessTierInferred: {\n                serializedName: \"AccessTierInferred\",\n                xmlName: \"AccessTierInferred\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            archiveStatus: {\n                serializedName: \"ArchiveStatus\",\n                xmlName: \"ArchiveStatus\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"rehydrate-pending-to-hot\",\n                        \"rehydrate-pending-to-cool\",\n                        \"rehydrate-pending-to-cold\",\n                    ],\n                },\n            },\n            customerProvidedKeySha256: {\n                serializedName: \"CustomerProvidedKeySha256\",\n                xmlName: \"CustomerProvidedKeySha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"EncryptionScope\",\n                xmlName: \"EncryptionScope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            accessTierChangedOn: {\n                serializedName: \"AccessTierChangeTime\",\n                xmlName: \"AccessTierChangeTime\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            tagCount: {\n                serializedName: \"TagCount\",\n                xmlName: \"TagCount\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            expiresOn: {\n                serializedName: \"Expiry-Time\",\n                xmlName: \"Expiry-Time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isSealed: {\n                serializedName: \"Sealed\",\n                xmlName: \"Sealed\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            rehydratePriority: {\n                serializedName: \"RehydratePriority\",\n                xmlName: \"RehydratePriority\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"High\", \"Standard\"],\n                },\n            },\n            lastAccessedOn: {\n                serializedName: \"LastAccessTime\",\n                xmlName: \"LastAccessTime\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            immutabilityPolicyExpiresOn: {\n                serializedName: \"ImmutabilityPolicyUntilDate\",\n                xmlName: \"ImmutabilityPolicyUntilDate\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            immutabilityPolicyMode: {\n                serializedName: \"ImmutabilityPolicyMode\",\n                xmlName: \"ImmutabilityPolicyMode\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"Mutable\", \"Unlocked\", \"Locked\"],\n                },\n            },\n            legalHold: {\n                serializedName: \"LegalHold\",\n                xmlName: \"LegalHold\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n        },\n    },\n};\nconst ListBlobsHierarchySegmentResponse = {\n    serializedName: \"ListBlobsHierarchySegmentResponse\",\n    xmlName: \"EnumerationResults\",\n    type: {\n        name: \"Composite\",\n        className: \"ListBlobsHierarchySegmentResponse\",\n        modelProperties: {\n            serviceEndpoint: {\n                serializedName: \"ServiceEndpoint\",\n                required: true,\n                xmlName: \"ServiceEndpoint\",\n                xmlIsAttribute: true,\n                type: {\n                    name: \"String\",\n                },\n            },\n            containerName: {\n                serializedName: \"ContainerName\",\n                required: true,\n                xmlName: \"ContainerName\",\n                xmlIsAttribute: true,\n                type: {\n                    name: \"String\",\n                },\n            },\n            prefix: {\n                serializedName: \"Prefix\",\n                xmlName: \"Prefix\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            marker: {\n                serializedName: \"Marker\",\n                xmlName: \"Marker\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            maxPageSize: {\n                serializedName: \"MaxResults\",\n                xmlName: \"MaxResults\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            delimiter: {\n                serializedName: \"Delimiter\",\n                xmlName: \"Delimiter\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            segment: {\n                serializedName: \"Segment\",\n                xmlName: \"Blobs\",\n                type: {\n                    name: \"Composite\",\n                    className: \"BlobHierarchyListSegment\",\n                },\n            },\n            continuationToken: {\n                serializedName: \"NextMarker\",\n                xmlName: \"NextMarker\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobHierarchyListSegment = {\n    serializedName: \"BlobHierarchyListSegment\",\n    xmlName: \"Blobs\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobHierarchyListSegment\",\n        modelProperties: {\n            blobPrefixes: {\n                serializedName: \"BlobPrefixes\",\n                xmlName: \"BlobPrefixes\",\n                xmlElementName: \"BlobPrefix\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"BlobPrefix\",\n                        },\n                    },\n                },\n            },\n            blobItems: {\n                serializedName: \"BlobItems\",\n                required: true,\n                xmlName: \"BlobItems\",\n                xmlElementName: \"Blob\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"BlobItemInternal\",\n                        },\n                    },\n                },\n            },\n        },\n    },\n};\nconst BlobPrefix = {\n    serializedName: \"BlobPrefix\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobPrefix\",\n        modelProperties: {\n            name: {\n                serializedName: \"Name\",\n                xmlName: \"Name\",\n                type: {\n                    name: \"Composite\",\n                    className: \"BlobName\",\n                },\n            },\n        },\n    },\n};\nconst BlockLookupList = {\n    serializedName: \"BlockLookupList\",\n    xmlName: \"BlockList\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockLookupList\",\n        modelProperties: {\n            committed: {\n                serializedName: \"Committed\",\n                xmlName: \"Committed\",\n                xmlElementName: \"Committed\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"String\",\n                        },\n                    },\n                },\n            },\n            uncommitted: {\n                serializedName: \"Uncommitted\",\n                xmlName: \"Uncommitted\",\n                xmlElementName: \"Uncommitted\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"String\",\n                        },\n                    },\n                },\n            },\n            latest: {\n                serializedName: \"Latest\",\n                xmlName: \"Latest\",\n                xmlElementName: \"Latest\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"String\",\n                        },\n                    },\n                },\n            },\n        },\n    },\n};\nconst BlockList = {\n    serializedName: \"BlockList\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockList\",\n        modelProperties: {\n            committedBlocks: {\n                serializedName: \"CommittedBlocks\",\n                xmlName: \"CommittedBlocks\",\n                xmlIsWrapped: true,\n                xmlElementName: \"Block\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"Block\",\n                        },\n                    },\n                },\n            },\n            uncommittedBlocks: {\n                serializedName: \"UncommittedBlocks\",\n                xmlName: \"UncommittedBlocks\",\n                xmlIsWrapped: true,\n                xmlElementName: \"Block\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"Block\",\n                        },\n                    },\n                },\n            },\n        },\n    },\n};\nconst Block = {\n    serializedName: \"Block\",\n    type: {\n        name: \"Composite\",\n        className: \"Block\",\n        modelProperties: {\n            name: {\n                serializedName: \"Name\",\n                required: true,\n                xmlName: \"Name\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            size: {\n                serializedName: \"Size\",\n                required: true,\n                xmlName: \"Size\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n        },\n    },\n};\nconst PageList = {\n    serializedName: \"PageList\",\n    type: {\n        name: \"Composite\",\n        className: \"PageList\",\n        modelProperties: {\n            pageRange: {\n                serializedName: \"PageRange\",\n                xmlName: \"PageRange\",\n                xmlElementName: \"PageRange\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"PageRange\",\n                        },\n                    },\n                },\n            },\n            clearRange: {\n                serializedName: \"ClearRange\",\n                xmlName: \"ClearRange\",\n                xmlElementName: \"ClearRange\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"ClearRange\",\n                        },\n                    },\n                },\n            },\n            continuationToken: {\n                serializedName: \"NextMarker\",\n                xmlName: \"NextMarker\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageRange = {\n    serializedName: \"PageRange\",\n    xmlName: \"PageRange\",\n    type: {\n        name: \"Composite\",\n        className: \"PageRange\",\n        modelProperties: {\n            start: {\n                serializedName: \"Start\",\n                required: true,\n                xmlName: \"Start\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            end: {\n                serializedName: \"End\",\n                required: true,\n                xmlName: \"End\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n        },\n    },\n};\nconst ClearRange = {\n    serializedName: \"ClearRange\",\n    xmlName: \"ClearRange\",\n    type: {\n        name: \"Composite\",\n        className: \"ClearRange\",\n        modelProperties: {\n            start: {\n                serializedName: \"Start\",\n                required: true,\n                xmlName: \"Start\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            end: {\n                serializedName: \"End\",\n                required: true,\n                xmlName: \"End\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n        },\n    },\n};\nconst QueryRequest = {\n    serializedName: \"QueryRequest\",\n    xmlName: \"QueryRequest\",\n    type: {\n        name: \"Composite\",\n        className: \"QueryRequest\",\n        modelProperties: {\n            queryType: {\n                serializedName: \"QueryType\",\n                required: true,\n                xmlName: \"QueryType\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            expression: {\n                serializedName: \"Expression\",\n                required: true,\n                xmlName: \"Expression\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            inputSerialization: {\n                serializedName: \"InputSerialization\",\n                xmlName: \"InputSerialization\",\n                type: {\n                    name: \"Composite\",\n                    className: \"QuerySerialization\",\n                },\n            },\n            outputSerialization: {\n                serializedName: \"OutputSerialization\",\n                xmlName: \"OutputSerialization\",\n                type: {\n                    name: \"Composite\",\n                    className: \"QuerySerialization\",\n                },\n            },\n        },\n    },\n};\nconst QuerySerialization = {\n    serializedName: \"QuerySerialization\",\n    type: {\n        name: \"Composite\",\n        className: \"QuerySerialization\",\n        modelProperties: {\n            format: {\n                serializedName: \"Format\",\n                xmlName: \"Format\",\n                type: {\n                    name: \"Composite\",\n                    className: \"QueryFormat\",\n                },\n            },\n        },\n    },\n};\nconst QueryFormat = {\n    serializedName: \"QueryFormat\",\n    type: {\n        name: \"Composite\",\n        className: \"QueryFormat\",\n        modelProperties: {\n            type: {\n                serializedName: \"Type\",\n                required: true,\n                xmlName: \"Type\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"delimited\", \"json\", \"arrow\", \"parquet\"],\n                },\n            },\n            delimitedTextConfiguration: {\n                serializedName: \"DelimitedTextConfiguration\",\n                xmlName: \"DelimitedTextConfiguration\",\n                type: {\n                    name: \"Composite\",\n                    className: \"DelimitedTextConfiguration\",\n                },\n            },\n            jsonTextConfiguration: {\n                serializedName: \"JsonTextConfiguration\",\n                xmlName: \"JsonTextConfiguration\",\n                type: {\n                    name: \"Composite\",\n                    className: \"JsonTextConfiguration\",\n                },\n            },\n            arrowConfiguration: {\n                serializedName: \"ArrowConfiguration\",\n                xmlName: \"ArrowConfiguration\",\n                type: {\n                    name: \"Composite\",\n                    className: \"ArrowConfiguration\",\n                },\n            },\n            parquetTextConfiguration: {\n                serializedName: \"ParquetTextConfiguration\",\n                xmlName: \"ParquetTextConfiguration\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"any\" } },\n                },\n            },\n        },\n    },\n};\nconst DelimitedTextConfiguration = {\n    serializedName: \"DelimitedTextConfiguration\",\n    xmlName: \"DelimitedTextConfiguration\",\n    type: {\n        name: \"Composite\",\n        className: \"DelimitedTextConfiguration\",\n        modelProperties: {\n            columnSeparator: {\n                serializedName: \"ColumnSeparator\",\n                xmlName: \"ColumnSeparator\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            fieldQuote: {\n                serializedName: \"FieldQuote\",\n                xmlName: \"FieldQuote\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            recordSeparator: {\n                serializedName: \"RecordSeparator\",\n                xmlName: \"RecordSeparator\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            escapeChar: {\n                serializedName: \"EscapeChar\",\n                xmlName: \"EscapeChar\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            headersPresent: {\n                serializedName: \"HeadersPresent\",\n                xmlName: \"HasHeaders\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n        },\n    },\n};\nconst JsonTextConfiguration = {\n    serializedName: \"JsonTextConfiguration\",\n    xmlName: \"JsonTextConfiguration\",\n    type: {\n        name: \"Composite\",\n        className: \"JsonTextConfiguration\",\n        modelProperties: {\n            recordSeparator: {\n                serializedName: \"RecordSeparator\",\n                xmlName: \"RecordSeparator\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ArrowConfiguration = {\n    serializedName: \"ArrowConfiguration\",\n    xmlName: \"ArrowConfiguration\",\n    type: {\n        name: \"Composite\",\n        className: \"ArrowConfiguration\",\n        modelProperties: {\n            schema: {\n                serializedName: \"Schema\",\n                required: true,\n                xmlName: \"Schema\",\n                xmlIsWrapped: true,\n                xmlElementName: \"Field\",\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: {\n                            name: \"Composite\",\n                            className: \"ArrowField\",\n                        },\n                    },\n                },\n            },\n        },\n    },\n};\nconst ArrowField = {\n    serializedName: \"ArrowField\",\n    xmlName: \"Field\",\n    type: {\n        name: \"Composite\",\n        className: \"ArrowField\",\n        modelProperties: {\n            type: {\n                serializedName: \"Type\",\n                required: true,\n                xmlName: \"Type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            name: {\n                serializedName: \"Name\",\n                xmlName: \"Name\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            precision: {\n                serializedName: \"Precision\",\n                xmlName: \"Precision\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            scale: {\n                serializedName: \"Scale\",\n                xmlName: \"Scale\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n        },\n    },\n};\nconst ServiceSetPropertiesHeaders = {\n    serializedName: \"Service_setPropertiesHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceSetPropertiesHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceSetPropertiesExceptionHeaders = {\n    serializedName: \"Service_setPropertiesExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceSetPropertiesExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceGetPropertiesHeaders = {\n    serializedName: \"Service_getPropertiesHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceGetPropertiesHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceGetPropertiesExceptionHeaders = {\n    serializedName: \"Service_getPropertiesExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceGetPropertiesExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceGetStatisticsHeaders = {\n    serializedName: \"Service_getStatisticsHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceGetStatisticsHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceGetStatisticsExceptionHeaders = {\n    serializedName: \"Service_getStatisticsExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceGetStatisticsExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceListContainersSegmentHeaders = {\n    serializedName: \"Service_listContainersSegmentHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceListContainersSegmentHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceListContainersSegmentExceptionHeaders = {\n    serializedName: \"Service_listContainersSegmentExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceListContainersSegmentExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceGetUserDelegationKeyHeaders = {\n    serializedName: \"Service_getUserDelegationKeyHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceGetUserDelegationKeyHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceGetUserDelegationKeyExceptionHeaders = {\n    serializedName: \"Service_getUserDelegationKeyExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceGetUserDelegationKeyExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceGetAccountInfoHeaders = {\n    serializedName: \"Service_getAccountInfoHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceGetAccountInfoHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            skuName: {\n                serializedName: \"x-ms-sku-name\",\n                xmlName: \"x-ms-sku-name\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"Standard_LRS\",\n                        \"Standard_GRS\",\n                        \"Standard_RAGRS\",\n                        \"Standard_ZRS\",\n                        \"Premium_LRS\",\n                    ],\n                },\n            },\n            accountKind: {\n                serializedName: \"x-ms-account-kind\",\n                xmlName: \"x-ms-account-kind\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"Storage\",\n                        \"BlobStorage\",\n                        \"StorageV2\",\n                        \"FileStorage\",\n                        \"BlockBlobStorage\",\n                    ],\n                },\n            },\n            isHierarchicalNamespaceEnabled: {\n                serializedName: \"x-ms-is-hns-enabled\",\n                xmlName: \"x-ms-is-hns-enabled\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceGetAccountInfoExceptionHeaders = {\n    serializedName: \"Service_getAccountInfoExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceGetAccountInfoExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceSubmitBatchHeaders = {\n    serializedName: \"Service_submitBatchHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceSubmitBatchHeaders\",\n        modelProperties: {\n            contentType: {\n                serializedName: \"content-type\",\n                xmlName: \"content-type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceSubmitBatchExceptionHeaders = {\n    serializedName: \"Service_submitBatchExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceSubmitBatchExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceFilterBlobsHeaders = {\n    serializedName: \"Service_filterBlobsHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceFilterBlobsHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ServiceFilterBlobsExceptionHeaders = {\n    serializedName: \"Service_filterBlobsExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ServiceFilterBlobsExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerCreateHeaders = {\n    serializedName: \"Container_createHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerCreateHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerCreateExceptionHeaders = {\n    serializedName: \"Container_createExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerCreateExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerGetPropertiesHeaders = {\n    serializedName: \"Container_getPropertiesHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerGetPropertiesHeaders\",\n        modelProperties: {\n            metadata: {\n                serializedName: \"x-ms-meta\",\n                headerCollectionPrefix: \"x-ms-meta-\",\n                xmlName: \"x-ms-meta\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            leaseDuration: {\n                serializedName: \"x-ms-lease-duration\",\n                xmlName: \"x-ms-lease-duration\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"infinite\", \"fixed\"],\n                },\n            },\n            leaseState: {\n                serializedName: \"x-ms-lease-state\",\n                xmlName: \"x-ms-lease-state\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"available\",\n                        \"leased\",\n                        \"expired\",\n                        \"breaking\",\n                        \"broken\",\n                    ],\n                },\n            },\n            leaseStatus: {\n                serializedName: \"x-ms-lease-status\",\n                xmlName: \"x-ms-lease-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"locked\", \"unlocked\"],\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            blobPublicAccess: {\n                serializedName: \"x-ms-blob-public-access\",\n                xmlName: \"x-ms-blob-public-access\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"container\", \"blob\"],\n                },\n            },\n            hasImmutabilityPolicy: {\n                serializedName: \"x-ms-has-immutability-policy\",\n                xmlName: \"x-ms-has-immutability-policy\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            hasLegalHold: {\n                serializedName: \"x-ms-has-legal-hold\",\n                xmlName: \"x-ms-has-legal-hold\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            defaultEncryptionScope: {\n                serializedName: \"x-ms-default-encryption-scope\",\n                xmlName: \"x-ms-default-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            denyEncryptionScopeOverride: {\n                serializedName: \"x-ms-deny-encryption-scope-override\",\n                xmlName: \"x-ms-deny-encryption-scope-override\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            isImmutableStorageWithVersioningEnabled: {\n                serializedName: \"x-ms-immutable-storage-with-versioning-enabled\",\n                xmlName: \"x-ms-immutable-storage-with-versioning-enabled\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerGetPropertiesExceptionHeaders = {\n    serializedName: \"Container_getPropertiesExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerGetPropertiesExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerDeleteHeaders = {\n    serializedName: \"Container_deleteHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerDeleteHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerDeleteExceptionHeaders = {\n    serializedName: \"Container_deleteExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerDeleteExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerSetMetadataHeaders = {\n    serializedName: \"Container_setMetadataHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerSetMetadataHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerSetMetadataExceptionHeaders = {\n    serializedName: \"Container_setMetadataExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerSetMetadataExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerGetAccessPolicyHeaders = {\n    serializedName: \"Container_getAccessPolicyHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerGetAccessPolicyHeaders\",\n        modelProperties: {\n            blobPublicAccess: {\n                serializedName: \"x-ms-blob-public-access\",\n                xmlName: \"x-ms-blob-public-access\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"container\", \"blob\"],\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerGetAccessPolicyExceptionHeaders = {\n    serializedName: \"Container_getAccessPolicyExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerGetAccessPolicyExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerSetAccessPolicyHeaders = {\n    serializedName: \"Container_setAccessPolicyHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerSetAccessPolicyHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerSetAccessPolicyExceptionHeaders = {\n    serializedName: \"Container_setAccessPolicyExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerSetAccessPolicyExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerRestoreHeaders = {\n    serializedName: \"Container_restoreHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerRestoreHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerRestoreExceptionHeaders = {\n    serializedName: \"Container_restoreExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerRestoreExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerRenameHeaders = {\n    serializedName: \"Container_renameHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerRenameHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerRenameExceptionHeaders = {\n    serializedName: \"Container_renameExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerRenameExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerSubmitBatchHeaders = {\n    serializedName: \"Container_submitBatchHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerSubmitBatchHeaders\",\n        modelProperties: {\n            contentType: {\n                serializedName: \"content-type\",\n                xmlName: \"content-type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerSubmitBatchExceptionHeaders = {\n    serializedName: \"Container_submitBatchExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerSubmitBatchExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerFilterBlobsHeaders = {\n    serializedName: \"Container_filterBlobsHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerFilterBlobsHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst ContainerFilterBlobsExceptionHeaders = {\n    serializedName: \"Container_filterBlobsExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerFilterBlobsExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerAcquireLeaseHeaders = {\n    serializedName: \"Container_acquireLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerAcquireLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            leaseId: {\n                serializedName: \"x-ms-lease-id\",\n                xmlName: \"x-ms-lease-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst ContainerAcquireLeaseExceptionHeaders = {\n    serializedName: \"Container_acquireLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerAcquireLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerReleaseLeaseHeaders = {\n    serializedName: \"Container_releaseLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerReleaseLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst ContainerReleaseLeaseExceptionHeaders = {\n    serializedName: \"Container_releaseLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerReleaseLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerRenewLeaseHeaders = {\n    serializedName: \"Container_renewLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerRenewLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            leaseId: {\n                serializedName: \"x-ms-lease-id\",\n                xmlName: \"x-ms-lease-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst ContainerRenewLeaseExceptionHeaders = {\n    serializedName: \"Container_renewLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerRenewLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerBreakLeaseHeaders = {\n    serializedName: \"Container_breakLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerBreakLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            leaseTime: {\n                serializedName: \"x-ms-lease-time\",\n                xmlName: \"x-ms-lease-time\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst ContainerBreakLeaseExceptionHeaders = {\n    serializedName: \"Container_breakLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerBreakLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerChangeLeaseHeaders = {\n    serializedName: \"Container_changeLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerChangeLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            leaseId: {\n                serializedName: \"x-ms-lease-id\",\n                xmlName: \"x-ms-lease-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst ContainerChangeLeaseExceptionHeaders = {\n    serializedName: \"Container_changeLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerChangeLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerListBlobFlatSegmentHeaders = {\n    serializedName: \"Container_listBlobFlatSegmentHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerListBlobFlatSegmentHeaders\",\n        modelProperties: {\n            contentType: {\n                serializedName: \"content-type\",\n                xmlName: \"content-type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerListBlobFlatSegmentExceptionHeaders = {\n    serializedName: \"Container_listBlobFlatSegmentExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerListBlobFlatSegmentExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerListBlobHierarchySegmentHeaders = {\n    serializedName: \"Container_listBlobHierarchySegmentHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerListBlobHierarchySegmentHeaders\",\n        modelProperties: {\n            contentType: {\n                serializedName: \"content-type\",\n                xmlName: \"content-type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerListBlobHierarchySegmentExceptionHeaders = {\n    serializedName: \"Container_listBlobHierarchySegmentExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerListBlobHierarchySegmentExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst ContainerGetAccountInfoHeaders = {\n    serializedName: \"Container_getAccountInfoHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerGetAccountInfoHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            skuName: {\n                serializedName: \"x-ms-sku-name\",\n                xmlName: \"x-ms-sku-name\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"Standard_LRS\",\n                        \"Standard_GRS\",\n                        \"Standard_RAGRS\",\n                        \"Standard_ZRS\",\n                        \"Premium_LRS\",\n                    ],\n                },\n            },\n            accountKind: {\n                serializedName: \"x-ms-account-kind\",\n                xmlName: \"x-ms-account-kind\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"Storage\",\n                        \"BlobStorage\",\n                        \"StorageV2\",\n                        \"FileStorage\",\n                        \"BlockBlobStorage\",\n                    ],\n                },\n            },\n            isHierarchicalNamespaceEnabled: {\n                serializedName: \"x-ms-is-hns-enabled\",\n                xmlName: \"x-ms-is-hns-enabled\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n        },\n    },\n};\nconst ContainerGetAccountInfoExceptionHeaders = {\n    serializedName: \"Container_getAccountInfoExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"ContainerGetAccountInfoExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobDownloadHeaders = {\n    serializedName: \"Blob_downloadHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobDownloadHeaders\",\n        modelProperties: {\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            createdOn: {\n                serializedName: \"x-ms-creation-time\",\n                xmlName: \"x-ms-creation-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            metadata: {\n                serializedName: \"x-ms-meta\",\n                headerCollectionPrefix: \"x-ms-meta-\",\n                xmlName: \"x-ms-meta\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n            objectReplicationPolicyId: {\n                serializedName: \"x-ms-or-policy-id\",\n                xmlName: \"x-ms-or-policy-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            objectReplicationRules: {\n                serializedName: \"x-ms-or\",\n                headerCollectionPrefix: \"x-ms-or-\",\n                xmlName: \"x-ms-or\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n            contentLength: {\n                serializedName: \"content-length\",\n                xmlName: \"content-length\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            contentType: {\n                serializedName: \"content-type\",\n                xmlName: \"content-type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentRange: {\n                serializedName: \"content-range\",\n                xmlName: \"content-range\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            contentEncoding: {\n                serializedName: \"content-encoding\",\n                xmlName: \"content-encoding\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            cacheControl: {\n                serializedName: \"cache-control\",\n                xmlName: \"cache-control\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentDisposition: {\n                serializedName: \"content-disposition\",\n                xmlName: \"content-disposition\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentLanguage: {\n                serializedName: \"content-language\",\n                xmlName: \"content-language\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            blobType: {\n                serializedName: \"x-ms-blob-type\",\n                xmlName: \"x-ms-blob-type\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"BlockBlob\", \"PageBlob\", \"AppendBlob\"],\n                },\n            },\n            copyCompletedOn: {\n                serializedName: \"x-ms-copy-completion-time\",\n                xmlName: \"x-ms-copy-completion-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            copyStatusDescription: {\n                serializedName: \"x-ms-copy-status-description\",\n                xmlName: \"x-ms-copy-status-description\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyId: {\n                serializedName: \"x-ms-copy-id\",\n                xmlName: \"x-ms-copy-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyProgress: {\n                serializedName: \"x-ms-copy-progress\",\n                xmlName: \"x-ms-copy-progress\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copySource: {\n                serializedName: \"x-ms-copy-source\",\n                xmlName: \"x-ms-copy-source\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyStatus: {\n                serializedName: \"x-ms-copy-status\",\n                xmlName: \"x-ms-copy-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"pending\", \"success\", \"aborted\", \"failed\"],\n                },\n            },\n            leaseDuration: {\n                serializedName: \"x-ms-lease-duration\",\n                xmlName: \"x-ms-lease-duration\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"infinite\", \"fixed\"],\n                },\n            },\n            leaseState: {\n                serializedName: \"x-ms-lease-state\",\n                xmlName: \"x-ms-lease-state\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"available\",\n                        \"leased\",\n                        \"expired\",\n                        \"breaking\",\n                        \"broken\",\n                    ],\n                },\n            },\n            leaseStatus: {\n                serializedName: \"x-ms-lease-status\",\n                xmlName: \"x-ms-lease-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"locked\", \"unlocked\"],\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            isCurrentVersion: {\n                serializedName: \"x-ms-is-current-version\",\n                xmlName: \"x-ms-is-current-version\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            acceptRanges: {\n                serializedName: \"accept-ranges\",\n                xmlName: \"accept-ranges\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            blobCommittedBlockCount: {\n                serializedName: \"x-ms-blob-committed-block-count\",\n                xmlName: \"x-ms-blob-committed-block-count\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-server-encrypted\",\n                xmlName: \"x-ms-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobContentMD5: {\n                serializedName: \"x-ms-blob-content-md5\",\n                xmlName: \"x-ms-blob-content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            tagCount: {\n                serializedName: \"x-ms-tag-count\",\n                xmlName: \"x-ms-tag-count\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            isSealed: {\n                serializedName: \"x-ms-blob-sealed\",\n                xmlName: \"x-ms-blob-sealed\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            lastAccessed: {\n                serializedName: \"x-ms-last-access-time\",\n                xmlName: \"x-ms-last-access-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            immutabilityPolicyExpiresOn: {\n                serializedName: \"x-ms-immutability-policy-until-date\",\n                xmlName: \"x-ms-immutability-policy-until-date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            immutabilityPolicyMode: {\n                serializedName: \"x-ms-immutability-policy-mode\",\n                xmlName: \"x-ms-immutability-policy-mode\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"Mutable\", \"Unlocked\", \"Locked\"],\n                },\n            },\n            legalHold: {\n                serializedName: \"x-ms-legal-hold\",\n                xmlName: \"x-ms-legal-hold\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n        },\n    },\n};\nconst BlobDownloadExceptionHeaders = {\n    serializedName: \"Blob_downloadExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobDownloadExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobGetPropertiesHeaders = {\n    serializedName: \"Blob_getPropertiesHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobGetPropertiesHeaders\",\n        modelProperties: {\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            createdOn: {\n                serializedName: \"x-ms-creation-time\",\n                xmlName: \"x-ms-creation-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            metadata: {\n                serializedName: \"x-ms-meta\",\n                headerCollectionPrefix: \"x-ms-meta-\",\n                xmlName: \"x-ms-meta\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n            objectReplicationPolicyId: {\n                serializedName: \"x-ms-or-policy-id\",\n                xmlName: \"x-ms-or-policy-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            objectReplicationRules: {\n                serializedName: \"x-ms-or\",\n                headerCollectionPrefix: \"x-ms-or-\",\n                xmlName: \"x-ms-or\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n            blobType: {\n                serializedName: \"x-ms-blob-type\",\n                xmlName: \"x-ms-blob-type\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"BlockBlob\", \"PageBlob\", \"AppendBlob\"],\n                },\n            },\n            copyCompletedOn: {\n                serializedName: \"x-ms-copy-completion-time\",\n                xmlName: \"x-ms-copy-completion-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            copyStatusDescription: {\n                serializedName: \"x-ms-copy-status-description\",\n                xmlName: \"x-ms-copy-status-description\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyId: {\n                serializedName: \"x-ms-copy-id\",\n                xmlName: \"x-ms-copy-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyProgress: {\n                serializedName: \"x-ms-copy-progress\",\n                xmlName: \"x-ms-copy-progress\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copySource: {\n                serializedName: \"x-ms-copy-source\",\n                xmlName: \"x-ms-copy-source\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyStatus: {\n                serializedName: \"x-ms-copy-status\",\n                xmlName: \"x-ms-copy-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"pending\", \"success\", \"aborted\", \"failed\"],\n                },\n            },\n            isIncrementalCopy: {\n                serializedName: \"x-ms-incremental-copy\",\n                xmlName: \"x-ms-incremental-copy\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            destinationSnapshot: {\n                serializedName: \"x-ms-copy-destination-snapshot\",\n                xmlName: \"x-ms-copy-destination-snapshot\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            leaseDuration: {\n                serializedName: \"x-ms-lease-duration\",\n                xmlName: \"x-ms-lease-duration\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"infinite\", \"fixed\"],\n                },\n            },\n            leaseState: {\n                serializedName: \"x-ms-lease-state\",\n                xmlName: \"x-ms-lease-state\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"available\",\n                        \"leased\",\n                        \"expired\",\n                        \"breaking\",\n                        \"broken\",\n                    ],\n                },\n            },\n            leaseStatus: {\n                serializedName: \"x-ms-lease-status\",\n                xmlName: \"x-ms-lease-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"locked\", \"unlocked\"],\n                },\n            },\n            contentLength: {\n                serializedName: \"content-length\",\n                xmlName: \"content-length\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            contentType: {\n                serializedName: \"content-type\",\n                xmlName: \"content-type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            contentEncoding: {\n                serializedName: \"content-encoding\",\n                xmlName: \"content-encoding\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentDisposition: {\n                serializedName: \"content-disposition\",\n                xmlName: \"content-disposition\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentLanguage: {\n                serializedName: \"content-language\",\n                xmlName: \"content-language\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            cacheControl: {\n                serializedName: \"cache-control\",\n                xmlName: \"cache-control\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            acceptRanges: {\n                serializedName: \"accept-ranges\",\n                xmlName: \"accept-ranges\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobCommittedBlockCount: {\n                serializedName: \"x-ms-blob-committed-block-count\",\n                xmlName: \"x-ms-blob-committed-block-count\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-server-encrypted\",\n                xmlName: \"x-ms-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            accessTier: {\n                serializedName: \"x-ms-access-tier\",\n                xmlName: \"x-ms-access-tier\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            accessTierInferred: {\n                serializedName: \"x-ms-access-tier-inferred\",\n                xmlName: \"x-ms-access-tier-inferred\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            archiveStatus: {\n                serializedName: \"x-ms-archive-status\",\n                xmlName: \"x-ms-archive-status\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            accessTierChangedOn: {\n                serializedName: \"x-ms-access-tier-change-time\",\n                xmlName: \"x-ms-access-tier-change-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            isCurrentVersion: {\n                serializedName: \"x-ms-is-current-version\",\n                xmlName: \"x-ms-is-current-version\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            tagCount: {\n                serializedName: \"x-ms-tag-count\",\n                xmlName: \"x-ms-tag-count\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            expiresOn: {\n                serializedName: \"x-ms-expiry-time\",\n                xmlName: \"x-ms-expiry-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isSealed: {\n                serializedName: \"x-ms-blob-sealed\",\n                xmlName: \"x-ms-blob-sealed\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            rehydratePriority: {\n                serializedName: \"x-ms-rehydrate-priority\",\n                xmlName: \"x-ms-rehydrate-priority\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"High\", \"Standard\"],\n                },\n            },\n            lastAccessed: {\n                serializedName: \"x-ms-last-access-time\",\n                xmlName: \"x-ms-last-access-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            immutabilityPolicyExpiresOn: {\n                serializedName: \"x-ms-immutability-policy-until-date\",\n                xmlName: \"x-ms-immutability-policy-until-date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            immutabilityPolicyMode: {\n                serializedName: \"x-ms-immutability-policy-mode\",\n                xmlName: \"x-ms-immutability-policy-mode\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"Mutable\", \"Unlocked\", \"Locked\"],\n                },\n            },\n            legalHold: {\n                serializedName: \"x-ms-legal-hold\",\n                xmlName: \"x-ms-legal-hold\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobGetPropertiesExceptionHeaders = {\n    serializedName: \"Blob_getPropertiesExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobGetPropertiesExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobDeleteHeaders = {\n    serializedName: \"Blob_deleteHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobDeleteHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobDeleteExceptionHeaders = {\n    serializedName: \"Blob_deleteExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobDeleteExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobUndeleteHeaders = {\n    serializedName: \"Blob_undeleteHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobUndeleteHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobUndeleteExceptionHeaders = {\n    serializedName: \"Blob_undeleteExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobUndeleteExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetExpiryHeaders = {\n    serializedName: \"Blob_setExpiryHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetExpiryHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetExpiryExceptionHeaders = {\n    serializedName: \"Blob_setExpiryExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetExpiryExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetHttpHeadersHeaders = {\n    serializedName: \"Blob_setHttpHeadersHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetHttpHeadersHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetHttpHeadersExceptionHeaders = {\n    serializedName: \"Blob_setHttpHeadersExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetHttpHeadersExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetImmutabilityPolicyHeaders = {\n    serializedName: \"Blob_setImmutabilityPolicyHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetImmutabilityPolicyHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            immutabilityPolicyExpiry: {\n                serializedName: \"x-ms-immutability-policy-until-date\",\n                xmlName: \"x-ms-immutability-policy-until-date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            immutabilityPolicyMode: {\n                serializedName: \"x-ms-immutability-policy-mode\",\n                xmlName: \"x-ms-immutability-policy-mode\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"Mutable\", \"Unlocked\", \"Locked\"],\n                },\n            },\n        },\n    },\n};\nconst BlobSetImmutabilityPolicyExceptionHeaders = {\n    serializedName: \"Blob_setImmutabilityPolicyExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetImmutabilityPolicyExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobDeleteImmutabilityPolicyHeaders = {\n    serializedName: \"Blob_deleteImmutabilityPolicyHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobDeleteImmutabilityPolicyHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst BlobDeleteImmutabilityPolicyExceptionHeaders = {\n    serializedName: \"Blob_deleteImmutabilityPolicyExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobDeleteImmutabilityPolicyExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetLegalHoldHeaders = {\n    serializedName: \"Blob_setLegalHoldHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetLegalHoldHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            legalHold: {\n                serializedName: \"x-ms-legal-hold\",\n                xmlName: \"x-ms-legal-hold\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetLegalHoldExceptionHeaders = {\n    serializedName: \"Blob_setLegalHoldExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetLegalHoldExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetMetadataHeaders = {\n    serializedName: \"Blob_setMetadataHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetMetadataHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetMetadataExceptionHeaders = {\n    serializedName: \"Blob_setMetadataExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetMetadataExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobAcquireLeaseHeaders = {\n    serializedName: \"Blob_acquireLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobAcquireLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            leaseId: {\n                serializedName: \"x-ms-lease-id\",\n                xmlName: \"x-ms-lease-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst BlobAcquireLeaseExceptionHeaders = {\n    serializedName: \"Blob_acquireLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobAcquireLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobReleaseLeaseHeaders = {\n    serializedName: \"Blob_releaseLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobReleaseLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst BlobReleaseLeaseExceptionHeaders = {\n    serializedName: \"Blob_releaseLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobReleaseLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobRenewLeaseHeaders = {\n    serializedName: \"Blob_renewLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobRenewLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            leaseId: {\n                serializedName: \"x-ms-lease-id\",\n                xmlName: \"x-ms-lease-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst BlobRenewLeaseExceptionHeaders = {\n    serializedName: \"Blob_renewLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobRenewLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobChangeLeaseHeaders = {\n    serializedName: \"Blob_changeLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobChangeLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            leaseId: {\n                serializedName: \"x-ms-lease-id\",\n                xmlName: \"x-ms-lease-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst BlobChangeLeaseExceptionHeaders = {\n    serializedName: \"Blob_changeLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobChangeLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobBreakLeaseHeaders = {\n    serializedName: \"Blob_breakLeaseHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobBreakLeaseHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            leaseTime: {\n                serializedName: \"x-ms-lease-time\",\n                xmlName: \"x-ms-lease-time\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n        },\n    },\n};\nconst BlobBreakLeaseExceptionHeaders = {\n    serializedName: \"Blob_breakLeaseExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobBreakLeaseExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobCreateSnapshotHeaders = {\n    serializedName: \"Blob_createSnapshotHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobCreateSnapshotHeaders\",\n        modelProperties: {\n            snapshot: {\n                serializedName: \"x-ms-snapshot\",\n                xmlName: \"x-ms-snapshot\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobCreateSnapshotExceptionHeaders = {\n    serializedName: \"Blob_createSnapshotExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobCreateSnapshotExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobStartCopyFromURLHeaders = {\n    serializedName: \"Blob_startCopyFromURLHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobStartCopyFromURLHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            copyId: {\n                serializedName: \"x-ms-copy-id\",\n                xmlName: \"x-ms-copy-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyStatus: {\n                serializedName: \"x-ms-copy-status\",\n                xmlName: \"x-ms-copy-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"pending\", \"success\", \"aborted\", \"failed\"],\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobStartCopyFromURLExceptionHeaders = {\n    serializedName: \"Blob_startCopyFromURLExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobStartCopyFromURLExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobCopyFromURLHeaders = {\n    serializedName: \"Blob_copyFromURLHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobCopyFromURLHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            copyId: {\n                serializedName: \"x-ms-copy-id\",\n                xmlName: \"x-ms-copy-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyStatus: {\n                defaultValue: \"success\",\n                isConstant: true,\n                serializedName: \"x-ms-copy-status\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobCopyFromURLExceptionHeaders = {\n    serializedName: \"Blob_copyFromURLExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobCopyFromURLExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobAbortCopyFromURLHeaders = {\n    serializedName: \"Blob_abortCopyFromURLHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobAbortCopyFromURLHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobAbortCopyFromURLExceptionHeaders = {\n    serializedName: \"Blob_abortCopyFromURLExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobAbortCopyFromURLExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetTierHeaders = {\n    serializedName: \"Blob_setTierHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetTierHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetTierExceptionHeaders = {\n    serializedName: \"Blob_setTierExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetTierExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobGetAccountInfoHeaders = {\n    serializedName: \"Blob_getAccountInfoHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobGetAccountInfoHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            skuName: {\n                serializedName: \"x-ms-sku-name\",\n                xmlName: \"x-ms-sku-name\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"Standard_LRS\",\n                        \"Standard_GRS\",\n                        \"Standard_RAGRS\",\n                        \"Standard_ZRS\",\n                        \"Premium_LRS\",\n                    ],\n                },\n            },\n            accountKind: {\n                serializedName: \"x-ms-account-kind\",\n                xmlName: \"x-ms-account-kind\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"Storage\",\n                        \"BlobStorage\",\n                        \"StorageV2\",\n                        \"FileStorage\",\n                        \"BlockBlobStorage\",\n                    ],\n                },\n            },\n            isHierarchicalNamespaceEnabled: {\n                serializedName: \"x-ms-is-hns-enabled\",\n                xmlName: \"x-ms-is-hns-enabled\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n        },\n    },\n};\nconst BlobGetAccountInfoExceptionHeaders = {\n    serializedName: \"Blob_getAccountInfoExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobGetAccountInfoExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobQueryHeaders = {\n    serializedName: \"Blob_queryHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobQueryHeaders\",\n        modelProperties: {\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            metadata: {\n                serializedName: \"x-ms-meta\",\n                headerCollectionPrefix: \"x-ms-meta-\",\n                xmlName: \"x-ms-meta\",\n                type: {\n                    name: \"Dictionary\",\n                    value: { type: { name: \"String\" } },\n                },\n            },\n            contentLength: {\n                serializedName: \"content-length\",\n                xmlName: \"content-length\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            contentType: {\n                serializedName: \"content-type\",\n                xmlName: \"content-type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentRange: {\n                serializedName: \"content-range\",\n                xmlName: \"content-range\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            contentEncoding: {\n                serializedName: \"content-encoding\",\n                xmlName: \"content-encoding\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            cacheControl: {\n                serializedName: \"cache-control\",\n                xmlName: \"cache-control\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentDisposition: {\n                serializedName: \"content-disposition\",\n                xmlName: \"content-disposition\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentLanguage: {\n                serializedName: \"content-language\",\n                xmlName: \"content-language\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            blobType: {\n                serializedName: \"x-ms-blob-type\",\n                xmlName: \"x-ms-blob-type\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"BlockBlob\", \"PageBlob\", \"AppendBlob\"],\n                },\n            },\n            copyCompletionTime: {\n                serializedName: \"x-ms-copy-completion-time\",\n                xmlName: \"x-ms-copy-completion-time\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            copyStatusDescription: {\n                serializedName: \"x-ms-copy-status-description\",\n                xmlName: \"x-ms-copy-status-description\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyId: {\n                serializedName: \"x-ms-copy-id\",\n                xmlName: \"x-ms-copy-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyProgress: {\n                serializedName: \"x-ms-copy-progress\",\n                xmlName: \"x-ms-copy-progress\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copySource: {\n                serializedName: \"x-ms-copy-source\",\n                xmlName: \"x-ms-copy-source\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyStatus: {\n                serializedName: \"x-ms-copy-status\",\n                xmlName: \"x-ms-copy-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"pending\", \"success\", \"aborted\", \"failed\"],\n                },\n            },\n            leaseDuration: {\n                serializedName: \"x-ms-lease-duration\",\n                xmlName: \"x-ms-lease-duration\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"infinite\", \"fixed\"],\n                },\n            },\n            leaseState: {\n                serializedName: \"x-ms-lease-state\",\n                xmlName: \"x-ms-lease-state\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"available\",\n                        \"leased\",\n                        \"expired\",\n                        \"breaking\",\n                        \"broken\",\n                    ],\n                },\n            },\n            leaseStatus: {\n                serializedName: \"x-ms-lease-status\",\n                xmlName: \"x-ms-lease-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"locked\", \"unlocked\"],\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            acceptRanges: {\n                serializedName: \"accept-ranges\",\n                xmlName: \"accept-ranges\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            blobCommittedBlockCount: {\n                serializedName: \"x-ms-blob-committed-block-count\",\n                xmlName: \"x-ms-blob-committed-block-count\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-server-encrypted\",\n                xmlName: \"x-ms-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobContentMD5: {\n                serializedName: \"x-ms-blob-content-md5\",\n                xmlName: \"x-ms-blob-content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n        },\n    },\n};\nconst BlobQueryExceptionHeaders = {\n    serializedName: \"Blob_queryExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobQueryExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobGetTagsHeaders = {\n    serializedName: \"Blob_getTagsHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobGetTagsHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobGetTagsExceptionHeaders = {\n    serializedName: \"Blob_getTagsExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobGetTagsExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetTagsHeaders = {\n    serializedName: \"Blob_setTagsHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetTagsHeaders\",\n        modelProperties: {\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlobSetTagsExceptionHeaders = {\n    serializedName: \"Blob_setTagsExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlobSetTagsExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobCreateHeaders = {\n    serializedName: \"PageBlob_createHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobCreateHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobCreateExceptionHeaders = {\n    serializedName: \"PageBlob_createExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobCreateExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobUploadPagesHeaders = {\n    serializedName: \"PageBlob_uploadPagesHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobUploadPagesHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobUploadPagesExceptionHeaders = {\n    serializedName: \"PageBlob_uploadPagesExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobUploadPagesExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobClearPagesHeaders = {\n    serializedName: \"PageBlob_clearPagesHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobClearPagesHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobClearPagesExceptionHeaders = {\n    serializedName: \"PageBlob_clearPagesExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobClearPagesExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobUploadPagesFromURLHeaders = {\n    serializedName: \"PageBlob_uploadPagesFromURLHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobUploadPagesFromURLHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobUploadPagesFromURLExceptionHeaders = {\n    serializedName: \"PageBlob_uploadPagesFromURLExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobUploadPagesFromURLExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobGetPageRangesHeaders = {\n    serializedName: \"PageBlob_getPageRangesHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobGetPageRangesHeaders\",\n        modelProperties: {\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobContentLength: {\n                serializedName: \"x-ms-blob-content-length\",\n                xmlName: \"x-ms-blob-content-length\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobGetPageRangesExceptionHeaders = {\n    serializedName: \"PageBlob_getPageRangesExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobGetPageRangesExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobGetPageRangesDiffHeaders = {\n    serializedName: \"PageBlob_getPageRangesDiffHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobGetPageRangesDiffHeaders\",\n        modelProperties: {\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobContentLength: {\n                serializedName: \"x-ms-blob-content-length\",\n                xmlName: \"x-ms-blob-content-length\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobGetPageRangesDiffExceptionHeaders = {\n    serializedName: \"PageBlob_getPageRangesDiffExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobGetPageRangesDiffExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobResizeHeaders = {\n    serializedName: \"PageBlob_resizeHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobResizeHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobResizeExceptionHeaders = {\n    serializedName: \"PageBlob_resizeExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobResizeExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobUpdateSequenceNumberHeaders = {\n    serializedName: \"PageBlob_updateSequenceNumberHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobUpdateSequenceNumberHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            blobSequenceNumber: {\n                serializedName: \"x-ms-blob-sequence-number\",\n                xmlName: \"x-ms-blob-sequence-number\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobUpdateSequenceNumberExceptionHeaders = {\n    serializedName: \"PageBlob_updateSequenceNumberExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobUpdateSequenceNumberExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobCopyIncrementalHeaders = {\n    serializedName: \"PageBlob_copyIncrementalHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobCopyIncrementalHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            copyId: {\n                serializedName: \"x-ms-copy-id\",\n                xmlName: \"x-ms-copy-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            copyStatus: {\n                serializedName: \"x-ms-copy-status\",\n                xmlName: \"x-ms-copy-status\",\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"pending\", \"success\", \"aborted\", \"failed\"],\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst PageBlobCopyIncrementalExceptionHeaders = {\n    serializedName: \"PageBlob_copyIncrementalExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"PageBlobCopyIncrementalExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst AppendBlobCreateHeaders = {\n    serializedName: \"AppendBlob_createHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"AppendBlobCreateHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst AppendBlobCreateExceptionHeaders = {\n    serializedName: \"AppendBlob_createExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"AppendBlobCreateExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst AppendBlobAppendBlockHeaders = {\n    serializedName: \"AppendBlob_appendBlockHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"AppendBlobAppendBlockHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            blobAppendOffset: {\n                serializedName: \"x-ms-blob-append-offset\",\n                xmlName: \"x-ms-blob-append-offset\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobCommittedBlockCount: {\n                serializedName: \"x-ms-blob-committed-block-count\",\n                xmlName: \"x-ms-blob-committed-block-count\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst AppendBlobAppendBlockExceptionHeaders = {\n    serializedName: \"AppendBlob_appendBlockExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"AppendBlobAppendBlockExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst AppendBlobAppendBlockFromUrlHeaders = {\n    serializedName: \"AppendBlob_appendBlockFromUrlHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"AppendBlobAppendBlockFromUrlHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            blobAppendOffset: {\n                serializedName: \"x-ms-blob-append-offset\",\n                xmlName: \"x-ms-blob-append-offset\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobCommittedBlockCount: {\n                serializedName: \"x-ms-blob-committed-block-count\",\n                xmlName: \"x-ms-blob-committed-block-count\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst AppendBlobAppendBlockFromUrlExceptionHeaders = {\n    serializedName: \"AppendBlob_appendBlockFromUrlExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"AppendBlobAppendBlockFromUrlExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst AppendBlobSealHeaders = {\n    serializedName: \"AppendBlob_sealHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"AppendBlobSealHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isSealed: {\n                serializedName: \"x-ms-blob-sealed\",\n                xmlName: \"x-ms-blob-sealed\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n        },\n    },\n};\nconst AppendBlobSealExceptionHeaders = {\n    serializedName: \"AppendBlob_sealExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"AppendBlobSealExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobUploadHeaders = {\n    serializedName: \"BlockBlob_uploadHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobUploadHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobUploadExceptionHeaders = {\n    serializedName: \"BlockBlob_uploadExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobUploadExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobPutBlobFromUrlHeaders = {\n    serializedName: \"BlockBlob_putBlobFromUrlHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobPutBlobFromUrlHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobPutBlobFromUrlExceptionHeaders = {\n    serializedName: \"BlockBlob_putBlobFromUrlExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobPutBlobFromUrlExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobStageBlockHeaders = {\n    serializedName: \"BlockBlob_stageBlockHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobStageBlockHeaders\",\n        modelProperties: {\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobStageBlockExceptionHeaders = {\n    serializedName: \"BlockBlob_stageBlockExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobStageBlockExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobStageBlockFromURLHeaders = {\n    serializedName: \"BlockBlob_stageBlockFromURLHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobStageBlockFromURLHeaders\",\n        modelProperties: {\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobStageBlockFromURLExceptionHeaders = {\n    serializedName: \"BlockBlob_stageBlockFromURLExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobStageBlockFromURLExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobCommitBlockListHeaders = {\n    serializedName: \"BlockBlob_commitBlockListHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobCommitBlockListHeaders\",\n        modelProperties: {\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            contentMD5: {\n                serializedName: \"content-md5\",\n                xmlName: \"content-md5\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            xMsContentCrc64: {\n                serializedName: \"x-ms-content-crc64\",\n                xmlName: \"x-ms-content-crc64\",\n                type: {\n                    name: \"ByteArray\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            versionId: {\n                serializedName: \"x-ms-version-id\",\n                xmlName: \"x-ms-version-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            isServerEncrypted: {\n                serializedName: \"x-ms-request-server-encrypted\",\n                xmlName: \"x-ms-request-server-encrypted\",\n                type: {\n                    name: \"Boolean\",\n                },\n            },\n            encryptionKeySha256: {\n                serializedName: \"x-ms-encryption-key-sha256\",\n                xmlName: \"x-ms-encryption-key-sha256\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            encryptionScope: {\n                serializedName: \"x-ms-encryption-scope\",\n                xmlName: \"x-ms-encryption-scope\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobCommitBlockListExceptionHeaders = {\n    serializedName: \"BlockBlob_commitBlockListExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobCommitBlockListExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobGetBlockListHeaders = {\n    serializedName: \"BlockBlob_getBlockListHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobGetBlockListHeaders\",\n        modelProperties: {\n            lastModified: {\n                serializedName: \"last-modified\",\n                xmlName: \"last-modified\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            etag: {\n                serializedName: \"etag\",\n                xmlName: \"etag\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            contentType: {\n                serializedName: \"content-type\",\n                xmlName: \"content-type\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            blobContentLength: {\n                serializedName: \"x-ms-blob-content-length\",\n                xmlName: \"x-ms-blob-content-length\",\n                type: {\n                    name: \"Number\",\n                },\n            },\n            clientRequestId: {\n                serializedName: \"x-ms-client-request-id\",\n                xmlName: \"x-ms-client-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            requestId: {\n                serializedName: \"x-ms-request-id\",\n                xmlName: \"x-ms-request-id\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            version: {\n                serializedName: \"x-ms-version\",\n                xmlName: \"x-ms-version\",\n                type: {\n                    name: \"String\",\n                },\n            },\n            date: {\n                serializedName: \"date\",\n                xmlName: \"date\",\n                type: {\n                    name: \"DateTimeRfc1123\",\n                },\n            },\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\nconst BlockBlobGetBlockListExceptionHeaders = {\n    serializedName: \"BlockBlob_getBlockListExceptionHeaders\",\n    type: {\n        name: \"Composite\",\n        className: \"BlockBlobGetBlockListExceptionHeaders\",\n        modelProperties: {\n            errorCode: {\n                serializedName: \"x-ms-error-code\",\n                xmlName: \"x-ms-error-code\",\n                type: {\n                    name: \"String\",\n                },\n            },\n        },\n    },\n};\n\nvar Mappers = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tAccessPolicy: AccessPolicy,\n\tAppendBlobAppendBlockExceptionHeaders: AppendBlobAppendBlockExceptionHeaders,\n\tAppendBlobAppendBlockFromUrlExceptionHeaders: AppendBlobAppendBlockFromUrlExceptionHeaders,\n\tAppendBlobAppendBlockFromUrlHeaders: AppendBlobAppendBlockFromUrlHeaders,\n\tAppendBlobAppendBlockHeaders: AppendBlobAppendBlockHeaders,\n\tAppendBlobCreateExceptionHeaders: AppendBlobCreateExceptionHeaders,\n\tAppendBlobCreateHeaders: AppendBlobCreateHeaders,\n\tAppendBlobSealExceptionHeaders: AppendBlobSealExceptionHeaders,\n\tAppendBlobSealHeaders: AppendBlobSealHeaders,\n\tArrowConfiguration: ArrowConfiguration,\n\tArrowField: ArrowField,\n\tBlobAbortCopyFromURLExceptionHeaders: BlobAbortCopyFromURLExceptionHeaders,\n\tBlobAbortCopyFromURLHeaders: BlobAbortCopyFromURLHeaders,\n\tBlobAcquireLeaseExceptionHeaders: BlobAcquireLeaseExceptionHeaders,\n\tBlobAcquireLeaseHeaders: BlobAcquireLeaseHeaders,\n\tBlobBreakLeaseExceptionHeaders: BlobBreakLeaseExceptionHeaders,\n\tBlobBreakLeaseHeaders: BlobBreakLeaseHeaders,\n\tBlobChangeLeaseExceptionHeaders: BlobChangeLeaseExceptionHeaders,\n\tBlobChangeLeaseHeaders: BlobChangeLeaseHeaders,\n\tBlobCopyFromURLExceptionHeaders: BlobCopyFromURLExceptionHeaders,\n\tBlobCopyFromURLHeaders: BlobCopyFromURLHeaders,\n\tBlobCreateSnapshotExceptionHeaders: BlobCreateSnapshotExceptionHeaders,\n\tBlobCreateSnapshotHeaders: BlobCreateSnapshotHeaders,\n\tBlobDeleteExceptionHeaders: BlobDeleteExceptionHeaders,\n\tBlobDeleteHeaders: BlobDeleteHeaders,\n\tBlobDeleteImmutabilityPolicyExceptionHeaders: BlobDeleteImmutabilityPolicyExceptionHeaders,\n\tBlobDeleteImmutabilityPolicyHeaders: BlobDeleteImmutabilityPolicyHeaders,\n\tBlobDownloadExceptionHeaders: BlobDownloadExceptionHeaders,\n\tBlobDownloadHeaders: BlobDownloadHeaders,\n\tBlobFlatListSegment: BlobFlatListSegment,\n\tBlobGetAccountInfoExceptionHeaders: BlobGetAccountInfoExceptionHeaders,\n\tBlobGetAccountInfoHeaders: BlobGetAccountInfoHeaders,\n\tBlobGetPropertiesExceptionHeaders: BlobGetPropertiesExceptionHeaders,\n\tBlobGetPropertiesHeaders: BlobGetPropertiesHeaders,\n\tBlobGetTagsExceptionHeaders: BlobGetTagsExceptionHeaders,\n\tBlobGetTagsHeaders: BlobGetTagsHeaders,\n\tBlobHierarchyListSegment: BlobHierarchyListSegment,\n\tBlobItemInternal: BlobItemInternal,\n\tBlobName: BlobName,\n\tBlobPrefix: BlobPrefix,\n\tBlobPropertiesInternal: BlobPropertiesInternal,\n\tBlobQueryExceptionHeaders: BlobQueryExceptionHeaders,\n\tBlobQueryHeaders: BlobQueryHeaders,\n\tBlobReleaseLeaseExceptionHeaders: BlobReleaseLeaseExceptionHeaders,\n\tBlobReleaseLeaseHeaders: BlobReleaseLeaseHeaders,\n\tBlobRenewLeaseExceptionHeaders: BlobRenewLeaseExceptionHeaders,\n\tBlobRenewLeaseHeaders: BlobRenewLeaseHeaders,\n\tBlobServiceProperties: BlobServiceProperties,\n\tBlobServiceStatistics: BlobServiceStatistics,\n\tBlobSetExpiryExceptionHeaders: BlobSetExpiryExceptionHeaders,\n\tBlobSetExpiryHeaders: BlobSetExpiryHeaders,\n\tBlobSetHttpHeadersExceptionHeaders: BlobSetHttpHeadersExceptionHeaders,\n\tBlobSetHttpHeadersHeaders: BlobSetHttpHeadersHeaders,\n\tBlobSetImmutabilityPolicyExceptionHeaders: BlobSetImmutabilityPolicyExceptionHeaders,\n\tBlobSetImmutabilityPolicyHeaders: BlobSetImmutabilityPolicyHeaders,\n\tBlobSetLegalHoldExceptionHeaders: BlobSetLegalHoldExceptionHeaders,\n\tBlobSetLegalHoldHeaders: BlobSetLegalHoldHeaders,\n\tBlobSetMetadataExceptionHeaders: BlobSetMetadataExceptionHeaders,\n\tBlobSetMetadataHeaders: BlobSetMetadataHeaders,\n\tBlobSetTagsExceptionHeaders: BlobSetTagsExceptionHeaders,\n\tBlobSetTagsHeaders: BlobSetTagsHeaders,\n\tBlobSetTierExceptionHeaders: BlobSetTierExceptionHeaders,\n\tBlobSetTierHeaders: BlobSetTierHeaders,\n\tBlobStartCopyFromURLExceptionHeaders: BlobStartCopyFromURLExceptionHeaders,\n\tBlobStartCopyFromURLHeaders: BlobStartCopyFromURLHeaders,\n\tBlobTag: BlobTag,\n\tBlobTags: BlobTags,\n\tBlobUndeleteExceptionHeaders: BlobUndeleteExceptionHeaders,\n\tBlobUndeleteHeaders: BlobUndeleteHeaders,\n\tBlock: Block,\n\tBlockBlobCommitBlockListExceptionHeaders: BlockBlobCommitBlockListExceptionHeaders,\n\tBlockBlobCommitBlockListHeaders: BlockBlobCommitBlockListHeaders,\n\tBlockBlobGetBlockListExceptionHeaders: BlockBlobGetBlockListExceptionHeaders,\n\tBlockBlobGetBlockListHeaders: BlockBlobGetBlockListHeaders,\n\tBlockBlobPutBlobFromUrlExceptionHeaders: BlockBlobPutBlobFromUrlExceptionHeaders,\n\tBlockBlobPutBlobFromUrlHeaders: BlockBlobPutBlobFromUrlHeaders,\n\tBlockBlobStageBlockExceptionHeaders: BlockBlobStageBlockExceptionHeaders,\n\tBlockBlobStageBlockFromURLExceptionHeaders: BlockBlobStageBlockFromURLExceptionHeaders,\n\tBlockBlobStageBlockFromURLHeaders: BlockBlobStageBlockFromURLHeaders,\n\tBlockBlobStageBlockHeaders: BlockBlobStageBlockHeaders,\n\tBlockBlobUploadExceptionHeaders: BlockBlobUploadExceptionHeaders,\n\tBlockBlobUploadHeaders: BlockBlobUploadHeaders,\n\tBlockList: BlockList,\n\tBlockLookupList: BlockLookupList,\n\tClearRange: ClearRange,\n\tContainerAcquireLeaseExceptionHeaders: ContainerAcquireLeaseExceptionHeaders,\n\tContainerAcquireLeaseHeaders: ContainerAcquireLeaseHeaders,\n\tContainerBreakLeaseExceptionHeaders: ContainerBreakLeaseExceptionHeaders,\n\tContainerBreakLeaseHeaders: ContainerBreakLeaseHeaders,\n\tContainerChangeLeaseExceptionHeaders: ContainerChangeLeaseExceptionHeaders,\n\tContainerChangeLeaseHeaders: ContainerChangeLeaseHeaders,\n\tContainerCreateExceptionHeaders: ContainerCreateExceptionHeaders,\n\tContainerCreateHeaders: ContainerCreateHeaders,\n\tContainerDeleteExceptionHeaders: ContainerDeleteExceptionHeaders,\n\tContainerDeleteHeaders: ContainerDeleteHeaders,\n\tContainerFilterBlobsExceptionHeaders: ContainerFilterBlobsExceptionHeaders,\n\tContainerFilterBlobsHeaders: ContainerFilterBlobsHeaders,\n\tContainerGetAccessPolicyExceptionHeaders: ContainerGetAccessPolicyExceptionHeaders,\n\tContainerGetAccessPolicyHeaders: ContainerGetAccessPolicyHeaders,\n\tContainerGetAccountInfoExceptionHeaders: ContainerGetAccountInfoExceptionHeaders,\n\tContainerGetAccountInfoHeaders: ContainerGetAccountInfoHeaders,\n\tContainerGetPropertiesExceptionHeaders: ContainerGetPropertiesExceptionHeaders,\n\tContainerGetPropertiesHeaders: ContainerGetPropertiesHeaders,\n\tContainerItem: ContainerItem,\n\tContainerListBlobFlatSegmentExceptionHeaders: ContainerListBlobFlatSegmentExceptionHeaders,\n\tContainerListBlobFlatSegmentHeaders: ContainerListBlobFlatSegmentHeaders,\n\tContainerListBlobHierarchySegmentExceptionHeaders: ContainerListBlobHierarchySegmentExceptionHeaders,\n\tContainerListBlobHierarchySegmentHeaders: ContainerListBlobHierarchySegmentHeaders,\n\tContainerProperties: ContainerProperties,\n\tContainerReleaseLeaseExceptionHeaders: ContainerReleaseLeaseExceptionHeaders,\n\tContainerReleaseLeaseHeaders: ContainerReleaseLeaseHeaders,\n\tContainerRenameExceptionHeaders: ContainerRenameExceptionHeaders,\n\tContainerRenameHeaders: ContainerRenameHeaders,\n\tContainerRenewLeaseExceptionHeaders: ContainerRenewLeaseExceptionHeaders,\n\tContainerRenewLeaseHeaders: ContainerRenewLeaseHeaders,\n\tContainerRestoreExceptionHeaders: ContainerRestoreExceptionHeaders,\n\tContainerRestoreHeaders: ContainerRestoreHeaders,\n\tContainerSetAccessPolicyExceptionHeaders: ContainerSetAccessPolicyExceptionHeaders,\n\tContainerSetAccessPolicyHeaders: ContainerSetAccessPolicyHeaders,\n\tContainerSetMetadataExceptionHeaders: ContainerSetMetadataExceptionHeaders,\n\tContainerSetMetadataHeaders: ContainerSetMetadataHeaders,\n\tContainerSubmitBatchExceptionHeaders: ContainerSubmitBatchExceptionHeaders,\n\tContainerSubmitBatchHeaders: ContainerSubmitBatchHeaders,\n\tCorsRule: CorsRule,\n\tDelimitedTextConfiguration: DelimitedTextConfiguration,\n\tFilterBlobItem: FilterBlobItem,\n\tFilterBlobSegment: FilterBlobSegment,\n\tGeoReplication: GeoReplication,\n\tJsonTextConfiguration: JsonTextConfiguration,\n\tKeyInfo: KeyInfo,\n\tListBlobsFlatSegmentResponse: ListBlobsFlatSegmentResponse,\n\tListBlobsHierarchySegmentResponse: ListBlobsHierarchySegmentResponse,\n\tListContainersSegmentResponse: ListContainersSegmentResponse,\n\tLogging: Logging,\n\tMetrics: Metrics,\n\tPageBlobClearPagesExceptionHeaders: PageBlobClearPagesExceptionHeaders,\n\tPageBlobClearPagesHeaders: PageBlobClearPagesHeaders,\n\tPageBlobCopyIncrementalExceptionHeaders: PageBlobCopyIncrementalExceptionHeaders,\n\tPageBlobCopyIncrementalHeaders: PageBlobCopyIncrementalHeaders,\n\tPageBlobCreateExceptionHeaders: PageBlobCreateExceptionHeaders,\n\tPageBlobCreateHeaders: PageBlobCreateHeaders,\n\tPageBlobGetPageRangesDiffExceptionHeaders: PageBlobGetPageRangesDiffExceptionHeaders,\n\tPageBlobGetPageRangesDiffHeaders: PageBlobGetPageRangesDiffHeaders,\n\tPageBlobGetPageRangesExceptionHeaders: PageBlobGetPageRangesExceptionHeaders,\n\tPageBlobGetPageRangesHeaders: PageBlobGetPageRangesHeaders,\n\tPageBlobResizeExceptionHeaders: PageBlobResizeExceptionHeaders,\n\tPageBlobResizeHeaders: PageBlobResizeHeaders,\n\tPageBlobUpdateSequenceNumberExceptionHeaders: PageBlobUpdateSequenceNumberExceptionHeaders,\n\tPageBlobUpdateSequenceNumberHeaders: PageBlobUpdateSequenceNumberHeaders,\n\tPageBlobUploadPagesExceptionHeaders: PageBlobUploadPagesExceptionHeaders,\n\tPageBlobUploadPagesFromURLExceptionHeaders: PageBlobUploadPagesFromURLExceptionHeaders,\n\tPageBlobUploadPagesFromURLHeaders: PageBlobUploadPagesFromURLHeaders,\n\tPageBlobUploadPagesHeaders: PageBlobUploadPagesHeaders,\n\tPageList: PageList,\n\tPageRange: PageRange,\n\tQueryFormat: QueryFormat,\n\tQueryRequest: QueryRequest,\n\tQuerySerialization: QuerySerialization,\n\tRetentionPolicy: RetentionPolicy,\n\tServiceFilterBlobsExceptionHeaders: ServiceFilterBlobsExceptionHeaders,\n\tServiceFilterBlobsHeaders: ServiceFilterBlobsHeaders,\n\tServiceGetAccountInfoExceptionHeaders: ServiceGetAccountInfoExceptionHeaders,\n\tServiceGetAccountInfoHeaders: ServiceGetAccountInfoHeaders,\n\tServiceGetPropertiesExceptionHeaders: ServiceGetPropertiesExceptionHeaders,\n\tServiceGetPropertiesHeaders: ServiceGetPropertiesHeaders,\n\tServiceGetStatisticsExceptionHeaders: ServiceGetStatisticsExceptionHeaders,\n\tServiceGetStatisticsHeaders: ServiceGetStatisticsHeaders,\n\tServiceGetUserDelegationKeyExceptionHeaders: ServiceGetUserDelegationKeyExceptionHeaders,\n\tServiceGetUserDelegationKeyHeaders: ServiceGetUserDelegationKeyHeaders,\n\tServiceListContainersSegmentExceptionHeaders: ServiceListContainersSegmentExceptionHeaders,\n\tServiceListContainersSegmentHeaders: ServiceListContainersSegmentHeaders,\n\tServiceSetPropertiesExceptionHeaders: ServiceSetPropertiesExceptionHeaders,\n\tServiceSetPropertiesHeaders: ServiceSetPropertiesHeaders,\n\tServiceSubmitBatchExceptionHeaders: ServiceSubmitBatchExceptionHeaders,\n\tServiceSubmitBatchHeaders: ServiceSubmitBatchHeaders,\n\tSignedIdentifier: SignedIdentifier,\n\tStaticWebsite: StaticWebsite,\n\tStorageError: StorageError,\n\tUserDelegationKey: UserDelegationKey\n});\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\nconst contentType = {\n    parameterPath: [\"options\", \"contentType\"],\n    mapper: {\n        defaultValue: \"application/xml\",\n        isConstant: true,\n        serializedName: \"Content-Type\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobServiceProperties = {\n    parameterPath: \"blobServiceProperties\",\n    mapper: BlobServiceProperties,\n};\nconst accept = {\n    parameterPath: \"accept\",\n    mapper: {\n        defaultValue: \"application/xml\",\n        isConstant: true,\n        serializedName: \"Accept\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst url = {\n    parameterPath: \"url\",\n    mapper: {\n        serializedName: \"url\",\n        required: true,\n        xmlName: \"url\",\n        type: {\n            name: \"String\",\n        },\n    },\n    skipEncoding: true,\n};\nconst restype = {\n    parameterPath: \"restype\",\n    mapper: {\n        defaultValue: \"service\",\n        isConstant: true,\n        serializedName: \"restype\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"properties\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst timeoutInSeconds = {\n    parameterPath: [\"options\", \"timeoutInSeconds\"],\n    mapper: {\n        constraints: {\n            InclusiveMinimum: 0,\n        },\n        serializedName: \"timeout\",\n        xmlName: \"timeout\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst version$2 = {\n    parameterPath: \"version\",\n    mapper: {\n        defaultValue: \"2025-05-05\",\n        isConstant: true,\n        serializedName: \"x-ms-version\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst requestId = {\n    parameterPath: [\"options\", \"requestId\"],\n    mapper: {\n        serializedName: \"x-ms-client-request-id\",\n        xmlName: \"x-ms-client-request-id\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst accept1 = {\n    parameterPath: \"accept\",\n    mapper: {\n        defaultValue: \"application/xml\",\n        isConstant: true,\n        serializedName: \"Accept\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp1 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"stats\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp2 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"list\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst prefix = {\n    parameterPath: [\"options\", \"prefix\"],\n    mapper: {\n        serializedName: \"prefix\",\n        xmlName: \"prefix\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst marker = {\n    parameterPath: [\"options\", \"marker\"],\n    mapper: {\n        serializedName: \"marker\",\n        xmlName: \"marker\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst maxPageSize = {\n    parameterPath: [\"options\", \"maxPageSize\"],\n    mapper: {\n        constraints: {\n            InclusiveMinimum: 1,\n        },\n        serializedName: \"maxresults\",\n        xmlName: \"maxresults\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst include = {\n    parameterPath: [\"options\", \"include\"],\n    mapper: {\n        serializedName: \"include\",\n        xmlName: \"include\",\n        xmlElementName: \"ListContainersIncludeType\",\n        type: {\n            name: \"Sequence\",\n            element: {\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\"metadata\", \"deleted\", \"system\"],\n                },\n            },\n        },\n    },\n    collectionFormat: \"CSV\",\n};\nconst keyInfo = {\n    parameterPath: \"keyInfo\",\n    mapper: KeyInfo,\n};\nconst comp3 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"userdelegationkey\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst restype1 = {\n    parameterPath: \"restype\",\n    mapper: {\n        defaultValue: \"account\",\n        isConstant: true,\n        serializedName: \"restype\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst body = {\n    parameterPath: \"body\",\n    mapper: {\n        serializedName: \"body\",\n        required: true,\n        xmlName: \"body\",\n        type: {\n            name: \"Stream\",\n        },\n    },\n};\nconst comp4 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"batch\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst contentLength = {\n    parameterPath: \"contentLength\",\n    mapper: {\n        serializedName: \"Content-Length\",\n        required: true,\n        xmlName: \"Content-Length\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst multipartContentType = {\n    parameterPath: \"multipartContentType\",\n    mapper: {\n        serializedName: \"Content-Type\",\n        required: true,\n        xmlName: \"Content-Type\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp5 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"blobs\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst where = {\n    parameterPath: [\"options\", \"where\"],\n    mapper: {\n        serializedName: \"where\",\n        xmlName: \"where\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst restype2 = {\n    parameterPath: \"restype\",\n    mapper: {\n        defaultValue: \"container\",\n        isConstant: true,\n        serializedName: \"restype\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst metadata = {\n    parameterPath: [\"options\", \"metadata\"],\n    mapper: {\n        serializedName: \"x-ms-meta\",\n        xmlName: \"x-ms-meta\",\n        headerCollectionPrefix: \"x-ms-meta-\",\n        type: {\n            name: \"Dictionary\",\n            value: { type: { name: \"String\" } },\n        },\n    },\n};\nconst access = {\n    parameterPath: [\"options\", \"access\"],\n    mapper: {\n        serializedName: \"x-ms-blob-public-access\",\n        xmlName: \"x-ms-blob-public-access\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\"container\", \"blob\"],\n        },\n    },\n};\nconst defaultEncryptionScope = {\n    parameterPath: [\n        \"options\",\n        \"containerEncryptionScope\",\n        \"defaultEncryptionScope\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-default-encryption-scope\",\n        xmlName: \"x-ms-default-encryption-scope\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst preventEncryptionScopeOverride = {\n    parameterPath: [\n        \"options\",\n        \"containerEncryptionScope\",\n        \"preventEncryptionScopeOverride\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-deny-encryption-scope-override\",\n        xmlName: \"x-ms-deny-encryption-scope-override\",\n        type: {\n            name: \"Boolean\",\n        },\n    },\n};\nconst leaseId = {\n    parameterPath: [\"options\", \"leaseAccessConditions\", \"leaseId\"],\n    mapper: {\n        serializedName: \"x-ms-lease-id\",\n        xmlName: \"x-ms-lease-id\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst ifModifiedSince = {\n    parameterPath: [\"options\", \"modifiedAccessConditions\", \"ifModifiedSince\"],\n    mapper: {\n        serializedName: \"If-Modified-Since\",\n        xmlName: \"If-Modified-Since\",\n        type: {\n            name: \"DateTimeRfc1123\",\n        },\n    },\n};\nconst ifUnmodifiedSince = {\n    parameterPath: [\"options\", \"modifiedAccessConditions\", \"ifUnmodifiedSince\"],\n    mapper: {\n        serializedName: \"If-Unmodified-Since\",\n        xmlName: \"If-Unmodified-Since\",\n        type: {\n            name: \"DateTimeRfc1123\",\n        },\n    },\n};\nconst comp6 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"metadata\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp7 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"acl\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst containerAcl = {\n    parameterPath: [\"options\", \"containerAcl\"],\n    mapper: {\n        serializedName: \"containerAcl\",\n        xmlName: \"SignedIdentifiers\",\n        xmlIsWrapped: true,\n        xmlElementName: \"SignedIdentifier\",\n        type: {\n            name: \"Sequence\",\n            element: {\n                type: {\n                    name: \"Composite\",\n                    className: \"SignedIdentifier\",\n                },\n            },\n        },\n    },\n};\nconst comp8 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"undelete\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst deletedContainerName = {\n    parameterPath: [\"options\", \"deletedContainerName\"],\n    mapper: {\n        serializedName: \"x-ms-deleted-container-name\",\n        xmlName: \"x-ms-deleted-container-name\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst deletedContainerVersion = {\n    parameterPath: [\"options\", \"deletedContainerVersion\"],\n    mapper: {\n        serializedName: \"x-ms-deleted-container-version\",\n        xmlName: \"x-ms-deleted-container-version\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp9 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"rename\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sourceContainerName = {\n    parameterPath: \"sourceContainerName\",\n    mapper: {\n        serializedName: \"x-ms-source-container-name\",\n        required: true,\n        xmlName: \"x-ms-source-container-name\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sourceLeaseId = {\n    parameterPath: [\"options\", \"sourceLeaseId\"],\n    mapper: {\n        serializedName: \"x-ms-source-lease-id\",\n        xmlName: \"x-ms-source-lease-id\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp10 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"lease\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst action = {\n    parameterPath: \"action\",\n    mapper: {\n        defaultValue: \"acquire\",\n        isConstant: true,\n        serializedName: \"x-ms-lease-action\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst duration = {\n    parameterPath: [\"options\", \"duration\"],\n    mapper: {\n        serializedName: \"x-ms-lease-duration\",\n        xmlName: \"x-ms-lease-duration\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst proposedLeaseId = {\n    parameterPath: [\"options\", \"proposedLeaseId\"],\n    mapper: {\n        serializedName: \"x-ms-proposed-lease-id\",\n        xmlName: \"x-ms-proposed-lease-id\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst action1 = {\n    parameterPath: \"action\",\n    mapper: {\n        defaultValue: \"release\",\n        isConstant: true,\n        serializedName: \"x-ms-lease-action\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst leaseId1 = {\n    parameterPath: \"leaseId\",\n    mapper: {\n        serializedName: \"x-ms-lease-id\",\n        required: true,\n        xmlName: \"x-ms-lease-id\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst action2 = {\n    parameterPath: \"action\",\n    mapper: {\n        defaultValue: \"renew\",\n        isConstant: true,\n        serializedName: \"x-ms-lease-action\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst action3 = {\n    parameterPath: \"action\",\n    mapper: {\n        defaultValue: \"break\",\n        isConstant: true,\n        serializedName: \"x-ms-lease-action\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst breakPeriod = {\n    parameterPath: [\"options\", \"breakPeriod\"],\n    mapper: {\n        serializedName: \"x-ms-lease-break-period\",\n        xmlName: \"x-ms-lease-break-period\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst action4 = {\n    parameterPath: \"action\",\n    mapper: {\n        defaultValue: \"change\",\n        isConstant: true,\n        serializedName: \"x-ms-lease-action\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst proposedLeaseId1 = {\n    parameterPath: \"proposedLeaseId\",\n    mapper: {\n        serializedName: \"x-ms-proposed-lease-id\",\n        required: true,\n        xmlName: \"x-ms-proposed-lease-id\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst include1 = {\n    parameterPath: [\"options\", \"include\"],\n    mapper: {\n        serializedName: \"include\",\n        xmlName: \"include\",\n        xmlElementName: \"ListBlobsIncludeItem\",\n        type: {\n            name: \"Sequence\",\n            element: {\n                type: {\n                    name: \"Enum\",\n                    allowedValues: [\n                        \"copy\",\n                        \"deleted\",\n                        \"metadata\",\n                        \"snapshots\",\n                        \"uncommittedblobs\",\n                        \"versions\",\n                        \"tags\",\n                        \"immutabilitypolicy\",\n                        \"legalhold\",\n                        \"deletedwithversions\",\n                    ],\n                },\n            },\n        },\n    },\n    collectionFormat: \"CSV\",\n};\nconst delimiter = {\n    parameterPath: \"delimiter\",\n    mapper: {\n        serializedName: \"delimiter\",\n        required: true,\n        xmlName: \"delimiter\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst snapshot = {\n    parameterPath: [\"options\", \"snapshot\"],\n    mapper: {\n        serializedName: \"snapshot\",\n        xmlName: \"snapshot\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst versionId = {\n    parameterPath: [\"options\", \"versionId\"],\n    mapper: {\n        serializedName: \"versionid\",\n        xmlName: \"versionid\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst range$2 = {\n    parameterPath: [\"options\", \"range\"],\n    mapper: {\n        serializedName: \"x-ms-range\",\n        xmlName: \"x-ms-range\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst rangeGetContentMD5 = {\n    parameterPath: [\"options\", \"rangeGetContentMD5\"],\n    mapper: {\n        serializedName: \"x-ms-range-get-content-md5\",\n        xmlName: \"x-ms-range-get-content-md5\",\n        type: {\n            name: \"Boolean\",\n        },\n    },\n};\nconst rangeGetContentCRC64 = {\n    parameterPath: [\"options\", \"rangeGetContentCRC64\"],\n    mapper: {\n        serializedName: \"x-ms-range-get-content-crc64\",\n        xmlName: \"x-ms-range-get-content-crc64\",\n        type: {\n            name: \"Boolean\",\n        },\n    },\n};\nconst encryptionKey = {\n    parameterPath: [\"options\", \"cpkInfo\", \"encryptionKey\"],\n    mapper: {\n        serializedName: \"x-ms-encryption-key\",\n        xmlName: \"x-ms-encryption-key\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst encryptionKeySha256 = {\n    parameterPath: [\"options\", \"cpkInfo\", \"encryptionKeySha256\"],\n    mapper: {\n        serializedName: \"x-ms-encryption-key-sha256\",\n        xmlName: \"x-ms-encryption-key-sha256\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst encryptionAlgorithm = {\n    parameterPath: [\"options\", \"cpkInfo\", \"encryptionAlgorithm\"],\n    mapper: {\n        serializedName: \"x-ms-encryption-algorithm\",\n        xmlName: \"x-ms-encryption-algorithm\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst ifMatch = {\n    parameterPath: [\"options\", \"modifiedAccessConditions\", \"ifMatch\"],\n    mapper: {\n        serializedName: \"If-Match\",\n        xmlName: \"If-Match\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst ifNoneMatch = {\n    parameterPath: [\"options\", \"modifiedAccessConditions\", \"ifNoneMatch\"],\n    mapper: {\n        serializedName: \"If-None-Match\",\n        xmlName: \"If-None-Match\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst ifTags = {\n    parameterPath: [\"options\", \"modifiedAccessConditions\", \"ifTags\"],\n    mapper: {\n        serializedName: \"x-ms-if-tags\",\n        xmlName: \"x-ms-if-tags\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst deleteSnapshots = {\n    parameterPath: [\"options\", \"deleteSnapshots\"],\n    mapper: {\n        serializedName: \"x-ms-delete-snapshots\",\n        xmlName: \"x-ms-delete-snapshots\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\"include\", \"only\"],\n        },\n    },\n};\nconst blobDeleteType = {\n    parameterPath: [\"options\", \"blobDeleteType\"],\n    mapper: {\n        serializedName: \"deletetype\",\n        xmlName: \"deletetype\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp11 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"expiry\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst expiryOptions = {\n    parameterPath: \"expiryOptions\",\n    mapper: {\n        serializedName: \"x-ms-expiry-option\",\n        required: true,\n        xmlName: \"x-ms-expiry-option\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst expiresOn = {\n    parameterPath: [\"options\", \"expiresOn\"],\n    mapper: {\n        serializedName: \"x-ms-expiry-time\",\n        xmlName: \"x-ms-expiry-time\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobCacheControl = {\n    parameterPath: [\"options\", \"blobHttpHeaders\", \"blobCacheControl\"],\n    mapper: {\n        serializedName: \"x-ms-blob-cache-control\",\n        xmlName: \"x-ms-blob-cache-control\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobContentType = {\n    parameterPath: [\"options\", \"blobHttpHeaders\", \"blobContentType\"],\n    mapper: {\n        serializedName: \"x-ms-blob-content-type\",\n        xmlName: \"x-ms-blob-content-type\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobContentMD5 = {\n    parameterPath: [\"options\", \"blobHttpHeaders\", \"blobContentMD5\"],\n    mapper: {\n        serializedName: \"x-ms-blob-content-md5\",\n        xmlName: \"x-ms-blob-content-md5\",\n        type: {\n            name: \"ByteArray\",\n        },\n    },\n};\nconst blobContentEncoding = {\n    parameterPath: [\"options\", \"blobHttpHeaders\", \"blobContentEncoding\"],\n    mapper: {\n        serializedName: \"x-ms-blob-content-encoding\",\n        xmlName: \"x-ms-blob-content-encoding\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobContentLanguage = {\n    parameterPath: [\"options\", \"blobHttpHeaders\", \"blobContentLanguage\"],\n    mapper: {\n        serializedName: \"x-ms-blob-content-language\",\n        xmlName: \"x-ms-blob-content-language\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobContentDisposition = {\n    parameterPath: [\"options\", \"blobHttpHeaders\", \"blobContentDisposition\"],\n    mapper: {\n        serializedName: \"x-ms-blob-content-disposition\",\n        xmlName: \"x-ms-blob-content-disposition\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp12 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"immutabilityPolicies\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst immutabilityPolicyExpiry = {\n    parameterPath: [\"options\", \"immutabilityPolicyExpiry\"],\n    mapper: {\n        serializedName: \"x-ms-immutability-policy-until-date\",\n        xmlName: \"x-ms-immutability-policy-until-date\",\n        type: {\n            name: \"DateTimeRfc1123\",\n        },\n    },\n};\nconst immutabilityPolicyMode = {\n    parameterPath: [\"options\", \"immutabilityPolicyMode\"],\n    mapper: {\n        serializedName: \"x-ms-immutability-policy-mode\",\n        xmlName: \"x-ms-immutability-policy-mode\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\"Mutable\", \"Unlocked\", \"Locked\"],\n        },\n    },\n};\nconst comp13 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"legalhold\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst legalHold = {\n    parameterPath: \"legalHold\",\n    mapper: {\n        serializedName: \"x-ms-legal-hold\",\n        required: true,\n        xmlName: \"x-ms-legal-hold\",\n        type: {\n            name: \"Boolean\",\n        },\n    },\n};\nconst encryptionScope = {\n    parameterPath: [\"options\", \"encryptionScope\"],\n    mapper: {\n        serializedName: \"x-ms-encryption-scope\",\n        xmlName: \"x-ms-encryption-scope\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp14 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"snapshot\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst tier = {\n    parameterPath: [\"options\", \"tier\"],\n    mapper: {\n        serializedName: \"x-ms-access-tier\",\n        xmlName: \"x-ms-access-tier\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\n                \"P4\",\n                \"P6\",\n                \"P10\",\n                \"P15\",\n                \"P20\",\n                \"P30\",\n                \"P40\",\n                \"P50\",\n                \"P60\",\n                \"P70\",\n                \"P80\",\n                \"Hot\",\n                \"Cool\",\n                \"Archive\",\n                \"Cold\",\n            ],\n        },\n    },\n};\nconst rehydratePriority = {\n    parameterPath: [\"options\", \"rehydratePriority\"],\n    mapper: {\n        serializedName: \"x-ms-rehydrate-priority\",\n        xmlName: \"x-ms-rehydrate-priority\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\"High\", \"Standard\"],\n        },\n    },\n};\nconst sourceIfModifiedSince = {\n    parameterPath: [\n        \"options\",\n        \"sourceModifiedAccessConditions\",\n        \"sourceIfModifiedSince\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-source-if-modified-since\",\n        xmlName: \"x-ms-source-if-modified-since\",\n        type: {\n            name: \"DateTimeRfc1123\",\n        },\n    },\n};\nconst sourceIfUnmodifiedSince = {\n    parameterPath: [\n        \"options\",\n        \"sourceModifiedAccessConditions\",\n        \"sourceIfUnmodifiedSince\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-source-if-unmodified-since\",\n        xmlName: \"x-ms-source-if-unmodified-since\",\n        type: {\n            name: \"DateTimeRfc1123\",\n        },\n    },\n};\nconst sourceIfMatch = {\n    parameterPath: [\"options\", \"sourceModifiedAccessConditions\", \"sourceIfMatch\"],\n    mapper: {\n        serializedName: \"x-ms-source-if-match\",\n        xmlName: \"x-ms-source-if-match\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sourceIfNoneMatch = {\n    parameterPath: [\n        \"options\",\n        \"sourceModifiedAccessConditions\",\n        \"sourceIfNoneMatch\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-source-if-none-match\",\n        xmlName: \"x-ms-source-if-none-match\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sourceIfTags = {\n    parameterPath: [\"options\", \"sourceModifiedAccessConditions\", \"sourceIfTags\"],\n    mapper: {\n        serializedName: \"x-ms-source-if-tags\",\n        xmlName: \"x-ms-source-if-tags\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst copySource = {\n    parameterPath: \"copySource\",\n    mapper: {\n        serializedName: \"x-ms-copy-source\",\n        required: true,\n        xmlName: \"x-ms-copy-source\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobTagsString = {\n    parameterPath: [\"options\", \"blobTagsString\"],\n    mapper: {\n        serializedName: \"x-ms-tags\",\n        xmlName: \"x-ms-tags\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sealBlob = {\n    parameterPath: [\"options\", \"sealBlob\"],\n    mapper: {\n        serializedName: \"x-ms-seal-blob\",\n        xmlName: \"x-ms-seal-blob\",\n        type: {\n            name: \"Boolean\",\n        },\n    },\n};\nconst legalHold1 = {\n    parameterPath: [\"options\", \"legalHold\"],\n    mapper: {\n        serializedName: \"x-ms-legal-hold\",\n        xmlName: \"x-ms-legal-hold\",\n        type: {\n            name: \"Boolean\",\n        },\n    },\n};\nconst xMsRequiresSync = {\n    parameterPath: \"xMsRequiresSync\",\n    mapper: {\n        defaultValue: \"true\",\n        isConstant: true,\n        serializedName: \"x-ms-requires-sync\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sourceContentMD5 = {\n    parameterPath: [\"options\", \"sourceContentMD5\"],\n    mapper: {\n        serializedName: \"x-ms-source-content-md5\",\n        xmlName: \"x-ms-source-content-md5\",\n        type: {\n            name: \"ByteArray\",\n        },\n    },\n};\nconst copySourceAuthorization = {\n    parameterPath: [\"options\", \"copySourceAuthorization\"],\n    mapper: {\n        serializedName: \"x-ms-copy-source-authorization\",\n        xmlName: \"x-ms-copy-source-authorization\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst copySourceTags = {\n    parameterPath: [\"options\", \"copySourceTags\"],\n    mapper: {\n        serializedName: \"x-ms-copy-source-tag-option\",\n        xmlName: \"x-ms-copy-source-tag-option\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\"REPLACE\", \"COPY\"],\n        },\n    },\n};\nconst comp15 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"copy\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst copyActionAbortConstant = {\n    parameterPath: \"copyActionAbortConstant\",\n    mapper: {\n        defaultValue: \"abort\",\n        isConstant: true,\n        serializedName: \"x-ms-copy-action\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst copyId = {\n    parameterPath: \"copyId\",\n    mapper: {\n        serializedName: \"copyid\",\n        required: true,\n        xmlName: \"copyid\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp16 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"tier\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst tier1 = {\n    parameterPath: \"tier\",\n    mapper: {\n        serializedName: \"x-ms-access-tier\",\n        required: true,\n        xmlName: \"x-ms-access-tier\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\n                \"P4\",\n                \"P6\",\n                \"P10\",\n                \"P15\",\n                \"P20\",\n                \"P30\",\n                \"P40\",\n                \"P50\",\n                \"P60\",\n                \"P70\",\n                \"P80\",\n                \"Hot\",\n                \"Cool\",\n                \"Archive\",\n                \"Cold\",\n            ],\n        },\n    },\n};\nconst queryRequest = {\n    parameterPath: [\"options\", \"queryRequest\"],\n    mapper: QueryRequest,\n};\nconst comp17 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"query\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp18 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"tags\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst tags = {\n    parameterPath: [\"options\", \"tags\"],\n    mapper: BlobTags,\n};\nconst transactionalContentMD5 = {\n    parameterPath: [\"options\", \"transactionalContentMD5\"],\n    mapper: {\n        serializedName: \"Content-MD5\",\n        xmlName: \"Content-MD5\",\n        type: {\n            name: \"ByteArray\",\n        },\n    },\n};\nconst transactionalContentCrc64 = {\n    parameterPath: [\"options\", \"transactionalContentCrc64\"],\n    mapper: {\n        serializedName: \"x-ms-content-crc64\",\n        xmlName: \"x-ms-content-crc64\",\n        type: {\n            name: \"ByteArray\",\n        },\n    },\n};\nconst blobType = {\n    parameterPath: \"blobType\",\n    mapper: {\n        defaultValue: \"PageBlob\",\n        isConstant: true,\n        serializedName: \"x-ms-blob-type\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobContentLength = {\n    parameterPath: \"blobContentLength\",\n    mapper: {\n        serializedName: \"x-ms-blob-content-length\",\n        required: true,\n        xmlName: \"x-ms-blob-content-length\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst blobSequenceNumber = {\n    parameterPath: [\"options\", \"blobSequenceNumber\"],\n    mapper: {\n        defaultValue: 0,\n        serializedName: \"x-ms-blob-sequence-number\",\n        xmlName: \"x-ms-blob-sequence-number\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst contentType1 = {\n    parameterPath: [\"options\", \"contentType\"],\n    mapper: {\n        defaultValue: \"application/octet-stream\",\n        isConstant: true,\n        serializedName: \"Content-Type\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst body1 = {\n    parameterPath: \"body\",\n    mapper: {\n        serializedName: \"body\",\n        required: true,\n        xmlName: \"body\",\n        type: {\n            name: \"Stream\",\n        },\n    },\n};\nconst accept2 = {\n    parameterPath: \"accept\",\n    mapper: {\n        defaultValue: \"application/xml\",\n        isConstant: true,\n        serializedName: \"Accept\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp19 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"page\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst pageWrite = {\n    parameterPath: \"pageWrite\",\n    mapper: {\n        defaultValue: \"update\",\n        isConstant: true,\n        serializedName: \"x-ms-page-write\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst ifSequenceNumberLessThanOrEqualTo = {\n    parameterPath: [\n        \"options\",\n        \"sequenceNumberAccessConditions\",\n        \"ifSequenceNumberLessThanOrEqualTo\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-if-sequence-number-le\",\n        xmlName: \"x-ms-if-sequence-number-le\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst ifSequenceNumberLessThan = {\n    parameterPath: [\n        \"options\",\n        \"sequenceNumberAccessConditions\",\n        \"ifSequenceNumberLessThan\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-if-sequence-number-lt\",\n        xmlName: \"x-ms-if-sequence-number-lt\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst ifSequenceNumberEqualTo = {\n    parameterPath: [\n        \"options\",\n        \"sequenceNumberAccessConditions\",\n        \"ifSequenceNumberEqualTo\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-if-sequence-number-eq\",\n        xmlName: \"x-ms-if-sequence-number-eq\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst pageWrite1 = {\n    parameterPath: \"pageWrite\",\n    mapper: {\n        defaultValue: \"clear\",\n        isConstant: true,\n        serializedName: \"x-ms-page-write\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sourceUrl = {\n    parameterPath: \"sourceUrl\",\n    mapper: {\n        serializedName: \"x-ms-copy-source\",\n        required: true,\n        xmlName: \"x-ms-copy-source\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sourceRange = {\n    parameterPath: \"sourceRange\",\n    mapper: {\n        serializedName: \"x-ms-source-range\",\n        required: true,\n        xmlName: \"x-ms-source-range\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sourceContentCrc64 = {\n    parameterPath: [\"options\", \"sourceContentCrc64\"],\n    mapper: {\n        serializedName: \"x-ms-source-content-crc64\",\n        xmlName: \"x-ms-source-content-crc64\",\n        type: {\n            name: \"ByteArray\",\n        },\n    },\n};\nconst range1 = {\n    parameterPath: \"range\",\n    mapper: {\n        serializedName: \"x-ms-range\",\n        required: true,\n        xmlName: \"x-ms-range\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp20 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"pagelist\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst prevsnapshot = {\n    parameterPath: [\"options\", \"prevsnapshot\"],\n    mapper: {\n        serializedName: \"prevsnapshot\",\n        xmlName: \"prevsnapshot\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst prevSnapshotUrl = {\n    parameterPath: [\"options\", \"prevSnapshotUrl\"],\n    mapper: {\n        serializedName: \"x-ms-previous-snapshot-url\",\n        xmlName: \"x-ms-previous-snapshot-url\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst sequenceNumberAction = {\n    parameterPath: \"sequenceNumberAction\",\n    mapper: {\n        serializedName: \"x-ms-sequence-number-action\",\n        required: true,\n        xmlName: \"x-ms-sequence-number-action\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\"max\", \"update\", \"increment\"],\n        },\n    },\n};\nconst comp21 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"incrementalcopy\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobType1 = {\n    parameterPath: \"blobType\",\n    mapper: {\n        defaultValue: \"AppendBlob\",\n        isConstant: true,\n        serializedName: \"x-ms-blob-type\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp22 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"appendblock\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst maxSize = {\n    parameterPath: [\"options\", \"appendPositionAccessConditions\", \"maxSize\"],\n    mapper: {\n        serializedName: \"x-ms-blob-condition-maxsize\",\n        xmlName: \"x-ms-blob-condition-maxsize\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst appendPosition = {\n    parameterPath: [\n        \"options\",\n        \"appendPositionAccessConditions\",\n        \"appendPosition\",\n    ],\n    mapper: {\n        serializedName: \"x-ms-blob-condition-appendpos\",\n        xmlName: \"x-ms-blob-condition-appendpos\",\n        type: {\n            name: \"Number\",\n        },\n    },\n};\nconst sourceRange1 = {\n    parameterPath: [\"options\", \"sourceRange\"],\n    mapper: {\n        serializedName: \"x-ms-source-range\",\n        xmlName: \"x-ms-source-range\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst comp23 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"seal\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blobType2 = {\n    parameterPath: \"blobType\",\n    mapper: {\n        defaultValue: \"BlockBlob\",\n        isConstant: true,\n        serializedName: \"x-ms-blob-type\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst copySourceBlobProperties = {\n    parameterPath: [\"options\", \"copySourceBlobProperties\"],\n    mapper: {\n        serializedName: \"x-ms-copy-source-blob-properties\",\n        xmlName: \"x-ms-copy-source-blob-properties\",\n        type: {\n            name: \"Boolean\",\n        },\n    },\n};\nconst comp24 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"block\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blockId = {\n    parameterPath: \"blockId\",\n    mapper: {\n        serializedName: \"blockid\",\n        required: true,\n        xmlName: \"blockid\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst blocks = {\n    parameterPath: \"blocks\",\n    mapper: BlockLookupList,\n};\nconst comp25 = {\n    parameterPath: \"comp\",\n    mapper: {\n        defaultValue: \"blocklist\",\n        isConstant: true,\n        serializedName: \"comp\",\n        type: {\n            name: \"String\",\n        },\n    },\n};\nconst listType = {\n    parameterPath: \"listType\",\n    mapper: {\n        defaultValue: \"committed\",\n        serializedName: \"blocklisttype\",\n        required: true,\n        xmlName: \"blocklisttype\",\n        type: {\n            name: \"Enum\",\n            allowedValues: [\"committed\", \"uncommitted\", \"all\"],\n        },\n    },\n};\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n/** Class containing Service operations. */\nclass ServiceImpl {\n    /**\n     * Initialize a new instance of the class Service class.\n     * @param client Reference to the service client\n     */\n    constructor(client) {\n        this.client = client;\n    }\n    /**\n     * Sets properties for a storage account's Blob service endpoint, including properties for Storage\n     * Analytics and CORS (Cross-Origin Resource Sharing) rules\n     * @param blobServiceProperties The StorageService properties.\n     * @param options The options parameters.\n     */\n    setProperties(blobServiceProperties, options) {\n        return this.client.sendOperationRequest({ blobServiceProperties, options }, setPropertiesOperationSpec);\n    }\n    /**\n     * gets the properties of a storage account's Blob service, including properties for Storage Analytics\n     * and CORS (Cross-Origin Resource Sharing) rules.\n     * @param options The options parameters.\n     */\n    getProperties(options) {\n        return this.client.sendOperationRequest({ options }, getPropertiesOperationSpec$2);\n    }\n    /**\n     * Retrieves statistics related to replication for the Blob service. It is only available on the\n     * secondary location endpoint when read-access geo-redundant replication is enabled for the storage\n     * account.\n     * @param options The options parameters.\n     */\n    getStatistics(options) {\n        return this.client.sendOperationRequest({ options }, getStatisticsOperationSpec);\n    }\n    /**\n     * The List Containers Segment operation returns a list of the containers under the specified account\n     * @param options The options parameters.\n     */\n    listContainersSegment(options) {\n        return this.client.sendOperationRequest({ options }, listContainersSegmentOperationSpec);\n    }\n    /**\n     * Retrieves a user delegation key for the Blob service. This is only a valid operation when using\n     * bearer token authentication.\n     * @param keyInfo Key information\n     * @param options The options parameters.\n     */\n    getUserDelegationKey(keyInfo, options) {\n        return this.client.sendOperationRequest({ keyInfo, options }, getUserDelegationKeyOperationSpec);\n    }\n    /**\n     * Returns the sku name and account kind\n     * @param options The options parameters.\n     */\n    getAccountInfo(options) {\n        return this.client.sendOperationRequest({ options }, getAccountInfoOperationSpec$2);\n    }\n    /**\n     * The Batch operation allows multiple API calls to be embedded into a single HTTP request.\n     * @param contentLength The length of the request.\n     * @param multipartContentType Required. The value of this header must be multipart/mixed with a batch\n     *                             boundary. Example header value: multipart/mixed; boundary=batch_<GUID>\n     * @param body Initial data\n     * @param options The options parameters.\n     */\n    submitBatch(contentLength, multipartContentType, body, options) {\n        return this.client.sendOperationRequest({ contentLength, multipartContentType, body, options }, submitBatchOperationSpec$1);\n    }\n    /**\n     * The Filter Blobs operation enables callers to list blobs across all containers whose tags match a\n     * given search expression.  Filter blobs searches across all containers within a storage account but\n     * can be scoped within the expression to a single container.\n     * @param options The options parameters.\n     */\n    filterBlobs(options) {\n        return this.client.sendOperationRequest({ options }, filterBlobsOperationSpec$1);\n    }\n}\n// Operation Specifications\nconst xmlSerializer$5 = createSerializer(Mappers, /* isXml */ true);\nconst setPropertiesOperationSpec = {\n    path: \"/\",\n    httpMethod: \"PUT\",\n    responses: {\n        202: {\n            headersMapper: ServiceSetPropertiesHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ServiceSetPropertiesExceptionHeaders,\n        },\n    },\n    requestBody: blobServiceProperties,\n    queryParameters: [\n        restype,\n        comp,\n        timeoutInSeconds,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        contentType,\n        accept,\n        version$2,\n        requestId,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"xml\",\n    serializer: xmlSerializer$5,\n};\nconst getPropertiesOperationSpec$2 = {\n    path: \"/\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: BlobServiceProperties,\n            headersMapper: ServiceGetPropertiesHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ServiceGetPropertiesExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        restype,\n        comp,\n        timeoutInSeconds,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$5,\n};\nconst getStatisticsOperationSpec = {\n    path: \"/\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: BlobServiceStatistics,\n            headersMapper: ServiceGetStatisticsHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ServiceGetStatisticsExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        restype,\n        timeoutInSeconds,\n        comp1,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$5,\n};\nconst listContainersSegmentOperationSpec = {\n    path: \"/\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: ListContainersSegmentResponse,\n            headersMapper: ServiceListContainersSegmentHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ServiceListContainersSegmentExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        comp2,\n        prefix,\n        marker,\n        maxPageSize,\n        include,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$5,\n};\nconst getUserDelegationKeyOperationSpec = {\n    path: \"/\",\n    httpMethod: \"POST\",\n    responses: {\n        200: {\n            bodyMapper: UserDelegationKey,\n            headersMapper: ServiceGetUserDelegationKeyHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ServiceGetUserDelegationKeyExceptionHeaders,\n        },\n    },\n    requestBody: keyInfo,\n    queryParameters: [\n        restype,\n        timeoutInSeconds,\n        comp3,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        contentType,\n        accept,\n        version$2,\n        requestId,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"xml\",\n    serializer: xmlSerializer$5,\n};\nconst getAccountInfoOperationSpec$2 = {\n    path: \"/\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            headersMapper: ServiceGetAccountInfoHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ServiceGetAccountInfoExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        comp,\n        timeoutInSeconds,\n        restype1,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$5,\n};\nconst submitBatchOperationSpec$1 = {\n    path: \"/\",\n    httpMethod: \"POST\",\n    responses: {\n        202: {\n            bodyMapper: {\n                type: { name: \"Stream\" },\n                serializedName: \"parsedResponse\",\n            },\n            headersMapper: ServiceSubmitBatchHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ServiceSubmitBatchExceptionHeaders,\n        },\n    },\n    requestBody: body,\n    queryParameters: [timeoutInSeconds, comp4],\n    urlParameters: [url],\n    headerParameters: [\n        accept,\n        version$2,\n        requestId,\n        contentLength,\n        multipartContentType,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"xml\",\n    serializer: xmlSerializer$5,\n};\nconst filterBlobsOperationSpec$1 = {\n    path: \"/\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: FilterBlobSegment,\n            headersMapper: ServiceFilterBlobsHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ServiceFilterBlobsExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        marker,\n        maxPageSize,\n        comp5,\n        where,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$5,\n};\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n/** Class containing Container operations. */\nclass ContainerImpl {\n    /**\n     * Initialize a new instance of the class Container class.\n     * @param client Reference to the service client\n     */\n    constructor(client) {\n        this.client = client;\n    }\n    /**\n     * creates a new container under the specified account. If the container with the same name already\n     * exists, the operation fails\n     * @param options The options parameters.\n     */\n    create(options) {\n        return this.client.sendOperationRequest({ options }, createOperationSpec$2);\n    }\n    /**\n     * returns all user-defined metadata and system properties for the specified container. The data\n     * returned does not include the container's list of blobs\n     * @param options The options parameters.\n     */\n    getProperties(options) {\n        return this.client.sendOperationRequest({ options }, getPropertiesOperationSpec$1);\n    }\n    /**\n     * operation marks the specified container for deletion. The container and any blobs contained within\n     * it are later deleted during garbage collection\n     * @param options The options parameters.\n     */\n    delete(options) {\n        return this.client.sendOperationRequest({ options }, deleteOperationSpec$1);\n    }\n    /**\n     * operation sets one or more user-defined name-value pairs for the specified container.\n     * @param options The options parameters.\n     */\n    setMetadata(options) {\n        return this.client.sendOperationRequest({ options }, setMetadataOperationSpec$1);\n    }\n    /**\n     * gets the permissions for the specified container. The permissions indicate whether container data\n     * may be accessed publicly.\n     * @param options The options parameters.\n     */\n    getAccessPolicy(options) {\n        return this.client.sendOperationRequest({ options }, getAccessPolicyOperationSpec);\n    }\n    /**\n     * sets the permissions for the specified container. The permissions indicate whether blobs in a\n     * container may be accessed publicly.\n     * @param options The options parameters.\n     */\n    setAccessPolicy(options) {\n        return this.client.sendOperationRequest({ options }, setAccessPolicyOperationSpec);\n    }\n    /**\n     * Restores a previously-deleted container.\n     * @param options The options parameters.\n     */\n    restore(options) {\n        return this.client.sendOperationRequest({ options }, restoreOperationSpec);\n    }\n    /**\n     * Renames an existing container.\n     * @param sourceContainerName Required.  Specifies the name of the container to rename.\n     * @param options The options parameters.\n     */\n    rename(sourceContainerName, options) {\n        return this.client.sendOperationRequest({ sourceContainerName, options }, renameOperationSpec);\n    }\n    /**\n     * The Batch operation allows multiple API calls to be embedded into a single HTTP request.\n     * @param contentLength The length of the request.\n     * @param multipartContentType Required. The value of this header must be multipart/mixed with a batch\n     *                             boundary. Example header value: multipart/mixed; boundary=batch_<GUID>\n     * @param body Initial data\n     * @param options The options parameters.\n     */\n    submitBatch(contentLength, multipartContentType, body, options) {\n        return this.client.sendOperationRequest({ contentLength, multipartContentType, body, options }, submitBatchOperationSpec);\n    }\n    /**\n     * The Filter Blobs operation enables callers to list blobs in a container whose tags match a given\n     * search expression.  Filter blobs searches within the given container.\n     * @param options The options parameters.\n     */\n    filterBlobs(options) {\n        return this.client.sendOperationRequest({ options }, filterBlobsOperationSpec);\n    }\n    /**\n     * [Update] establishes and manages a lock on a container for delete operations. The lock duration can\n     * be 15 to 60 seconds, or can be infinite\n     * @param options The options parameters.\n     */\n    acquireLease(options) {\n        return this.client.sendOperationRequest({ options }, acquireLeaseOperationSpec$1);\n    }\n    /**\n     * [Update] establishes and manages a lock on a container for delete operations. The lock duration can\n     * be 15 to 60 seconds, or can be infinite\n     * @param leaseId Specifies the current lease ID on the resource.\n     * @param options The options parameters.\n     */\n    releaseLease(leaseId, options) {\n        return this.client.sendOperationRequest({ leaseId, options }, releaseLeaseOperationSpec$1);\n    }\n    /**\n     * [Update] establishes and manages a lock on a container for delete operations. The lock duration can\n     * be 15 to 60 seconds, or can be infinite\n     * @param leaseId Specifies the current lease ID on the resource.\n     * @param options The options parameters.\n     */\n    renewLease(leaseId, options) {\n        return this.client.sendOperationRequest({ leaseId, options }, renewLeaseOperationSpec$1);\n    }\n    /**\n     * [Update] establishes and manages a lock on a container for delete operations. The lock duration can\n     * be 15 to 60 seconds, or can be infinite\n     * @param options The options parameters.\n     */\n    breakLease(options) {\n        return this.client.sendOperationRequest({ options }, breakLeaseOperationSpec$1);\n    }\n    /**\n     * [Update] establishes and manages a lock on a container for delete operations. The lock duration can\n     * be 15 to 60 seconds, or can be infinite\n     * @param leaseId Specifies the current lease ID on the resource.\n     * @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400\n     *                        (Invalid request) if the proposed lease ID is not in the correct format. See Guid Constructor\n     *                        (String) for a list of valid GUID string formats.\n     * @param options The options parameters.\n     */\n    changeLease(leaseId, proposedLeaseId, options) {\n        return this.client.sendOperationRequest({ leaseId, proposedLeaseId, options }, changeLeaseOperationSpec$1);\n    }\n    /**\n     * [Update] The List Blobs operation returns a list of the blobs under the specified container\n     * @param options The options parameters.\n     */\n    listBlobFlatSegment(options) {\n        return this.client.sendOperationRequest({ options }, listBlobFlatSegmentOperationSpec);\n    }\n    /**\n     * [Update] The List Blobs operation returns a list of the blobs under the specified container\n     * @param delimiter When the request includes this parameter, the operation returns a BlobPrefix\n     *                  element in the response body that acts as a placeholder for all blobs whose names begin with the\n     *                  same substring up to the appearance of the delimiter character. The delimiter may be a single\n     *                  character or a string.\n     * @param options The options parameters.\n     */\n    listBlobHierarchySegment(delimiter, options) {\n        return this.client.sendOperationRequest({ delimiter, options }, listBlobHierarchySegmentOperationSpec);\n    }\n    /**\n     * Returns the sku name and account kind\n     * @param options The options parameters.\n     */\n    getAccountInfo(options) {\n        return this.client.sendOperationRequest({ options }, getAccountInfoOperationSpec$1);\n    }\n}\n// Operation Specifications\nconst xmlSerializer$4 = createSerializer(Mappers, /* isXml */ true);\nconst createOperationSpec$2 = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: ContainerCreateHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerCreateExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, restype2],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        metadata,\n        access,\n        defaultEncryptionScope,\n        preventEncryptionScopeOverride,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst getPropertiesOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            headersMapper: ContainerGetPropertiesHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerGetPropertiesExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, restype2],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst deleteOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"DELETE\",\n    responses: {\n        202: {\n            headersMapper: ContainerDeleteHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerDeleteExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, restype2],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst setMetadataOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: ContainerSetMetadataHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerSetMetadataExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp6,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst getAccessPolicyOperationSpec = {\n    path: \"/{containerName}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: {\n                type: {\n                    name: \"Sequence\",\n                    element: {\n                        type: { name: \"Composite\", className: \"SignedIdentifier\" },\n                    },\n                },\n                serializedName: \"SignedIdentifiers\",\n                xmlName: \"SignedIdentifiers\",\n                xmlIsWrapped: true,\n                xmlElementName: \"SignedIdentifier\",\n            },\n            headersMapper: ContainerGetAccessPolicyHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerGetAccessPolicyExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp7,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst setAccessPolicyOperationSpec = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: ContainerSetAccessPolicyHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerSetAccessPolicyExceptionHeaders,\n        },\n    },\n    requestBody: containerAcl,\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp7,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        contentType,\n        accept,\n        version$2,\n        requestId,\n        access,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"xml\",\n    serializer: xmlSerializer$4,\n};\nconst restoreOperationSpec = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: ContainerRestoreHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerRestoreExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp8,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        deletedContainerName,\n        deletedContainerVersion,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst renameOperationSpec = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: ContainerRenameHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerRenameExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp9,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        sourceContainerName,\n        sourceLeaseId,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst submitBatchOperationSpec = {\n    path: \"/{containerName}\",\n    httpMethod: \"POST\",\n    responses: {\n        202: {\n            bodyMapper: {\n                type: { name: \"Stream\" },\n                serializedName: \"parsedResponse\",\n            },\n            headersMapper: ContainerSubmitBatchHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerSubmitBatchExceptionHeaders,\n        },\n    },\n    requestBody: body,\n    queryParameters: [\n        timeoutInSeconds,\n        comp4,\n        restype2,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        accept,\n        version$2,\n        requestId,\n        contentLength,\n        multipartContentType,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"xml\",\n    serializer: xmlSerializer$4,\n};\nconst filterBlobsOperationSpec = {\n    path: \"/{containerName}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: FilterBlobSegment,\n            headersMapper: ContainerFilterBlobsHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerFilterBlobsExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        marker,\n        maxPageSize,\n        comp5,\n        where,\n        restype2,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst acquireLeaseOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: ContainerAcquireLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerAcquireLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp10,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        action,\n        duration,\n        proposedLeaseId,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst releaseLeaseOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: ContainerReleaseLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerReleaseLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp10,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        action1,\n        leaseId1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst renewLeaseOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: ContainerRenewLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerRenewLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp10,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        leaseId1,\n        action2,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst breakLeaseOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        202: {\n            headersMapper: ContainerBreakLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerBreakLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp10,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        action3,\n        breakPeriod,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst changeLeaseOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: ContainerChangeLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerChangeLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        restype2,\n        comp10,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        leaseId1,\n        action4,\n        proposedLeaseId1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst listBlobFlatSegmentOperationSpec = {\n    path: \"/{containerName}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: ListBlobsFlatSegmentResponse,\n            headersMapper: ContainerListBlobFlatSegmentHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerListBlobFlatSegmentExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        comp2,\n        prefix,\n        marker,\n        maxPageSize,\n        restype2,\n        include1,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst listBlobHierarchySegmentOperationSpec = {\n    path: \"/{containerName}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: ListBlobsHierarchySegmentResponse,\n            headersMapper: ContainerListBlobHierarchySegmentHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerListBlobHierarchySegmentExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        comp2,\n        prefix,\n        marker,\n        maxPageSize,\n        restype2,\n        include1,\n        delimiter,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\nconst getAccountInfoOperationSpec$1 = {\n    path: \"/{containerName}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            headersMapper: ContainerGetAccountInfoHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: ContainerGetAccountInfoExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        comp,\n        timeoutInSeconds,\n        restype1,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$4,\n};\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n/** Class containing Blob operations. */\nclass BlobImpl {\n    /**\n     * Initialize a new instance of the class Blob class.\n     * @param client Reference to the service client\n     */\n    constructor(client) {\n        this.client = client;\n    }\n    /**\n     * The Download operation reads or downloads a blob from the system, including its metadata and\n     * properties. You can also call Download to read a snapshot.\n     * @param options The options parameters.\n     */\n    download(options) {\n        return this.client.sendOperationRequest({ options }, downloadOperationSpec);\n    }\n    /**\n     * The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system\n     * properties for the blob. It does not return the content of the blob.\n     * @param options The options parameters.\n     */\n    getProperties(options) {\n        return this.client.sendOperationRequest({ options }, getPropertiesOperationSpec);\n    }\n    /**\n     * If the storage account's soft delete feature is disabled then, when a blob is deleted, it is\n     * permanently removed from the storage account. If the storage account's soft delete feature is\n     * enabled, then, when a blob is deleted, it is marked for deletion and becomes inaccessible\n     * immediately. However, the blob service retains the blob or snapshot for the number of days specified\n     * by the DeleteRetentionPolicy section of [Storage service properties]\n     * (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is\n     * permanently removed from the storage account. Note that you continue to be charged for the\n     * soft-deleted blob's storage until it is permanently removed. Use the List Blobs API and specify the\n     * \"include=deleted\" query parameter to discover which blobs and snapshots have been soft deleted. You\n     * can then use the Undelete Blob API to restore a soft-deleted blob. All other operations on a\n     * soft-deleted blob or snapshot causes the service to return an HTTP status code of 404\n     * (ResourceNotFound).\n     * @param options The options parameters.\n     */\n    delete(options) {\n        return this.client.sendOperationRequest({ options }, deleteOperationSpec);\n    }\n    /**\n     * Undelete a blob that was previously soft deleted\n     * @param options The options parameters.\n     */\n    undelete(options) {\n        return this.client.sendOperationRequest({ options }, undeleteOperationSpec);\n    }\n    /**\n     * Sets the time a blob will expire and be deleted.\n     * @param expiryOptions Required. Indicates mode of the expiry time\n     * @param options The options parameters.\n     */\n    setExpiry(expiryOptions, options) {\n        return this.client.sendOperationRequest({ expiryOptions, options }, setExpiryOperationSpec);\n    }\n    /**\n     * The Set HTTP Headers operation sets system properties on the blob\n     * @param options The options parameters.\n     */\n    setHttpHeaders(options) {\n        return this.client.sendOperationRequest({ options }, setHttpHeadersOperationSpec);\n    }\n    /**\n     * The Set Immutability Policy operation sets the immutability policy on the blob\n     * @param options The options parameters.\n     */\n    setImmutabilityPolicy(options) {\n        return this.client.sendOperationRequest({ options }, setImmutabilityPolicyOperationSpec);\n    }\n    /**\n     * The Delete Immutability Policy operation deletes the immutability policy on the blob\n     * @param options The options parameters.\n     */\n    deleteImmutabilityPolicy(options) {\n        return this.client.sendOperationRequest({ options }, deleteImmutabilityPolicyOperationSpec);\n    }\n    /**\n     * The Set Legal Hold operation sets a legal hold on the blob.\n     * @param legalHold Specified if a legal hold should be set on the blob.\n     * @param options The options parameters.\n     */\n    setLegalHold(legalHold, options) {\n        return this.client.sendOperationRequest({ legalHold, options }, setLegalHoldOperationSpec);\n    }\n    /**\n     * The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more\n     * name-value pairs\n     * @param options The options parameters.\n     */\n    setMetadata(options) {\n        return this.client.sendOperationRequest({ options }, setMetadataOperationSpec);\n    }\n    /**\n     * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete\n     * operations\n     * @param options The options parameters.\n     */\n    acquireLease(options) {\n        return this.client.sendOperationRequest({ options }, acquireLeaseOperationSpec);\n    }\n    /**\n     * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete\n     * operations\n     * @param leaseId Specifies the current lease ID on the resource.\n     * @param options The options parameters.\n     */\n    releaseLease(leaseId, options) {\n        return this.client.sendOperationRequest({ leaseId, options }, releaseLeaseOperationSpec);\n    }\n    /**\n     * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete\n     * operations\n     * @param leaseId Specifies the current lease ID on the resource.\n     * @param options The options parameters.\n     */\n    renewLease(leaseId, options) {\n        return this.client.sendOperationRequest({ leaseId, options }, renewLeaseOperationSpec);\n    }\n    /**\n     * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete\n     * operations\n     * @param leaseId Specifies the current lease ID on the resource.\n     * @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400\n     *                        (Invalid request) if the proposed lease ID is not in the correct format. See Guid Constructor\n     *                        (String) for a list of valid GUID string formats.\n     * @param options The options parameters.\n     */\n    changeLease(leaseId, proposedLeaseId, options) {\n        return this.client.sendOperationRequest({ leaseId, proposedLeaseId, options }, changeLeaseOperationSpec);\n    }\n    /**\n     * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete\n     * operations\n     * @param options The options parameters.\n     */\n    breakLease(options) {\n        return this.client.sendOperationRequest({ options }, breakLeaseOperationSpec);\n    }\n    /**\n     * The Create Snapshot operation creates a read-only snapshot of a blob\n     * @param options The options parameters.\n     */\n    createSnapshot(options) {\n        return this.client.sendOperationRequest({ options }, createSnapshotOperationSpec);\n    }\n    /**\n     * The Start Copy From URL operation copies a blob or an internet resource to a new blob.\n     * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to\n     *                   2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would\n     *                   appear in a request URI. The source blob must either be public or must be authenticated via a shared\n     *                   access signature.\n     * @param options The options parameters.\n     */\n    startCopyFromURL(copySource, options) {\n        return this.client.sendOperationRequest({ copySource, options }, startCopyFromURLOperationSpec);\n    }\n    /**\n     * The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return\n     * a response until the copy is complete.\n     * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to\n     *                   2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would\n     *                   appear in a request URI. The source blob must either be public or must be authenticated via a shared\n     *                   access signature.\n     * @param options The options parameters.\n     */\n    copyFromURL(copySource, options) {\n        return this.client.sendOperationRequest({ copySource, options }, copyFromURLOperationSpec);\n    }\n    /**\n     * The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination\n     * blob with zero length and full metadata.\n     * @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob\n     *               operation.\n     * @param options The options parameters.\n     */\n    abortCopyFromURL(copyId, options) {\n        return this.client.sendOperationRequest({ copyId, options }, abortCopyFromURLOperationSpec);\n    }\n    /**\n     * The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium\n     * storage account and on a block blob in a blob storage account (locally redundant storage only). A\n     * premium page blob's tier determines the allowed size, IOPS, and bandwidth of the blob. A block\n     * blob's tier determines Hot/Cool/Archive storage type. This operation does not update the blob's\n     * ETag.\n     * @param tier Indicates the tier to be set on the blob.\n     * @param options The options parameters.\n     */\n    setTier(tier, options) {\n        return this.client.sendOperationRequest({ tier, options }, setTierOperationSpec);\n    }\n    /**\n     * Returns the sku name and account kind\n     * @param options The options parameters.\n     */\n    getAccountInfo(options) {\n        return this.client.sendOperationRequest({ options }, getAccountInfoOperationSpec);\n    }\n    /**\n     * The Query operation enables users to select/project on blob data by providing simple query\n     * expressions.\n     * @param options The options parameters.\n     */\n    query(options) {\n        return this.client.sendOperationRequest({ options }, queryOperationSpec);\n    }\n    /**\n     * The Get Tags operation enables users to get the tags associated with a blob.\n     * @param options The options parameters.\n     */\n    getTags(options) {\n        return this.client.sendOperationRequest({ options }, getTagsOperationSpec);\n    }\n    /**\n     * The Set Tags operation enables users to set tags on a blob.\n     * @param options The options parameters.\n     */\n    setTags(options) {\n        return this.client.sendOperationRequest({ options }, setTagsOperationSpec);\n    }\n}\n// Operation Specifications\nconst xmlSerializer$3 = createSerializer(Mappers, /* isXml */ true);\nconst downloadOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: {\n                type: { name: \"Stream\" },\n                serializedName: \"parsedResponse\",\n            },\n            headersMapper: BlobDownloadHeaders,\n        },\n        206: {\n            bodyMapper: {\n                type: { name: \"Stream\" },\n                serializedName: \"parsedResponse\",\n            },\n            headersMapper: BlobDownloadHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobDownloadExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        versionId,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        range$2,\n        rangeGetContentMD5,\n        rangeGetContentCRC64,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst getPropertiesOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"HEAD\",\n    responses: {\n        200: {\n            headersMapper: BlobGetPropertiesHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobGetPropertiesExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        versionId,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst deleteOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"DELETE\",\n    responses: {\n        202: {\n            headersMapper: BlobDeleteHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobDeleteExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        versionId,\n        blobDeleteType,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        deleteSnapshots,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst undeleteOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobUndeleteHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobUndeleteExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp8],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst setExpiryOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobSetExpiryHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobSetExpiryExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp11],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        expiryOptions,\n        expiresOn,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst setHttpHeadersOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobSetHttpHeadersHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobSetHttpHeadersExceptionHeaders,\n        },\n    },\n    queryParameters: [comp, timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        blobCacheControl,\n        blobContentType,\n        blobContentMD5,\n        blobContentEncoding,\n        blobContentLanguage,\n        blobContentDisposition,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst setImmutabilityPolicyOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobSetImmutabilityPolicyHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobSetImmutabilityPolicyExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        versionId,\n        comp12,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifUnmodifiedSince,\n        immutabilityPolicyExpiry,\n        immutabilityPolicyMode,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst deleteImmutabilityPolicyOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"DELETE\",\n    responses: {\n        200: {\n            headersMapper: BlobDeleteImmutabilityPolicyHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobDeleteImmutabilityPolicyExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        versionId,\n        comp12,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst setLegalHoldOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobSetLegalHoldHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobSetLegalHoldExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        versionId,\n        comp13,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        legalHold,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst setMetadataOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobSetMetadataHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobSetMetadataExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp6],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        encryptionScope,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst acquireLeaseOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: BlobAcquireLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobAcquireLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp10],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        action,\n        duration,\n        proposedLeaseId,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst releaseLeaseOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobReleaseLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobReleaseLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp10],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        action1,\n        leaseId1,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst renewLeaseOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobRenewLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobRenewLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp10],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        leaseId1,\n        action2,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst changeLeaseOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobChangeLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobChangeLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp10],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        leaseId1,\n        action4,\n        proposedLeaseId1,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst breakLeaseOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        202: {\n            headersMapper: BlobBreakLeaseHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobBreakLeaseExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp10],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        action3,\n        breakPeriod,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst createSnapshotOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: BlobCreateSnapshotHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobCreateSnapshotExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp14],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        encryptionScope,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst startCopyFromURLOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        202: {\n            headersMapper: BlobStartCopyFromURLHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobStartCopyFromURLExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        immutabilityPolicyExpiry,\n        immutabilityPolicyMode,\n        tier,\n        rehydratePriority,\n        sourceIfModifiedSince,\n        sourceIfUnmodifiedSince,\n        sourceIfMatch,\n        sourceIfNoneMatch,\n        sourceIfTags,\n        copySource,\n        blobTagsString,\n        sealBlob,\n        legalHold1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst copyFromURLOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        202: {\n            headersMapper: BlobCopyFromURLHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobCopyFromURLExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        immutabilityPolicyExpiry,\n        immutabilityPolicyMode,\n        encryptionScope,\n        tier,\n        sourceIfModifiedSince,\n        sourceIfUnmodifiedSince,\n        sourceIfMatch,\n        sourceIfNoneMatch,\n        copySource,\n        blobTagsString,\n        legalHold1,\n        xMsRequiresSync,\n        sourceContentMD5,\n        copySourceAuthorization,\n        copySourceTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst abortCopyFromURLOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        204: {\n            headersMapper: BlobAbortCopyFromURLHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobAbortCopyFromURLExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        comp15,\n        copyId,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        copyActionAbortConstant,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst setTierOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: BlobSetTierHeaders,\n        },\n        202: {\n            headersMapper: BlobSetTierHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobSetTierExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        versionId,\n        comp16,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifTags,\n        rehydratePriority,\n        tier1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst getAccountInfoOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            headersMapper: BlobGetAccountInfoHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobGetAccountInfoExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        comp,\n        timeoutInSeconds,\n        restype1,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst queryOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"POST\",\n    responses: {\n        200: {\n            bodyMapper: {\n                type: { name: \"Stream\" },\n                serializedName: \"parsedResponse\",\n            },\n            headersMapper: BlobQueryHeaders,\n        },\n        206: {\n            bodyMapper: {\n                type: { name: \"Stream\" },\n                serializedName: \"parsedResponse\",\n            },\n            headersMapper: BlobQueryHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobQueryExceptionHeaders,\n        },\n    },\n    requestBody: queryRequest,\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        comp17,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        contentType,\n        accept,\n        version$2,\n        requestId,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"xml\",\n    serializer: xmlSerializer$3,\n};\nconst getTagsOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: BlobTags,\n            headersMapper: BlobGetTagsHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobGetTagsExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        versionId,\n        comp18,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$3,\n};\nconst setTagsOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        204: {\n            headersMapper: BlobSetTagsHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlobSetTagsExceptionHeaders,\n        },\n    },\n    requestBody: tags,\n    queryParameters: [\n        timeoutInSeconds,\n        versionId,\n        comp18,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        contentType,\n        accept,\n        version$2,\n        requestId,\n        leaseId,\n        ifTags,\n        transactionalContentMD5,\n        transactionalContentCrc64,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"xml\",\n    serializer: xmlSerializer$3,\n};\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n/** Class containing PageBlob operations. */\nclass PageBlobImpl {\n    /**\n     * Initialize a new instance of the class PageBlob class.\n     * @param client Reference to the service client\n     */\n    constructor(client) {\n        this.client = client;\n    }\n    /**\n     * The Create operation creates a new page blob.\n     * @param contentLength The length of the request.\n     * @param blobContentLength This header specifies the maximum size for the page blob, up to 1 TB. The\n     *                          page blob size must be aligned to a 512-byte boundary.\n     * @param options The options parameters.\n     */\n    create(contentLength, blobContentLength, options) {\n        return this.client.sendOperationRequest({ contentLength, blobContentLength, options }, createOperationSpec$1);\n    }\n    /**\n     * The Upload Pages operation writes a range of pages to a page blob\n     * @param contentLength The length of the request.\n     * @param body Initial data\n     * @param options The options parameters.\n     */\n    uploadPages(contentLength, body, options) {\n        return this.client.sendOperationRequest({ contentLength, body, options }, uploadPagesOperationSpec);\n    }\n    /**\n     * The Clear Pages operation clears a set of pages from a page blob\n     * @param contentLength The length of the request.\n     * @param options The options parameters.\n     */\n    clearPages(contentLength, options) {\n        return this.client.sendOperationRequest({ contentLength, options }, clearPagesOperationSpec);\n    }\n    /**\n     * The Upload Pages operation writes a range of pages to a page blob where the contents are read from a\n     * URL\n     * @param sourceUrl Specify a URL to the copy source.\n     * @param sourceRange Bytes of source data in the specified range. The length of this range should\n     *                    match the ContentLength header and x-ms-range/Range destination range header.\n     * @param contentLength The length of the request.\n     * @param range The range of bytes to which the source range would be written. The range should be 512\n     *              aligned and range-end is required.\n     * @param options The options parameters.\n     */\n    uploadPagesFromURL(sourceUrl, sourceRange, contentLength, range, options) {\n        return this.client.sendOperationRequest({ sourceUrl, sourceRange, contentLength, range, options }, uploadPagesFromURLOperationSpec);\n    }\n    /**\n     * The Get Page Ranges operation returns the list of valid page ranges for a page blob or snapshot of a\n     * page blob\n     * @param options The options parameters.\n     */\n    getPageRanges(options) {\n        return this.client.sendOperationRequest({ options }, getPageRangesOperationSpec);\n    }\n    /**\n     * The Get Page Ranges Diff operation returns the list of valid page ranges for a page blob that were\n     * changed between target blob and previous snapshot.\n     * @param options The options parameters.\n     */\n    getPageRangesDiff(options) {\n        return this.client.sendOperationRequest({ options }, getPageRangesDiffOperationSpec);\n    }\n    /**\n     * Resize the Blob\n     * @param blobContentLength This header specifies the maximum size for the page blob, up to 1 TB. The\n     *                          page blob size must be aligned to a 512-byte boundary.\n     * @param options The options parameters.\n     */\n    resize(blobContentLength, options) {\n        return this.client.sendOperationRequest({ blobContentLength, options }, resizeOperationSpec);\n    }\n    /**\n     * Update the sequence number of the blob\n     * @param sequenceNumberAction Required if the x-ms-blob-sequence-number header is set for the request.\n     *                             This property applies to page blobs only. This property indicates how the service should modify the\n     *                             blob's sequence number\n     * @param options The options parameters.\n     */\n    updateSequenceNumber(sequenceNumberAction, options) {\n        return this.client.sendOperationRequest({ sequenceNumberAction, options }, updateSequenceNumberOperationSpec);\n    }\n    /**\n     * The Copy Incremental operation copies a snapshot of the source page blob to a destination page blob.\n     * The snapshot is copied such that only the differential changes between the previously copied\n     * snapshot are transferred to the destination. The copied snapshots are complete copies of the\n     * original snapshot and can be read or copied from as usual. This API is supported since REST version\n     * 2016-05-31.\n     * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to\n     *                   2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would\n     *                   appear in a request URI. The source blob must either be public or must be authenticated via a shared\n     *                   access signature.\n     * @param options The options parameters.\n     */\n    copyIncremental(copySource, options) {\n        return this.client.sendOperationRequest({ copySource, options }, copyIncrementalOperationSpec);\n    }\n}\n// Operation Specifications\nconst xmlSerializer$2 = createSerializer(Mappers, /* isXml */ true);\nconst createOperationSpec$1 = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: PageBlobCreateHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobCreateExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        contentLength,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        blobCacheControl,\n        blobContentType,\n        blobContentMD5,\n        blobContentEncoding,\n        blobContentLanguage,\n        blobContentDisposition,\n        immutabilityPolicyExpiry,\n        immutabilityPolicyMode,\n        encryptionScope,\n        tier,\n        blobTagsString,\n        legalHold1,\n        blobType,\n        blobContentLength,\n        blobSequenceNumber,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$2,\n};\nconst uploadPagesOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: PageBlobUploadPagesHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobUploadPagesExceptionHeaders,\n        },\n    },\n    requestBody: body1,\n    queryParameters: [timeoutInSeconds, comp19],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        contentLength,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        range$2,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        encryptionScope,\n        transactionalContentMD5,\n        transactionalContentCrc64,\n        contentType1,\n        accept2,\n        pageWrite,\n        ifSequenceNumberLessThanOrEqualTo,\n        ifSequenceNumberLessThan,\n        ifSequenceNumberEqualTo,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"binary\",\n    serializer: xmlSerializer$2,\n};\nconst clearPagesOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: PageBlobClearPagesHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobClearPagesExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp19],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        contentLength,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        range$2,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        encryptionScope,\n        ifSequenceNumberLessThanOrEqualTo,\n        ifSequenceNumberLessThan,\n        ifSequenceNumberEqualTo,\n        pageWrite1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$2,\n};\nconst uploadPagesFromURLOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: PageBlobUploadPagesFromURLHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobUploadPagesFromURLExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp19],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        contentLength,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        encryptionScope,\n        sourceIfModifiedSince,\n        sourceIfUnmodifiedSince,\n        sourceIfMatch,\n        sourceIfNoneMatch,\n        sourceContentMD5,\n        copySourceAuthorization,\n        pageWrite,\n        ifSequenceNumberLessThanOrEqualTo,\n        ifSequenceNumberLessThan,\n        ifSequenceNumberEqualTo,\n        sourceUrl,\n        sourceRange,\n        sourceContentCrc64,\n        range1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$2,\n};\nconst getPageRangesOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: PageList,\n            headersMapper: PageBlobGetPageRangesHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobGetPageRangesExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        marker,\n        maxPageSize,\n        snapshot,\n        comp20,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        range$2,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$2,\n};\nconst getPageRangesDiffOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: PageList,\n            headersMapper: PageBlobGetPageRangesDiffHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobGetPageRangesDiffExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        marker,\n        maxPageSize,\n        snapshot,\n        comp20,\n        prevsnapshot,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        range$2,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        prevSnapshotUrl,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$2,\n};\nconst resizeOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: PageBlobResizeHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobResizeExceptionHeaders,\n        },\n    },\n    queryParameters: [comp, timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        encryptionScope,\n        blobContentLength,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$2,\n};\nconst updateSequenceNumberOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: PageBlobUpdateSequenceNumberHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobUpdateSequenceNumberExceptionHeaders,\n        },\n    },\n    queryParameters: [comp, timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        blobSequenceNumber,\n        sequenceNumberAction,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$2,\n};\nconst copyIncrementalOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        202: {\n            headersMapper: PageBlobCopyIncrementalHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: PageBlobCopyIncrementalExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp21],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        copySource,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$2,\n};\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n/** Class containing AppendBlob operations. */\nclass AppendBlobImpl {\n    /**\n     * Initialize a new instance of the class AppendBlob class.\n     * @param client Reference to the service client\n     */\n    constructor(client) {\n        this.client = client;\n    }\n    /**\n     * The Create Append Blob operation creates a new append blob.\n     * @param contentLength The length of the request.\n     * @param options The options parameters.\n     */\n    create(contentLength, options) {\n        return this.client.sendOperationRequest({ contentLength, options }, createOperationSpec);\n    }\n    /**\n     * The Append Block operation commits a new block of data to the end of an existing append blob. The\n     * Append Block operation is permitted only if the blob was created with x-ms-blob-type set to\n     * AppendBlob. Append Block is supported only on version 2015-02-21 version or later.\n     * @param contentLength The length of the request.\n     * @param body Initial data\n     * @param options The options parameters.\n     */\n    appendBlock(contentLength, body, options) {\n        return this.client.sendOperationRequest({ contentLength, body, options }, appendBlockOperationSpec);\n    }\n    /**\n     * The Append Block operation commits a new block of data to the end of an existing append blob where\n     * the contents are read from a source url. The Append Block operation is permitted only if the blob\n     * was created with x-ms-blob-type set to AppendBlob. Append Block is supported only on version\n     * 2015-02-21 version or later.\n     * @param sourceUrl Specify a URL to the copy source.\n     * @param contentLength The length of the request.\n     * @param options The options parameters.\n     */\n    appendBlockFromUrl(sourceUrl, contentLength, options) {\n        return this.client.sendOperationRequest({ sourceUrl, contentLength, options }, appendBlockFromUrlOperationSpec);\n    }\n    /**\n     * The Seal operation seals the Append Blob to make it read-only. Seal is supported only on version\n     * 2019-12-12 version or later.\n     * @param options The options parameters.\n     */\n    seal(options) {\n        return this.client.sendOperationRequest({ options }, sealOperationSpec);\n    }\n}\n// Operation Specifications\nconst xmlSerializer$1 = createSerializer(Mappers, /* isXml */ true);\nconst createOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: AppendBlobCreateHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: AppendBlobCreateExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        contentLength,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        blobCacheControl,\n        blobContentType,\n        blobContentMD5,\n        blobContentEncoding,\n        blobContentLanguage,\n        blobContentDisposition,\n        immutabilityPolicyExpiry,\n        immutabilityPolicyMode,\n        encryptionScope,\n        blobTagsString,\n        legalHold1,\n        blobType1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$1,\n};\nconst appendBlockOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: AppendBlobAppendBlockHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: AppendBlobAppendBlockExceptionHeaders,\n        },\n    },\n    requestBody: body1,\n    queryParameters: [timeoutInSeconds, comp22],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        contentLength,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        encryptionScope,\n        transactionalContentMD5,\n        transactionalContentCrc64,\n        contentType1,\n        accept2,\n        maxSize,\n        appendPosition,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"binary\",\n    serializer: xmlSerializer$1,\n};\nconst appendBlockFromUrlOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: AppendBlobAppendBlockFromUrlHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: AppendBlobAppendBlockFromUrlExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp22],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        contentLength,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        encryptionScope,\n        sourceIfModifiedSince,\n        sourceIfUnmodifiedSince,\n        sourceIfMatch,\n        sourceIfNoneMatch,\n        sourceContentMD5,\n        copySourceAuthorization,\n        transactionalContentMD5,\n        sourceUrl,\n        sourceContentCrc64,\n        maxSize,\n        appendPosition,\n        sourceRange1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$1,\n};\nconst sealOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        200: {\n            headersMapper: AppendBlobSealHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: AppendBlobSealExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds, comp23],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        ifMatch,\n        ifNoneMatch,\n        appendPosition,\n    ],\n    isXML: true,\n    serializer: xmlSerializer$1,\n};\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n/** Class containing BlockBlob operations. */\nclass BlockBlobImpl {\n    /**\n     * Initialize a new instance of the class BlockBlob class.\n     * @param client Reference to the service client\n     */\n    constructor(client) {\n        this.client = client;\n    }\n    /**\n     * The Upload Block Blob operation updates the content of an existing block blob. Updating an existing\n     * block blob overwrites any existing metadata on the blob. Partial updates are not supported with Put\n     * Blob; the content of the existing blob is overwritten with the content of the new blob. To perform a\n     * partial update of the content of a block blob, use the Put Block List operation.\n     * @param contentLength The length of the request.\n     * @param body Initial data\n     * @param options The options parameters.\n     */\n    upload(contentLength, body, options) {\n        return this.client.sendOperationRequest({ contentLength, body, options }, uploadOperationSpec);\n    }\n    /**\n     * The Put Blob from URL operation creates a new Block Blob where the contents of the blob are read\n     * from a given URL.  This API is supported beginning with the 2020-04-08 version. Partial updates are\n     * not supported with Put Blob from URL; the content of an existing blob is overwritten with the\n     * content of the new blob.  To perform partial updates to a block blob’s contents using a source URL,\n     * use the Put Block from URL API in conjunction with Put Block List.\n     * @param contentLength The length of the request.\n     * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to\n     *                   2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would\n     *                   appear in a request URI. The source blob must either be public or must be authenticated via a shared\n     *                   access signature.\n     * @param options The options parameters.\n     */\n    putBlobFromUrl(contentLength, copySource, options) {\n        return this.client.sendOperationRequest({ contentLength, copySource, options }, putBlobFromUrlOperationSpec);\n    }\n    /**\n     * The Stage Block operation creates a new block to be committed as part of a blob\n     * @param blockId A valid Base64 string value that identifies the block. Prior to encoding, the string\n     *                must be less than or equal to 64 bytes in size. For a given blob, the length of the value specified\n     *                for the blockid parameter must be the same size for each block.\n     * @param contentLength The length of the request.\n     * @param body Initial data\n     * @param options The options parameters.\n     */\n    stageBlock(blockId, contentLength, body, options) {\n        return this.client.sendOperationRequest({ blockId, contentLength, body, options }, stageBlockOperationSpec);\n    }\n    /**\n     * The Stage Block operation creates a new block to be committed as part of a blob where the contents\n     * are read from a URL.\n     * @param blockId A valid Base64 string value that identifies the block. Prior to encoding, the string\n     *                must be less than or equal to 64 bytes in size. For a given blob, the length of the value specified\n     *                for the blockid parameter must be the same size for each block.\n     * @param contentLength The length of the request.\n     * @param sourceUrl Specify a URL to the copy source.\n     * @param options The options parameters.\n     */\n    stageBlockFromURL(blockId, contentLength, sourceUrl, options) {\n        return this.client.sendOperationRequest({ blockId, contentLength, sourceUrl, options }, stageBlockFromURLOperationSpec);\n    }\n    /**\n     * The Commit Block List operation writes a blob by specifying the list of block IDs that make up the\n     * blob. In order to be written as part of a blob, a block must have been successfully written to the\n     * server in a prior Put Block operation. You can call Put Block List to update a blob by uploading\n     * only those blocks that have changed, then committing the new and existing blocks together. You can\n     * do this by specifying whether to commit a block from the committed block list or from the\n     * uncommitted block list, or to commit the most recently uploaded version of the block, whichever list\n     * it may belong to.\n     * @param blocks Blob Blocks.\n     * @param options The options parameters.\n     */\n    commitBlockList(blocks, options) {\n        return this.client.sendOperationRequest({ blocks, options }, commitBlockListOperationSpec);\n    }\n    /**\n     * The Get Block List operation retrieves the list of blocks that have been uploaded as part of a block\n     * blob\n     * @param listType Specifies whether to return the list of committed blocks, the list of uncommitted\n     *                 blocks, or both lists together.\n     * @param options The options parameters.\n     */\n    getBlockList(listType, options) {\n        return this.client.sendOperationRequest({ listType, options }, getBlockListOperationSpec);\n    }\n}\n// Operation Specifications\nconst xmlSerializer = createSerializer(Mappers, /* isXml */ true);\nconst uploadOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: BlockBlobUploadHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlockBlobUploadExceptionHeaders,\n        },\n    },\n    requestBody: body1,\n    queryParameters: [timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        contentLength,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        blobCacheControl,\n        blobContentType,\n        blobContentMD5,\n        blobContentEncoding,\n        blobContentLanguage,\n        blobContentDisposition,\n        immutabilityPolicyExpiry,\n        immutabilityPolicyMode,\n        encryptionScope,\n        tier,\n        blobTagsString,\n        legalHold1,\n        transactionalContentMD5,\n        transactionalContentCrc64,\n        contentType1,\n        accept2,\n        blobType2,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"binary\",\n    serializer: xmlSerializer,\n};\nconst putBlobFromUrlOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: BlockBlobPutBlobFromUrlHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlockBlobPutBlobFromUrlExceptionHeaders,\n        },\n    },\n    queryParameters: [timeoutInSeconds],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        contentLength,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        blobCacheControl,\n        blobContentType,\n        blobContentMD5,\n        blobContentEncoding,\n        blobContentLanguage,\n        blobContentDisposition,\n        encryptionScope,\n        tier,\n        sourceIfModifiedSince,\n        sourceIfUnmodifiedSince,\n        sourceIfMatch,\n        sourceIfNoneMatch,\n        sourceIfTags,\n        copySource,\n        blobTagsString,\n        sourceContentMD5,\n        copySourceAuthorization,\n        copySourceTags,\n        transactionalContentMD5,\n        blobType2,\n        copySourceBlobProperties,\n    ],\n    isXML: true,\n    serializer: xmlSerializer,\n};\nconst stageBlockOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: BlockBlobStageBlockHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlockBlobStageBlockExceptionHeaders,\n        },\n    },\n    requestBody: body1,\n    queryParameters: [\n        timeoutInSeconds,\n        comp24,\n        blockId,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        contentLength,\n        leaseId,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        encryptionScope,\n        transactionalContentMD5,\n        transactionalContentCrc64,\n        contentType1,\n        accept2,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"binary\",\n    serializer: xmlSerializer,\n};\nconst stageBlockFromURLOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: BlockBlobStageBlockFromURLHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlockBlobStageBlockFromURLExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        comp24,\n        blockId,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        contentLength,\n        leaseId,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        encryptionScope,\n        sourceIfModifiedSince,\n        sourceIfUnmodifiedSince,\n        sourceIfMatch,\n        sourceIfNoneMatch,\n        sourceContentMD5,\n        copySourceAuthorization,\n        sourceUrl,\n        sourceContentCrc64,\n        sourceRange1,\n    ],\n    isXML: true,\n    serializer: xmlSerializer,\n};\nconst commitBlockListOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"PUT\",\n    responses: {\n        201: {\n            headersMapper: BlockBlobCommitBlockListHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlockBlobCommitBlockListExceptionHeaders,\n        },\n    },\n    requestBody: blocks,\n    queryParameters: [timeoutInSeconds, comp25],\n    urlParameters: [url],\n    headerParameters: [\n        contentType,\n        accept,\n        version$2,\n        requestId,\n        metadata,\n        leaseId,\n        ifModifiedSince,\n        ifUnmodifiedSince,\n        encryptionKey,\n        encryptionKeySha256,\n        encryptionAlgorithm,\n        ifMatch,\n        ifNoneMatch,\n        ifTags,\n        blobCacheControl,\n        blobContentType,\n        blobContentMD5,\n        blobContentEncoding,\n        blobContentLanguage,\n        blobContentDisposition,\n        immutabilityPolicyExpiry,\n        immutabilityPolicyMode,\n        encryptionScope,\n        tier,\n        blobTagsString,\n        legalHold1,\n        transactionalContentMD5,\n        transactionalContentCrc64,\n    ],\n    isXML: true,\n    contentType: \"application/xml; charset=utf-8\",\n    mediaType: \"xml\",\n    serializer: xmlSerializer,\n};\nconst getBlockListOperationSpec = {\n    path: \"/{containerName}/{blob}\",\n    httpMethod: \"GET\",\n    responses: {\n        200: {\n            bodyMapper: BlockList,\n            headersMapper: BlockBlobGetBlockListHeaders,\n        },\n        default: {\n            bodyMapper: StorageError,\n            headersMapper: BlockBlobGetBlockListExceptionHeaders,\n        },\n    },\n    queryParameters: [\n        timeoutInSeconds,\n        snapshot,\n        comp25,\n        listType,\n    ],\n    urlParameters: [url],\n    headerParameters: [\n        version$2,\n        requestId,\n        accept1,\n        leaseId,\n        ifTags,\n    ],\n    isXML: true,\n    serializer: xmlSerializer,\n};\n\n/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\nlet StorageClient$1 = class StorageClient extends ExtendedServiceClient {\n    /**\n     * Initializes a new instance of the StorageClient class.\n     * @param url The URL of the service account, container, or blob that is the target of the desired\n     *            operation.\n     * @param options The parameter options\n     */\n    constructor(url, options) {\n        var _a, _b;\n        if (url === undefined) {\n            throw new Error(\"'url' cannot be null\");\n        }\n        // Initializing default values for options\n        if (!options) {\n            options = {};\n        }\n        const defaults = {\n            requestContentType: \"application/json; charset=utf-8\",\n        };\n        const packageDetails = `azsdk-js-azure-storage-blob/12.27.0`;\n        const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n            ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n            : `${packageDetails}`;\n        const optionsWithDefaults = Object.assign(Object.assign(Object.assign({}, defaults), options), { userAgentOptions: {\n                userAgentPrefix,\n            }, endpoint: (_b = (_a = options.endpoint) !== null && _a !== void 0 ? _a : options.baseUri) !== null && _b !== void 0 ? _b : \"{url}\" });\n        super(optionsWithDefaults);\n        // Parameter assignments\n        this.url = url;\n        // Assigning values to Constant parameters\n        this.version = options.version || \"2025-05-05\";\n        this.service = new ServiceImpl(this);\n        this.container = new ContainerImpl(this);\n        this.blob = new BlobImpl(this);\n        this.pageBlob = new PageBlobImpl(this);\n        this.appendBlob = new AppendBlobImpl(this);\n        this.blockBlob = new BlockBlobImpl(this);\n    }\n};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * @internal\n */\nclass StorageContextClient extends StorageClient$1 {\n    async sendOperationRequest(operationArguments, operationSpec) {\n        const operationSpecToSend = Object.assign({}, operationSpec);\n        if (operationSpecToSend.path === \"/{containerName}\" ||\n            operationSpecToSend.path === \"/{containerName}/{blob}\") {\n            operationSpecToSend.path = \"\";\n        }\n        return super.sendOperationRequest(operationArguments, operationSpecToSend);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A StorageClient represents a based URL class for {@link BlobServiceClient}, {@link ContainerClient}\n * and etc.\n */\nclass StorageClient {\n    /**\n     * Creates an instance of StorageClient.\n     * @param url - url to resource\n     * @param pipeline - request policy pipeline.\n     */\n    constructor(url, pipeline) {\n        // URL should be encoded and only once, protocol layer shouldn't encode URL again\n        this.url = escapeURLPath(url);\n        this.accountName = getAccountNameFromUrl(url);\n        this.pipeline = pipeline;\n        this.storageClientContext = new StorageContextClient(this.url, getCoreClientOptions(pipeline));\n        this.isHttps = iEqual(getURLScheme(this.url) || \"\", \"https\");\n        this.credential = getCredentialFromPipeline(pipeline);\n        // Override protocol layer's default content-type\n        const storageClientContext = this.storageClientContext;\n        storageClientContext.requestContentType = undefined;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Creates a span using the global tracer.\n * @internal\n */\nconst tracingClient = createTracingClient({\n    packageName: \"@azure/storage-blob\",\n    packageVersion: SDK_VERSION,\n    namespace: \"Microsoft.Storage\",\n});\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * This is a helper class to construct a string representing the permissions granted by a ServiceSAS to a blob. Setting\n * a value to true means that any SAS which uses these permissions will grant permissions for that operation. Once all\n * the values are set, this should be serialized with toString and set as the permissions field on a\n * {@link BlobSASSignatureValues} object. It is possible to construct the permissions string without this class, but\n * the order of the permissions is particular and this class guarantees correctness.\n */\nclass BlobSASPermissions {\n    constructor() {\n        /**\n         * Specifies Read access granted.\n         */\n        this.read = false;\n        /**\n         * Specifies Add access granted.\n         */\n        this.add = false;\n        /**\n         * Specifies Create access granted.\n         */\n        this.create = false;\n        /**\n         * Specifies Write access granted.\n         */\n        this.write = false;\n        /**\n         * Specifies Delete access granted.\n         */\n        this.delete = false;\n        /**\n         * Specifies Delete version access granted.\n         */\n        this.deleteVersion = false;\n        /**\n         * Specfies Tag access granted.\n         */\n        this.tag = false;\n        /**\n         * Specifies Move access granted.\n         */\n        this.move = false;\n        /**\n         * Specifies Execute access granted.\n         */\n        this.execute = false;\n        /**\n         * Specifies SetImmutabilityPolicy access granted.\n         */\n        this.setImmutabilityPolicy = false;\n        /**\n         * Specifies that Permanent Delete is permitted.\n         */\n        this.permanentDelete = false;\n    }\n    /**\n     * Creates a {@link BlobSASPermissions} from the specified permissions string. This method will throw an\n     * Error if it encounters a character that does not correspond to a valid permission.\n     *\n     * @param permissions -\n     */\n    static parse(permissions) {\n        const blobSASPermissions = new BlobSASPermissions();\n        for (const char of permissions) {\n            switch (char) {\n                case \"r\":\n                    blobSASPermissions.read = true;\n                    break;\n                case \"a\":\n                    blobSASPermissions.add = true;\n                    break;\n                case \"c\":\n                    blobSASPermissions.create = true;\n                    break;\n                case \"w\":\n                    blobSASPermissions.write = true;\n                    break;\n                case \"d\":\n                    blobSASPermissions.delete = true;\n                    break;\n                case \"x\":\n                    blobSASPermissions.deleteVersion = true;\n                    break;\n                case \"t\":\n                    blobSASPermissions.tag = true;\n                    break;\n                case \"m\":\n                    blobSASPermissions.move = true;\n                    break;\n                case \"e\":\n                    blobSASPermissions.execute = true;\n                    break;\n                case \"i\":\n                    blobSASPermissions.setImmutabilityPolicy = true;\n                    break;\n                case \"y\":\n                    blobSASPermissions.permanentDelete = true;\n                    break;\n                default:\n                    throw new RangeError(`Invalid permission: ${char}`);\n            }\n        }\n        return blobSASPermissions;\n    }\n    /**\n     * Creates a {@link BlobSASPermissions} from a raw object which contains same keys as it\n     * and boolean values for them.\n     *\n     * @param permissionLike -\n     */\n    static from(permissionLike) {\n        const blobSASPermissions = new BlobSASPermissions();\n        if (permissionLike.read) {\n            blobSASPermissions.read = true;\n        }\n        if (permissionLike.add) {\n            blobSASPermissions.add = true;\n        }\n        if (permissionLike.create) {\n            blobSASPermissions.create = true;\n        }\n        if (permissionLike.write) {\n            blobSASPermissions.write = true;\n        }\n        if (permissionLike.delete) {\n            blobSASPermissions.delete = true;\n        }\n        if (permissionLike.deleteVersion) {\n            blobSASPermissions.deleteVersion = true;\n        }\n        if (permissionLike.tag) {\n            blobSASPermissions.tag = true;\n        }\n        if (permissionLike.move) {\n            blobSASPermissions.move = true;\n        }\n        if (permissionLike.execute) {\n            blobSASPermissions.execute = true;\n        }\n        if (permissionLike.setImmutabilityPolicy) {\n            blobSASPermissions.setImmutabilityPolicy = true;\n        }\n        if (permissionLike.permanentDelete) {\n            blobSASPermissions.permanentDelete = true;\n        }\n        return blobSASPermissions;\n    }\n    /**\n     * Converts the given permissions to a string. Using this method will guarantee the permissions are in an\n     * order accepted by the service.\n     *\n     * @returns A string which represents the BlobSASPermissions\n     */\n    toString() {\n        const permissions = [];\n        if (this.read) {\n            permissions.push(\"r\");\n        }\n        if (this.add) {\n            permissions.push(\"a\");\n        }\n        if (this.create) {\n            permissions.push(\"c\");\n        }\n        if (this.write) {\n            permissions.push(\"w\");\n        }\n        if (this.delete) {\n            permissions.push(\"d\");\n        }\n        if (this.deleteVersion) {\n            permissions.push(\"x\");\n        }\n        if (this.tag) {\n            permissions.push(\"t\");\n        }\n        if (this.move) {\n            permissions.push(\"m\");\n        }\n        if (this.execute) {\n            permissions.push(\"e\");\n        }\n        if (this.setImmutabilityPolicy) {\n            permissions.push(\"i\");\n        }\n        if (this.permanentDelete) {\n            permissions.push(\"y\");\n        }\n        return permissions.join(\"\");\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * This is a helper class to construct a string representing the permissions granted by a ServiceSAS to a container.\n * Setting a value to true means that any SAS which uses these permissions will grant permissions for that operation.\n * Once all the values are set, this should be serialized with toString and set as the permissions field on a\n * {@link BlobSASSignatureValues} object. It is possible to construct the permissions string without this class, but\n * the order of the permissions is particular and this class guarantees correctness.\n */\nclass ContainerSASPermissions {\n    constructor() {\n        /**\n         * Specifies Read access granted.\n         */\n        this.read = false;\n        /**\n         * Specifies Add access granted.\n         */\n        this.add = false;\n        /**\n         * Specifies Create access granted.\n         */\n        this.create = false;\n        /**\n         * Specifies Write access granted.\n         */\n        this.write = false;\n        /**\n         * Specifies Delete access granted.\n         */\n        this.delete = false;\n        /**\n         * Specifies Delete version access granted.\n         */\n        this.deleteVersion = false;\n        /**\n         * Specifies List access granted.\n         */\n        this.list = false;\n        /**\n         * Specfies Tag access granted.\n         */\n        this.tag = false;\n        /**\n         * Specifies Move access granted.\n         */\n        this.move = false;\n        /**\n         * Specifies Execute access granted.\n         */\n        this.execute = false;\n        /**\n         * Specifies SetImmutabilityPolicy access granted.\n         */\n        this.setImmutabilityPolicy = false;\n        /**\n         * Specifies that Permanent Delete is permitted.\n         */\n        this.permanentDelete = false;\n        /**\n         * Specifies that Filter Blobs by Tags is permitted.\n         */\n        this.filterByTags = false;\n    }\n    /**\n     * Creates an {@link ContainerSASPermissions} from the specified permissions string. This method will throw an\n     * Error if it encounters a character that does not correspond to a valid permission.\n     *\n     * @param permissions -\n     */\n    static parse(permissions) {\n        const containerSASPermissions = new ContainerSASPermissions();\n        for (const char of permissions) {\n            switch (char) {\n                case \"r\":\n                    containerSASPermissions.read = true;\n                    break;\n                case \"a\":\n                    containerSASPermissions.add = true;\n                    break;\n                case \"c\":\n                    containerSASPermissions.create = true;\n                    break;\n                case \"w\":\n                    containerSASPermissions.write = true;\n                    break;\n                case \"d\":\n                    containerSASPermissions.delete = true;\n                    break;\n                case \"l\":\n                    containerSASPermissions.list = true;\n                    break;\n                case \"t\":\n                    containerSASPermissions.tag = true;\n                    break;\n                case \"x\":\n                    containerSASPermissions.deleteVersion = true;\n                    break;\n                case \"m\":\n                    containerSASPermissions.move = true;\n                    break;\n                case \"e\":\n                    containerSASPermissions.execute = true;\n                    break;\n                case \"i\":\n                    containerSASPermissions.setImmutabilityPolicy = true;\n                    break;\n                case \"y\":\n                    containerSASPermissions.permanentDelete = true;\n                    break;\n                case \"f\":\n                    containerSASPermissions.filterByTags = true;\n                    break;\n                default:\n                    throw new RangeError(`Invalid permission ${char}`);\n            }\n        }\n        return containerSASPermissions;\n    }\n    /**\n     * Creates a {@link ContainerSASPermissions} from a raw object which contains same keys as it\n     * and boolean values for them.\n     *\n     * @param permissionLike -\n     */\n    static from(permissionLike) {\n        const containerSASPermissions = new ContainerSASPermissions();\n        if (permissionLike.read) {\n            containerSASPermissions.read = true;\n        }\n        if (permissionLike.add) {\n            containerSASPermissions.add = true;\n        }\n        if (permissionLike.create) {\n            containerSASPermissions.create = true;\n        }\n        if (permissionLike.write) {\n            containerSASPermissions.write = true;\n        }\n        if (permissionLike.delete) {\n            containerSASPermissions.delete = true;\n        }\n        if (permissionLike.list) {\n            containerSASPermissions.list = true;\n        }\n        if (permissionLike.deleteVersion) {\n            containerSASPermissions.deleteVersion = true;\n        }\n        if (permissionLike.tag) {\n            containerSASPermissions.tag = true;\n        }\n        if (permissionLike.move) {\n            containerSASPermissions.move = true;\n        }\n        if (permissionLike.execute) {\n            containerSASPermissions.execute = true;\n        }\n        if (permissionLike.setImmutabilityPolicy) {\n            containerSASPermissions.setImmutabilityPolicy = true;\n        }\n        if (permissionLike.permanentDelete) {\n            containerSASPermissions.permanentDelete = true;\n        }\n        if (permissionLike.filterByTags) {\n            containerSASPermissions.filterByTags = true;\n        }\n        return containerSASPermissions;\n    }\n    /**\n     * Converts the given permissions to a string. Using this method will guarantee the permissions are in an\n     * order accepted by the service.\n     *\n     * The order of the characters should be as specified here to ensure correctness.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     */\n    toString() {\n        const permissions = [];\n        if (this.read) {\n            permissions.push(\"r\");\n        }\n        if (this.add) {\n            permissions.push(\"a\");\n        }\n        if (this.create) {\n            permissions.push(\"c\");\n        }\n        if (this.write) {\n            permissions.push(\"w\");\n        }\n        if (this.delete) {\n            permissions.push(\"d\");\n        }\n        if (this.deleteVersion) {\n            permissions.push(\"x\");\n        }\n        if (this.list) {\n            permissions.push(\"l\");\n        }\n        if (this.tag) {\n            permissions.push(\"t\");\n        }\n        if (this.move) {\n            permissions.push(\"m\");\n        }\n        if (this.execute) {\n            permissions.push(\"e\");\n        }\n        if (this.setImmutabilityPolicy) {\n            permissions.push(\"i\");\n        }\n        if (this.permanentDelete) {\n            permissions.push(\"y\");\n        }\n        if (this.filterByTags) {\n            permissions.push(\"f\");\n        }\n        return permissions.join(\"\");\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * UserDelegationKeyCredential is only used for generation of user delegation SAS.\n * @see https://learn.microsoft.com/en-us/rest/api/storageservices/create-user-delegation-sas\n */\nclass UserDelegationKeyCredential {\n    /**\n     * Creates an instance of UserDelegationKeyCredential.\n     * @param accountName -\n     * @param userDelegationKey -\n     */\n    constructor(accountName, userDelegationKey) {\n        this.accountName = accountName;\n        this.userDelegationKey = userDelegationKey;\n        this.key = Buffer.from(userDelegationKey.value, \"base64\");\n    }\n    /**\n     * Generates a hash signature for an HTTP request or for a SAS.\n     *\n     * @param stringToSign -\n     */\n    computeHMACSHA256(stringToSign) {\n        // console.log(`stringToSign: ${JSON.stringify(stringToSign)}`);\n        return createHmac(\"sha256\", this.key).update(stringToSign, \"utf8\").digest(\"base64\");\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Generate SasIPRange format string. For example:\n *\n * \"8.8.8.8\" or \"1.1.1.1-255.255.255.255\"\n *\n * @param ipRange -\n */\nfunction ipRangeToString(ipRange) {\n    return ipRange.end ? `${ipRange.start}-${ipRange.end}` : ipRange.start;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Protocols for generated SAS.\n */\nvar SASProtocol;\n(function (SASProtocol) {\n    /**\n     * Protocol that allows HTTPS only\n     */\n    SASProtocol[\"Https\"] = \"https\";\n    /**\n     * Protocol that allows both HTTPS and HTTP\n     */\n    SASProtocol[\"HttpsAndHttp\"] = \"https,http\";\n})(SASProtocol || (SASProtocol = {}));\n/**\n * Represents the components that make up an Azure Storage SAS' query parameters. This type is not constructed directly\n * by the user; it is only generated by the {@link AccountSASSignatureValues} and {@link BlobSASSignatureValues}\n * types. Once generated, it can be encoded into a {@link String} and appended to a URL directly (though caution should\n * be taken here in case there are existing query parameters, which might affect the appropriate means of appending\n * these query parameters).\n *\n * NOTE: Instances of this class are immutable.\n */\nclass SASQueryParameters {\n    /**\n     * Optional. IP range allowed for this SAS.\n     *\n     * @readonly\n     */\n    get ipRange() {\n        if (this.ipRangeInner) {\n            return {\n                end: this.ipRangeInner.end,\n                start: this.ipRangeInner.start,\n            };\n        }\n        return undefined;\n    }\n    constructor(version, signature, permissionsOrOptions, services, resourceTypes, protocol, startsOn, expiresOn, ipRange, identifier, resource, cacheControl, contentDisposition, contentEncoding, contentLanguage, contentType, userDelegationKey, preauthorizedAgentObjectId, correlationId, encryptionScope) {\n        this.version = version;\n        this.signature = signature;\n        if (permissionsOrOptions !== undefined && typeof permissionsOrOptions !== \"string\") {\n            // SASQueryParametersOptions\n            this.permissions = permissionsOrOptions.permissions;\n            this.services = permissionsOrOptions.services;\n            this.resourceTypes = permissionsOrOptions.resourceTypes;\n            this.protocol = permissionsOrOptions.protocol;\n            this.startsOn = permissionsOrOptions.startsOn;\n            this.expiresOn = permissionsOrOptions.expiresOn;\n            this.ipRangeInner = permissionsOrOptions.ipRange;\n            this.identifier = permissionsOrOptions.identifier;\n            this.encryptionScope = permissionsOrOptions.encryptionScope;\n            this.resource = permissionsOrOptions.resource;\n            this.cacheControl = permissionsOrOptions.cacheControl;\n            this.contentDisposition = permissionsOrOptions.contentDisposition;\n            this.contentEncoding = permissionsOrOptions.contentEncoding;\n            this.contentLanguage = permissionsOrOptions.contentLanguage;\n            this.contentType = permissionsOrOptions.contentType;\n            if (permissionsOrOptions.userDelegationKey) {\n                this.signedOid = permissionsOrOptions.userDelegationKey.signedObjectId;\n                this.signedTenantId = permissionsOrOptions.userDelegationKey.signedTenantId;\n                this.signedStartsOn = permissionsOrOptions.userDelegationKey.signedStartsOn;\n                this.signedExpiresOn = permissionsOrOptions.userDelegationKey.signedExpiresOn;\n                this.signedService = permissionsOrOptions.userDelegationKey.signedService;\n                this.signedVersion = permissionsOrOptions.userDelegationKey.signedVersion;\n                this.preauthorizedAgentObjectId = permissionsOrOptions.preauthorizedAgentObjectId;\n                this.correlationId = permissionsOrOptions.correlationId;\n            }\n        }\n        else {\n            this.services = services;\n            this.resourceTypes = resourceTypes;\n            this.expiresOn = expiresOn;\n            this.permissions = permissionsOrOptions;\n            this.protocol = protocol;\n            this.startsOn = startsOn;\n            this.ipRangeInner = ipRange;\n            this.encryptionScope = encryptionScope;\n            this.identifier = identifier;\n            this.resource = resource;\n            this.cacheControl = cacheControl;\n            this.contentDisposition = contentDisposition;\n            this.contentEncoding = contentEncoding;\n            this.contentLanguage = contentLanguage;\n            this.contentType = contentType;\n            if (userDelegationKey) {\n                this.signedOid = userDelegationKey.signedObjectId;\n                this.signedTenantId = userDelegationKey.signedTenantId;\n                this.signedStartsOn = userDelegationKey.signedStartsOn;\n                this.signedExpiresOn = userDelegationKey.signedExpiresOn;\n                this.signedService = userDelegationKey.signedService;\n                this.signedVersion = userDelegationKey.signedVersion;\n                this.preauthorizedAgentObjectId = preauthorizedAgentObjectId;\n                this.correlationId = correlationId;\n            }\n        }\n    }\n    /**\n     * Encodes all SAS query parameters into a string that can be appended to a URL.\n     *\n     */\n    toString() {\n        const params = [\n            \"sv\",\n            \"ss\",\n            \"srt\",\n            \"spr\",\n            \"st\",\n            \"se\",\n            \"sip\",\n            \"si\",\n            \"ses\",\n            \"skoid\", // Signed object ID\n            \"sktid\", // Signed tenant ID\n            \"skt\", // Signed key start time\n            \"ske\", // Signed key expiry time\n            \"sks\", // Signed key service\n            \"skv\", // Signed key version\n            \"sr\",\n            \"sp\",\n            \"sig\",\n            \"rscc\",\n            \"rscd\",\n            \"rsce\",\n            \"rscl\",\n            \"rsct\",\n            \"saoid\",\n            \"scid\",\n        ];\n        const queries = [];\n        for (const param of params) {\n            switch (param) {\n                case \"sv\":\n                    this.tryAppendQueryParameter(queries, param, this.version);\n                    break;\n                case \"ss\":\n                    this.tryAppendQueryParameter(queries, param, this.services);\n                    break;\n                case \"srt\":\n                    this.tryAppendQueryParameter(queries, param, this.resourceTypes);\n                    break;\n                case \"spr\":\n                    this.tryAppendQueryParameter(queries, param, this.protocol);\n                    break;\n                case \"st\":\n                    this.tryAppendQueryParameter(queries, param, this.startsOn ? truncatedISO8061Date(this.startsOn, false) : undefined);\n                    break;\n                case \"se\":\n                    this.tryAppendQueryParameter(queries, param, this.expiresOn ? truncatedISO8061Date(this.expiresOn, false) : undefined);\n                    break;\n                case \"sip\":\n                    this.tryAppendQueryParameter(queries, param, this.ipRange ? ipRangeToString(this.ipRange) : undefined);\n                    break;\n                case \"si\":\n                    this.tryAppendQueryParameter(queries, param, this.identifier);\n                    break;\n                case \"ses\":\n                    this.tryAppendQueryParameter(queries, param, this.encryptionScope);\n                    break;\n                case \"skoid\": // Signed object ID\n                    this.tryAppendQueryParameter(queries, param, this.signedOid);\n                    break;\n                case \"sktid\": // Signed tenant ID\n                    this.tryAppendQueryParameter(queries, param, this.signedTenantId);\n                    break;\n                case \"skt\": // Signed key start time\n                    this.tryAppendQueryParameter(queries, param, this.signedStartsOn ? truncatedISO8061Date(this.signedStartsOn, false) : undefined);\n                    break;\n                case \"ske\": // Signed key expiry time\n                    this.tryAppendQueryParameter(queries, param, this.signedExpiresOn ? truncatedISO8061Date(this.signedExpiresOn, false) : undefined);\n                    break;\n                case \"sks\": // Signed key service\n                    this.tryAppendQueryParameter(queries, param, this.signedService);\n                    break;\n                case \"skv\": // Signed key version\n                    this.tryAppendQueryParameter(queries, param, this.signedVersion);\n                    break;\n                case \"sr\":\n                    this.tryAppendQueryParameter(queries, param, this.resource);\n                    break;\n                case \"sp\":\n                    this.tryAppendQueryParameter(queries, param, this.permissions);\n                    break;\n                case \"sig\":\n                    this.tryAppendQueryParameter(queries, param, this.signature);\n                    break;\n                case \"rscc\":\n                    this.tryAppendQueryParameter(queries, param, this.cacheControl);\n                    break;\n                case \"rscd\":\n                    this.tryAppendQueryParameter(queries, param, this.contentDisposition);\n                    break;\n                case \"rsce\":\n                    this.tryAppendQueryParameter(queries, param, this.contentEncoding);\n                    break;\n                case \"rscl\":\n                    this.tryAppendQueryParameter(queries, param, this.contentLanguage);\n                    break;\n                case \"rsct\":\n                    this.tryAppendQueryParameter(queries, param, this.contentType);\n                    break;\n                case \"saoid\":\n                    this.tryAppendQueryParameter(queries, param, this.preauthorizedAgentObjectId);\n                    break;\n                case \"scid\":\n                    this.tryAppendQueryParameter(queries, param, this.correlationId);\n                    break;\n            }\n        }\n        return queries.join(\"&\");\n    }\n    /**\n     * A private helper method used to filter and append query key/value pairs into an array.\n     *\n     * @param queries -\n     * @param key -\n     * @param value -\n     */\n    tryAppendQueryParameter(queries, key, value) {\n        if (!value) {\n            return;\n        }\n        key = encodeURIComponent(key);\n        value = encodeURIComponent(value);\n        if (key.length > 0 && value.length > 0) {\n            queries.push(`${key}=${value}`);\n        }\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction generateBlobSASQueryParameters(blobSASSignatureValues, sharedKeyCredentialOrUserDelegationKey, accountName) {\n    return generateBlobSASQueryParametersInternal(blobSASSignatureValues, sharedKeyCredentialOrUserDelegationKey, accountName).sasQueryParameters;\n}\nfunction generateBlobSASQueryParametersInternal(blobSASSignatureValues, sharedKeyCredentialOrUserDelegationKey, accountName) {\n    const version = blobSASSignatureValues.version ? blobSASSignatureValues.version : SERVICE_VERSION;\n    const sharedKeyCredential = sharedKeyCredentialOrUserDelegationKey instanceof StorageSharedKeyCredential\n        ? sharedKeyCredentialOrUserDelegationKey\n        : undefined;\n    let userDelegationKeyCredential;\n    if (sharedKeyCredential === undefined && accountName !== undefined) {\n        userDelegationKeyCredential = new UserDelegationKeyCredential(accountName, sharedKeyCredentialOrUserDelegationKey);\n    }\n    if (sharedKeyCredential === undefined && userDelegationKeyCredential === undefined) {\n        throw TypeError(\"Invalid sharedKeyCredential, userDelegationKey or accountName.\");\n    }\n    // Version 2020-12-06 adds support for encryptionscope in SAS.\n    if (version >= \"2020-12-06\") {\n        if (sharedKeyCredential !== undefined) {\n            return generateBlobSASQueryParameters20201206(blobSASSignatureValues, sharedKeyCredential);\n        }\n        else {\n            return generateBlobSASQueryParametersUDK20201206(blobSASSignatureValues, userDelegationKeyCredential);\n        }\n    }\n    // Version 2019-12-12 adds support for the blob tags permission.\n    // Version 2018-11-09 adds support for the signed resource and signed blob snapshot time fields.\n    // https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas#constructing-the-signature-string\n    if (version >= \"2018-11-09\") {\n        if (sharedKeyCredential !== undefined) {\n            return generateBlobSASQueryParameters20181109(blobSASSignatureValues, sharedKeyCredential);\n        }\n        else {\n            // Version 2020-02-10 delegation SAS signature construction includes preauthorizedAgentObjectId, agentObjectId, correlationId.\n            if (version >= \"2020-02-10\") {\n                return generateBlobSASQueryParametersUDK20200210(blobSASSignatureValues, userDelegationKeyCredential);\n            }\n            else {\n                return generateBlobSASQueryParametersUDK20181109(blobSASSignatureValues, userDelegationKeyCredential);\n            }\n        }\n    }\n    if (version >= \"2015-04-05\") {\n        if (sharedKeyCredential !== undefined) {\n            return generateBlobSASQueryParameters20150405(blobSASSignatureValues, sharedKeyCredential);\n        }\n        else {\n            throw new RangeError(\"'version' must be >= '2018-11-09' when generating user delegation SAS using user delegation key.\");\n        }\n    }\n    throw new RangeError(\"'version' must be >= '2015-04-05'.\");\n}\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n * IMPLEMENTATION FOR API VERSION FROM 2015-04-05 AND BEFORE 2018-11-09.\n *\n * Creates an instance of SASQueryParameters.\n *\n * Only accepts required settings needed to create a SAS. For optional settings please\n * set corresponding properties directly, such as permissions, startsOn and identifier.\n *\n * WARNING: When identifier is not provided, permissions and expiresOn are required.\n * You MUST assign value to identifier or expiresOn & permissions manually if you initial with\n * this constructor.\n *\n * @param blobSASSignatureValues -\n * @param sharedKeyCredential -\n */\nfunction generateBlobSASQueryParameters20150405(blobSASSignatureValues, sharedKeyCredential) {\n    blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues);\n    if (!blobSASSignatureValues.identifier &&\n        !(blobSASSignatureValues.permissions && blobSASSignatureValues.expiresOn)) {\n        throw new RangeError(\"Must provide 'permissions' and 'expiresOn' for Blob SAS generation when 'identifier' is not provided.\");\n    }\n    let resource = \"c\";\n    if (blobSASSignatureValues.blobName) {\n        resource = \"b\";\n    }\n    // Calling parse and toString guarantees the proper ordering and throws on invalid characters.\n    let verifiedPermissions;\n    if (blobSASSignatureValues.permissions) {\n        if (blobSASSignatureValues.blobName) {\n            verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n        else {\n            verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n    }\n    // Signature is generated on the un-url-encoded values.\n    const stringToSign = [\n        verifiedPermissions ? verifiedPermissions : \"\",\n        blobSASSignatureValues.startsOn\n            ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false)\n            : \"\",\n        blobSASSignatureValues.expiresOn\n            ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false)\n            : \"\",\n        getCanonicalName(sharedKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName),\n        blobSASSignatureValues.identifier,\n        blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : \"\",\n        blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : \"\",\n        blobSASSignatureValues.version,\n        blobSASSignatureValues.cacheControl ? blobSASSignatureValues.cacheControl : \"\",\n        blobSASSignatureValues.contentDisposition ? blobSASSignatureValues.contentDisposition : \"\",\n        blobSASSignatureValues.contentEncoding ? blobSASSignatureValues.contentEncoding : \"\",\n        blobSASSignatureValues.contentLanguage ? blobSASSignatureValues.contentLanguage : \"\",\n        blobSASSignatureValues.contentType ? blobSASSignatureValues.contentType : \"\",\n    ].join(\"\\n\");\n    const signature = sharedKeyCredential.computeHMACSHA256(stringToSign);\n    return {\n        sasQueryParameters: new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType),\n        stringToSign: stringToSign,\n    };\n}\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n * IMPLEMENTATION FOR API VERSION FROM 2018-11-09.\n *\n * Creates an instance of SASQueryParameters.\n *\n * Only accepts required settings needed to create a SAS. For optional settings please\n * set corresponding properties directly, such as permissions, startsOn and identifier.\n *\n * WARNING: When identifier is not provided, permissions and expiresOn are required.\n * You MUST assign value to identifier or expiresOn & permissions manually if you initial with\n * this constructor.\n *\n * @param blobSASSignatureValues -\n * @param sharedKeyCredential -\n */\nfunction generateBlobSASQueryParameters20181109(blobSASSignatureValues, sharedKeyCredential) {\n    blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues);\n    if (!blobSASSignatureValues.identifier &&\n        !(blobSASSignatureValues.permissions && blobSASSignatureValues.expiresOn)) {\n        throw new RangeError(\"Must provide 'permissions' and 'expiresOn' for Blob SAS generation when 'identifier' is not provided.\");\n    }\n    let resource = \"c\";\n    let timestamp = blobSASSignatureValues.snapshotTime;\n    if (blobSASSignatureValues.blobName) {\n        resource = \"b\";\n        if (blobSASSignatureValues.snapshotTime) {\n            resource = \"bs\";\n        }\n        else if (blobSASSignatureValues.versionId) {\n            resource = \"bv\";\n            timestamp = blobSASSignatureValues.versionId;\n        }\n    }\n    // Calling parse and toString guarantees the proper ordering and throws on invalid characters.\n    let verifiedPermissions;\n    if (blobSASSignatureValues.permissions) {\n        if (blobSASSignatureValues.blobName) {\n            verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n        else {\n            verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n    }\n    // Signature is generated on the un-url-encoded values.\n    const stringToSign = [\n        verifiedPermissions ? verifiedPermissions : \"\",\n        blobSASSignatureValues.startsOn\n            ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false)\n            : \"\",\n        blobSASSignatureValues.expiresOn\n            ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false)\n            : \"\",\n        getCanonicalName(sharedKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName),\n        blobSASSignatureValues.identifier,\n        blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : \"\",\n        blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : \"\",\n        blobSASSignatureValues.version,\n        resource,\n        timestamp,\n        blobSASSignatureValues.cacheControl ? blobSASSignatureValues.cacheControl : \"\",\n        blobSASSignatureValues.contentDisposition ? blobSASSignatureValues.contentDisposition : \"\",\n        blobSASSignatureValues.contentEncoding ? blobSASSignatureValues.contentEncoding : \"\",\n        blobSASSignatureValues.contentLanguage ? blobSASSignatureValues.contentLanguage : \"\",\n        blobSASSignatureValues.contentType ? blobSASSignatureValues.contentType : \"\",\n    ].join(\"\\n\");\n    const signature = sharedKeyCredential.computeHMACSHA256(stringToSign);\n    return {\n        sasQueryParameters: new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType),\n        stringToSign: stringToSign,\n    };\n}\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n * IMPLEMENTATION FOR API VERSION FROM 2020-12-06.\n *\n * Creates an instance of SASQueryParameters.\n *\n * Only accepts required settings needed to create a SAS. For optional settings please\n * set corresponding properties directly, such as permissions, startsOn and identifier.\n *\n * WARNING: When identifier is not provided, permissions and expiresOn are required.\n * You MUST assign value to identifier or expiresOn & permissions manually if you initial with\n * this constructor.\n *\n * @param blobSASSignatureValues -\n * @param sharedKeyCredential -\n */\nfunction generateBlobSASQueryParameters20201206(blobSASSignatureValues, sharedKeyCredential) {\n    blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues);\n    if (!blobSASSignatureValues.identifier &&\n        !(blobSASSignatureValues.permissions && blobSASSignatureValues.expiresOn)) {\n        throw new RangeError(\"Must provide 'permissions' and 'expiresOn' for Blob SAS generation when 'identifier' is not provided.\");\n    }\n    let resource = \"c\";\n    let timestamp = blobSASSignatureValues.snapshotTime;\n    if (blobSASSignatureValues.blobName) {\n        resource = \"b\";\n        if (blobSASSignatureValues.snapshotTime) {\n            resource = \"bs\";\n        }\n        else if (blobSASSignatureValues.versionId) {\n            resource = \"bv\";\n            timestamp = blobSASSignatureValues.versionId;\n        }\n    }\n    // Calling parse and toString guarantees the proper ordering and throws on invalid characters.\n    let verifiedPermissions;\n    if (blobSASSignatureValues.permissions) {\n        if (blobSASSignatureValues.blobName) {\n            verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n        else {\n            verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n    }\n    // Signature is generated on the un-url-encoded values.\n    const stringToSign = [\n        verifiedPermissions ? verifiedPermissions : \"\",\n        blobSASSignatureValues.startsOn\n            ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false)\n            : \"\",\n        blobSASSignatureValues.expiresOn\n            ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false)\n            : \"\",\n        getCanonicalName(sharedKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName),\n        blobSASSignatureValues.identifier,\n        blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : \"\",\n        blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : \"\",\n        blobSASSignatureValues.version,\n        resource,\n        timestamp,\n        blobSASSignatureValues.encryptionScope,\n        blobSASSignatureValues.cacheControl ? blobSASSignatureValues.cacheControl : \"\",\n        blobSASSignatureValues.contentDisposition ? blobSASSignatureValues.contentDisposition : \"\",\n        blobSASSignatureValues.contentEncoding ? blobSASSignatureValues.contentEncoding : \"\",\n        blobSASSignatureValues.contentLanguage ? blobSASSignatureValues.contentLanguage : \"\",\n        blobSASSignatureValues.contentType ? blobSASSignatureValues.contentType : \"\",\n    ].join(\"\\n\");\n    const signature = sharedKeyCredential.computeHMACSHA256(stringToSign);\n    return {\n        sasQueryParameters: new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType, undefined, undefined, undefined, blobSASSignatureValues.encryptionScope),\n        stringToSign: stringToSign,\n    };\n}\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n * IMPLEMENTATION FOR API VERSION FROM 2018-11-09.\n *\n * Creates an instance of SASQueryParameters.\n *\n * Only accepts required settings needed to create a SAS. For optional settings please\n * set corresponding properties directly, such as permissions, startsOn.\n *\n * WARNING: identifier will be ignored, permissions and expiresOn are required.\n *\n * @param blobSASSignatureValues -\n * @param userDelegationKeyCredential -\n */\nfunction generateBlobSASQueryParametersUDK20181109(blobSASSignatureValues, userDelegationKeyCredential) {\n    blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues);\n    // Stored access policies are not supported for a user delegation SAS.\n    if (!blobSASSignatureValues.permissions || !blobSASSignatureValues.expiresOn) {\n        throw new RangeError(\"Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS.\");\n    }\n    let resource = \"c\";\n    let timestamp = blobSASSignatureValues.snapshotTime;\n    if (blobSASSignatureValues.blobName) {\n        resource = \"b\";\n        if (blobSASSignatureValues.snapshotTime) {\n            resource = \"bs\";\n        }\n        else if (blobSASSignatureValues.versionId) {\n            resource = \"bv\";\n            timestamp = blobSASSignatureValues.versionId;\n        }\n    }\n    // Calling parse and toString guarantees the proper ordering and throws on invalid characters.\n    let verifiedPermissions;\n    if (blobSASSignatureValues.permissions) {\n        if (blobSASSignatureValues.blobName) {\n            verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n        else {\n            verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n    }\n    // Signature is generated on the un-url-encoded values.\n    const stringToSign = [\n        verifiedPermissions ? verifiedPermissions : \"\",\n        blobSASSignatureValues.startsOn\n            ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false)\n            : \"\",\n        blobSASSignatureValues.expiresOn\n            ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false)\n            : \"\",\n        getCanonicalName(userDelegationKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName),\n        userDelegationKeyCredential.userDelegationKey.signedObjectId,\n        userDelegationKeyCredential.userDelegationKey.signedTenantId,\n        userDelegationKeyCredential.userDelegationKey.signedStartsOn\n            ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedStartsOn, false)\n            : \"\",\n        userDelegationKeyCredential.userDelegationKey.signedExpiresOn\n            ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedExpiresOn, false)\n            : \"\",\n        userDelegationKeyCredential.userDelegationKey.signedService,\n        userDelegationKeyCredential.userDelegationKey.signedVersion,\n        blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : \"\",\n        blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : \"\",\n        blobSASSignatureValues.version,\n        resource,\n        timestamp,\n        blobSASSignatureValues.cacheControl,\n        blobSASSignatureValues.contentDisposition,\n        blobSASSignatureValues.contentEncoding,\n        blobSASSignatureValues.contentLanguage,\n        blobSASSignatureValues.contentType,\n    ].join(\"\\n\");\n    const signature = userDelegationKeyCredential.computeHMACSHA256(stringToSign);\n    return {\n        sasQueryParameters: new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType, userDelegationKeyCredential.userDelegationKey),\n        stringToSign: stringToSign,\n    };\n}\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n * IMPLEMENTATION FOR API VERSION FROM 2020-02-10.\n *\n * Creates an instance of SASQueryParameters.\n *\n * Only accepts required settings needed to create a SAS. For optional settings please\n * set corresponding properties directly, such as permissions, startsOn.\n *\n * WARNING: identifier will be ignored, permissions and expiresOn are required.\n *\n * @param blobSASSignatureValues -\n * @param userDelegationKeyCredential -\n */\nfunction generateBlobSASQueryParametersUDK20200210(blobSASSignatureValues, userDelegationKeyCredential) {\n    blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues);\n    // Stored access policies are not supported for a user delegation SAS.\n    if (!blobSASSignatureValues.permissions || !blobSASSignatureValues.expiresOn) {\n        throw new RangeError(\"Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS.\");\n    }\n    let resource = \"c\";\n    let timestamp = blobSASSignatureValues.snapshotTime;\n    if (blobSASSignatureValues.blobName) {\n        resource = \"b\";\n        if (blobSASSignatureValues.snapshotTime) {\n            resource = \"bs\";\n        }\n        else if (blobSASSignatureValues.versionId) {\n            resource = \"bv\";\n            timestamp = blobSASSignatureValues.versionId;\n        }\n    }\n    // Calling parse and toString guarantees the proper ordering and throws on invalid characters.\n    let verifiedPermissions;\n    if (blobSASSignatureValues.permissions) {\n        if (blobSASSignatureValues.blobName) {\n            verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n        else {\n            verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n    }\n    // Signature is generated on the un-url-encoded values.\n    const stringToSign = [\n        verifiedPermissions ? verifiedPermissions : \"\",\n        blobSASSignatureValues.startsOn\n            ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false)\n            : \"\",\n        blobSASSignatureValues.expiresOn\n            ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false)\n            : \"\",\n        getCanonicalName(userDelegationKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName),\n        userDelegationKeyCredential.userDelegationKey.signedObjectId,\n        userDelegationKeyCredential.userDelegationKey.signedTenantId,\n        userDelegationKeyCredential.userDelegationKey.signedStartsOn\n            ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedStartsOn, false)\n            : \"\",\n        userDelegationKeyCredential.userDelegationKey.signedExpiresOn\n            ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedExpiresOn, false)\n            : \"\",\n        userDelegationKeyCredential.userDelegationKey.signedService,\n        userDelegationKeyCredential.userDelegationKey.signedVersion,\n        blobSASSignatureValues.preauthorizedAgentObjectId,\n        undefined, // agentObjectId\n        blobSASSignatureValues.correlationId,\n        blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : \"\",\n        blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : \"\",\n        blobSASSignatureValues.version,\n        resource,\n        timestamp,\n        blobSASSignatureValues.cacheControl,\n        blobSASSignatureValues.contentDisposition,\n        blobSASSignatureValues.contentEncoding,\n        blobSASSignatureValues.contentLanguage,\n        blobSASSignatureValues.contentType,\n    ].join(\"\\n\");\n    const signature = userDelegationKeyCredential.computeHMACSHA256(stringToSign);\n    return {\n        sasQueryParameters: new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType, userDelegationKeyCredential.userDelegationKey, blobSASSignatureValues.preauthorizedAgentObjectId, blobSASSignatureValues.correlationId),\n        stringToSign: stringToSign,\n    };\n}\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n * IMPLEMENTATION FOR API VERSION FROM 2020-12-06.\n *\n * Creates an instance of SASQueryParameters.\n *\n * Only accepts required settings needed to create a SAS. For optional settings please\n * set corresponding properties directly, such as permissions, startsOn.\n *\n * WARNING: identifier will be ignored, permissions and expiresOn are required.\n *\n * @param blobSASSignatureValues -\n * @param userDelegationKeyCredential -\n */\nfunction generateBlobSASQueryParametersUDK20201206(blobSASSignatureValues, userDelegationKeyCredential) {\n    blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues);\n    // Stored access policies are not supported for a user delegation SAS.\n    if (!blobSASSignatureValues.permissions || !blobSASSignatureValues.expiresOn) {\n        throw new RangeError(\"Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS.\");\n    }\n    let resource = \"c\";\n    let timestamp = blobSASSignatureValues.snapshotTime;\n    if (blobSASSignatureValues.blobName) {\n        resource = \"b\";\n        if (blobSASSignatureValues.snapshotTime) {\n            resource = \"bs\";\n        }\n        else if (blobSASSignatureValues.versionId) {\n            resource = \"bv\";\n            timestamp = blobSASSignatureValues.versionId;\n        }\n    }\n    // Calling parse and toString guarantees the proper ordering and throws on invalid characters.\n    let verifiedPermissions;\n    if (blobSASSignatureValues.permissions) {\n        if (blobSASSignatureValues.blobName) {\n            verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n        else {\n            verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString();\n        }\n    }\n    // Signature is generated on the un-url-encoded values.\n    const stringToSign = [\n        verifiedPermissions ? verifiedPermissions : \"\",\n        blobSASSignatureValues.startsOn\n            ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false)\n            : \"\",\n        blobSASSignatureValues.expiresOn\n            ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false)\n            : \"\",\n        getCanonicalName(userDelegationKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName),\n        userDelegationKeyCredential.userDelegationKey.signedObjectId,\n        userDelegationKeyCredential.userDelegationKey.signedTenantId,\n        userDelegationKeyCredential.userDelegationKey.signedStartsOn\n            ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedStartsOn, false)\n            : \"\",\n        userDelegationKeyCredential.userDelegationKey.signedExpiresOn\n            ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedExpiresOn, false)\n            : \"\",\n        userDelegationKeyCredential.userDelegationKey.signedService,\n        userDelegationKeyCredential.userDelegationKey.signedVersion,\n        blobSASSignatureValues.preauthorizedAgentObjectId,\n        undefined, // agentObjectId\n        blobSASSignatureValues.correlationId,\n        blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : \"\",\n        blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : \"\",\n        blobSASSignatureValues.version,\n        resource,\n        timestamp,\n        blobSASSignatureValues.encryptionScope,\n        blobSASSignatureValues.cacheControl,\n        blobSASSignatureValues.contentDisposition,\n        blobSASSignatureValues.contentEncoding,\n        blobSASSignatureValues.contentLanguage,\n        blobSASSignatureValues.contentType,\n    ].join(\"\\n\");\n    const signature = userDelegationKeyCredential.computeHMACSHA256(stringToSign);\n    return {\n        sasQueryParameters: new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType, userDelegationKeyCredential.userDelegationKey, blobSASSignatureValues.preauthorizedAgentObjectId, blobSASSignatureValues.correlationId, blobSASSignatureValues.encryptionScope),\n        stringToSign: stringToSign,\n    };\n}\nfunction getCanonicalName(accountName, containerName, blobName) {\n    // Container: \"/blob/account/containerName\"\n    // Blob:      \"/blob/account/containerName/blobName\"\n    const elements = [`/blob/${accountName}/${containerName}`];\n    if (blobName) {\n        elements.push(`/${blobName}`);\n    }\n    return elements.join(\"\");\n}\nfunction SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues) {\n    const version = blobSASSignatureValues.version ? blobSASSignatureValues.version : SERVICE_VERSION;\n    if (blobSASSignatureValues.snapshotTime && version < \"2018-11-09\") {\n        throw RangeError(\"'version' must be >= '2018-11-09' when providing 'snapshotTime'.\");\n    }\n    if (blobSASSignatureValues.blobName === undefined && blobSASSignatureValues.snapshotTime) {\n        throw RangeError(\"Must provide 'blobName' when providing 'snapshotTime'.\");\n    }\n    if (blobSASSignatureValues.versionId && version < \"2019-10-10\") {\n        throw RangeError(\"'version' must be >= '2019-10-10' when providing 'versionId'.\");\n    }\n    if (blobSASSignatureValues.blobName === undefined && blobSASSignatureValues.versionId) {\n        throw RangeError(\"Must provide 'blobName' when providing 'versionId'.\");\n    }\n    if (blobSASSignatureValues.permissions &&\n        blobSASSignatureValues.permissions.setImmutabilityPolicy &&\n        version < \"2020-08-04\") {\n        throw RangeError(\"'version' must be >= '2020-08-04' when provided 'i' permission.\");\n    }\n    if (blobSASSignatureValues.permissions &&\n        blobSASSignatureValues.permissions.deleteVersion &&\n        version < \"2019-10-10\") {\n        throw RangeError(\"'version' must be >= '2019-10-10' when providing 'x' permission.\");\n    }\n    if (blobSASSignatureValues.permissions &&\n        blobSASSignatureValues.permissions.permanentDelete &&\n        version < \"2019-10-10\") {\n        throw RangeError(\"'version' must be >= '2019-10-10' when providing 'y' permission.\");\n    }\n    if (blobSASSignatureValues.permissions &&\n        blobSASSignatureValues.permissions.tag &&\n        version < \"2019-12-12\") {\n        throw RangeError(\"'version' must be >= '2019-12-12' when providing 't' permission.\");\n    }\n    if (version < \"2020-02-10\" &&\n        blobSASSignatureValues.permissions &&\n        (blobSASSignatureValues.permissions.move || blobSASSignatureValues.permissions.execute)) {\n        throw RangeError(\"'version' must be >= '2020-02-10' when providing the 'm' or 'e' permission.\");\n    }\n    if (version < \"2021-04-10\" &&\n        blobSASSignatureValues.permissions &&\n        blobSASSignatureValues.permissions.filterByTags) {\n        throw RangeError(\"'version' must be >= '2021-04-10' when providing the 'f' permission.\");\n    }\n    if (version < \"2020-02-10\" &&\n        (blobSASSignatureValues.preauthorizedAgentObjectId || blobSASSignatureValues.correlationId)) {\n        throw RangeError(\"'version' must be >= '2020-02-10' when providing 'preauthorizedAgentObjectId' or 'correlationId'.\");\n    }\n    if (blobSASSignatureValues.encryptionScope && version < \"2020-12-06\") {\n        throw RangeError(\"'version' must be >= '2020-12-06' when provided 'encryptionScope' in SAS.\");\n    }\n    blobSASSignatureValues.version = version;\n    return blobSASSignatureValues;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A client that manages leases for a {@link ContainerClient} or a {@link BlobClient}.\n */\nclass BlobLeaseClient {\n    /**\n     * Gets the lease Id.\n     *\n     * @readonly\n     */\n    get leaseId() {\n        return this._leaseId;\n    }\n    /**\n     * Gets the url.\n     *\n     * @readonly\n     */\n    get url() {\n        return this._url;\n    }\n    /**\n     * Creates an instance of BlobLeaseClient.\n     * @param client - The client to make the lease operation requests.\n     * @param leaseId - Initial proposed lease id.\n     */\n    constructor(client, leaseId) {\n        const clientContext = client.storageClientContext;\n        this._url = client.url;\n        if (client.name === undefined) {\n            this._isContainer = true;\n            this._containerOrBlobOperation = clientContext.container;\n        }\n        else {\n            this._isContainer = false;\n            this._containerOrBlobOperation = clientContext.blob;\n        }\n        if (!leaseId) {\n            leaseId = randomUUID();\n        }\n        this._leaseId = leaseId;\n    }\n    /**\n     * Establishes and manages a lock on a container for delete operations, or on a blob\n     * for write and delete operations.\n     * The lock duration can be 15 to 60 seconds, or can be infinite.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-container\n     * and\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-blob\n     *\n     * @param duration - Must be between 15 to 60 seconds, or infinite (-1)\n     * @param options - option to configure lease management operations.\n     * @returns Response data for acquire lease operation.\n     */\n    async acquireLease(duration, options = {}) {\n        var _a, _b, _c, _d, _e;\n        if (this._isContainer &&\n            ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) ||\n                (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) ||\n                ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) {\n            throw new RangeError(\"The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable.\");\n        }\n        return tracingClient.withSpan(\"BlobLeaseClient-acquireLease\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this._containerOrBlobOperation.acquireLease({\n                abortSignal: options.abortSignal,\n                duration,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                proposedLeaseId: this._leaseId,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * To change the ID of the lease.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-container\n     * and\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-blob\n     *\n     * @param proposedLeaseId - the proposed new lease Id.\n     * @param options - option to configure lease management operations.\n     * @returns Response data for change lease operation.\n     */\n    async changeLease(proposedLeaseId, options = {}) {\n        var _a, _b, _c, _d, _e;\n        if (this._isContainer &&\n            ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) ||\n                (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) ||\n                ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) {\n            throw new RangeError(\"The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable.\");\n        }\n        return tracingClient.withSpan(\"BlobLeaseClient-changeLease\", options, async (updatedOptions) => {\n            var _a;\n            const response = assertResponse(await this._containerOrBlobOperation.changeLease(this._leaseId, proposedLeaseId, {\n                abortSignal: options.abortSignal,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            this._leaseId = proposedLeaseId;\n            return response;\n        });\n    }\n    /**\n     * To free the lease if it is no longer needed so that another client may\n     * immediately acquire a lease against the container or the blob.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-container\n     * and\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-blob\n     *\n     * @param options - option to configure lease management operations.\n     * @returns Response data for release lease operation.\n     */\n    async releaseLease(options = {}) {\n        var _a, _b, _c, _d, _e;\n        if (this._isContainer &&\n            ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) ||\n                (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) ||\n                ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) {\n            throw new RangeError(\"The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable.\");\n        }\n        return tracingClient.withSpan(\"BlobLeaseClient-releaseLease\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this._containerOrBlobOperation.releaseLease(this._leaseId, {\n                abortSignal: options.abortSignal,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * To renew the lease.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-container\n     * and\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-blob\n     *\n     * @param options - Optional option to configure lease management operations.\n     * @returns Response data for renew lease operation.\n     */\n    async renewLease(options = {}) {\n        var _a, _b, _c, _d, _e;\n        if (this._isContainer &&\n            ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) ||\n                (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) ||\n                ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) {\n            throw new RangeError(\"The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable.\");\n        }\n        return tracingClient.withSpan(\"BlobLeaseClient-renewLease\", options, async (updatedOptions) => {\n            var _a;\n            return this._containerOrBlobOperation.renewLease(this._leaseId, {\n                abortSignal: options.abortSignal,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            });\n        });\n    }\n    /**\n     * To end the lease but ensure that another client cannot acquire a new lease\n     * until the current lease period has expired.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-container\n     * and\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/lease-blob\n     *\n     * @param breakPeriod - Break period\n     * @param options - Optional options to configure lease management operations.\n     * @returns Response data for break lease operation.\n     */\n    async breakLease(breakPeriod, options = {}) {\n        var _a, _b, _c, _d, _e;\n        if (this._isContainer &&\n            ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) ||\n                (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) ||\n                ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) {\n            throw new RangeError(\"The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable.\");\n        }\n        return tracingClient.withSpan(\"BlobLeaseClient-breakLease\", options, async (updatedOptions) => {\n            var _a;\n            const operationOptions = {\n                abortSignal: options.abortSignal,\n                breakPeriod,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            };\n            return assertResponse(await this._containerOrBlobOperation.breakLease(operationOptions));\n        });\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * A Node.js ReadableStream will internally retry when internal ReadableStream unexpected ends.\n */\nclass RetriableReadableStream extends Readable$1 {\n    /**\n     * Creates an instance of RetriableReadableStream.\n     *\n     * @param source - The current ReadableStream returned from getter\n     * @param getter - A method calling downloading request returning\n     *                                      a new ReadableStream from specified offset\n     * @param offset - Offset position in original data source to read\n     * @param count - How much data in original data source to read\n     * @param options -\n     */\n    constructor(source, getter, offset, count, options = {}) {\n        super({ highWaterMark: options.highWaterMark });\n        this.retries = 0;\n        this.sourceDataHandler = (data) => {\n            if (this.options.doInjectErrorOnce) {\n                this.options.doInjectErrorOnce = undefined;\n                this.source.pause();\n                this.sourceErrorOrEndHandler();\n                this.source.destroy();\n                return;\n            }\n            // console.log(\n            //   `Offset: ${this.offset}, Received ${data.length} from internal stream`\n            // );\n            this.offset += data.length;\n            if (this.onProgress) {\n                this.onProgress({ loadedBytes: this.offset - this.start });\n            }\n            if (!this.push(data)) {\n                this.source.pause();\n            }\n        };\n        this.sourceAbortedHandler = () => {\n            const abortError = new AbortError$2(\"The operation was aborted.\");\n            this.destroy(abortError);\n        };\n        this.sourceErrorOrEndHandler = (err) => {\n            if (err && err.name === \"AbortError\") {\n                this.destroy(err);\n                return;\n            }\n            // console.log(\n            //   `Source stream emits end or error, offset: ${\n            //     this.offset\n            //   }, dest end : ${this.end}`\n            // );\n            this.removeSourceEventHandlers();\n            if (this.offset - 1 === this.end) {\n                this.push(null);\n            }\n            else if (this.offset <= this.end) {\n                // console.log(\n                //   `retries: ${this.retries}, max retries: ${this.maxRetries}`\n                // );\n                if (this.retries < this.maxRetryRequests) {\n                    this.retries += 1;\n                    this.getter(this.offset)\n                        .then((newSource) => {\n                        this.source = newSource;\n                        this.setSourceEventHandlers();\n                        return;\n                    })\n                        .catch((error) => {\n                        this.destroy(error);\n                    });\n                }\n                else {\n                    this.destroy(new Error(`Data corruption failure: received less data than required and reached maxRetires limitation. Received data offset: ${this.offset - 1}, data needed offset: ${this.end}, retries: ${this.retries}, max retries: ${this.maxRetryRequests}`));\n                }\n            }\n            else {\n                this.destroy(new Error(`Data corruption failure: Received more data than original request, data needed offset is ${this.end}, received offset: ${this.offset - 1}`));\n            }\n        };\n        this.getter = getter;\n        this.source = source;\n        this.start = offset;\n        this.offset = offset;\n        this.end = offset + count - 1;\n        this.maxRetryRequests =\n            options.maxRetryRequests && options.maxRetryRequests >= 0 ? options.maxRetryRequests : 0;\n        this.onProgress = options.onProgress;\n        this.options = options;\n        this.setSourceEventHandlers();\n    }\n    _read() {\n        this.source.resume();\n    }\n    setSourceEventHandlers() {\n        this.source.on(\"data\", this.sourceDataHandler);\n        this.source.on(\"end\", this.sourceErrorOrEndHandler);\n        this.source.on(\"error\", this.sourceErrorOrEndHandler);\n        // needed for Node14\n        this.source.on(\"aborted\", this.sourceAbortedHandler);\n    }\n    removeSourceEventHandlers() {\n        this.source.removeListener(\"data\", this.sourceDataHandler);\n        this.source.removeListener(\"end\", this.sourceErrorOrEndHandler);\n        this.source.removeListener(\"error\", this.sourceErrorOrEndHandler);\n        this.source.removeListener(\"aborted\", this.sourceAbortedHandler);\n    }\n    _destroy(error, callback) {\n        // remove listener from source and release source\n        this.removeSourceEventHandlers();\n        this.source.destroy();\n        callback(error === null ? undefined : error);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * BlobDownloadResponse implements BlobDownloadResponseParsed interface, and in Node.js runtime it will\n * automatically retry when internal read stream unexpected ends. (This kind of unexpected ends cannot\n * trigger retries defined in pipeline retry policy.)\n *\n * The {@link readableStreamBody} stream will retry underlayer, you can just use it as a normal Node.js\n * Readable stream.\n */\nclass BlobDownloadResponse {\n    /**\n     * Indicates that the service supports\n     * requests for partial file content.\n     *\n     * @readonly\n     */\n    get acceptRanges() {\n        return this.originalResponse.acceptRanges;\n    }\n    /**\n     * Returns if it was previously specified\n     * for the file.\n     *\n     * @readonly\n     */\n    get cacheControl() {\n        return this.originalResponse.cacheControl;\n    }\n    /**\n     * Returns the value that was specified\n     * for the 'x-ms-content-disposition' header and specifies how to process the\n     * response.\n     *\n     * @readonly\n     */\n    get contentDisposition() {\n        return this.originalResponse.contentDisposition;\n    }\n    /**\n     * Returns the value that was specified\n     * for the Content-Encoding request header.\n     *\n     * @readonly\n     */\n    get contentEncoding() {\n        return this.originalResponse.contentEncoding;\n    }\n    /**\n     * Returns the value that was specified\n     * for the Content-Language request header.\n     *\n     * @readonly\n     */\n    get contentLanguage() {\n        return this.originalResponse.contentLanguage;\n    }\n    /**\n     * The current sequence number for a\n     * page blob. This header is not returned for block blobs or append blobs.\n     *\n     * @readonly\n     */\n    get blobSequenceNumber() {\n        return this.originalResponse.blobSequenceNumber;\n    }\n    /**\n     * The blob's type. Possible values include:\n     * 'BlockBlob', 'PageBlob', 'AppendBlob'.\n     *\n     * @readonly\n     */\n    get blobType() {\n        return this.originalResponse.blobType;\n    }\n    /**\n     * The number of bytes present in the\n     * response body.\n     *\n     * @readonly\n     */\n    get contentLength() {\n        return this.originalResponse.contentLength;\n    }\n    /**\n     * If the file has an MD5 hash and the\n     * request is to read the full file, this response header is returned so that\n     * the client can check for message content integrity. If the request is to\n     * read a specified range and the 'x-ms-range-get-content-md5' is set to\n     * true, then the request returns an MD5 hash for the range, as long as the\n     * range size is less than or equal to 4 MB. If neither of these sets of\n     * conditions is true, then no value is returned for the 'Content-MD5'\n     * header.\n     *\n     * @readonly\n     */\n    get contentMD5() {\n        return this.originalResponse.contentMD5;\n    }\n    /**\n     * Indicates the range of bytes returned if\n     * the client requested a subset of the file by setting the Range request\n     * header.\n     *\n     * @readonly\n     */\n    get contentRange() {\n        return this.originalResponse.contentRange;\n    }\n    /**\n     * The content type specified for the file.\n     * The default content type is 'application/octet-stream'\n     *\n     * @readonly\n     */\n    get contentType() {\n        return this.originalResponse.contentType;\n    }\n    /**\n     * Conclusion time of the last attempted\n     * Copy File operation where this file was the destination file. This value\n     * can specify the time of a completed, aborted, or failed copy attempt.\n     *\n     * @readonly\n     */\n    get copyCompletedOn() {\n        return this.originalResponse.copyCompletedOn;\n    }\n    /**\n     * String identifier for the last attempted Copy\n     * File operation where this file was the destination file.\n     *\n     * @readonly\n     */\n    get copyId() {\n        return this.originalResponse.copyId;\n    }\n    /**\n     * Contains the number of bytes copied and\n     * the total bytes in the source in the last attempted Copy File operation\n     * where this file was the destination file. Can show between 0 and\n     * Content-Length bytes copied.\n     *\n     * @readonly\n     */\n    get copyProgress() {\n        return this.originalResponse.copyProgress;\n    }\n    /**\n     * URL up to 2KB in length that specifies the\n     * source file used in the last attempted Copy File operation where this file\n     * was the destination file.\n     *\n     * @readonly\n     */\n    get copySource() {\n        return this.originalResponse.copySource;\n    }\n    /**\n     * State of the copy operation\n     * identified by 'x-ms-copy-id'. Possible values include: 'pending',\n     * 'success', 'aborted', 'failed'\n     *\n     * @readonly\n     */\n    get copyStatus() {\n        return this.originalResponse.copyStatus;\n    }\n    /**\n     * Only appears when\n     * x-ms-copy-status is failed or pending. Describes cause of fatal or\n     * non-fatal copy operation failure.\n     *\n     * @readonly\n     */\n    get copyStatusDescription() {\n        return this.originalResponse.copyStatusDescription;\n    }\n    /**\n     * When a blob is leased,\n     * specifies whether the lease is of infinite or fixed duration. Possible\n     * values include: 'infinite', 'fixed'.\n     *\n     * @readonly\n     */\n    get leaseDuration() {\n        return this.originalResponse.leaseDuration;\n    }\n    /**\n     * Lease state of the blob. Possible\n     * values include: 'available', 'leased', 'expired', 'breaking', 'broken'.\n     *\n     * @readonly\n     */\n    get leaseState() {\n        return this.originalResponse.leaseState;\n    }\n    /**\n     * The current lease status of the\n     * blob. Possible values include: 'locked', 'unlocked'.\n     *\n     * @readonly\n     */\n    get leaseStatus() {\n        return this.originalResponse.leaseStatus;\n    }\n    /**\n     * A UTC date/time value generated by the service that\n     * indicates the time at which the response was initiated.\n     *\n     * @readonly\n     */\n    get date() {\n        return this.originalResponse.date;\n    }\n    /**\n     * The number of committed blocks\n     * present in the blob. This header is returned only for append blobs.\n     *\n     * @readonly\n     */\n    get blobCommittedBlockCount() {\n        return this.originalResponse.blobCommittedBlockCount;\n    }\n    /**\n     * The ETag contains a value that you can use to\n     * perform operations conditionally, in quotes.\n     *\n     * @readonly\n     */\n    get etag() {\n        return this.originalResponse.etag;\n    }\n    /**\n     * The number of tags associated with the blob\n     *\n     * @readonly\n     */\n    get tagCount() {\n        return this.originalResponse.tagCount;\n    }\n    /**\n     * The error code.\n     *\n     * @readonly\n     */\n    get errorCode() {\n        return this.originalResponse.errorCode;\n    }\n    /**\n     * The value of this header is set to\n     * true if the file data and application metadata are completely encrypted\n     * using the specified algorithm. Otherwise, the value is set to false (when\n     * the file is unencrypted, or if only parts of the file/application metadata\n     * are encrypted).\n     *\n     * @readonly\n     */\n    get isServerEncrypted() {\n        return this.originalResponse.isServerEncrypted;\n    }\n    /**\n     * If the blob has a MD5 hash, and if\n     * request contains range header (Range or x-ms-range), this response header\n     * is returned with the value of the whole blob's MD5 value. This value may\n     * or may not be equal to the value returned in Content-MD5 header, with the\n     * latter calculated from the requested range.\n     *\n     * @readonly\n     */\n    get blobContentMD5() {\n        return this.originalResponse.blobContentMD5;\n    }\n    /**\n     * Returns the date and time the file was last\n     * modified. Any operation that modifies the file or its properties updates\n     * the last modified time.\n     *\n     * @readonly\n     */\n    get lastModified() {\n        return this.originalResponse.lastModified;\n    }\n    /**\n     * Returns the UTC date and time generated by the service that indicates the time at which the blob was\n     * last read or written to.\n     *\n     * @readonly\n     */\n    get lastAccessed() {\n        return this.originalResponse.lastAccessed;\n    }\n    /**\n     * Returns the date and time the blob was created.\n     *\n     * @readonly\n     */\n    get createdOn() {\n        return this.originalResponse.createdOn;\n    }\n    /**\n     * A name-value pair\n     * to associate with a file storage object.\n     *\n     * @readonly\n     */\n    get metadata() {\n        return this.originalResponse.metadata;\n    }\n    /**\n     * This header uniquely identifies the request\n     * that was made and can be used for troubleshooting the request.\n     *\n     * @readonly\n     */\n    get requestId() {\n        return this.originalResponse.requestId;\n    }\n    /**\n     * If a client request id header is sent in the request, this header will be present in the\n     * response with the same value.\n     *\n     * @readonly\n     */\n    get clientRequestId() {\n        return this.originalResponse.clientRequestId;\n    }\n    /**\n     * Indicates the version of the Blob service used\n     * to execute the request.\n     *\n     * @readonly\n     */\n    get version() {\n        return this.originalResponse.version;\n    }\n    /**\n     * Indicates the versionId of the downloaded blob version.\n     *\n     * @readonly\n     */\n    get versionId() {\n        return this.originalResponse.versionId;\n    }\n    /**\n     * Indicates whether version of this blob is a current version.\n     *\n     * @readonly\n     */\n    get isCurrentVersion() {\n        return this.originalResponse.isCurrentVersion;\n    }\n    /**\n     * The SHA-256 hash of the encryption key used to encrypt the blob. This value is only returned\n     * when the blob was encrypted with a customer-provided key.\n     *\n     * @readonly\n     */\n    get encryptionKeySha256() {\n        return this.originalResponse.encryptionKeySha256;\n    }\n    /**\n     * If the request is to read a specified range and the x-ms-range-get-content-crc64 is set to\n     * true, then the request returns a crc64 for the range, as long as the range size is less than\n     * or equal to 4 MB. If both x-ms-range-get-content-crc64 & x-ms-range-get-content-md5 is\n     * specified in the same request, it will fail with 400(Bad Request)\n     */\n    get contentCrc64() {\n        return this.originalResponse.contentCrc64;\n    }\n    /**\n     * Object Replication Policy Id of the destination blob.\n     *\n     * @readonly\n     */\n    get objectReplicationDestinationPolicyId() {\n        return this.originalResponse.objectReplicationDestinationPolicyId;\n    }\n    /**\n     * Parsed Object Replication Policy Id, Rule Id(s) and status of the source blob.\n     *\n     * @readonly\n     */\n    get objectReplicationSourceProperties() {\n        return this.originalResponse.objectReplicationSourceProperties;\n    }\n    /**\n     * If this blob has been sealed.\n     *\n     * @readonly\n     */\n    get isSealed() {\n        return this.originalResponse.isSealed;\n    }\n    /**\n     * UTC date/time value generated by the service that indicates the time at which the blob immutability policy will expire.\n     *\n     * @readonly\n     */\n    get immutabilityPolicyExpiresOn() {\n        return this.originalResponse.immutabilityPolicyExpiresOn;\n    }\n    /**\n     * Indicates immutability policy mode.\n     *\n     * @readonly\n     */\n    get immutabilityPolicyMode() {\n        return this.originalResponse.immutabilityPolicyMode;\n    }\n    /**\n     * Indicates if a legal hold is present on the blob.\n     *\n     * @readonly\n     */\n    get legalHold() {\n        return this.originalResponse.legalHold;\n    }\n    /**\n     * The response body as a browser Blob.\n     * Always undefined in node.js.\n     *\n     * @readonly\n     */\n    get contentAsBlob() {\n        return this.originalResponse.blobBody;\n    }\n    /**\n     * The response body as a node.js Readable stream.\n     * Always undefined in the browser.\n     *\n     * It will automatically retry when internal read stream unexpected ends.\n     *\n     * @readonly\n     */\n    get readableStreamBody() {\n        return isNode ? this.blobDownloadStream : undefined;\n    }\n    /**\n     * The HTTP response.\n     */\n    get _response() {\n        return this.originalResponse._response;\n    }\n    /**\n     * Creates an instance of BlobDownloadResponse.\n     *\n     * @param originalResponse -\n     * @param getter -\n     * @param offset -\n     * @param count -\n     * @param options -\n     */\n    constructor(originalResponse, getter, offset, count, options = {}) {\n        this.originalResponse = originalResponse;\n        this.blobDownloadStream = new RetriableReadableStream(this.originalResponse.readableStreamBody, getter, offset, count, options);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst AVRO_SYNC_MARKER_SIZE = 16;\nconst AVRO_INIT_BYTES = new Uint8Array([79, 98, 106, 1]);\nconst AVRO_CODEC_KEY = \"avro.codec\";\nconst AVRO_SCHEMA_KEY = \"avro.schema\";\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nclass AvroParser {\n    /**\n     * Reads a fixed number of bytes from the stream.\n     *\n     * @param stream -\n     * @param length -\n     * @param options -\n     */\n    static async readFixedBytes(stream, length, options = {}) {\n        const bytes = await stream.read(length, { abortSignal: options.abortSignal });\n        if (bytes.length !== length) {\n            throw new Error(\"Hit stream end.\");\n        }\n        return bytes;\n    }\n    /**\n     * Reads a single byte from the stream.\n     *\n     * @param stream -\n     * @param options -\n     */\n    static async readByte(stream, options = {}) {\n        const buf = await AvroParser.readFixedBytes(stream, 1, options);\n        return buf[0];\n    }\n    // int and long are stored in variable-length zig-zag coding.\n    // variable-length: https://lucene.apache.org/core/3_5_0/fileformats.html#VInt\n    // zig-zag: https://developers.google.com/protocol-buffers/docs/encoding?csw=1#types\n    static async readZigZagLong(stream, options = {}) {\n        let zigZagEncoded = 0;\n        let significanceInBit = 0;\n        let byte, haveMoreByte, significanceInFloat;\n        do {\n            byte = await AvroParser.readByte(stream, options);\n            haveMoreByte = byte & 0x80;\n            zigZagEncoded |= (byte & 0x7f) << significanceInBit;\n            significanceInBit += 7;\n        } while (haveMoreByte && significanceInBit < 28); // bitwise operation only works for 32-bit integers\n        if (haveMoreByte) {\n            // Switch to float arithmetic\n            // eslint-disable-next-line no-self-assign\n            zigZagEncoded = zigZagEncoded;\n            significanceInFloat = 268435456; // 2 ** 28.\n            do {\n                byte = await AvroParser.readByte(stream, options);\n                zigZagEncoded += (byte & 0x7f) * significanceInFloat;\n                significanceInFloat *= 128; // 2 ** 7\n            } while (byte & 0x80);\n            const res = (zigZagEncoded % 2 ? -(zigZagEncoded + 1) : zigZagEncoded) / 2;\n            if (res < Number.MIN_SAFE_INTEGER || res > Number.MAX_SAFE_INTEGER) {\n                throw new Error(\"Integer overflow.\");\n            }\n            return res;\n        }\n        return (zigZagEncoded >> 1) ^ -(zigZagEncoded & 1);\n    }\n    static async readLong(stream, options = {}) {\n        return AvroParser.readZigZagLong(stream, options);\n    }\n    static async readInt(stream, options = {}) {\n        return AvroParser.readZigZagLong(stream, options);\n    }\n    static async readNull() {\n        return null;\n    }\n    static async readBoolean(stream, options = {}) {\n        const b = await AvroParser.readByte(stream, options);\n        if (b === 1) {\n            return true;\n        }\n        else if (b === 0) {\n            return false;\n        }\n        else {\n            throw new Error(\"Byte was not a boolean.\");\n        }\n    }\n    static async readFloat(stream, options = {}) {\n        const u8arr = await AvroParser.readFixedBytes(stream, 4, options);\n        const view = new DataView(u8arr.buffer, u8arr.byteOffset, u8arr.byteLength);\n        return view.getFloat32(0, true); // littleEndian = true\n    }\n    static async readDouble(stream, options = {}) {\n        const u8arr = await AvroParser.readFixedBytes(stream, 8, options);\n        const view = new DataView(u8arr.buffer, u8arr.byteOffset, u8arr.byteLength);\n        return view.getFloat64(0, true); // littleEndian = true\n    }\n    static async readBytes(stream, options = {}) {\n        const size = await AvroParser.readLong(stream, options);\n        if (size < 0) {\n            throw new Error(\"Bytes size was negative.\");\n        }\n        return stream.read(size, { abortSignal: options.abortSignal });\n    }\n    static async readString(stream, options = {}) {\n        const u8arr = await AvroParser.readBytes(stream, options);\n        const utf8decoder = new TextDecoder();\n        return utf8decoder.decode(u8arr);\n    }\n    static async readMapPair(stream, readItemMethod, options = {}) {\n        const key = await AvroParser.readString(stream, options);\n        // FUTURE: this won't work with readFixed (currently not supported) which needs a length as the parameter.\n        const value = await readItemMethod(stream, options);\n        return { key, value };\n    }\n    static async readMap(stream, readItemMethod, options = {}) {\n        const readPairMethod = (s, opts = {}) => {\n            return AvroParser.readMapPair(s, readItemMethod, opts);\n        };\n        const pairs = await AvroParser.readArray(stream, readPairMethod, options);\n        const dict = {};\n        for (const pair of pairs) {\n            dict[pair.key] = pair.value;\n        }\n        return dict;\n    }\n    static async readArray(stream, readItemMethod, options = {}) {\n        const items = [];\n        for (let count = await AvroParser.readLong(stream, options); count !== 0; count = await AvroParser.readLong(stream, options)) {\n            if (count < 0) {\n                // Ignore block sizes\n                await AvroParser.readLong(stream, options);\n                count = -count;\n            }\n            while (count--) {\n                const item = await readItemMethod(stream, options);\n                items.push(item);\n            }\n        }\n        return items;\n    }\n}\nvar AvroComplex;\n(function (AvroComplex) {\n    AvroComplex[\"RECORD\"] = \"record\";\n    AvroComplex[\"ENUM\"] = \"enum\";\n    AvroComplex[\"ARRAY\"] = \"array\";\n    AvroComplex[\"MAP\"] = \"map\";\n    AvroComplex[\"UNION\"] = \"union\";\n    AvroComplex[\"FIXED\"] = \"fixed\";\n})(AvroComplex || (AvroComplex = {}));\nvar AvroPrimitive;\n(function (AvroPrimitive) {\n    AvroPrimitive[\"NULL\"] = \"null\";\n    AvroPrimitive[\"BOOLEAN\"] = \"boolean\";\n    AvroPrimitive[\"INT\"] = \"int\";\n    AvroPrimitive[\"LONG\"] = \"long\";\n    AvroPrimitive[\"FLOAT\"] = \"float\";\n    AvroPrimitive[\"DOUBLE\"] = \"double\";\n    AvroPrimitive[\"BYTES\"] = \"bytes\";\n    AvroPrimitive[\"STRING\"] = \"string\";\n})(AvroPrimitive || (AvroPrimitive = {}));\nclass AvroType {\n    /**\n     * Determines the AvroType from the Avro Schema.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-wrapper-object-types\n    static fromSchema(schema) {\n        if (typeof schema === \"string\") {\n            return AvroType.fromStringSchema(schema);\n        }\n        else if (Array.isArray(schema)) {\n            return AvroType.fromArraySchema(schema);\n        }\n        else {\n            return AvroType.fromObjectSchema(schema);\n        }\n    }\n    static fromStringSchema(schema) {\n        switch (schema) {\n            case AvroPrimitive.NULL:\n            case AvroPrimitive.BOOLEAN:\n            case AvroPrimitive.INT:\n            case AvroPrimitive.LONG:\n            case AvroPrimitive.FLOAT:\n            case AvroPrimitive.DOUBLE:\n            case AvroPrimitive.BYTES:\n            case AvroPrimitive.STRING:\n                return new AvroPrimitiveType(schema);\n            default:\n                throw new Error(`Unexpected Avro type ${schema}`);\n        }\n    }\n    static fromArraySchema(schema) {\n        return new AvroUnionType(schema.map(AvroType.fromSchema));\n    }\n    static fromObjectSchema(schema) {\n        const type = schema.type;\n        // Primitives can be defined as strings or objects\n        try {\n            return AvroType.fromStringSchema(type);\n        }\n        catch (_a) {\n            // no-op\n        }\n        switch (type) {\n            case AvroComplex.RECORD:\n                if (schema.aliases) {\n                    throw new Error(`aliases currently is not supported, schema: ${schema}`);\n                }\n                if (!schema.name) {\n                    throw new Error(`Required attribute 'name' doesn't exist on schema: ${schema}`);\n                }\n                // eslint-disable-next-line no-case-declarations\n                const fields = {};\n                if (!schema.fields) {\n                    throw new Error(`Required attribute 'fields' doesn't exist on schema: ${schema}`);\n                }\n                for (const field of schema.fields) {\n                    fields[field.name] = AvroType.fromSchema(field.type);\n                }\n                return new AvroRecordType(fields, schema.name);\n            case AvroComplex.ENUM:\n                if (schema.aliases) {\n                    throw new Error(`aliases currently is not supported, schema: ${schema}`);\n                }\n                if (!schema.symbols) {\n                    throw new Error(`Required attribute 'symbols' doesn't exist on schema: ${schema}`);\n                }\n                return new AvroEnumType(schema.symbols);\n            case AvroComplex.MAP:\n                if (!schema.values) {\n                    throw new Error(`Required attribute 'values' doesn't exist on schema: ${schema}`);\n                }\n                return new AvroMapType(AvroType.fromSchema(schema.values));\n            case AvroComplex.ARRAY: // Unused today\n            case AvroComplex.FIXED: // Unused today\n            default:\n                throw new Error(`Unexpected Avro type ${type} in ${schema}`);\n        }\n    }\n}\nclass AvroPrimitiveType extends AvroType {\n    constructor(primitive) {\n        super();\n        this._primitive = primitive;\n    }\n    // eslint-disable-next-line @typescript-eslint/no-wrapper-object-types\n    read(stream, options = {}) {\n        switch (this._primitive) {\n            case AvroPrimitive.NULL:\n                return AvroParser.readNull();\n            case AvroPrimitive.BOOLEAN:\n                return AvroParser.readBoolean(stream, options);\n            case AvroPrimitive.INT:\n                return AvroParser.readInt(stream, options);\n            case AvroPrimitive.LONG:\n                return AvroParser.readLong(stream, options);\n            case AvroPrimitive.FLOAT:\n                return AvroParser.readFloat(stream, options);\n            case AvroPrimitive.DOUBLE:\n                return AvroParser.readDouble(stream, options);\n            case AvroPrimitive.BYTES:\n                return AvroParser.readBytes(stream, options);\n            case AvroPrimitive.STRING:\n                return AvroParser.readString(stream, options);\n            default:\n                throw new Error(\"Unknown Avro Primitive\");\n        }\n    }\n}\nclass AvroEnumType extends AvroType {\n    constructor(symbols) {\n        super();\n        this._symbols = symbols;\n    }\n    // eslint-disable-next-line @typescript-eslint/no-wrapper-object-types\n    async read(stream, options = {}) {\n        const value = await AvroParser.readInt(stream, options);\n        return this._symbols[value];\n    }\n}\nclass AvroUnionType extends AvroType {\n    constructor(types) {\n        super();\n        this._types = types;\n    }\n    async read(stream, options = {}) {\n        const typeIndex = await AvroParser.readInt(stream, options);\n        return this._types[typeIndex].read(stream, options);\n    }\n}\nclass AvroMapType extends AvroType {\n    constructor(itemType) {\n        super();\n        this._itemType = itemType;\n    }\n    // eslint-disable-next-line @typescript-eslint/no-wrapper-object-types\n    read(stream, options = {}) {\n        const readItemMethod = (s, opts) => {\n            return this._itemType.read(s, opts);\n        };\n        return AvroParser.readMap(stream, readItemMethod, options);\n    }\n}\nclass AvroRecordType extends AvroType {\n    constructor(fields, name) {\n        super();\n        this._fields = fields;\n        this._name = name;\n    }\n    // eslint-disable-next-line @typescript-eslint/no-wrapper-object-types\n    async read(stream, options = {}) {\n        // eslint-disable-next-line @typescript-eslint/no-wrapper-object-types\n        const record = {};\n        record[\"$schema\"] = this._name;\n        for (const key in this._fields) {\n            if (Object.prototype.hasOwnProperty.call(this._fields, key)) {\n                record[key] = await this._fields[key].read(stream, options);\n            }\n        }\n        return record;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nfunction arraysEqual(a, b) {\n    if (a === b)\n        return true;\n    if (a == null || b == null)\n        return false;\n    if (a.length !== b.length)\n        return false;\n    for (let i = 0; i < a.length; ++i) {\n        if (a[i] !== b[i])\n            return false;\n    }\n    return true;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nclass AvroReader {\n    get blockOffset() {\n        return this._blockOffset;\n    }\n    get objectIndex() {\n        return this._objectIndex;\n    }\n    constructor(dataStream, headerStream, currentBlockOffset, indexWithinCurrentBlock) {\n        this._dataStream = dataStream;\n        this._headerStream = headerStream || dataStream;\n        this._initialized = false;\n        this._blockOffset = currentBlockOffset || 0;\n        this._objectIndex = indexWithinCurrentBlock || 0;\n        this._initialBlockOffset = currentBlockOffset || 0;\n    }\n    async initialize(options = {}) {\n        const header = await AvroParser.readFixedBytes(this._headerStream, AVRO_INIT_BYTES.length, {\n            abortSignal: options.abortSignal,\n        });\n        if (!arraysEqual(header, AVRO_INIT_BYTES)) {\n            throw new Error(\"Stream is not an Avro file.\");\n        }\n        // File metadata is written as if defined by the following map schema:\n        // { \"type\": \"map\", \"values\": \"bytes\"}\n        this._metadata = await AvroParser.readMap(this._headerStream, AvroParser.readString, {\n            abortSignal: options.abortSignal,\n        });\n        // Validate codec\n        const codec = this._metadata[AVRO_CODEC_KEY];\n        if (!(codec === undefined || codec === null || codec === \"null\")) {\n            throw new Error(\"Codecs are not supported\");\n        }\n        // The 16-byte, randomly-generated sync marker for this file.\n        this._syncMarker = await AvroParser.readFixedBytes(this._headerStream, AVRO_SYNC_MARKER_SIZE, {\n            abortSignal: options.abortSignal,\n        });\n        // Parse the schema\n        const schema = JSON.parse(this._metadata[AVRO_SCHEMA_KEY]);\n        this._itemType = AvroType.fromSchema(schema);\n        if (this._blockOffset === 0) {\n            this._blockOffset = this._initialBlockOffset + this._dataStream.position;\n        }\n        this._itemsRemainingInBlock = await AvroParser.readLong(this._dataStream, {\n            abortSignal: options.abortSignal,\n        });\n        // skip block length\n        await AvroParser.readLong(this._dataStream, { abortSignal: options.abortSignal });\n        this._initialized = true;\n        if (this._objectIndex && this._objectIndex > 0) {\n            for (let i = 0; i < this._objectIndex; i++) {\n                await this._itemType.read(this._dataStream, { abortSignal: options.abortSignal });\n                this._itemsRemainingInBlock--;\n            }\n        }\n    }\n    hasNext() {\n        return !this._initialized || this._itemsRemainingInBlock > 0;\n    }\n    parseObjects() {\n        return __asyncGenerator(this, arguments, function* parseObjects_1(options = {}) {\n            if (!this._initialized) {\n                yield __await(this.initialize(options));\n            }\n            while (this.hasNext()) {\n                const result = yield __await(this._itemType.read(this._dataStream, {\n                    abortSignal: options.abortSignal,\n                }));\n                this._itemsRemainingInBlock--;\n                this._objectIndex++;\n                if (this._itemsRemainingInBlock === 0) {\n                    const marker = yield __await(AvroParser.readFixedBytes(this._dataStream, AVRO_SYNC_MARKER_SIZE, {\n                        abortSignal: options.abortSignal,\n                    }));\n                    this._blockOffset = this._initialBlockOffset + this._dataStream.position;\n                    this._objectIndex = 0;\n                    if (!arraysEqual(this._syncMarker, marker)) {\n                        throw new Error(\"Stream is not a valid Avro file.\");\n                    }\n                    try {\n                        this._itemsRemainingInBlock = yield __await(AvroParser.readLong(this._dataStream, {\n                            abortSignal: options.abortSignal,\n                        }));\n                    }\n                    catch (_a) {\n                        // We hit the end of the stream.\n                        this._itemsRemainingInBlock = 0;\n                    }\n                    if (this._itemsRemainingInBlock > 0) {\n                        // Ignore block size\n                        yield __await(AvroParser.readLong(this._dataStream, { abortSignal: options.abortSignal }));\n                    }\n                }\n                yield yield __await(result);\n            }\n        });\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nclass AvroReadable {\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst ABORT_ERROR = new AbortError$2(\"Reading from the avro stream was aborted.\");\nclass AvroReadableFromStream extends AvroReadable {\n    toUint8Array(data) {\n        if (typeof data === \"string\") {\n            return Buffer.from(data);\n        }\n        return data;\n    }\n    constructor(readable) {\n        super();\n        this._readable = readable;\n        this._position = 0;\n    }\n    get position() {\n        return this._position;\n    }\n    async read(size, options = {}) {\n        var _a;\n        if ((_a = options.abortSignal) === null || _a === void 0 ? void 0 : _a.aborted) {\n            throw ABORT_ERROR;\n        }\n        if (size < 0) {\n            throw new Error(`size parameter should be positive: ${size}`);\n        }\n        if (size === 0) {\n            return new Uint8Array();\n        }\n        if (!this._readable.readable) {\n            throw new Error(\"Stream no longer readable.\");\n        }\n        // See if there is already enough data.\n        const chunk = this._readable.read(size);\n        if (chunk) {\n            this._position += chunk.length;\n            // chunk.length maybe less than desired size if the stream ends.\n            return this.toUint8Array(chunk);\n        }\n        else {\n            // register callback to wait for enough data to read\n            return new Promise((resolve, reject) => {\n                /* eslint-disable @typescript-eslint/no-use-before-define */\n                const cleanUp = () => {\n                    this._readable.removeListener(\"readable\", readableCallback);\n                    this._readable.removeListener(\"error\", rejectCallback);\n                    this._readable.removeListener(\"end\", rejectCallback);\n                    this._readable.removeListener(\"close\", rejectCallback);\n                    if (options.abortSignal) {\n                        options.abortSignal.removeEventListener(\"abort\", abortHandler);\n                    }\n                };\n                const readableCallback = () => {\n                    const callbackChunk = this._readable.read(size);\n                    if (callbackChunk) {\n                        this._position += callbackChunk.length;\n                        cleanUp();\n                        // callbackChunk.length maybe less than desired size if the stream ends.\n                        resolve(this.toUint8Array(callbackChunk));\n                    }\n                };\n                const rejectCallback = () => {\n                    cleanUp();\n                    reject();\n                };\n                const abortHandler = () => {\n                    cleanUp();\n                    reject(ABORT_ERROR);\n                };\n                this._readable.on(\"readable\", readableCallback);\n                this._readable.once(\"error\", rejectCallback);\n                this._readable.once(\"end\", rejectCallback);\n                this._readable.once(\"close\", rejectCallback);\n                if (options.abortSignal) {\n                    options.abortSignal.addEventListener(\"abort\", abortHandler);\n                }\n                /* eslint-enable @typescript-eslint/no-use-before-define */\n            });\n        }\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * A Node.js BlobQuickQueryStream will internally parse avro data stream for blob query.\n */\nclass BlobQuickQueryStream extends Readable$1 {\n    /**\n     * Creates an instance of BlobQuickQueryStream.\n     *\n     * @param source - The current ReadableStream returned from getter\n     * @param options -\n     */\n    constructor(source, options = {}) {\n        super();\n        this.avroPaused = true;\n        this.source = source;\n        this.onProgress = options.onProgress;\n        this.onError = options.onError;\n        this.avroReader = new AvroReader(new AvroReadableFromStream(this.source));\n        this.avroIter = this.avroReader.parseObjects({ abortSignal: options.abortSignal });\n    }\n    _read() {\n        if (this.avroPaused) {\n            this.readInternal().catch((err) => {\n                this.emit(\"error\", err);\n            });\n        }\n    }\n    async readInternal() {\n        this.avroPaused = false;\n        let avroNext;\n        do {\n            avroNext = await this.avroIter.next();\n            if (avroNext.done) {\n                break;\n            }\n            const obj = avroNext.value;\n            const schema = obj.$schema;\n            if (typeof schema !== \"string\") {\n                throw Error(\"Missing schema in avro record.\");\n            }\n            switch (schema) {\n                case \"com.microsoft.azure.storage.queryBlobContents.resultData\":\n                    {\n                        const data = obj.data;\n                        if (data instanceof Uint8Array === false) {\n                            throw Error(\"Invalid data in avro result record.\");\n                        }\n                        if (!this.push(Buffer.from(data))) {\n                            this.avroPaused = true;\n                        }\n                    }\n                    break;\n                case \"com.microsoft.azure.storage.queryBlobContents.progress\":\n                    {\n                        const bytesScanned = obj.bytesScanned;\n                        if (typeof bytesScanned !== \"number\") {\n                            throw Error(\"Invalid bytesScanned in avro progress record.\");\n                        }\n                        if (this.onProgress) {\n                            this.onProgress({ loadedBytes: bytesScanned });\n                        }\n                    }\n                    break;\n                case \"com.microsoft.azure.storage.queryBlobContents.end\":\n                    if (this.onProgress) {\n                        const totalBytes = obj.totalBytes;\n                        if (typeof totalBytes !== \"number\") {\n                            throw Error(\"Invalid totalBytes in avro end record.\");\n                        }\n                        this.onProgress({ loadedBytes: totalBytes });\n                    }\n                    this.push(null);\n                    break;\n                case \"com.microsoft.azure.storage.queryBlobContents.error\":\n                    if (this.onError) {\n                        const fatal = obj.fatal;\n                        if (typeof fatal !== \"boolean\") {\n                            throw Error(\"Invalid fatal in avro error record.\");\n                        }\n                        const name = obj.name;\n                        if (typeof name !== \"string\") {\n                            throw Error(\"Invalid name in avro error record.\");\n                        }\n                        const description = obj.description;\n                        if (typeof description !== \"string\") {\n                            throw Error(\"Invalid description in avro error record.\");\n                        }\n                        const position = obj.position;\n                        if (typeof position !== \"number\") {\n                            throw Error(\"Invalid position in avro error record.\");\n                        }\n                        this.onError({\n                            position,\n                            name,\n                            isFatal: fatal,\n                            description,\n                        });\n                    }\n                    break;\n                default:\n                    throw Error(`Unknown schema ${schema} in avro progress record.`);\n            }\n        } while (!avroNext.done && !this.avroPaused);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * BlobQueryResponse implements BlobDownloadResponseModel interface, and in Node.js runtime it will\n * parse avor data returned by blob query.\n */\nclass BlobQueryResponse {\n    /**\n     * Indicates that the service supports\n     * requests for partial file content.\n     *\n     * @readonly\n     */\n    get acceptRanges() {\n        return this.originalResponse.acceptRanges;\n    }\n    /**\n     * Returns if it was previously specified\n     * for the file.\n     *\n     * @readonly\n     */\n    get cacheControl() {\n        return this.originalResponse.cacheControl;\n    }\n    /**\n     * Returns the value that was specified\n     * for the 'x-ms-content-disposition' header and specifies how to process the\n     * response.\n     *\n     * @readonly\n     */\n    get contentDisposition() {\n        return this.originalResponse.contentDisposition;\n    }\n    /**\n     * Returns the value that was specified\n     * for the Content-Encoding request header.\n     *\n     * @readonly\n     */\n    get contentEncoding() {\n        return this.originalResponse.contentEncoding;\n    }\n    /**\n     * Returns the value that was specified\n     * for the Content-Language request header.\n     *\n     * @readonly\n     */\n    get contentLanguage() {\n        return this.originalResponse.contentLanguage;\n    }\n    /**\n     * The current sequence number for a\n     * page blob. This header is not returned for block blobs or append blobs.\n     *\n     * @readonly\n     */\n    get blobSequenceNumber() {\n        return this.originalResponse.blobSequenceNumber;\n    }\n    /**\n     * The blob's type. Possible values include:\n     * 'BlockBlob', 'PageBlob', 'AppendBlob'.\n     *\n     * @readonly\n     */\n    get blobType() {\n        return this.originalResponse.blobType;\n    }\n    /**\n     * The number of bytes present in the\n     * response body.\n     *\n     * @readonly\n     */\n    get contentLength() {\n        return this.originalResponse.contentLength;\n    }\n    /**\n     * If the file has an MD5 hash and the\n     * request is to read the full file, this response header is returned so that\n     * the client can check for message content integrity. If the request is to\n     * read a specified range and the 'x-ms-range-get-content-md5' is set to\n     * true, then the request returns an MD5 hash for the range, as long as the\n     * range size is less than or equal to 4 MB. If neither of these sets of\n     * conditions is true, then no value is returned for the 'Content-MD5'\n     * header.\n     *\n     * @readonly\n     */\n    get contentMD5() {\n        return this.originalResponse.contentMD5;\n    }\n    /**\n     * Indicates the range of bytes returned if\n     * the client requested a subset of the file by setting the Range request\n     * header.\n     *\n     * @readonly\n     */\n    get contentRange() {\n        return this.originalResponse.contentRange;\n    }\n    /**\n     * The content type specified for the file.\n     * The default content type is 'application/octet-stream'\n     *\n     * @readonly\n     */\n    get contentType() {\n        return this.originalResponse.contentType;\n    }\n    /**\n     * Conclusion time of the last attempted\n     * Copy File operation where this file was the destination file. This value\n     * can specify the time of a completed, aborted, or failed copy attempt.\n     *\n     * @readonly\n     */\n    get copyCompletedOn() {\n        return undefined;\n    }\n    /**\n     * String identifier for the last attempted Copy\n     * File operation where this file was the destination file.\n     *\n     * @readonly\n     */\n    get copyId() {\n        return this.originalResponse.copyId;\n    }\n    /**\n     * Contains the number of bytes copied and\n     * the total bytes in the source in the last attempted Copy File operation\n     * where this file was the destination file. Can show between 0 and\n     * Content-Length bytes copied.\n     *\n     * @readonly\n     */\n    get copyProgress() {\n        return this.originalResponse.copyProgress;\n    }\n    /**\n     * URL up to 2KB in length that specifies the\n     * source file used in the last attempted Copy File operation where this file\n     * was the destination file.\n     *\n     * @readonly\n     */\n    get copySource() {\n        return this.originalResponse.copySource;\n    }\n    /**\n     * State of the copy operation\n     * identified by 'x-ms-copy-id'. Possible values include: 'pending',\n     * 'success', 'aborted', 'failed'\n     *\n     * @readonly\n     */\n    get copyStatus() {\n        return this.originalResponse.copyStatus;\n    }\n    /**\n     * Only appears when\n     * x-ms-copy-status is failed or pending. Describes cause of fatal or\n     * non-fatal copy operation failure.\n     *\n     * @readonly\n     */\n    get copyStatusDescription() {\n        return this.originalResponse.copyStatusDescription;\n    }\n    /**\n     * When a blob is leased,\n     * specifies whether the lease is of infinite or fixed duration. Possible\n     * values include: 'infinite', 'fixed'.\n     *\n     * @readonly\n     */\n    get leaseDuration() {\n        return this.originalResponse.leaseDuration;\n    }\n    /**\n     * Lease state of the blob. Possible\n     * values include: 'available', 'leased', 'expired', 'breaking', 'broken'.\n     *\n     * @readonly\n     */\n    get leaseState() {\n        return this.originalResponse.leaseState;\n    }\n    /**\n     * The current lease status of the\n     * blob. Possible values include: 'locked', 'unlocked'.\n     *\n     * @readonly\n     */\n    get leaseStatus() {\n        return this.originalResponse.leaseStatus;\n    }\n    /**\n     * A UTC date/time value generated by the service that\n     * indicates the time at which the response was initiated.\n     *\n     * @readonly\n     */\n    get date() {\n        return this.originalResponse.date;\n    }\n    /**\n     * The number of committed blocks\n     * present in the blob. This header is returned only for append blobs.\n     *\n     * @readonly\n     */\n    get blobCommittedBlockCount() {\n        return this.originalResponse.blobCommittedBlockCount;\n    }\n    /**\n     * The ETag contains a value that you can use to\n     * perform operations conditionally, in quotes.\n     *\n     * @readonly\n     */\n    get etag() {\n        return this.originalResponse.etag;\n    }\n    /**\n     * The error code.\n     *\n     * @readonly\n     */\n    get errorCode() {\n        return this.originalResponse.errorCode;\n    }\n    /**\n     * The value of this header is set to\n     * true if the file data and application metadata are completely encrypted\n     * using the specified algorithm. Otherwise, the value is set to false (when\n     * the file is unencrypted, or if only parts of the file/application metadata\n     * are encrypted).\n     *\n     * @readonly\n     */\n    get isServerEncrypted() {\n        return this.originalResponse.isServerEncrypted;\n    }\n    /**\n     * If the blob has a MD5 hash, and if\n     * request contains range header (Range or x-ms-range), this response header\n     * is returned with the value of the whole blob's MD5 value. This value may\n     * or may not be equal to the value returned in Content-MD5 header, with the\n     * latter calculated from the requested range.\n     *\n     * @readonly\n     */\n    get blobContentMD5() {\n        return this.originalResponse.blobContentMD5;\n    }\n    /**\n     * Returns the date and time the file was last\n     * modified. Any operation that modifies the file or its properties updates\n     * the last modified time.\n     *\n     * @readonly\n     */\n    get lastModified() {\n        return this.originalResponse.lastModified;\n    }\n    /**\n     * A name-value pair\n     * to associate with a file storage object.\n     *\n     * @readonly\n     */\n    get metadata() {\n        return this.originalResponse.metadata;\n    }\n    /**\n     * This header uniquely identifies the request\n     * that was made and can be used for troubleshooting the request.\n     *\n     * @readonly\n     */\n    get requestId() {\n        return this.originalResponse.requestId;\n    }\n    /**\n     * If a client request id header is sent in the request, this header will be present in the\n     * response with the same value.\n     *\n     * @readonly\n     */\n    get clientRequestId() {\n        return this.originalResponse.clientRequestId;\n    }\n    /**\n     * Indicates the version of the File service used\n     * to execute the request.\n     *\n     * @readonly\n     */\n    get version() {\n        return this.originalResponse.version;\n    }\n    /**\n     * The SHA-256 hash of the encryption key used to encrypt the blob. This value is only returned\n     * when the blob was encrypted with a customer-provided key.\n     *\n     * @readonly\n     */\n    get encryptionKeySha256() {\n        return this.originalResponse.encryptionKeySha256;\n    }\n    /**\n     * If the request is to read a specified range and the x-ms-range-get-content-crc64 is set to\n     * true, then the request returns a crc64 for the range, as long as the range size is less than\n     * or equal to 4 MB. If both x-ms-range-get-content-crc64 & x-ms-range-get-content-md5 is\n     * specified in the same request, it will fail with 400(Bad Request)\n     */\n    get contentCrc64() {\n        return this.originalResponse.contentCrc64;\n    }\n    /**\n     * The response body as a browser Blob.\n     * Always undefined in node.js.\n     *\n     * @readonly\n     */\n    get blobBody() {\n        return undefined;\n    }\n    /**\n     * The response body as a node.js Readable stream.\n     * Always undefined in the browser.\n     *\n     * It will parse avor data returned by blob query.\n     *\n     * @readonly\n     */\n    get readableStreamBody() {\n        return isNode ? this.blobDownloadStream : undefined;\n    }\n    /**\n     * The HTTP response.\n     */\n    get _response() {\n        return this.originalResponse._response;\n    }\n    /**\n     * Creates an instance of BlobQueryResponse.\n     *\n     * @param originalResponse -\n     * @param options -\n     */\n    constructor(originalResponse, options = {}) {\n        this.originalResponse = originalResponse;\n        this.blobDownloadStream = new BlobQuickQueryStream(this.originalResponse.readableStreamBody, options);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Represents the access tier on a blob.\n * For detailed information about block blob level tiering see {@link https://learn.microsoft.com/azure/storage/blobs/storage-blob-storage-tiers|Hot, cool and archive storage tiers.}\n */\nvar BlockBlobTier;\n(function (BlockBlobTier) {\n    /**\n     * Optimized for storing data that is accessed frequently.\n     */\n    BlockBlobTier[\"Hot\"] = \"Hot\";\n    /**\n     * Optimized for storing data that is infrequently accessed and stored for at least 30 days.\n     */\n    BlockBlobTier[\"Cool\"] = \"Cool\";\n    /**\n     * Optimized for storing data that is rarely accessed.\n     */\n    BlockBlobTier[\"Cold\"] = \"Cold\";\n    /**\n     * Optimized for storing data that is rarely accessed and stored for at least 180 days\n     * with flexible latency requirements (on the order of hours).\n     */\n    BlockBlobTier[\"Archive\"] = \"Archive\";\n})(BlockBlobTier || (BlockBlobTier = {}));\n/**\n * Specifies the page blob tier to set the blob to. This is only applicable to page blobs on premium storage accounts.\n * Please see {@link https://learn.microsoft.com/azure/storage/storage-premium-storage#scalability-and-performance-targets|here}\n * for detailed information on the corresponding IOPS and throughput per PageBlobTier.\n */\nvar PremiumPageBlobTier;\n(function (PremiumPageBlobTier) {\n    /**\n     * P4 Tier.\n     */\n    PremiumPageBlobTier[\"P4\"] = \"P4\";\n    /**\n     * P6 Tier.\n     */\n    PremiumPageBlobTier[\"P6\"] = \"P6\";\n    /**\n     * P10 Tier.\n     */\n    PremiumPageBlobTier[\"P10\"] = \"P10\";\n    /**\n     * P15 Tier.\n     */\n    PremiumPageBlobTier[\"P15\"] = \"P15\";\n    /**\n     * P20 Tier.\n     */\n    PremiumPageBlobTier[\"P20\"] = \"P20\";\n    /**\n     * P30 Tier.\n     */\n    PremiumPageBlobTier[\"P30\"] = \"P30\";\n    /**\n     * P40 Tier.\n     */\n    PremiumPageBlobTier[\"P40\"] = \"P40\";\n    /**\n     * P50 Tier.\n     */\n    PremiumPageBlobTier[\"P50\"] = \"P50\";\n    /**\n     * P60 Tier.\n     */\n    PremiumPageBlobTier[\"P60\"] = \"P60\";\n    /**\n     * P70 Tier.\n     */\n    PremiumPageBlobTier[\"P70\"] = \"P70\";\n    /**\n     * P80 Tier.\n     */\n    PremiumPageBlobTier[\"P80\"] = \"P80\";\n})(PremiumPageBlobTier || (PremiumPageBlobTier = {}));\nfunction toAccessTier(tier) {\n    if (tier === undefined) {\n        return undefined;\n    }\n    return tier; // No more check if string is a valid AccessTier, and left this to underlay logic to decide(service).\n}\nfunction ensureCpkIfSpecified(cpk, isHttps) {\n    if (cpk && !isHttps) {\n        throw new RangeError(\"Customer-provided encryption key must be used over HTTPS.\");\n    }\n    if (cpk && !cpk.encryptionAlgorithm) {\n        cpk.encryptionAlgorithm = EncryptionAlgorithmAES25;\n    }\n}\n/**\n * Defines the known cloud audiences for Storage.\n */\nvar StorageBlobAudience;\n(function (StorageBlobAudience) {\n    /**\n     * The OAuth scope to use to retrieve an AAD token for Azure Storage.\n     */\n    StorageBlobAudience[\"StorageOAuthScopes\"] = \"https://storage.azure.com/.default\";\n    /**\n     * The OAuth scope to use to retrieve an AAD token for Azure Disk.\n     */\n    StorageBlobAudience[\"DiskComputeOAuthScopes\"] = \"https://disk.compute.azure.com/.default\";\n})(StorageBlobAudience || (StorageBlobAudience = {}));\n/**\n *\n * To get OAuth audience for a storage account for blob service.\n */\nfunction getBlobServiceAccountAudience(storageAccountName) {\n    return `https://${storageAccountName}.blob.core.windows.net/.default`;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Function that converts PageRange and ClearRange to a common Range object.\n * PageRange and ClearRange have start and end while Range offset and count\n * this function normalizes to Range.\n * @param response - Model PageBlob Range response\n */\nfunction rangeResponseFromModel(response) {\n    const pageRange = (response._response.parsedBody.pageRange || []).map((x) => ({\n        offset: x.start,\n        count: x.end - x.start,\n    }));\n    const clearRange = (response._response.parsedBody.clearRange || []).map((x) => ({\n        offset: x.start,\n        count: x.end - x.start,\n    }));\n    return Object.assign(Object.assign({}, response), { pageRange,\n        clearRange, _response: Object.assign(Object.assign({}, response._response), { parsedBody: {\n                pageRange,\n                clearRange,\n            } }) });\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n/**\n * When a poller is manually stopped through the `stopPolling` method,\n * the poller will be rejected with an instance of the PollerStoppedError.\n */\nclass PollerStoppedError extends Error {\n    constructor(message) {\n        super(message);\n        this.name = \"PollerStoppedError\";\n        Object.setPrototypeOf(this, PollerStoppedError.prototype);\n    }\n}\n/**\n * When the operation is cancelled, the poller will be rejected with an instance\n * of the PollerCancelledError.\n */\nclass PollerCancelledError extends Error {\n    constructor(message) {\n        super(message);\n        this.name = \"PollerCancelledError\";\n        Object.setPrototypeOf(this, PollerCancelledError.prototype);\n    }\n}\n/**\n * A class that represents the definition of a program that polls through consecutive requests\n * until it reaches a state of completion.\n *\n * A poller can be executed manually, by polling request by request by calling to the `poll()` method repeatedly, until its operation is completed.\n * It also provides a way to wait until the operation completes, by calling `pollUntilDone()` and waiting until the operation finishes.\n * Pollers can also request the cancellation of the ongoing process to whom is providing the underlying long running operation.\n *\n * ```ts\n * const poller = new MyPoller();\n *\n * // Polling just once:\n * await poller.poll();\n *\n * // We can try to cancel the request here, by calling:\n * //\n * //     await poller.cancelOperation();\n * //\n *\n * // Getting the final result:\n * const result = await poller.pollUntilDone();\n * ```\n *\n * The Poller is defined by two types, a type representing the state of the poller, which\n * must include a basic set of properties from `PollOperationState<TResult>`,\n * and a return type defined by `TResult`, which can be anything.\n *\n * The Poller class implements the `PollerLike` interface, which allows poller implementations to avoid having\n * to export the Poller's class directly, and instead only export the already instantiated poller with the PollerLike type.\n *\n * ```ts\n * class Client {\n *   public async makePoller: PollerLike<MyOperationState, MyResult> {\n *     const poller = new MyPoller({});\n *     // It might be preferred to return the poller after the first request is made,\n *     // so that some information can be obtained right away.\n *     await poller.poll();\n *     return poller;\n *   }\n * }\n *\n * const poller: PollerLike<MyOperationState, MyResult> = myClient.makePoller();\n * ```\n *\n * A poller can be created through its constructor, then it can be polled until it's completed.\n * At any point in time, the state of the poller can be obtained without delay through the getOperationState method.\n * At any point in time, the intermediate forms of the result type can be requested without delay.\n * Once the underlying operation is marked as completed, the poller will stop and the final value will be returned.\n *\n * ```ts\n * const poller = myClient.makePoller();\n * const state: MyOperationState = poller.getOperationState();\n *\n * // The intermediate result can be obtained at any time.\n * const result: MyResult | undefined = poller.getResult();\n *\n * // The final result can only be obtained after the poller finishes.\n * const result: MyResult = await poller.pollUntilDone();\n * ```\n *\n */\n// eslint-disable-next-line no-use-before-define\nclass Poller {\n    /**\n     * A poller needs to be initialized by passing in at least the basic properties of the `PollOperation<TState, TResult>`.\n     *\n     * When writing an implementation of a Poller, this implementation needs to deal with the initialization\n     * of any custom state beyond the basic definition of the poller. The basic poller assumes that the poller's\n     * operation has already been defined, at least its basic properties. The code below shows how to approach\n     * the definition of the constructor of a new custom poller.\n     *\n     * ```ts\n     * export class MyPoller extends Poller<MyOperationState, string> {\n     *   constructor({\n     *     // Anything you might need outside of the basics\n     *   }) {\n     *     let state: MyOperationState = {\n     *       privateProperty: private,\n     *       publicProperty: public,\n     *     };\n     *\n     *     const operation = {\n     *       state,\n     *       update,\n     *       cancel,\n     *       toString\n     *     }\n     *\n     *     // Sending the operation to the parent's constructor.\n     *     super(operation);\n     *\n     *     // You can assign more local properties here.\n     *   }\n     * }\n     * ```\n     *\n     * Inside of this constructor, a new promise is created. This will be used to\n     * tell the user when the poller finishes (see `pollUntilDone()`). The promise's\n     * resolve and reject methods are also used internally to control when to resolve\n     * or reject anyone waiting for the poller to finish.\n     *\n     * The constructor of a custom implementation of a poller is where any serialized version of\n     * a previous poller's operation should be deserialized into the operation sent to the\n     * base constructor. For example:\n     *\n     * ```ts\n     * export class MyPoller extends Poller<MyOperationState, string> {\n     *   constructor(\n     *     baseOperation: string | undefined\n     *   ) {\n     *     let state: MyOperationState = {};\n     *     if (baseOperation) {\n     *       state = {\n     *         ...JSON.parse(baseOperation).state,\n     *         ...state\n     *       };\n     *     }\n     *     const operation = {\n     *       state,\n     *       // ...\n     *     }\n     *     super(operation);\n     *   }\n     * }\n     * ```\n     *\n     * @param operation - Must contain the basic properties of `PollOperation<State, TResult>`.\n     */\n    constructor(operation) {\n        /** controls whether to throw an error if the operation failed or was canceled. */\n        this.resolveOnUnsuccessful = false;\n        this.stopped = true;\n        this.pollProgressCallbacks = [];\n        this.operation = operation;\n        this.promise = new Promise((resolve, reject) => {\n            this.resolve = resolve;\n            this.reject = reject;\n        });\n        // This prevents the UnhandledPromiseRejectionWarning in node.js from being thrown.\n        // The above warning would get thrown if `poller.poll` is called, it returns an error,\n        // and pullUntilDone did not have a .catch or await try/catch on it's return value.\n        this.promise.catch(() => {\n            /* intentionally blank */\n        });\n    }\n    /**\n     * Starts a loop that will break only if the poller is done\n     * or if the poller is stopped.\n     */\n    async startPolling(pollOptions = {}) {\n        if (this.stopped) {\n            this.stopped = false;\n        }\n        while (!this.isStopped() && !this.isDone()) {\n            await this.poll(pollOptions);\n            await this.delay();\n        }\n    }\n    /**\n     * pollOnce does one polling, by calling to the update method of the underlying\n     * poll operation to make any relevant change effective.\n     *\n     * It only optionally receives an object with an abortSignal property, from \\@azure/abort-controller's AbortSignalLike.\n     *\n     * @param options - Optional properties passed to the operation's update method.\n     */\n    async pollOnce(options = {}) {\n        if (!this.isDone()) {\n            this.operation = await this.operation.update({\n                abortSignal: options.abortSignal,\n                fireProgress: this.fireProgress.bind(this),\n            });\n        }\n        this.processUpdatedState();\n    }\n    /**\n     * fireProgress calls the functions passed in via onProgress the method of the poller.\n     *\n     * It loops over all of the callbacks received from onProgress, and executes them, sending them\n     * the current operation state.\n     *\n     * @param state - The current operation state.\n     */\n    fireProgress(state) {\n        for (const callback of this.pollProgressCallbacks) {\n            callback(state);\n        }\n    }\n    /**\n     * Invokes the underlying operation's cancel method.\n     */\n    async cancelOnce(options = {}) {\n        this.operation = await this.operation.cancel(options);\n    }\n    /**\n     * Returns a promise that will resolve once a single polling request finishes.\n     * It does this by calling the update method of the Poller's operation.\n     *\n     * It only optionally receives an object with an abortSignal property, from \\@azure/abort-controller's AbortSignalLike.\n     *\n     * @param options - Optional properties passed to the operation's update method.\n     */\n    poll(options = {}) {\n        if (!this.pollOncePromise) {\n            this.pollOncePromise = this.pollOnce(options);\n            const clearPollOncePromise = () => {\n                this.pollOncePromise = undefined;\n            };\n            this.pollOncePromise.then(clearPollOncePromise, clearPollOncePromise).catch(this.reject);\n        }\n        return this.pollOncePromise;\n    }\n    processUpdatedState() {\n        if (this.operation.state.error) {\n            this.stopped = true;\n            if (!this.resolveOnUnsuccessful) {\n                this.reject(this.operation.state.error);\n                throw this.operation.state.error;\n            }\n        }\n        if (this.operation.state.isCancelled) {\n            this.stopped = true;\n            if (!this.resolveOnUnsuccessful) {\n                const error = new PollerCancelledError(\"Operation was canceled\");\n                this.reject(error);\n                throw error;\n            }\n        }\n        if (this.isDone() && this.resolve) {\n            // If the poller has finished polling, this means we now have a result.\n            // However, it can be the case that TResult is instantiated to void, so\n            // we are not expecting a result anyway. To assert that we might not\n            // have a result eventually after finishing polling, we cast the result\n            // to TResult.\n            this.resolve(this.getResult());\n        }\n    }\n    /**\n     * Returns a promise that will resolve once the underlying operation is completed.\n     */\n    async pollUntilDone(pollOptions = {}) {\n        if (this.stopped) {\n            this.startPolling(pollOptions).catch(this.reject);\n        }\n        // This is needed because the state could have been updated by\n        // `cancelOperation`, e.g. the operation is canceled or an error occurred.\n        this.processUpdatedState();\n        return this.promise;\n    }\n    /**\n     * Invokes the provided callback after each polling is completed,\n     * sending the current state of the poller's operation.\n     *\n     * It returns a method that can be used to stop receiving updates on the given callback function.\n     */\n    onProgress(callback) {\n        this.pollProgressCallbacks.push(callback);\n        return () => {\n            this.pollProgressCallbacks = this.pollProgressCallbacks.filter((c) => c !== callback);\n        };\n    }\n    /**\n     * Returns true if the poller has finished polling.\n     */\n    isDone() {\n        const state = this.operation.state;\n        return Boolean(state.isCompleted || state.isCancelled || state.error);\n    }\n    /**\n     * Stops the poller from continuing to poll.\n     */\n    stopPolling() {\n        if (!this.stopped) {\n            this.stopped = true;\n            if (this.reject) {\n                this.reject(new PollerStoppedError(\"This poller is already stopped\"));\n            }\n        }\n    }\n    /**\n     * Returns true if the poller is stopped.\n     */\n    isStopped() {\n        return this.stopped;\n    }\n    /**\n     * Attempts to cancel the underlying operation.\n     *\n     * It only optionally receives an object with an abortSignal property, from \\@azure/abort-controller's AbortSignalLike.\n     *\n     * If it's called again before it finishes, it will throw an error.\n     *\n     * @param options - Optional properties passed to the operation's update method.\n     */\n    cancelOperation(options = {}) {\n        if (!this.cancelPromise) {\n            this.cancelPromise = this.cancelOnce(options);\n        }\n        else if (options.abortSignal) {\n            throw new Error(\"A cancel request is currently pending\");\n        }\n        return this.cancelPromise;\n    }\n    /**\n     * Returns the state of the operation.\n     *\n     * Even though TState will be the same type inside any of the methods of any extension of the Poller class,\n     * implementations of the pollers can customize what's shared with the public by writing their own\n     * version of the `getOperationState` method, and by defining two types, one representing the internal state of the poller\n     * and a public type representing a safe to share subset of the properties of the internal state.\n     * Their definition of getOperationState can then return their public type.\n     *\n     * Example:\n     *\n     * ```ts\n     * // Let's say we have our poller's operation state defined as:\n     * interface MyOperationState extends PollOperationState<ResultType> {\n     *   privateProperty?: string;\n     *   publicProperty?: string;\n     * }\n     *\n     * // To allow us to have a true separation of public and private state, we have to define another interface:\n     * interface PublicState extends PollOperationState<ResultType> {\n     *   publicProperty?: string;\n     * }\n     *\n     * // Then, we define our Poller as follows:\n     * export class MyPoller extends Poller<MyOperationState, ResultType> {\n     *   // ... More content is needed here ...\n     *\n     *   public getOperationState(): PublicState {\n     *     const state: PublicState = this.operation.state;\n     *     return {\n     *       // Properties from PollOperationState<TResult>\n     *       isStarted: state.isStarted,\n     *       isCompleted: state.isCompleted,\n     *       isCancelled: state.isCancelled,\n     *       error: state.error,\n     *       result: state.result,\n     *\n     *       // The only other property needed by PublicState.\n     *       publicProperty: state.publicProperty\n     *     }\n     *   }\n     * }\n     * ```\n     *\n     * You can see this in the tests of this repository, go to the file:\n     * `../test/utils/testPoller.ts`\n     * and look for the getOperationState implementation.\n     */\n    getOperationState() {\n        return this.operation.state;\n    }\n    /**\n     * Returns the result value of the operation,\n     * regardless of the state of the poller.\n     * It can return undefined or an incomplete form of the final TResult value\n     * depending on the implementation.\n     */\n    getResult() {\n        const state = this.operation.state;\n        return state.result;\n    }\n    /**\n     * Returns a serialized version of the poller's operation\n     * by invoking the operation's toString method.\n     */\n    toString() {\n        return this.operation.toString();\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * This is the poller returned by {@link BlobClient.beginCopyFromURL}.\n * This can not be instantiated directly outside of this package.\n *\n * @hidden\n */\nclass BlobBeginCopyFromUrlPoller extends Poller {\n    constructor(options) {\n        const { blobClient, copySource, intervalInMs = 15000, onProgress, resumeFrom, startCopyFromURLOptions, } = options;\n        let state;\n        if (resumeFrom) {\n            state = JSON.parse(resumeFrom).state;\n        }\n        const operation = makeBlobBeginCopyFromURLPollOperation(Object.assign(Object.assign({}, state), { blobClient,\n            copySource,\n            startCopyFromURLOptions }));\n        super(operation);\n        if (typeof onProgress === \"function\") {\n            this.onProgress(onProgress);\n        }\n        this.intervalInMs = intervalInMs;\n    }\n    delay() {\n        return delay$2(this.intervalInMs);\n    }\n}\n/**\n * Note: Intentionally using function expression over arrow function expression\n * so that the function can be invoked with a different context.\n * This affects what `this` refers to.\n * @hidden\n */\nconst cancel = async function cancel(options = {}) {\n    const state = this.state;\n    const { copyId } = state;\n    if (state.isCompleted) {\n        return makeBlobBeginCopyFromURLPollOperation(state);\n    }\n    if (!copyId) {\n        state.isCancelled = true;\n        return makeBlobBeginCopyFromURLPollOperation(state);\n    }\n    // if abortCopyFromURL throws, it will bubble up to user's poller.cancelOperation call\n    await state.blobClient.abortCopyFromURL(copyId, {\n        abortSignal: options.abortSignal,\n    });\n    state.isCancelled = true;\n    return makeBlobBeginCopyFromURLPollOperation(state);\n};\n/**\n * Note: Intentionally using function expression over arrow function expression\n * so that the function can be invoked with a different context.\n * This affects what `this` refers to.\n * @hidden\n */\nconst update = async function update(options = {}) {\n    const state = this.state;\n    const { blobClient, copySource, startCopyFromURLOptions } = state;\n    if (!state.isStarted) {\n        state.isStarted = true;\n        const result = await blobClient.startCopyFromURL(copySource, startCopyFromURLOptions);\n        // copyId is needed to abort\n        state.copyId = result.copyId;\n        if (result.copyStatus === \"success\") {\n            state.result = result;\n            state.isCompleted = true;\n        }\n    }\n    else if (!state.isCompleted) {\n        try {\n            const result = await state.blobClient.getProperties({ abortSignal: options.abortSignal });\n            const { copyStatus, copyProgress } = result;\n            const prevCopyProgress = state.copyProgress;\n            if (copyProgress) {\n                state.copyProgress = copyProgress;\n            }\n            if (copyStatus === \"pending\" &&\n                copyProgress !== prevCopyProgress &&\n                typeof options.fireProgress === \"function\") {\n                // trigger in setTimeout, or swallow error?\n                options.fireProgress(state);\n            }\n            else if (copyStatus === \"success\") {\n                state.result = result;\n                state.isCompleted = true;\n            }\n            else if (copyStatus === \"failed\") {\n                state.error = new Error(`Blob copy failed with reason: \"${result.copyStatusDescription || \"unknown\"}\"`);\n                state.isCompleted = true;\n            }\n        }\n        catch (err) {\n            state.error = err;\n            state.isCompleted = true;\n        }\n    }\n    return makeBlobBeginCopyFromURLPollOperation(state);\n};\n/**\n * Note: Intentionally using function expression over arrow function expression\n * so that the function can be invoked with a different context.\n * This affects what `this` refers to.\n * @hidden\n */\nconst toString = function toString() {\n    return JSON.stringify({ state: this.state }, (key, value) => {\n        // remove blobClient from serialized state since a client can't be hydrated from this info.\n        if (key === \"blobClient\") {\n            return undefined;\n        }\n        return value;\n    });\n};\n/**\n * Creates a poll operation given the provided state.\n * @hidden\n */\nfunction makeBlobBeginCopyFromURLPollOperation(state) {\n    return {\n        state: Object.assign({}, state),\n        cancel,\n        toString,\n        update,\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Generate a range string. For example:\n *\n * \"bytes=255-\" or \"bytes=0-511\"\n *\n * @param iRange -\n */\nfunction rangeToString(iRange) {\n    if (iRange.offset < 0) {\n        throw new RangeError(`Range.offset cannot be smaller than 0.`);\n    }\n    if (iRange.count && iRange.count <= 0) {\n        throw new RangeError(`Range.count must be larger than 0. Leave it undefined if you want a range from offset to the end.`);\n    }\n    return iRange.count\n        ? `bytes=${iRange.offset}-${iRange.offset + iRange.count - 1}`\n        : `bytes=${iRange.offset}-`;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n// In browser, during webpack or browserify bundling, this module will be replaced by 'events'\n// https://github.com/Gozala/events\n/**\n * States for Batch.\n */\nvar BatchStates;\n(function (BatchStates) {\n    BatchStates[BatchStates[\"Good\"] = 0] = \"Good\";\n    BatchStates[BatchStates[\"Error\"] = 1] = \"Error\";\n})(BatchStates || (BatchStates = {}));\n/**\n * Batch provides basic parallel execution with concurrency limits.\n * Will stop execute left operations when one of the executed operation throws an error.\n * But Batch cannot cancel ongoing operations, you need to cancel them by yourself.\n */\nclass Batch {\n    /**\n     * Creates an instance of Batch.\n     * @param concurrency -\n     */\n    constructor(concurrency = 5) {\n        /**\n         * Number of active operations under execution.\n         */\n        this.actives = 0;\n        /**\n         * Number of completed operations under execution.\n         */\n        this.completed = 0;\n        /**\n         * Offset of next operation to be executed.\n         */\n        this.offset = 0;\n        /**\n         * Operation array to be executed.\n         */\n        this.operations = [];\n        /**\n         * States of Batch. When an error happens, state will turn into error.\n         * Batch will stop execute left operations.\n         */\n        this.state = BatchStates.Good;\n        if (concurrency < 1) {\n            throw new RangeError(\"concurrency must be larger than 0\");\n        }\n        this.concurrency = concurrency;\n        this.emitter = new EventEmitter();\n    }\n    /**\n     * Add a operation into queue.\n     *\n     * @param operation -\n     */\n    addOperation(operation) {\n        this.operations.push(async () => {\n            try {\n                this.actives++;\n                await operation();\n                this.actives--;\n                this.completed++;\n                this.parallelExecute();\n            }\n            catch (error) {\n                this.emitter.emit(\"error\", error);\n            }\n        });\n    }\n    /**\n     * Start execute operations in the queue.\n     *\n     */\n    async do() {\n        if (this.operations.length === 0) {\n            return Promise.resolve();\n        }\n        this.parallelExecute();\n        return new Promise((resolve, reject) => {\n            this.emitter.on(\"finish\", resolve);\n            this.emitter.on(\"error\", (error) => {\n                this.state = BatchStates.Error;\n                reject(error);\n            });\n        });\n    }\n    /**\n     * Get next operation to be executed. Return null when reaching ends.\n     *\n     */\n    nextOperation() {\n        if (this.offset < this.operations.length) {\n            return this.operations[this.offset++];\n        }\n        return null;\n    }\n    /**\n     * Start execute operations. One one the most important difference between\n     * this method with do() is that do() wraps as an sync method.\n     *\n     */\n    parallelExecute() {\n        if (this.state === BatchStates.Error) {\n            return;\n        }\n        if (this.completed >= this.operations.length) {\n            this.emitter.emit(\"finish\");\n            return;\n        }\n        while (this.actives < this.concurrency) {\n            const operation = this.nextOperation();\n            if (operation) {\n                operation();\n            }\n            else {\n                return;\n            }\n        }\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * This class generates a readable stream from the data in an array of buffers.\n */\nclass BuffersStream extends Readable$1 {\n    /**\n     * Creates an instance of BuffersStream that will emit the data\n     * contained in the array of buffers.\n     *\n     * @param buffers - Array of buffers containing the data\n     * @param byteLength - The total length of data contained in the buffers\n     */\n    constructor(buffers, byteLength, options) {\n        super(options);\n        this.buffers = buffers;\n        this.byteLength = byteLength;\n        this.byteOffsetInCurrentBuffer = 0;\n        this.bufferIndex = 0;\n        this.pushedBytesLength = 0;\n        // check byteLength is no larger than buffers[] total length\n        let buffersLength = 0;\n        for (const buf of this.buffers) {\n            buffersLength += buf.byteLength;\n        }\n        if (buffersLength < this.byteLength) {\n            throw new Error(\"Data size shouldn't be larger than the total length of buffers.\");\n        }\n    }\n    /**\n     * Internal _read() that will be called when the stream wants to pull more data in.\n     *\n     * @param size - Optional. The size of data to be read\n     */\n    _read(size) {\n        if (this.pushedBytesLength >= this.byteLength) {\n            this.push(null);\n        }\n        if (!size) {\n            size = this.readableHighWaterMark;\n        }\n        const outBuffers = [];\n        let i = 0;\n        while (i < size && this.pushedBytesLength < this.byteLength) {\n            // The last buffer may be longer than the data it contains.\n            const remainingDataInAllBuffers = this.byteLength - this.pushedBytesLength;\n            const remainingCapacityInThisBuffer = this.buffers[this.bufferIndex].byteLength - this.byteOffsetInCurrentBuffer;\n            const remaining = Math.min(remainingCapacityInThisBuffer, remainingDataInAllBuffers);\n            if (remaining > size - i) {\n                // chunkSize = size - i\n                const end = this.byteOffsetInCurrentBuffer + size - i;\n                outBuffers.push(this.buffers[this.bufferIndex].slice(this.byteOffsetInCurrentBuffer, end));\n                this.pushedBytesLength += size - i;\n                this.byteOffsetInCurrentBuffer = end;\n                i = size;\n                break;\n            }\n            else {\n                // chunkSize = remaining\n                const end = this.byteOffsetInCurrentBuffer + remaining;\n                outBuffers.push(this.buffers[this.bufferIndex].slice(this.byteOffsetInCurrentBuffer, end));\n                if (remaining === remainingCapacityInThisBuffer) {\n                    // this.buffers[this.bufferIndex] used up, shift to next one\n                    this.byteOffsetInCurrentBuffer = 0;\n                    this.bufferIndex++;\n                }\n                else {\n                    this.byteOffsetInCurrentBuffer = end;\n                }\n                this.pushedBytesLength += remaining;\n                i += remaining;\n            }\n        }\n        if (outBuffers.length > 1) {\n            this.push(Buffer.concat(outBuffers));\n        }\n        else if (outBuffers.length === 1) {\n            this.push(outBuffers[0]);\n        }\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst maxBufferLength = require$$0$8.constants.MAX_LENGTH;\n/**\n * This class provides a buffer container which conceptually has no hard size limit.\n * It accepts a capacity, an array of input buffers and the total length of input data.\n * It will allocate an internal \"buffer\" of the capacity and fill the data in the input buffers\n * into the internal \"buffer\" serially with respect to the total length.\n * Then by calling PooledBuffer.getReadableStream(), you can get a readable stream\n * assembled from all the data in the internal \"buffer\".\n */\nclass PooledBuffer {\n    /**\n     * The size of the data contained in the pooled buffers.\n     */\n    get size() {\n        return this._size;\n    }\n    constructor(capacity, buffers, totalLength) {\n        /**\n         * Internal buffers used to keep the data.\n         * Each buffer has a length of the maxBufferLength except last one.\n         */\n        this.buffers = [];\n        this.capacity = capacity;\n        this._size = 0;\n        // allocate\n        const bufferNum = Math.ceil(capacity / maxBufferLength);\n        for (let i = 0; i < bufferNum; i++) {\n            let len = i === bufferNum - 1 ? capacity % maxBufferLength : maxBufferLength;\n            if (len === 0) {\n                len = maxBufferLength;\n            }\n            this.buffers.push(Buffer.allocUnsafe(len));\n        }\n        if (buffers) {\n            this.fill(buffers, totalLength);\n        }\n    }\n    /**\n     * Fill the internal buffers with data in the input buffers serially\n     * with respect to the total length and the total capacity of the internal buffers.\n     * Data copied will be shift out of the input buffers.\n     *\n     * @param buffers - Input buffers containing the data to be filled in the pooled buffer\n     * @param totalLength - Total length of the data to be filled in.\n     *\n     */\n    fill(buffers, totalLength) {\n        this._size = Math.min(this.capacity, totalLength);\n        let i = 0, j = 0, targetOffset = 0, sourceOffset = 0, totalCopiedNum = 0;\n        while (totalCopiedNum < this._size) {\n            const source = buffers[i];\n            const target = this.buffers[j];\n            const copiedNum = source.copy(target, targetOffset, sourceOffset);\n            totalCopiedNum += copiedNum;\n            sourceOffset += copiedNum;\n            targetOffset += copiedNum;\n            if (sourceOffset === source.length) {\n                i++;\n                sourceOffset = 0;\n            }\n            if (targetOffset === target.length) {\n                j++;\n                targetOffset = 0;\n            }\n        }\n        // clear copied from source buffers\n        buffers.splice(0, i);\n        if (buffers.length > 0) {\n            buffers[0] = buffers[0].slice(sourceOffset);\n        }\n    }\n    /**\n     * Get the readable stream assembled from all the data in the internal buffers.\n     *\n     */\n    getReadableStream() {\n        return new BuffersStream(this.buffers, this.size);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * This class accepts a Node.js Readable stream as input, and keeps reading data\n * from the stream into the internal buffer structure, until it reaches maxBuffers.\n * Every available buffer will try to trigger outgoingHandler.\n *\n * The internal buffer structure includes an incoming buffer array, and a outgoing\n * buffer array. The incoming buffer array includes the \"empty\" buffers can be filled\n * with new incoming data. The outgoing array includes the filled buffers to be\n * handled by outgoingHandler. Every above buffer size is defined by parameter bufferSize.\n *\n * NUM_OF_ALL_BUFFERS = BUFFERS_IN_INCOMING + BUFFERS_IN_OUTGOING + BUFFERS_UNDER_HANDLING\n *\n * NUM_OF_ALL_BUFFERS lesser than or equal to maxBuffers\n *\n * PERFORMANCE IMPROVEMENT TIPS:\n * 1. Input stream highWaterMark is better to set a same value with bufferSize\n *    parameter, which will avoid Buffer.concat() operations.\n * 2. concurrency should set a smaller value than maxBuffers, which is helpful to\n *    reduce the possibility when a outgoing handler waits for the stream data.\n *    in this situation, outgoing handlers are blocked.\n *    Outgoing queue shouldn't be empty.\n */\nclass BufferScheduler {\n    /**\n     * Creates an instance of BufferScheduler.\n     *\n     * @param readable - A Node.js Readable stream\n     * @param bufferSize - Buffer size of every maintained buffer\n     * @param maxBuffers - How many buffers can be allocated\n     * @param outgoingHandler - An async function scheduled to be\n     *                                          triggered when a buffer fully filled\n     *                                          with stream data\n     * @param concurrency - Concurrency of executing outgoingHandlers (>0)\n     * @param encoding - [Optional] Encoding of Readable stream when it's a string stream\n     */\n    constructor(readable, bufferSize, maxBuffers, outgoingHandler, concurrency, encoding) {\n        /**\n         * An internal event emitter.\n         */\n        this.emitter = new EventEmitter();\n        /**\n         * An internal offset marker to track data offset in bytes of next outgoingHandler.\n         */\n        this.offset = 0;\n        /**\n         * An internal marker to track whether stream is end.\n         */\n        this.isStreamEnd = false;\n        /**\n         * An internal marker to track whether stream or outgoingHandler returns error.\n         */\n        this.isError = false;\n        /**\n         * How many handlers are executing.\n         */\n        this.executingOutgoingHandlers = 0;\n        /**\n         * How many buffers have been allocated.\n         */\n        this.numBuffers = 0;\n        /**\n         * Because this class doesn't know how much data every time stream pops, which\n         * is defined by highWaterMarker of the stream. So BufferScheduler will cache\n         * data received from the stream, when data in unresolvedDataArray exceeds the\n         * blockSize defined, it will try to concat a blockSize of buffer, fill into available\n         * buffers from incoming and push to outgoing array.\n         */\n        this.unresolvedDataArray = [];\n        /**\n         * How much data consisted in unresolvedDataArray.\n         */\n        this.unresolvedLength = 0;\n        /**\n         * The array includes all the available buffers can be used to fill data from stream.\n         */\n        this.incoming = [];\n        /**\n         * The array (queue) includes all the buffers filled from stream data.\n         */\n        this.outgoing = [];\n        if (bufferSize <= 0) {\n            throw new RangeError(`bufferSize must be larger than 0, current is ${bufferSize}`);\n        }\n        if (maxBuffers <= 0) {\n            throw new RangeError(`maxBuffers must be larger than 0, current is ${maxBuffers}`);\n        }\n        if (concurrency <= 0) {\n            throw new RangeError(`concurrency must be larger than 0, current is ${concurrency}`);\n        }\n        this.bufferSize = bufferSize;\n        this.maxBuffers = maxBuffers;\n        this.readable = readable;\n        this.outgoingHandler = outgoingHandler;\n        this.concurrency = concurrency;\n        this.encoding = encoding;\n    }\n    /**\n     * Start the scheduler, will return error when stream of any of the outgoingHandlers\n     * returns error.\n     *\n     */\n    async do() {\n        return new Promise((resolve, reject) => {\n            this.readable.on(\"data\", (data) => {\n                data = typeof data === \"string\" ? Buffer.from(data, this.encoding) : data;\n                this.appendUnresolvedData(data);\n                if (!this.resolveData()) {\n                    this.readable.pause();\n                }\n            });\n            this.readable.on(\"error\", (err) => {\n                this.emitter.emit(\"error\", err);\n            });\n            this.readable.on(\"end\", () => {\n                this.isStreamEnd = true;\n                this.emitter.emit(\"checkEnd\");\n            });\n            this.emitter.on(\"error\", (err) => {\n                this.isError = true;\n                this.readable.pause();\n                reject(err);\n            });\n            this.emitter.on(\"checkEnd\", () => {\n                if (this.outgoing.length > 0) {\n                    this.triggerOutgoingHandlers();\n                    return;\n                }\n                if (this.isStreamEnd && this.executingOutgoingHandlers === 0) {\n                    if (this.unresolvedLength > 0 && this.unresolvedLength < this.bufferSize) {\n                        const buffer = this.shiftBufferFromUnresolvedDataArray();\n                        this.outgoingHandler(() => buffer.getReadableStream(), buffer.size, this.offset)\n                            .then(resolve)\n                            .catch(reject);\n                    }\n                    else if (this.unresolvedLength >= this.bufferSize) {\n                        return;\n                    }\n                    else {\n                        resolve();\n                    }\n                }\n            });\n        });\n    }\n    /**\n     * Insert a new data into unresolved array.\n     *\n     * @param data -\n     */\n    appendUnresolvedData(data) {\n        this.unresolvedDataArray.push(data);\n        this.unresolvedLength += data.length;\n    }\n    /**\n     * Try to shift a buffer with size in blockSize. The buffer returned may be less\n     * than blockSize when data in unresolvedDataArray is less than bufferSize.\n     *\n     */\n    shiftBufferFromUnresolvedDataArray(buffer) {\n        if (!buffer) {\n            buffer = new PooledBuffer(this.bufferSize, this.unresolvedDataArray, this.unresolvedLength);\n        }\n        else {\n            buffer.fill(this.unresolvedDataArray, this.unresolvedLength);\n        }\n        this.unresolvedLength -= buffer.size;\n        return buffer;\n    }\n    /**\n     * Resolve data in unresolvedDataArray. For every buffer with size in blockSize\n     * shifted, it will try to get (or allocate a buffer) from incoming, and fill it,\n     * then push it into outgoing to be handled by outgoing handler.\n     *\n     * Return false when available buffers in incoming are not enough, else true.\n     *\n     * @returns Return false when buffers in incoming are not enough, else true.\n     */\n    resolveData() {\n        while (this.unresolvedLength >= this.bufferSize) {\n            let buffer;\n            if (this.incoming.length > 0) {\n                buffer = this.incoming.shift();\n                this.shiftBufferFromUnresolvedDataArray(buffer);\n            }\n            else {\n                if (this.numBuffers < this.maxBuffers) {\n                    buffer = this.shiftBufferFromUnresolvedDataArray();\n                    this.numBuffers++;\n                }\n                else {\n                    // No available buffer, wait for buffer returned\n                    return false;\n                }\n            }\n            this.outgoing.push(buffer);\n            this.triggerOutgoingHandlers();\n        }\n        return true;\n    }\n    /**\n     * Try to trigger a outgoing handler for every buffer in outgoing. Stop when\n     * concurrency reaches.\n     */\n    async triggerOutgoingHandlers() {\n        let buffer;\n        do {\n            if (this.executingOutgoingHandlers >= this.concurrency) {\n                return;\n            }\n            buffer = this.outgoing.shift();\n            if (buffer) {\n                this.triggerOutgoingHandler(buffer);\n            }\n        } while (buffer);\n    }\n    /**\n     * Trigger a outgoing handler for a buffer shifted from outgoing.\n     *\n     * @param buffer -\n     */\n    async triggerOutgoingHandler(buffer) {\n        const bufferLength = buffer.size;\n        this.executingOutgoingHandlers++;\n        this.offset += bufferLength;\n        try {\n            await this.outgoingHandler(() => buffer.getReadableStream(), bufferLength, this.offset - bufferLength);\n        }\n        catch (err) {\n            this.emitter.emit(\"error\", err);\n            return;\n        }\n        this.executingOutgoingHandlers--;\n        this.reuseBuffer(buffer);\n        this.emitter.emit(\"checkEnd\");\n    }\n    /**\n     * Return buffer used by outgoing handler into incoming.\n     *\n     * @param buffer -\n     */\n    reuseBuffer(buffer) {\n        this.incoming.push(buffer);\n        if (!this.isError && this.resolveData() && !this.isStreamEnd) {\n            this.readable.resume();\n        }\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * Reads a readable stream into buffer. Fill the buffer from offset to end.\n *\n * @param stream - A Node.js Readable stream\n * @param buffer - Buffer to be filled, length must greater than or equal to offset\n * @param offset - From which position in the buffer to be filled, inclusive\n * @param end - To which position in the buffer to be filled, exclusive\n * @param encoding - Encoding of the Readable stream\n */\nasync function streamToBuffer(stream, buffer, offset, end, encoding) {\n    let pos = 0; // Position in stream\n    const count = end - offset; // Total amount of data needed in stream\n    return new Promise((resolve, reject) => {\n        const timeout = setTimeout(() => reject(new Error(`The operation cannot be completed in timeout.`)), REQUEST_TIMEOUT);\n        stream.on(\"readable\", () => {\n            if (pos >= count) {\n                clearTimeout(timeout);\n                resolve();\n                return;\n            }\n            let chunk = stream.read();\n            if (!chunk) {\n                return;\n            }\n            if (typeof chunk === \"string\") {\n                chunk = Buffer.from(chunk, encoding);\n            }\n            // How much data needed in this chunk\n            const chunkLength = pos + chunk.length > count ? count - pos : chunk.length;\n            buffer.fill(chunk.slice(0, chunkLength), offset + pos, offset + pos + chunkLength);\n            pos += chunkLength;\n        });\n        stream.on(\"end\", () => {\n            clearTimeout(timeout);\n            if (pos < count) {\n                reject(new Error(`Stream drains before getting enough data needed. Data read: ${pos}, data need: ${count}`));\n            }\n            resolve();\n        });\n        stream.on(\"error\", (msg) => {\n            clearTimeout(timeout);\n            reject(msg);\n        });\n    });\n}\n/**\n * Reads a readable stream into buffer entirely.\n *\n * @param stream - A Node.js Readable stream\n * @param buffer - Buffer to be filled, length must greater than or equal to offset\n * @param encoding - Encoding of the Readable stream\n * @returns with the count of bytes read.\n * @throws `RangeError` If buffer size is not big enough.\n */\nasync function streamToBuffer2(stream, buffer, encoding) {\n    let pos = 0; // Position in stream\n    const bufferSize = buffer.length;\n    return new Promise((resolve, reject) => {\n        stream.on(\"readable\", () => {\n            let chunk = stream.read();\n            if (!chunk) {\n                return;\n            }\n            if (typeof chunk === \"string\") {\n                chunk = Buffer.from(chunk, encoding);\n            }\n            if (pos + chunk.length > bufferSize) {\n                reject(new Error(`Stream exceeds buffer size. Buffer size: ${bufferSize}`));\n                return;\n            }\n            buffer.fill(chunk, pos, pos + chunk.length);\n            pos += chunk.length;\n        });\n        stream.on(\"end\", () => {\n            resolve(pos);\n        });\n        stream.on(\"error\", reject);\n    });\n}\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * Writes the content of a readstream to a local file. Returns a Promise which is completed after the file handle is closed.\n *\n * @param rs - The read stream.\n * @param file - Destination file path.\n */\nasync function readStreamToLocalFile(rs, file) {\n    return new Promise((resolve, reject) => {\n        const ws = fs.createWriteStream(file);\n        rs.on(\"error\", (err) => {\n            reject(err);\n        });\n        ws.on(\"error\", (err) => {\n            reject(err);\n        });\n        ws.on(\"close\", resolve);\n        rs.pipe(ws);\n    });\n}\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * Promisified version of fs.stat().\n */\nconst fsStat = require$$0$5.promisify(fs.stat);\nconst fsCreateReadStream = fs.createReadStream;\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A BlobClient represents a URL to an Azure Storage blob; the blob may be a block blob,\n * append blob, or page blob.\n */\nclass BlobClient extends StorageClient {\n    /**\n     * The name of the blob.\n     */\n    get name() {\n        return this._name;\n    }\n    /**\n     * The name of the storage container the blob is associated with.\n     */\n    get containerName() {\n        return this._containerName;\n    }\n    constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        options = options || {};\n        let pipeline;\n        let url;\n        if (isPipelineLike(credentialOrPipelineOrContainerName)) {\n            // (url: string, pipeline: Pipeline)\n            url = urlOrConnectionString;\n            pipeline = credentialOrPipelineOrContainerName;\n        }\n        else if ((isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) ||\n            credentialOrPipelineOrContainerName instanceof AnonymousCredential ||\n            isTokenCredential(credentialOrPipelineOrContainerName)) {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            url = urlOrConnectionString;\n            options = blobNameOrOptions;\n            pipeline = newPipeline(credentialOrPipelineOrContainerName, options);\n        }\n        else if (!credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName !== \"string\") {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            // The second parameter is undefined. Use anonymous credential.\n            url = urlOrConnectionString;\n            if (blobNameOrOptions && typeof blobNameOrOptions !== \"string\") {\n                options = blobNameOrOptions;\n            }\n            pipeline = newPipeline(new AnonymousCredential(), options);\n        }\n        else if (credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName === \"string\" &&\n            blobNameOrOptions &&\n            typeof blobNameOrOptions === \"string\") {\n            // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions)\n            const containerName = credentialOrPipelineOrContainerName;\n            const blobName = blobNameOrOptions;\n            const extractedCreds = extractConnectionStringParts(urlOrConnectionString);\n            if (extractedCreds.kind === \"AccountConnString\") {\n                if (isNode) {\n                    const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey);\n                    url = appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName));\n                    if (!options.proxyOptions) {\n                        options.proxyOptions = getDefaultProxySettings(extractedCreds.proxyUri);\n                    }\n                    pipeline = newPipeline(sharedKeyCredential, options);\n                }\n                else {\n                    throw new Error(\"Account connection string is only supported in Node.js environment\");\n                }\n            }\n            else if (extractedCreds.kind === \"SASConnString\") {\n                url =\n                    appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) +\n                        \"?\" +\n                        extractedCreds.accountSas;\n                pipeline = newPipeline(new AnonymousCredential(), options);\n            }\n            else {\n                throw new Error(\"Connection string must be either an Account connection string or a SAS connection string\");\n            }\n        }\n        else {\n            throw new Error(\"Expecting non-empty strings for containerName and blobName parameters\");\n        }\n        super(url, pipeline);\n        ({ blobName: this._name, containerName: this._containerName } =\n            this.getBlobAndContainerNamesFromUrl());\n        this.blobContext = this.storageClientContext.blob;\n        this._snapshot = getURLParameter(this.url, URLConstants.Parameters.SNAPSHOT);\n        this._versionId = getURLParameter(this.url, URLConstants.Parameters.VERSIONID);\n    }\n    /**\n     * Creates a new BlobClient object identical to the source but with the specified snapshot timestamp.\n     * Provide \"\" will remove the snapshot and return a Client to the base blob.\n     *\n     * @param snapshot - The snapshot timestamp.\n     * @returns A new BlobClient object identical to the source but with the specified snapshot timestamp\n     */\n    withSnapshot(snapshot) {\n        return new BlobClient(setURLParameter(this.url, URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline);\n    }\n    /**\n     * Creates a new BlobClient object pointing to a version of this blob.\n     * Provide \"\" will remove the versionId and return a Client to the base blob.\n     *\n     * @param versionId - The versionId.\n     * @returns A new BlobClient object pointing to the version of this blob.\n     */\n    withVersion(versionId) {\n        return new BlobClient(setURLParameter(this.url, URLConstants.Parameters.VERSIONID, versionId.length === 0 ? undefined : versionId), this.pipeline);\n    }\n    /**\n     * Creates a AppendBlobClient object.\n     *\n     */\n    getAppendBlobClient() {\n        return new AppendBlobClient(this.url, this.pipeline);\n    }\n    /**\n     * Creates a BlockBlobClient object.\n     *\n     */\n    getBlockBlobClient() {\n        return new BlockBlobClient(this.url, this.pipeline);\n    }\n    /**\n     * Creates a PageBlobClient object.\n     *\n     */\n    getPageBlobClient() {\n        return new PageBlobClient(this.url, this.pipeline);\n    }\n    /**\n     * Reads or downloads a blob from the system, including its metadata and properties.\n     * You can also call Get Blob to read a snapshot.\n     *\n     * * In Node.js, data returns in a Readable stream readableStreamBody\n     * * In browsers, data returns in a promise blobBody\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-blob\n     *\n     * @param offset - From which position of the blob to download, greater than or equal to 0\n     * @param count - How much data to be downloaded, greater than 0. Will download to the end when undefined\n     * @param options - Optional options to Blob Download operation.\n     *\n     *\n     * Example usage (Node.js):\n     *\n     * ```js\n     * // Download and convert a blob to a string\n     * const downloadBlockBlobResponse = await blobClient.download();\n     * const downloaded = await streamToBuffer(downloadBlockBlobResponse.readableStreamBody);\n     * console.log(\"Downloaded blob content:\", downloaded.toString());\n     *\n     * async function streamToBuffer(readableStream) {\n     *   return new Promise((resolve, reject) => {\n     *     const chunks = [];\n     *     readableStream.on(\"data\", (data) => {\n     *       chunks.push(typeof data === \"string\" ? Buffer.from(data) : data);\n     *     });\n     *     readableStream.on(\"end\", () => {\n     *       resolve(Buffer.concat(chunks));\n     *     });\n     *     readableStream.on(\"error\", reject);\n     *   });\n     * }\n     * ```\n     *\n     * Example usage (browser):\n     *\n     * ```js\n     * // Download and convert a blob to a string\n     * const downloadBlockBlobResponse = await blobClient.download();\n     * const downloaded = await blobToString(await downloadBlockBlobResponse.blobBody);\n     * console.log(\n     *   \"Downloaded blob content\",\n     *   downloaded\n     * );\n     *\n     * async function blobToString(blob: Blob): Promise<string> {\n     *   const fileReader = new FileReader();\n     *   return new Promise<string>((resolve, reject) => {\n     *     fileReader.onloadend = (ev: any) => {\n     *       resolve(ev.target!.result);\n     *     };\n     *     fileReader.onerror = reject;\n     *     fileReader.readAsText(blob);\n     *   });\n     * }\n     * ```\n     */\n    async download(offset = 0, count, options = {}) {\n        options.conditions = options.conditions || {};\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlobClient-download\", options, async (updatedOptions) => {\n            var _a;\n            const res = assertResponse(await this.blobContext.download({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                requestOptions: {\n                    onDownloadProgress: isNode ? undefined : options.onProgress, // for Node.js, progress is reported by RetriableReadableStream\n                },\n                range: offset === 0 && !count ? undefined : rangeToString({ offset, count }),\n                rangeGetContentMD5: options.rangeGetContentMD5,\n                rangeGetContentCRC64: options.rangeGetContentCrc64,\n                snapshot: options.snapshot,\n                cpkInfo: options.customerProvidedKey,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            const wrappedRes = Object.assign(Object.assign({}, res), { _response: res._response, objectReplicationDestinationPolicyId: res.objectReplicationPolicyId, objectReplicationSourceProperties: parseObjectReplicationRecord(res.objectReplicationRules) });\n            // Return browser response immediately\n            if (!isNode) {\n                return wrappedRes;\n            }\n            // We support retrying when download stream unexpected ends in Node.js runtime\n            // Following code shouldn't be bundled into browser build, however some\n            // bundlers may try to bundle following code and \"FileReadResponse.ts\".\n            // In this case, \"FileDownloadResponse.browser.ts\" will be used as a shim of \"FileDownloadResponse.ts\"\n            // The config is in package.json \"browser\" field\n            if (options.maxRetryRequests === undefined || options.maxRetryRequests < 0) {\n                // TODO: Default value or make it a required parameter?\n                options.maxRetryRequests = DEFAULT_MAX_DOWNLOAD_RETRY_REQUESTS;\n            }\n            if (res.contentLength === undefined) {\n                throw new RangeError(`File download response doesn't contain valid content length header`);\n            }\n            if (!res.etag) {\n                throw new RangeError(`File download response doesn't contain valid etag header`);\n            }\n            return new BlobDownloadResponse(wrappedRes, async (start) => {\n                var _a;\n                const updatedDownloadOptions = {\n                    leaseAccessConditions: options.conditions,\n                    modifiedAccessConditions: {\n                        ifMatch: options.conditions.ifMatch || res.etag,\n                        ifModifiedSince: options.conditions.ifModifiedSince,\n                        ifNoneMatch: options.conditions.ifNoneMatch,\n                        ifUnmodifiedSince: options.conditions.ifUnmodifiedSince,\n                        ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions,\n                    },\n                    range: rangeToString({\n                        count: offset + res.contentLength - start,\n                        offset: start,\n                    }),\n                    rangeGetContentMD5: options.rangeGetContentMD5,\n                    rangeGetContentCRC64: options.rangeGetContentCrc64,\n                    snapshot: options.snapshot,\n                    cpkInfo: options.customerProvidedKey,\n                };\n                // Debug purpose only\n                // console.log(\n                //   `Read from internal stream, range: ${\n                //     updatedOptions.range\n                //   }, options: ${JSON.stringify(updatedOptions)}`\n                // );\n                return (await this.blobContext.download(Object.assign({ abortSignal: options.abortSignal }, updatedDownloadOptions))).readableStreamBody;\n            }, offset, res.contentLength, {\n                maxRetryRequests: options.maxRetryRequests,\n                onProgress: options.onProgress,\n            });\n        });\n    }\n    /**\n     * Returns true if the Azure blob resource represented by this client exists; false otherwise.\n     *\n     * NOTE: use this function with care since an existing blob might be deleted by other clients or\n     * applications. Vice versa new blobs might be added by other clients or applications after this\n     * function completes.\n     *\n     * @param options - options to Exists operation.\n     */\n    async exists(options = {}) {\n        return tracingClient.withSpan(\"BlobClient-exists\", options, async (updatedOptions) => {\n            try {\n                ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n                await this.getProperties({\n                    abortSignal: options.abortSignal,\n                    customerProvidedKey: options.customerProvidedKey,\n                    conditions: options.conditions,\n                    tracingOptions: updatedOptions.tracingOptions,\n                });\n                return true;\n            }\n            catch (e) {\n                if (e.statusCode === 404) {\n                    // Expected exception when checking blob existence\n                    return false;\n                }\n                else if (e.statusCode === 409 &&\n                    (e.details.errorCode === BlobUsesCustomerSpecifiedEncryptionMsg ||\n                        e.details.errorCode === BlobDoesNotUseCustomerSpecifiedEncryption)) {\n                    // Expected exception when checking blob existence\n                    return true;\n                }\n                throw e;\n            }\n        });\n    }\n    /**\n     * Returns all user-defined metadata, standard HTTP properties, and system properties\n     * for the blob. It does not return the content of the blob.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-blob-properties\n     *\n     * WARNING: The `metadata` object returned in the response will have its keys in lowercase, even if\n     * they originally contained uppercase characters. This differs from the metadata keys returned by\n     * the methods of {@link ContainerClient} that list blobs using the `includeMetadata` option, which\n     * will retain their original casing.\n     *\n     * @param options - Optional options to Get Properties operation.\n     */\n    async getProperties(options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlobClient-getProperties\", options, async (updatedOptions) => {\n            var _a;\n            const res = assertResponse(await this.blobContext.getProperties({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                cpkInfo: options.customerProvidedKey,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            return Object.assign(Object.assign({}, res), { _response: res._response, objectReplicationDestinationPolicyId: res.objectReplicationPolicyId, objectReplicationSourceProperties: parseObjectReplicationRecord(res.objectReplicationRules) });\n        });\n    }\n    /**\n     * Marks the specified blob or snapshot for deletion. The blob is later deleted\n     * during garbage collection. Note that in order to delete a blob, you must delete\n     * all of its snapshots. You can delete both at the same time with the Delete\n     * Blob operation.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/delete-blob\n     *\n     * @param options - Optional options to Blob Delete operation.\n     */\n    async delete(options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"BlobClient-delete\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.blobContext.delete({\n                abortSignal: options.abortSignal,\n                deleteSnapshots: options.deleteSnapshots,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Marks the specified blob or snapshot for deletion if it exists. The blob is later deleted\n     * during garbage collection. Note that in order to delete a blob, you must delete\n     * all of its snapshots. You can delete both at the same time with the Delete\n     * Blob operation.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/delete-blob\n     *\n     * @param options - Optional options to Blob Delete operation.\n     */\n    async deleteIfExists(options = {}) {\n        return tracingClient.withSpan(\"BlobClient-deleteIfExists\", options, async (updatedOptions) => {\n            var _a, _b;\n            try {\n                const res = assertResponse(await this.delete(updatedOptions));\n                return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response });\n            }\n            catch (e) {\n                if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === \"BlobNotFound\") {\n                    return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response });\n                }\n                throw e;\n            }\n        });\n    }\n    /**\n     * Restores the contents and metadata of soft deleted blob and any associated\n     * soft deleted snapshots. Undelete Blob is supported only on version 2017-07-29\n     * or later.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/undelete-blob\n     *\n     * @param options - Optional options to Blob Undelete operation.\n     */\n    async undelete(options = {}) {\n        return tracingClient.withSpan(\"BlobClient-undelete\", options, async (updatedOptions) => {\n            return assertResponse(await this.blobContext.undelete({\n                abortSignal: options.abortSignal,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Sets system properties on the blob.\n     *\n     * If no value provided, or no value provided for the specified blob HTTP headers,\n     * these blob HTTP headers without a value will be cleared.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/set-blob-properties\n     *\n     * @param blobHTTPHeaders - If no value provided, or no value provided for\n     *                                                   the specified blob HTTP headers, these blob HTTP\n     *                                                   headers without a value will be cleared.\n     *                                                   A common header to set is `blobContentType`\n     *                                                   enabling the browser to provide functionality\n     *                                                   based on file type.\n     * @param options - Optional options to Blob Set HTTP Headers operation.\n     */\n    async setHTTPHeaders(blobHTTPHeaders, options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlobClient-setHTTPHeaders\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.blobContext.setHttpHeaders({\n                abortSignal: options.abortSignal,\n                blobHttpHeaders: blobHTTPHeaders,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                // cpkInfo: options.customerProvidedKey, // CPK is not included in Swagger, should change this back when this issue is fixed in Swagger.\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Sets user-defined metadata for the specified blob as one or more name-value pairs.\n     *\n     * If no option provided, or no metadata defined in the parameter, the blob\n     * metadata will be removed.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/set-blob-metadata\n     *\n     * @param metadata - Replace existing metadata with this value.\n     *                               If no value provided the existing metadata will be removed.\n     * @param options - Optional options to Set Metadata operation.\n     */\n    async setMetadata(metadata, options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlobClient-setMetadata\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.blobContext.setMetadata({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                metadata,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Sets tags on the underlying blob.\n     * A blob can have up to 10 tags. Tag keys must be between 1 and 128 characters.  Tag values must be between 0 and 256 characters.\n     * Valid tag key and value characters include lower and upper case letters, digits (0-9),\n     * space (' '), plus ('+'), minus ('-'), period ('.'), foward slash ('/'), colon (':'), equals ('='), and underscore ('_').\n     *\n     * @param tags -\n     * @param options -\n     */\n    async setTags(tags, options = {}) {\n        return tracingClient.withSpan(\"BlobClient-setTags\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.blobContext.setTags({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n                tags: toBlobTags(tags),\n            }));\n        });\n    }\n    /**\n     * Gets the tags associated with the underlying blob.\n     *\n     * @param options -\n     */\n    async getTags(options = {}) {\n        return tracingClient.withSpan(\"BlobClient-getTags\", options, async (updatedOptions) => {\n            var _a;\n            const response = assertResponse(await this.blobContext.getTags({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            const wrappedResponse = Object.assign(Object.assign({}, response), { _response: response._response, tags: toTags({ blobTagSet: response.blobTagSet }) || {} });\n            return wrappedResponse;\n        });\n    }\n    /**\n     * Get a {@link BlobLeaseClient} that manages leases on the blob.\n     *\n     * @param proposeLeaseId - Initial proposed lease Id.\n     * @returns A new BlobLeaseClient object for managing leases on the blob.\n     */\n    getBlobLeaseClient(proposeLeaseId) {\n        return new BlobLeaseClient(this, proposeLeaseId);\n    }\n    /**\n     * Creates a read-only snapshot of a blob.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/snapshot-blob\n     *\n     * @param options - Optional options to the Blob Create Snapshot operation.\n     */\n    async createSnapshot(options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlobClient-createSnapshot\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.blobContext.createSnapshot({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                metadata: options.metadata,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Asynchronously copies a blob to a destination within the storage account.\n     * This method returns a long running operation poller that allows you to wait\n     * indefinitely until the copy is completed.\n     * You can also cancel a copy before it is completed by calling `cancelOperation` on the poller.\n     * Note that the onProgress callback will not be invoked if the operation completes in the first\n     * request, and attempting to cancel a completed copy will result in an error being thrown.\n     *\n     * In version 2012-02-12 and later, the source for a Copy Blob operation can be\n     * a committed blob in any Azure storage account.\n     * Beginning with version 2015-02-21, the source for a Copy Blob operation can be\n     * an Azure file in any Azure storage account.\n     * Only storage accounts created on or after June 7th, 2012 allow the Copy Blob\n     * operation to copy from another storage account.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/copy-blob\n     *\n     * Example using automatic polling:\n     *\n     * ```js\n     * const copyPoller = await blobClient.beginCopyFromURL('url');\n     * const result = await copyPoller.pollUntilDone();\n     * ```\n     *\n     * Example using manual polling:\n     *\n     * ```js\n     * const copyPoller = await blobClient.beginCopyFromURL('url');\n     * while (!poller.isDone()) {\n     *    await poller.poll();\n     * }\n     * const result = copyPoller.getResult();\n     * ```\n     *\n     * Example using progress updates:\n     *\n     * ```js\n     * const copyPoller = await blobClient.beginCopyFromURL('url', {\n     *   onProgress(state) {\n     *     console.log(`Progress: ${state.copyProgress}`);\n     *   }\n     * });\n     * const result = await copyPoller.pollUntilDone();\n     * ```\n     *\n     * Example using a changing polling interval (default 15 seconds):\n     *\n     * ```js\n     * const copyPoller = await blobClient.beginCopyFromURL('url', {\n     *   intervalInMs: 1000 // poll blob every 1 second for copy progress\n     * });\n     * const result = await copyPoller.pollUntilDone();\n     * ```\n     *\n     * Example using copy cancellation:\n     *\n     * ```js\n     * const copyPoller = await blobClient.beginCopyFromURL('url');\n     * // cancel operation after starting it.\n     * try {\n     *   await copyPoller.cancelOperation();\n     *   // calls to get the result now throw PollerCancelledError\n     *   await copyPoller.getResult();\n     * } catch (err) {\n     *   if (err.name === 'PollerCancelledError') {\n     *     console.log('The copy was cancelled.');\n     *   }\n     * }\n     * ```\n     *\n     * @param copySource - url to the source Azure Blob/File.\n     * @param options - Optional options to the Blob Start Copy From URL operation.\n     */\n    async beginCopyFromURL(copySource, options = {}) {\n        const client = {\n            abortCopyFromURL: (...args) => this.abortCopyFromURL(...args),\n            getProperties: (...args) => this.getProperties(...args),\n            startCopyFromURL: (...args) => this.startCopyFromURL(...args),\n        };\n        const poller = new BlobBeginCopyFromUrlPoller({\n            blobClient: client,\n            copySource,\n            intervalInMs: options.intervalInMs,\n            onProgress: options.onProgress,\n            resumeFrom: options.resumeFrom,\n            startCopyFromURLOptions: options,\n        });\n        // Trigger the startCopyFromURL call by calling poll.\n        // Any errors from this method should be surfaced to the user.\n        await poller.poll();\n        return poller;\n    }\n    /**\n     * Aborts a pending asynchronous Copy Blob operation, and leaves a destination blob with zero\n     * length and full metadata. Version 2012-02-12 and newer.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/abort-copy-blob\n     *\n     * @param copyId - Id of the Copy From URL operation.\n     * @param options - Optional options to the Blob Abort Copy From URL operation.\n     */\n    async abortCopyFromURL(copyId, options = {}) {\n        return tracingClient.withSpan(\"BlobClient-abortCopyFromURL\", options, async (updatedOptions) => {\n            return assertResponse(await this.blobContext.abortCopyFromURL(copyId, {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * The synchronous Copy From URL operation copies a blob or an internet resource to a new blob. It will not\n     * return a response until the copy is complete.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url\n     *\n     * @param copySource - The source URL to copy from, Shared Access Signature(SAS) maybe needed for authentication\n     * @param options -\n     */\n    async syncCopyFromURL(copySource, options = {}) {\n        options.conditions = options.conditions || {};\n        options.sourceConditions = options.sourceConditions || {};\n        return tracingClient.withSpan(\"BlobClient-syncCopyFromURL\", options, async (updatedOptions) => {\n            var _a, _b, _c, _d, _e, _f, _g;\n            return assertResponse(await this.blobContext.copyFromURL(copySource, {\n                abortSignal: options.abortSignal,\n                metadata: options.metadata,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                sourceModifiedAccessConditions: {\n                    sourceIfMatch: (_b = options.sourceConditions) === null || _b === void 0 ? void 0 : _b.ifMatch,\n                    sourceIfModifiedSince: (_c = options.sourceConditions) === null || _c === void 0 ? void 0 : _c.ifModifiedSince,\n                    sourceIfNoneMatch: (_d = options.sourceConditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch,\n                    sourceIfUnmodifiedSince: (_e = options.sourceConditions) === null || _e === void 0 ? void 0 : _e.ifUnmodifiedSince,\n                },\n                sourceContentMD5: options.sourceContentMD5,\n                copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization),\n                tier: toAccessTier(options.tier),\n                blobTagsString: toBlobTagsString(options.tags),\n                immutabilityPolicyExpiry: (_f = options.immutabilityPolicy) === null || _f === void 0 ? void 0 : _f.expiriesOn,\n                immutabilityPolicyMode: (_g = options.immutabilityPolicy) === null || _g === void 0 ? void 0 : _g.policyMode,\n                legalHold: options.legalHold,\n                encryptionScope: options.encryptionScope,\n                copySourceTags: options.copySourceTags,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Sets the tier on a blob. The operation is allowed on a page blob in a premium\n     * storage account and on a block blob in a blob storage account (locally redundant\n     * storage only). A premium page blob's tier determines the allowed size, IOPS,\n     * and bandwidth of the blob. A block blob's tier determines Hot/Cool/Archive\n     * storage type. This operation does not update the blob's ETag.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/set-blob-tier\n     *\n     * @param tier - The tier to be set on the blob. Valid values are Hot, Cool, or Archive.\n     * @param options - Optional options to the Blob Set Tier operation.\n     */\n    async setAccessTier(tier, options = {}) {\n        return tracingClient.withSpan(\"BlobClient-setAccessTier\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.blobContext.setTier(toAccessTier(tier), {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                rehydratePriority: options.rehydratePriority,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    async downloadToBuffer(param1, param2, param3, param4 = {}) {\n        var _a;\n        let buffer;\n        let offset = 0;\n        let count = 0;\n        let options = param4;\n        if (param1 instanceof Buffer) {\n            buffer = param1;\n            offset = param2 || 0;\n            count = typeof param3 === \"number\" ? param3 : 0;\n        }\n        else {\n            offset = typeof param1 === \"number\" ? param1 : 0;\n            count = typeof param2 === \"number\" ? param2 : 0;\n            options = param3 || {};\n        }\n        let blockSize = (_a = options.blockSize) !== null && _a !== void 0 ? _a : 0;\n        if (blockSize < 0) {\n            throw new RangeError(\"blockSize option must be >= 0\");\n        }\n        if (blockSize === 0) {\n            blockSize = DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES;\n        }\n        if (offset < 0) {\n            throw new RangeError(\"offset option must be >= 0\");\n        }\n        if (count && count <= 0) {\n            throw new RangeError(\"count option must be greater than 0\");\n        }\n        if (!options.conditions) {\n            options.conditions = {};\n        }\n        return tracingClient.withSpan(\"BlobClient-downloadToBuffer\", options, async (updatedOptions) => {\n            // Customer doesn't specify length, get it\n            if (!count) {\n                const response = await this.getProperties(Object.assign(Object.assign({}, options), { tracingOptions: updatedOptions.tracingOptions }));\n                count = response.contentLength - offset;\n                if (count < 0) {\n                    throw new RangeError(`offset ${offset} shouldn't be larger than blob size ${response.contentLength}`);\n                }\n            }\n            // Allocate the buffer of size = count if the buffer is not provided\n            if (!buffer) {\n                try {\n                    buffer = Buffer.alloc(count);\n                }\n                catch (error) {\n                    throw new Error(`Unable to allocate the buffer of size: ${count}(in bytes). Please try passing your own buffer to the \"downloadToBuffer\" method or try using other methods like \"download\" or \"downloadToFile\".\\t ${error.message}`);\n                }\n            }\n            if (buffer.length < count) {\n                throw new RangeError(`The buffer's size should be equal to or larger than the request count of bytes: ${count}`);\n            }\n            let transferProgress = 0;\n            const batch = new Batch(options.concurrency);\n            for (let off = offset; off < offset + count; off = off + blockSize) {\n                batch.addOperation(async () => {\n                    // Exclusive chunk end position\n                    let chunkEnd = offset + count;\n                    if (off + blockSize < chunkEnd) {\n                        chunkEnd = off + blockSize;\n                    }\n                    const response = await this.download(off, chunkEnd - off, {\n                        abortSignal: options.abortSignal,\n                        conditions: options.conditions,\n                        maxRetryRequests: options.maxRetryRequestsPerBlock,\n                        customerProvidedKey: options.customerProvidedKey,\n                        tracingOptions: updatedOptions.tracingOptions,\n                    });\n                    const stream = response.readableStreamBody;\n                    await streamToBuffer(stream, buffer, off - offset, chunkEnd - offset);\n                    // Update progress after block is downloaded, in case of block trying\n                    // Could provide finer grained progress updating inside HTTP requests,\n                    // only if convenience layer download try is enabled\n                    transferProgress += chunkEnd - off;\n                    if (options.onProgress) {\n                        options.onProgress({ loadedBytes: transferProgress });\n                    }\n                });\n            }\n            await batch.do();\n            return buffer;\n        });\n    }\n    /**\n     * ONLY AVAILABLE IN NODE.JS RUNTIME.\n     *\n     * Downloads an Azure Blob to a local file.\n     * Fails if the the given file path already exits.\n     * Offset and count are optional, pass 0 and undefined respectively to download the entire blob.\n     *\n     * @param filePath -\n     * @param offset - From which position of the block blob to download.\n     * @param count - How much data to be downloaded. Will download to the end when passing undefined.\n     * @param options - Options to Blob download options.\n     * @returns The response data for blob download operation,\n     *                                                 but with readableStreamBody set to undefined since its\n     *                                                 content is already read and written into a local file\n     *                                                 at the specified path.\n     */\n    async downloadToFile(filePath, offset = 0, count, options = {}) {\n        return tracingClient.withSpan(\"BlobClient-downloadToFile\", options, async (updatedOptions) => {\n            const response = await this.download(offset, count, Object.assign(Object.assign({}, options), { tracingOptions: updatedOptions.tracingOptions }));\n            if (response.readableStreamBody) {\n                await readStreamToLocalFile(response.readableStreamBody, filePath);\n            }\n            // The stream is no longer accessible so setting it to undefined.\n            response.blobDownloadStream = undefined;\n            return response;\n        });\n    }\n    getBlobAndContainerNamesFromUrl() {\n        let containerName;\n        let blobName;\n        try {\n            //  URL may look like the following\n            // \"https://myaccount.blob.core.windows.net/mycontainer/blob?sasString\";\n            // \"https://myaccount.blob.core.windows.net/mycontainer/blob\";\n            // \"https://myaccount.blob.core.windows.net/mycontainer/blob/a.txt?sasString\";\n            // \"https://myaccount.blob.core.windows.net/mycontainer/blob/a.txt\";\n            // IPv4/IPv6 address hosts, Endpoints - `http://127.0.0.1:10000/devstoreaccount1/containername/blob`\n            // http://localhost:10001/devstoreaccount1/containername/blob\n            const parsedUrl = new URL(this.url);\n            if (parsedUrl.host.split(\".\")[1] === \"blob\") {\n                // \"https://myaccount.blob.core.windows.net/containername/blob\".\n                // .getPath() -> /containername/blob\n                const pathComponents = parsedUrl.pathname.match(\"/([^/]*)(/(.*))?\");\n                containerName = pathComponents[1];\n                blobName = pathComponents[3];\n            }\n            else if (isIpEndpointStyle(parsedUrl)) {\n                // IPv4/IPv6 address hosts... Example - http://192.0.0.10:10001/devstoreaccount1/containername/blob\n                // Single word domain without a [dot] in the endpoint... Example - http://localhost:10001/devstoreaccount1/containername/blob\n                // .getPath() -> /devstoreaccount1/containername/blob\n                const pathComponents = parsedUrl.pathname.match(\"/([^/]*)/([^/]*)(/(.*))?\");\n                containerName = pathComponents[2];\n                blobName = pathComponents[4];\n            }\n            else {\n                // \"https://customdomain.com/containername/blob\".\n                // .getPath() -> /containername/blob\n                const pathComponents = parsedUrl.pathname.match(\"/([^/]*)(/(.*))?\");\n                containerName = pathComponents[1];\n                blobName = pathComponents[3];\n            }\n            // decode the encoded blobName, containerName - to get all the special characters that might be present in them\n            containerName = decodeURIComponent(containerName);\n            blobName = decodeURIComponent(blobName);\n            // Azure Storage Server will replace \"\\\" with \"/\" in the blob names\n            //   doing the same in the SDK side so that the user doesn't have to replace \"\\\" instances in the blobName\n            blobName = blobName.replace(/\\\\/g, \"/\");\n            if (!containerName) {\n                throw new Error(\"Provided containerName is invalid.\");\n            }\n            return { blobName, containerName };\n        }\n        catch (error) {\n            throw new Error(\"Unable to extract blobName and containerName with provided information.\");\n        }\n    }\n    /**\n     * Asynchronously copies a blob to a destination within the storage account.\n     * In version 2012-02-12 and later, the source for a Copy Blob operation can be\n     * a committed blob in any Azure storage account.\n     * Beginning with version 2015-02-21, the source for a Copy Blob operation can be\n     * an Azure file in any Azure storage account.\n     * Only storage accounts created on or after June 7th, 2012 allow the Copy Blob\n     * operation to copy from another storage account.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/copy-blob\n     *\n     * @param copySource - url to the source Azure Blob/File.\n     * @param options - Optional options to the Blob Start Copy From URL operation.\n     */\n    async startCopyFromURL(copySource, options = {}) {\n        return tracingClient.withSpan(\"BlobClient-startCopyFromURL\", options, async (updatedOptions) => {\n            var _a, _b, _c;\n            options.conditions = options.conditions || {};\n            options.sourceConditions = options.sourceConditions || {};\n            return assertResponse(await this.blobContext.startCopyFromURL(copySource, {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                metadata: options.metadata,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                sourceModifiedAccessConditions: {\n                    sourceIfMatch: options.sourceConditions.ifMatch,\n                    sourceIfModifiedSince: options.sourceConditions.ifModifiedSince,\n                    sourceIfNoneMatch: options.sourceConditions.ifNoneMatch,\n                    sourceIfUnmodifiedSince: options.sourceConditions.ifUnmodifiedSince,\n                    sourceIfTags: options.sourceConditions.tagConditions,\n                },\n                immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn,\n                immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode,\n                legalHold: options.legalHold,\n                rehydratePriority: options.rehydratePriority,\n                tier: toAccessTier(options.tier),\n                blobTagsString: toBlobTagsString(options.tags),\n                sealBlob: options.sealBlob,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Only available for BlobClient constructed with a shared key credential.\n     *\n     * Generates a Blob Service Shared Access Signature (SAS) URI based on the client properties\n     * and parameters passed in. The SAS is signed by the shared key credential of the client.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     * @param options - Optional parameters.\n     * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    generateSasUrl(options) {\n        return new Promise((resolve) => {\n            if (!(this.credential instanceof StorageSharedKeyCredential)) {\n                throw new RangeError(\"Can only generate the SAS when the client is initialized with a shared key credential\");\n            }\n            const sas = generateBlobSASQueryParameters(Object.assign({ containerName: this._containerName, blobName: this._name, snapshotTime: this._snapshot, versionId: this._versionId }, options), this.credential).toString();\n            resolve(appendToURLQuery(this.url, sas));\n        });\n    }\n    /**\n     * Only available for BlobClient constructed with a shared key credential.\n     *\n     * Generates string to sign for a Blob Service Shared Access Signature (SAS) URI based on\n     * the client properties and parameters passed in. The SAS is signed by the shared key credential of the client.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     * @param options - Optional parameters.\n     * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    generateSasStringToSign(options) {\n        if (!(this.credential instanceof StorageSharedKeyCredential)) {\n            throw new RangeError(\"Can only generate the SAS when the client is initialized with a shared key credential\");\n        }\n        return generateBlobSASQueryParametersInternal(Object.assign({ containerName: this._containerName, blobName: this._name, snapshotTime: this._snapshot, versionId: this._versionId }, options), this.credential).stringToSign;\n    }\n    /**\n     *\n     * Generates a Blob Service Shared Access Signature (SAS) URI based on\n     * the client properties and parameters passed in. The SAS is signed by the input user delegation key.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     * @param options - Optional parameters.\n     * @param userDelegationKey -  Return value of `blobServiceClient.getUserDelegationKey()`\n     * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    generateUserDelegationSasUrl(options, userDelegationKey) {\n        return new Promise((resolve) => {\n            const sas = generateBlobSASQueryParameters(Object.assign({ containerName: this._containerName, blobName: this._name, snapshotTime: this._snapshot, versionId: this._versionId }, options), userDelegationKey, this.accountName).toString();\n            resolve(appendToURLQuery(this.url, sas));\n        });\n    }\n    /**\n     * Only available for BlobClient constructed with a shared key credential.\n     *\n     * Generates string to sign for a Blob Service Shared Access Signature (SAS) URI based on\n     * the client properties and parameters passed in. The SAS is signed by the input user delegation key.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     * @param options - Optional parameters.\n     * @param userDelegationKey -  Return value of `blobServiceClient.getUserDelegationKey()`\n     * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    generateUserDelegationSasStringToSign(options, userDelegationKey) {\n        return generateBlobSASQueryParametersInternal(Object.assign({ containerName: this._containerName, blobName: this._name, snapshotTime: this._snapshot, versionId: this._versionId }, options), userDelegationKey, this.accountName).stringToSign;\n    }\n    /**\n     * Delete the immutablility policy on the blob.\n     *\n     * @param options - Optional options to delete immutability policy on the blob.\n     */\n    async deleteImmutabilityPolicy(options = {}) {\n        return tracingClient.withSpan(\"BlobClient-deleteImmutabilityPolicy\", options, async (updatedOptions) => {\n            return assertResponse(await this.blobContext.deleteImmutabilityPolicy({\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Set immutability policy on the blob.\n     *\n     * @param options - Optional options to set immutability policy on the blob.\n     */\n    async setImmutabilityPolicy(immutabilityPolicy, options = {}) {\n        return tracingClient.withSpan(\"BlobClient-setImmutabilityPolicy\", options, async (updatedOptions) => {\n            return assertResponse(await this.blobContext.setImmutabilityPolicy({\n                immutabilityPolicyExpiry: immutabilityPolicy.expiriesOn,\n                immutabilityPolicyMode: immutabilityPolicy.policyMode,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Set legal hold on the blob.\n     *\n     * @param options - Optional options to set legal hold on the blob.\n     */\n    async setLegalHold(legalHoldEnabled, options = {}) {\n        return tracingClient.withSpan(\"BlobClient-setLegalHold\", options, async (updatedOptions) => {\n            return assertResponse(await this.blobContext.setLegalHold(legalHoldEnabled, {\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * The Get Account Information operation returns the sku name and account kind\n     * for the specified account.\n     * The Get Account Information operation is available on service versions beginning\n     * with version 2018-03-28.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-account-information\n     *\n     * @param options - Options to the Service Get Account Info operation.\n     * @returns Response data for the Service Get Account Info operation.\n     */\n    async getAccountInfo(options = {}) {\n        return tracingClient.withSpan(\"BlobClient-getAccountInfo\", options, async (updatedOptions) => {\n            return assertResponse(await this.blobContext.getAccountInfo({\n                abortSignal: options.abortSignal,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n}\n/**\n * AppendBlobClient defines a set of operations applicable to append blobs.\n */\nclass AppendBlobClient extends BlobClient {\n    constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead.\n        //   super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options);\n        let pipeline;\n        let url;\n        options = options || {};\n        if (isPipelineLike(credentialOrPipelineOrContainerName)) {\n            // (url: string, pipeline: Pipeline)\n            url = urlOrConnectionString;\n            pipeline = credentialOrPipelineOrContainerName;\n        }\n        else if ((isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) ||\n            credentialOrPipelineOrContainerName instanceof AnonymousCredential ||\n            isTokenCredential(credentialOrPipelineOrContainerName)) {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)      url = urlOrConnectionString;\n            url = urlOrConnectionString;\n            options = blobNameOrOptions;\n            pipeline = newPipeline(credentialOrPipelineOrContainerName, options);\n        }\n        else if (!credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName !== \"string\") {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            url = urlOrConnectionString;\n            // The second parameter is undefined. Use anonymous credential.\n            pipeline = newPipeline(new AnonymousCredential(), options);\n        }\n        else if (credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName === \"string\" &&\n            blobNameOrOptions &&\n            typeof blobNameOrOptions === \"string\") {\n            // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions)\n            const containerName = credentialOrPipelineOrContainerName;\n            const blobName = blobNameOrOptions;\n            const extractedCreds = extractConnectionStringParts(urlOrConnectionString);\n            if (extractedCreds.kind === \"AccountConnString\") {\n                if (isNode) {\n                    const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey);\n                    url = appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName));\n                    if (!options.proxyOptions) {\n                        options.proxyOptions = getDefaultProxySettings(extractedCreds.proxyUri);\n                    }\n                    pipeline = newPipeline(sharedKeyCredential, options);\n                }\n                else {\n                    throw new Error(\"Account connection string is only supported in Node.js environment\");\n                }\n            }\n            else if (extractedCreds.kind === \"SASConnString\") {\n                url =\n                    appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) +\n                        \"?\" +\n                        extractedCreds.accountSas;\n                pipeline = newPipeline(new AnonymousCredential(), options);\n            }\n            else {\n                throw new Error(\"Connection string must be either an Account connection string or a SAS connection string\");\n            }\n        }\n        else {\n            throw new Error(\"Expecting non-empty strings for containerName and blobName parameters\");\n        }\n        super(url, pipeline);\n        this.appendBlobContext = this.storageClientContext.appendBlob;\n    }\n    /**\n     * Creates a new AppendBlobClient object identical to the source but with the\n     * specified snapshot timestamp.\n     * Provide \"\" will remove the snapshot and return a Client to the base blob.\n     *\n     * @param snapshot - The snapshot timestamp.\n     * @returns A new AppendBlobClient object identical to the source but with the specified snapshot timestamp.\n     */\n    withSnapshot(snapshot) {\n        return new AppendBlobClient(setURLParameter(this.url, URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline);\n    }\n    /**\n     * Creates a 0-length append blob. Call AppendBlock to append data to an append blob.\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-blob\n     *\n     * @param options - Options to the Append Block Create operation.\n     *\n     *\n     * Example usage:\n     *\n     * ```js\n     * const appendBlobClient = containerClient.getAppendBlobClient(\"<blob name>\");\n     * await appendBlobClient.create();\n     * ```\n     */\n    async create(options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"AppendBlobClient-create\", options, async (updatedOptions) => {\n            var _a, _b, _c;\n            return assertResponse(await this.appendBlobContext.create(0, {\n                abortSignal: options.abortSignal,\n                blobHttpHeaders: options.blobHTTPHeaders,\n                leaseAccessConditions: options.conditions,\n                metadata: options.metadata,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn,\n                immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode,\n                legalHold: options.legalHold,\n                blobTagsString: toBlobTagsString(options.tags),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Creates a 0-length append blob. Call AppendBlock to append data to an append blob.\n     * If the blob with the same name already exists, the content of the existing blob will remain unchanged.\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-blob\n     *\n     * @param options -\n     */\n    async createIfNotExists(options = {}) {\n        const conditions = { ifNoneMatch: ETagAny };\n        return tracingClient.withSpan(\"AppendBlobClient-createIfNotExists\", options, async (updatedOptions) => {\n            var _a, _b;\n            try {\n                const res = assertResponse(await this.create(Object.assign(Object.assign({}, updatedOptions), { conditions })));\n                return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response });\n            }\n            catch (e) {\n                if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === \"BlobAlreadyExists\") {\n                    return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response });\n                }\n                throw e;\n            }\n        });\n    }\n    /**\n     * Seals the append blob, making it read only.\n     *\n     * @param options -\n     */\n    async seal(options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"AppendBlobClient-seal\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.appendBlobContext.seal({\n                abortSignal: options.abortSignal,\n                appendPositionAccessConditions: options.conditions,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Commits a new block of data to the end of the existing append blob.\n     * @see https://learn.microsoft.com/rest/api/storageservices/append-block\n     *\n     * @param body - Data to be appended.\n     * @param contentLength - Length of the body in bytes.\n     * @param options - Options to the Append Block operation.\n     *\n     *\n     * Example usage:\n     *\n     * ```js\n     * const content = \"Hello World!\";\n     *\n     * // Create a new append blob and append data to the blob.\n     * const newAppendBlobClient = containerClient.getAppendBlobClient(\"<blob name>\");\n     * await newAppendBlobClient.create();\n     * await newAppendBlobClient.appendBlock(content, content.length);\n     *\n     * // Append data to an existing append blob.\n     * const existingAppendBlobClient = containerClient.getAppendBlobClient(\"<blob name>\");\n     * await existingAppendBlobClient.appendBlock(content, content.length);\n     * ```\n     */\n    async appendBlock(body, contentLength, options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"AppendBlobClient-appendBlock\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.appendBlobContext.appendBlock(contentLength, body, {\n                abortSignal: options.abortSignal,\n                appendPositionAccessConditions: options.conditions,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                requestOptions: {\n                    onUploadProgress: options.onProgress,\n                },\n                transactionalContentMD5: options.transactionalContentMD5,\n                transactionalContentCrc64: options.transactionalContentCrc64,\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * The Append Block operation commits a new block of data to the end of an existing append blob\n     * where the contents are read from a source url.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/append-block-from-url\n     *\n     * @param sourceURL -\n     *                 The url to the blob that will be the source of the copy. A source blob in the same storage account can\n     *                 be authenticated via Shared Key. However, if the source is a blob in another account, the source blob\n     *                 must either be public or must be authenticated via a shared access signature. If the source blob is\n     *                 public, no authentication is required to perform the operation.\n     * @param sourceOffset - Offset in source to be appended\n     * @param count - Number of bytes to be appended as a block\n     * @param options -\n     */\n    async appendBlockFromURL(sourceURL, sourceOffset, count, options = {}) {\n        options.conditions = options.conditions || {};\n        options.sourceConditions = options.sourceConditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"AppendBlobClient-appendBlockFromURL\", options, async (updatedOptions) => {\n            var _a, _b, _c, _d, _e;\n            return assertResponse(await this.appendBlobContext.appendBlockFromUrl(sourceURL, 0, {\n                abortSignal: options.abortSignal,\n                sourceRange: rangeToString({ offset: sourceOffset, count }),\n                sourceContentMD5: options.sourceContentMD5,\n                sourceContentCrc64: options.sourceContentCrc64,\n                leaseAccessConditions: options.conditions,\n                appendPositionAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                sourceModifiedAccessConditions: {\n                    sourceIfMatch: (_b = options.sourceConditions) === null || _b === void 0 ? void 0 : _b.ifMatch,\n                    sourceIfModifiedSince: (_c = options.sourceConditions) === null || _c === void 0 ? void 0 : _c.ifModifiedSince,\n                    sourceIfNoneMatch: (_d = options.sourceConditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch,\n                    sourceIfUnmodifiedSince: (_e = options.sourceConditions) === null || _e === void 0 ? void 0 : _e.ifUnmodifiedSince,\n                },\n                copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization),\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n}\n/**\n * BlockBlobClient defines a set of operations applicable to block blobs.\n */\nclass BlockBlobClient extends BlobClient {\n    constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead.\n        //   super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options);\n        let pipeline;\n        let url;\n        options = options || {};\n        if (isPipelineLike(credentialOrPipelineOrContainerName)) {\n            // (url: string, pipeline: Pipeline)\n            url = urlOrConnectionString;\n            pipeline = credentialOrPipelineOrContainerName;\n        }\n        else if ((isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) ||\n            credentialOrPipelineOrContainerName instanceof AnonymousCredential ||\n            isTokenCredential(credentialOrPipelineOrContainerName)) {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            url = urlOrConnectionString;\n            options = blobNameOrOptions;\n            pipeline = newPipeline(credentialOrPipelineOrContainerName, options);\n        }\n        else if (!credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName !== \"string\") {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            // The second parameter is undefined. Use anonymous credential.\n            url = urlOrConnectionString;\n            if (blobNameOrOptions && typeof blobNameOrOptions !== \"string\") {\n                options = blobNameOrOptions;\n            }\n            pipeline = newPipeline(new AnonymousCredential(), options);\n        }\n        else if (credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName === \"string\" &&\n            blobNameOrOptions &&\n            typeof blobNameOrOptions === \"string\") {\n            // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions)\n            const containerName = credentialOrPipelineOrContainerName;\n            const blobName = blobNameOrOptions;\n            const extractedCreds = extractConnectionStringParts(urlOrConnectionString);\n            if (extractedCreds.kind === \"AccountConnString\") {\n                if (isNode) {\n                    const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey);\n                    url = appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName));\n                    if (!options.proxyOptions) {\n                        options.proxyOptions = getDefaultProxySettings(extractedCreds.proxyUri);\n                    }\n                    pipeline = newPipeline(sharedKeyCredential, options);\n                }\n                else {\n                    throw new Error(\"Account connection string is only supported in Node.js environment\");\n                }\n            }\n            else if (extractedCreds.kind === \"SASConnString\") {\n                url =\n                    appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) +\n                        \"?\" +\n                        extractedCreds.accountSas;\n                pipeline = newPipeline(new AnonymousCredential(), options);\n            }\n            else {\n                throw new Error(\"Connection string must be either an Account connection string or a SAS connection string\");\n            }\n        }\n        else {\n            throw new Error(\"Expecting non-empty strings for containerName and blobName parameters\");\n        }\n        super(url, pipeline);\n        this.blockBlobContext = this.storageClientContext.blockBlob;\n        this._blobContext = this.storageClientContext.blob;\n    }\n    /**\n     * Creates a new BlockBlobClient object identical to the source but with the\n     * specified snapshot timestamp.\n     * Provide \"\" will remove the snapshot and return a URL to the base blob.\n     *\n     * @param snapshot - The snapshot timestamp.\n     * @returns A new BlockBlobClient object identical to the source but with the specified snapshot timestamp.\n     */\n    withSnapshot(snapshot) {\n        return new BlockBlobClient(setURLParameter(this.url, URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline);\n    }\n    /**\n     * ONLY AVAILABLE IN NODE.JS RUNTIME.\n     *\n     * Quick query for a JSON or CSV formatted blob.\n     *\n     * Example usage (Node.js):\n     *\n     * ```js\n     * // Query and convert a blob to a string\n     * const queryBlockBlobResponse = await blockBlobClient.query(\"select * from BlobStorage\");\n     * const downloaded = (await streamToBuffer(queryBlockBlobResponse.readableStreamBody)).toString();\n     * console.log(\"Query blob content:\", downloaded);\n     *\n     * async function streamToBuffer(readableStream) {\n     *   return new Promise((resolve, reject) => {\n     *     const chunks = [];\n     *     readableStream.on(\"data\", (data) => {\n     *       chunks.push(typeof data === \"string\" ? Buffer.from(data) : data);\n     *     });\n     *     readableStream.on(\"end\", () => {\n     *       resolve(Buffer.concat(chunks));\n     *     });\n     *     readableStream.on(\"error\", reject);\n     *   });\n     * }\n     * ```\n     *\n     * @param query -\n     * @param options -\n     */\n    async query(query, options = {}) {\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        if (!isNode) {\n            throw new Error(\"This operation currently is only supported in Node.js.\");\n        }\n        return tracingClient.withSpan(\"BlockBlobClient-query\", options, async (updatedOptions) => {\n            var _a;\n            const response = assertResponse(await this._blobContext.query({\n                abortSignal: options.abortSignal,\n                queryRequest: {\n                    queryType: \"SQL\",\n                    expression: query,\n                    inputSerialization: toQuerySerialization(options.inputTextConfiguration),\n                    outputSerialization: toQuerySerialization(options.outputTextConfiguration),\n                },\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                cpkInfo: options.customerProvidedKey,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            return new BlobQueryResponse(response, {\n                abortSignal: options.abortSignal,\n                onProgress: options.onProgress,\n                onError: options.onError,\n            });\n        });\n    }\n    /**\n     * Creates a new block blob, or updates the content of an existing block blob.\n     * Updating an existing block blob overwrites any existing metadata on the blob.\n     * Partial updates are not supported; the content of the existing blob is\n     * overwritten with the new content. To perform a partial update of a block blob's,\n     * use {@link stageBlock} and {@link commitBlockList}.\n     *\n     * This is a non-parallel uploading method, please use {@link uploadFile},\n     * {@link uploadStream} or {@link uploadBrowserData} for better performance\n     * with concurrency uploading.\n     *\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-blob\n     *\n     * @param body - Blob, string, ArrayBuffer, ArrayBufferView or a function\n     *                               which returns a new Readable stream whose offset is from data source beginning.\n     * @param contentLength - Length of body in bytes. Use Buffer.byteLength() to calculate body length for a\n     *                               string including non non-Base64/Hex-encoded characters.\n     * @param options - Options to the Block Blob Upload operation.\n     * @returns Response data for the Block Blob Upload operation.\n     *\n     * Example usage:\n     *\n     * ```js\n     * const content = \"Hello world!\";\n     * const uploadBlobResponse = await blockBlobClient.upload(content, content.length);\n     * ```\n     */\n    async upload(body, contentLength, options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlockBlobClient-upload\", options, async (updatedOptions) => {\n            var _a, _b, _c;\n            return assertResponse(await this.blockBlobContext.upload(contentLength, body, {\n                abortSignal: options.abortSignal,\n                blobHttpHeaders: options.blobHTTPHeaders,\n                leaseAccessConditions: options.conditions,\n                metadata: options.metadata,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                requestOptions: {\n                    onUploadProgress: options.onProgress,\n                },\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn,\n                immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode,\n                legalHold: options.legalHold,\n                tier: toAccessTier(options.tier),\n                blobTagsString: toBlobTagsString(options.tags),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Creates a new Block Blob where the contents of the blob are read from a given URL.\n     * This API is supported beginning with the 2020-04-08 version. Partial updates\n     * are not supported with Put Blob from URL; the content of an existing blob is overwritten with\n     * the content of the new blob.  To perform partial updates to a block blob’s contents using a\n     * source URL, use {@link stageBlockFromURL} and {@link commitBlockList}.\n     *\n     * @param sourceURL - Specifies the URL of the blob. The value\n     *                           may be a URL of up to 2 KB in length that specifies a blob.\n     *                           The value should be URL-encoded as it would appear\n     *                           in a request URI. The source blob must either be public\n     *                           or must be authenticated via a shared access signature.\n     *                           If the source blob is public, no authentication is required\n     *                           to perform the operation. Here are some examples of source object URLs:\n     *                           - https://myaccount.blob.core.windows.net/mycontainer/myblob\n     *                           - https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot=<DateTime>\n     * @param options - Optional parameters.\n     */\n    async syncUploadFromURL(sourceURL, options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlockBlobClient-syncUploadFromURL\", options, async (updatedOptions) => {\n            var _a, _b, _c, _d, _e, _f;\n            return assertResponse(await this.blockBlobContext.putBlobFromUrl(0, sourceURL, Object.assign(Object.assign({}, options), { blobHttpHeaders: options.blobHTTPHeaders, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), sourceModifiedAccessConditions: {\n                    sourceIfMatch: (_b = options.sourceConditions) === null || _b === void 0 ? void 0 : _b.ifMatch,\n                    sourceIfModifiedSince: (_c = options.sourceConditions) === null || _c === void 0 ? void 0 : _c.ifModifiedSince,\n                    sourceIfNoneMatch: (_d = options.sourceConditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch,\n                    sourceIfUnmodifiedSince: (_e = options.sourceConditions) === null || _e === void 0 ? void 0 : _e.ifUnmodifiedSince,\n                    sourceIfTags: (_f = options.sourceConditions) === null || _f === void 0 ? void 0 : _f.tagConditions,\n                }, cpkInfo: options.customerProvidedKey, copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization), tier: toAccessTier(options.tier), blobTagsString: toBlobTagsString(options.tags), copySourceTags: options.copySourceTags, tracingOptions: updatedOptions.tracingOptions })));\n        });\n    }\n    /**\n     * Uploads the specified block to the block blob's \"staging area\" to be later\n     * committed by a call to commitBlockList.\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-block\n     *\n     * @param blockId - A 64-byte value that is base64-encoded\n     * @param body - Data to upload to the staging area.\n     * @param contentLength - Number of bytes to upload.\n     * @param options - Options to the Block Blob Stage Block operation.\n     * @returns Response data for the Block Blob Stage Block operation.\n     */\n    async stageBlock(blockId, body, contentLength, options = {}) {\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlockBlobClient-stageBlock\", options, async (updatedOptions) => {\n            return assertResponse(await this.blockBlobContext.stageBlock(blockId, contentLength, body, {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                requestOptions: {\n                    onUploadProgress: options.onProgress,\n                },\n                transactionalContentMD5: options.transactionalContentMD5,\n                transactionalContentCrc64: options.transactionalContentCrc64,\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * The Stage Block From URL operation creates a new block to be committed as part\n     * of a blob where the contents are read from a URL.\n     * This API is available starting in version 2018-03-28.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/put-block-from-url\n     *\n     * @param blockId - A 64-byte value that is base64-encoded\n     * @param sourceURL - Specifies the URL of the blob. The value\n     *                           may be a URL of up to 2 KB in length that specifies a blob.\n     *                           The value should be URL-encoded as it would appear\n     *                           in a request URI. The source blob must either be public\n     *                           or must be authenticated via a shared access signature.\n     *                           If the source blob is public, no authentication is required\n     *                           to perform the operation. Here are some examples of source object URLs:\n     *                           - https://myaccount.blob.core.windows.net/mycontainer/myblob\n     *                           - https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot=<DateTime>\n     * @param offset - From which position of the blob to download, greater than or equal to 0\n     * @param count - How much data to be downloaded, greater than 0. Will download to the end when undefined\n     * @param options - Options to the Block Blob Stage Block From URL operation.\n     * @returns Response data for the Block Blob Stage Block From URL operation.\n     */\n    async stageBlockFromURL(blockId, sourceURL, offset = 0, count, options = {}) {\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlockBlobClient-stageBlockFromURL\", options, async (updatedOptions) => {\n            return assertResponse(await this.blockBlobContext.stageBlockFromURL(blockId, 0, sourceURL, {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                sourceContentMD5: options.sourceContentMD5,\n                sourceContentCrc64: options.sourceContentCrc64,\n                sourceRange: offset === 0 && !count ? undefined : rangeToString({ offset, count }),\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Writes a blob by specifying the list of block IDs that make up the blob.\n     * In order to be written as part of a blob, a block must have been successfully written\n     * to the server in a prior {@link stageBlock} operation. You can call {@link commitBlockList} to\n     * update a blob by uploading only those blocks that have changed, then committing the new and existing\n     * blocks together. Any blocks not specified in the block list and permanently deleted.\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-block-list\n     *\n     * @param blocks -  Array of 64-byte value that is base64-encoded\n     * @param options - Options to the Block Blob Commit Block List operation.\n     * @returns Response data for the Block Blob Commit Block List operation.\n     */\n    async commitBlockList(blocks, options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"BlockBlobClient-commitBlockList\", options, async (updatedOptions) => {\n            var _a, _b, _c;\n            return assertResponse(await this.blockBlobContext.commitBlockList({ latest: blocks }, {\n                abortSignal: options.abortSignal,\n                blobHttpHeaders: options.blobHTTPHeaders,\n                leaseAccessConditions: options.conditions,\n                metadata: options.metadata,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn,\n                immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode,\n                legalHold: options.legalHold,\n                tier: toAccessTier(options.tier),\n                blobTagsString: toBlobTagsString(options.tags),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Returns the list of blocks that have been uploaded as part of a block blob\n     * using the specified block list filter.\n     * @see https://learn.microsoft.com/rest/api/storageservices/get-block-list\n     *\n     * @param listType - Specifies whether to return the list of committed blocks,\n     *                                        the list of uncommitted blocks, or both lists together.\n     * @param options - Options to the Block Blob Get Block List operation.\n     * @returns Response data for the Block Blob Get Block List operation.\n     */\n    async getBlockList(listType, options = {}) {\n        return tracingClient.withSpan(\"BlockBlobClient-getBlockList\", options, async (updatedOptions) => {\n            var _a;\n            const res = assertResponse(await this.blockBlobContext.getBlockList(listType, {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            if (!res.committedBlocks) {\n                res.committedBlocks = [];\n            }\n            if (!res.uncommittedBlocks) {\n                res.uncommittedBlocks = [];\n            }\n            return res;\n        });\n    }\n    // High level functions\n    /**\n     * Uploads a Buffer(Node.js)/Blob(browsers)/ArrayBuffer/ArrayBufferView object to a BlockBlob.\n     *\n     * When data length is no more than the specifiled {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is\n     * {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload.\n     * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList}\n     * to commit the block list.\n     *\n     * A common {@link BlockBlobParallelUploadOptions.blobHTTPHeaders} option to set is\n     * `blobContentType`, enabling the browser to provide\n     * functionality based on file type.\n     *\n     * @param data - Buffer(Node.js), Blob, ArrayBuffer or ArrayBufferView\n     * @param options -\n     */\n    async uploadData(data, options = {}) {\n        return tracingClient.withSpan(\"BlockBlobClient-uploadData\", options, async (updatedOptions) => {\n            if (isNode) {\n                let buffer;\n                if (data instanceof Buffer) {\n                    buffer = data;\n                }\n                else if (data instanceof ArrayBuffer) {\n                    buffer = Buffer.from(data);\n                }\n                else {\n                    data = data;\n                    buffer = Buffer.from(data.buffer, data.byteOffset, data.byteLength);\n                }\n                return this.uploadSeekableInternal((offset, size) => buffer.slice(offset, offset + size), buffer.byteLength, updatedOptions);\n            }\n            else {\n                const browserBlob = new Blob([data]);\n                return this.uploadSeekableInternal((offset, size) => browserBlob.slice(offset, offset + size), browserBlob.size, updatedOptions);\n            }\n        });\n    }\n    /**\n     * ONLY AVAILABLE IN BROWSERS.\n     *\n     * Uploads a browser Blob/File/ArrayBuffer/ArrayBufferView object to block blob.\n     *\n     * When buffer length lesser than or equal to 256MB, this method will use 1 upload call to finish the upload.\n     * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call\n     * {@link commitBlockList} to commit the block list.\n     *\n     * A common {@link BlockBlobParallelUploadOptions.blobHTTPHeaders} option to set is\n     * `blobContentType`, enabling the browser to provide\n     * functionality based on file type.\n     *\n     * @deprecated Use {@link uploadData} instead.\n     *\n     * @param browserData - Blob, File, ArrayBuffer or ArrayBufferView\n     * @param options - Options to upload browser data.\n     * @returns Response data for the Blob Upload operation.\n     */\n    async uploadBrowserData(browserData, options = {}) {\n        return tracingClient.withSpan(\"BlockBlobClient-uploadBrowserData\", options, async (updatedOptions) => {\n            const browserBlob = new Blob([browserData]);\n            return this.uploadSeekableInternal((offset, size) => browserBlob.slice(offset, offset + size), browserBlob.size, updatedOptions);\n        });\n    }\n    /**\n     *\n     * Uploads data to block blob. Requires a bodyFactory as the data source,\n     * which need to return a {@link HttpRequestBody} object with the offset and size provided.\n     *\n     * When data length is no more than the specified {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is\n     * {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload.\n     * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList}\n     * to commit the block list.\n     *\n     * @param bodyFactory -\n     * @param size - size of the data to upload.\n     * @param options - Options to Upload to Block Blob operation.\n     * @returns Response data for the Blob Upload operation.\n     */\n    async uploadSeekableInternal(bodyFactory, size, options = {}) {\n        var _a, _b;\n        let blockSize = (_a = options.blockSize) !== null && _a !== void 0 ? _a : 0;\n        if (blockSize < 0 || blockSize > BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES) {\n            throw new RangeError(`blockSize option must be >= 0 and <= ${BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES}`);\n        }\n        const maxSingleShotSize = (_b = options.maxSingleShotSize) !== null && _b !== void 0 ? _b : BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES;\n        if (maxSingleShotSize < 0 || maxSingleShotSize > BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES) {\n            throw new RangeError(`maxSingleShotSize option must be >= 0 and <= ${BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}`);\n        }\n        if (blockSize === 0) {\n            if (size > BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES * BLOCK_BLOB_MAX_BLOCKS) {\n                throw new RangeError(`${size} is too larger to upload to a block blob.`);\n            }\n            if (size > maxSingleShotSize) {\n                blockSize = Math.ceil(size / BLOCK_BLOB_MAX_BLOCKS);\n                if (blockSize < DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES) {\n                    blockSize = DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES;\n                }\n            }\n        }\n        if (!options.blobHTTPHeaders) {\n            options.blobHTTPHeaders = {};\n        }\n        if (!options.conditions) {\n            options.conditions = {};\n        }\n        return tracingClient.withSpan(\"BlockBlobClient-uploadSeekableInternal\", options, async (updatedOptions) => {\n            if (size <= maxSingleShotSize) {\n                return assertResponse(await this.upload(bodyFactory(0, size), size, updatedOptions));\n            }\n            const numBlocks = Math.floor((size - 1) / blockSize) + 1;\n            if (numBlocks > BLOCK_BLOB_MAX_BLOCKS) {\n                throw new RangeError(`The buffer's size is too big or the BlockSize is too small;` +\n                    `the number of blocks must be <= ${BLOCK_BLOB_MAX_BLOCKS}`);\n            }\n            const blockList = [];\n            const blockIDPrefix = randomUUID();\n            let transferProgress = 0;\n            const batch = new Batch(options.concurrency);\n            for (let i = 0; i < numBlocks; i++) {\n                batch.addOperation(async () => {\n                    const blockID = generateBlockID(blockIDPrefix, i);\n                    const start = blockSize * i;\n                    const end = i === numBlocks - 1 ? size : start + blockSize;\n                    const contentLength = end - start;\n                    blockList.push(blockID);\n                    await this.stageBlock(blockID, bodyFactory(start, contentLength), contentLength, {\n                        abortSignal: options.abortSignal,\n                        conditions: options.conditions,\n                        encryptionScope: options.encryptionScope,\n                        tracingOptions: updatedOptions.tracingOptions,\n                    });\n                    // Update progress after block is successfully uploaded to server, in case of block trying\n                    // TODO: Hook with convenience layer progress event in finer level\n                    transferProgress += contentLength;\n                    if (options.onProgress) {\n                        options.onProgress({\n                            loadedBytes: transferProgress,\n                        });\n                    }\n                });\n            }\n            await batch.do();\n            return this.commitBlockList(blockList, updatedOptions);\n        });\n    }\n    /**\n     * ONLY AVAILABLE IN NODE.JS RUNTIME.\n     *\n     * Uploads a local file in blocks to a block blob.\n     *\n     * When file size lesser than or equal to 256MB, this method will use 1 upload call to finish the upload.\n     * Otherwise, this method will call stageBlock to upload blocks, and finally call commitBlockList\n     * to commit the block list.\n     *\n     * @param filePath - Full path of local file\n     * @param options - Options to Upload to Block Blob operation.\n     * @returns Response data for the Blob Upload operation.\n     */\n    async uploadFile(filePath, options = {}) {\n        return tracingClient.withSpan(\"BlockBlobClient-uploadFile\", options, async (updatedOptions) => {\n            const size = (await fsStat(filePath)).size;\n            return this.uploadSeekableInternal((offset, count) => {\n                return () => fsCreateReadStream(filePath, {\n                    autoClose: true,\n                    end: count ? offset + count - 1 : Infinity,\n                    start: offset,\n                });\n            }, size, Object.assign(Object.assign({}, options), { tracingOptions: updatedOptions.tracingOptions }));\n        });\n    }\n    /**\n     * ONLY AVAILABLE IN NODE.JS RUNTIME.\n     *\n     * Uploads a Node.js Readable stream into block blob.\n     *\n     * PERFORMANCE IMPROVEMENT TIPS:\n     * * Input stream highWaterMark is better to set a same value with bufferSize\n     *    parameter, which will avoid Buffer.concat() operations.\n     *\n     * @param stream - Node.js Readable stream\n     * @param bufferSize - Size of every buffer allocated, also the block size in the uploaded block blob. Default value is 8MB\n     * @param maxConcurrency -  Max concurrency indicates the max number of buffers that can be allocated,\n     *                                 positive correlation with max uploading concurrency. Default value is 5\n     * @param options - Options to Upload Stream to Block Blob operation.\n     * @returns Response data for the Blob Upload operation.\n     */\n    async uploadStream(stream, bufferSize = DEFAULT_BLOCK_BUFFER_SIZE_BYTES, maxConcurrency = 5, options = {}) {\n        if (!options.blobHTTPHeaders) {\n            options.blobHTTPHeaders = {};\n        }\n        if (!options.conditions) {\n            options.conditions = {};\n        }\n        return tracingClient.withSpan(\"BlockBlobClient-uploadStream\", options, async (updatedOptions) => {\n            let blockNum = 0;\n            const blockIDPrefix = randomUUID();\n            let transferProgress = 0;\n            const blockList = [];\n            const scheduler = new BufferScheduler(stream, bufferSize, maxConcurrency, async (body, length) => {\n                const blockID = generateBlockID(blockIDPrefix, blockNum);\n                blockList.push(blockID);\n                blockNum++;\n                await this.stageBlock(blockID, body, length, {\n                    customerProvidedKey: options.customerProvidedKey,\n                    conditions: options.conditions,\n                    encryptionScope: options.encryptionScope,\n                    tracingOptions: updatedOptions.tracingOptions,\n                });\n                // Update progress after block is successfully uploaded to server, in case of block trying\n                transferProgress += length;\n                if (options.onProgress) {\n                    options.onProgress({ loadedBytes: transferProgress });\n                }\n            }, \n            // concurrency should set a smaller value than maxConcurrency, which is helpful to\n            // reduce the possibility when a outgoing handler waits for stream data, in\n            // this situation, outgoing handlers are blocked.\n            // Outgoing queue shouldn't be empty.\n            Math.ceil((maxConcurrency / 4) * 3));\n            await scheduler.do();\n            return assertResponse(await this.commitBlockList(blockList, Object.assign(Object.assign({}, options), { tracingOptions: updatedOptions.tracingOptions })));\n        });\n    }\n}\n/**\n * PageBlobClient defines a set of operations applicable to page blobs.\n */\nclass PageBlobClient extends BlobClient {\n    constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead.\n        //   super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options);\n        let pipeline;\n        let url;\n        options = options || {};\n        if (isPipelineLike(credentialOrPipelineOrContainerName)) {\n            // (url: string, pipeline: Pipeline)\n            url = urlOrConnectionString;\n            pipeline = credentialOrPipelineOrContainerName;\n        }\n        else if ((isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) ||\n            credentialOrPipelineOrContainerName instanceof AnonymousCredential ||\n            isTokenCredential(credentialOrPipelineOrContainerName)) {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            url = urlOrConnectionString;\n            options = blobNameOrOptions;\n            pipeline = newPipeline(credentialOrPipelineOrContainerName, options);\n        }\n        else if (!credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName !== \"string\") {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            // The second parameter is undefined. Use anonymous credential.\n            url = urlOrConnectionString;\n            pipeline = newPipeline(new AnonymousCredential(), options);\n        }\n        else if (credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName === \"string\" &&\n            blobNameOrOptions &&\n            typeof blobNameOrOptions === \"string\") {\n            // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions)\n            const containerName = credentialOrPipelineOrContainerName;\n            const blobName = blobNameOrOptions;\n            const extractedCreds = extractConnectionStringParts(urlOrConnectionString);\n            if (extractedCreds.kind === \"AccountConnString\") {\n                if (isNode) {\n                    const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey);\n                    url = appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName));\n                    if (!options.proxyOptions) {\n                        options.proxyOptions = getDefaultProxySettings(extractedCreds.proxyUri);\n                    }\n                    pipeline = newPipeline(sharedKeyCredential, options);\n                }\n                else {\n                    throw new Error(\"Account connection string is only supported in Node.js environment\");\n                }\n            }\n            else if (extractedCreds.kind === \"SASConnString\") {\n                url =\n                    appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) +\n                        \"?\" +\n                        extractedCreds.accountSas;\n                pipeline = newPipeline(new AnonymousCredential(), options);\n            }\n            else {\n                throw new Error(\"Connection string must be either an Account connection string or a SAS connection string\");\n            }\n        }\n        else {\n            throw new Error(\"Expecting non-empty strings for containerName and blobName parameters\");\n        }\n        super(url, pipeline);\n        this.pageBlobContext = this.storageClientContext.pageBlob;\n    }\n    /**\n     * Creates a new PageBlobClient object identical to the source but with the\n     * specified snapshot timestamp.\n     * Provide \"\" will remove the snapshot and return a Client to the base blob.\n     *\n     * @param snapshot - The snapshot timestamp.\n     * @returns A new PageBlobClient object identical to the source but with the specified snapshot timestamp.\n     */\n    withSnapshot(snapshot) {\n        return new PageBlobClient(setURLParameter(this.url, URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline);\n    }\n    /**\n     * Creates a page blob of the specified length. Call uploadPages to upload data\n     * data to a page blob.\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-blob\n     *\n     * @param size - size of the page blob.\n     * @param options - Options to the Page Blob Create operation.\n     * @returns Response data for the Page Blob Create operation.\n     */\n    async create(size, options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"PageBlobClient-create\", options, async (updatedOptions) => {\n            var _a, _b, _c;\n            return assertResponse(await this.pageBlobContext.create(0, size, {\n                abortSignal: options.abortSignal,\n                blobHttpHeaders: options.blobHTTPHeaders,\n                blobSequenceNumber: options.blobSequenceNumber,\n                leaseAccessConditions: options.conditions,\n                metadata: options.metadata,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn,\n                immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode,\n                legalHold: options.legalHold,\n                tier: toAccessTier(options.tier),\n                blobTagsString: toBlobTagsString(options.tags),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Creates a page blob of the specified length. Call uploadPages to upload data\n     * data to a page blob. If the blob with the same name already exists, the content\n     * of the existing blob will remain unchanged.\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-blob\n     *\n     * @param size - size of the page blob.\n     * @param options -\n     */\n    async createIfNotExists(size, options = {}) {\n        return tracingClient.withSpan(\"PageBlobClient-createIfNotExists\", options, async (updatedOptions) => {\n            var _a, _b;\n            try {\n                const conditions = { ifNoneMatch: ETagAny };\n                const res = assertResponse(await this.create(size, Object.assign(Object.assign({}, options), { conditions, tracingOptions: updatedOptions.tracingOptions })));\n                return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response });\n            }\n            catch (e) {\n                if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === \"BlobAlreadyExists\") {\n                    return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response });\n                }\n                throw e;\n            }\n        });\n    }\n    /**\n     * Writes 1 or more pages to the page blob. The start and end offsets must be a multiple of 512.\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-page\n     *\n     * @param body - Data to upload\n     * @param offset - Offset of destination page blob\n     * @param count - Content length of the body, also number of bytes to be uploaded\n     * @param options - Options to the Page Blob Upload Pages operation.\n     * @returns Response data for the Page Blob Upload Pages operation.\n     */\n    async uploadPages(body, offset, count, options = {}) {\n        options.conditions = options.conditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"PageBlobClient-uploadPages\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.pageBlobContext.uploadPages(count, body, {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                requestOptions: {\n                    onUploadProgress: options.onProgress,\n                },\n                range: rangeToString({ offset, count }),\n                sequenceNumberAccessConditions: options.conditions,\n                transactionalContentMD5: options.transactionalContentMD5,\n                transactionalContentCrc64: options.transactionalContentCrc64,\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * The Upload Pages operation writes a range of pages to a page blob where the\n     * contents are read from a URL.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/put-page-from-url\n     *\n     * @param sourceURL - Specify a URL to the copy source, Shared Access Signature(SAS) maybe needed for authentication\n     * @param sourceOffset - The source offset to copy from. Pass 0 to copy from the beginning of source page blob\n     * @param destOffset - Offset of destination page blob\n     * @param count - Number of bytes to be uploaded from source page blob\n     * @param options -\n     */\n    async uploadPagesFromURL(sourceURL, sourceOffset, destOffset, count, options = {}) {\n        options.conditions = options.conditions || {};\n        options.sourceConditions = options.sourceConditions || {};\n        ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps);\n        return tracingClient.withSpan(\"PageBlobClient-uploadPagesFromURL\", options, async (updatedOptions) => {\n            var _a, _b, _c, _d, _e;\n            return assertResponse(await this.pageBlobContext.uploadPagesFromURL(sourceURL, rangeToString({ offset: sourceOffset, count }), 0, rangeToString({ offset: destOffset, count }), {\n                abortSignal: options.abortSignal,\n                sourceContentMD5: options.sourceContentMD5,\n                sourceContentCrc64: options.sourceContentCrc64,\n                leaseAccessConditions: options.conditions,\n                sequenceNumberAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                sourceModifiedAccessConditions: {\n                    sourceIfMatch: (_b = options.sourceConditions) === null || _b === void 0 ? void 0 : _b.ifMatch,\n                    sourceIfModifiedSince: (_c = options.sourceConditions) === null || _c === void 0 ? void 0 : _c.ifModifiedSince,\n                    sourceIfNoneMatch: (_d = options.sourceConditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch,\n                    sourceIfUnmodifiedSince: (_e = options.sourceConditions) === null || _e === void 0 ? void 0 : _e.ifUnmodifiedSince,\n                },\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Frees the specified pages from the page blob.\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-page\n     *\n     * @param offset - Starting byte position of the pages to clear.\n     * @param count - Number of bytes to clear.\n     * @param options - Options to the Page Blob Clear Pages operation.\n     * @returns Response data for the Page Blob Clear Pages operation.\n     */\n    async clearPages(offset = 0, count, options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"PageBlobClient-clearPages\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.pageBlobContext.clearPages(0, {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                range: rangeToString({ offset, count }),\n                sequenceNumberAccessConditions: options.conditions,\n                cpkInfo: options.customerProvidedKey,\n                encryptionScope: options.encryptionScope,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Returns the list of valid page ranges for a page blob or snapshot of a page blob.\n     * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges\n     *\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param options - Options to the Page Blob Get Ranges operation.\n     * @returns Response data for the Page Blob Get Ranges operation.\n     */\n    async getPageRanges(offset = 0, count, options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"PageBlobClient-getPageRanges\", options, async (updatedOptions) => {\n            var _a;\n            const response = assertResponse(await this.pageBlobContext.getPageRanges({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                range: rangeToString({ offset, count }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            return rangeResponseFromModel(response);\n        });\n    }\n    /**\n     * getPageRangesSegment returns a single segment of page ranges starting from the\n     * specified Marker. Use an empty Marker to start enumeration from the beginning.\n     * After getting a segment, process it, and then call getPageRangesSegment again\n     * (passing the the previously-returned Marker) to get the next segment.\n     * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges\n     *\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param marker - A string value that identifies the portion of the list to be returned with the next list operation.\n     * @param options - Options to PageBlob Get Page Ranges Segment operation.\n     */\n    async listPageRangesSegment(offset = 0, count, marker, options = {}) {\n        return tracingClient.withSpan(\"PageBlobClient-getPageRangesSegment\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.pageBlobContext.getPageRanges({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                range: rangeToString({ offset, count }),\n                marker: marker,\n                maxPageSize: options.maxPageSize,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for {@link PageBlobGetPageRangesResponseModel}\n     *\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param marker - A string value that identifies the portion of\n     *                          the get of page ranges to be returned with the next getting operation. The\n     *                          operation returns the ContinuationToken value within the response body if the\n     *                          getting operation did not return all page ranges remaining within the current page.\n     *                          The ContinuationToken value can be used as the value for\n     *                          the marker parameter in a subsequent call to request the next page of get\n     *                          items. The marker value is opaque to the client.\n     * @param options - Options to List Page Ranges operation.\n     */\n    listPageRangeItemSegments() {\n        return __asyncGenerator(this, arguments, function* listPageRangeItemSegments_1(offset = 0, count, marker, options = {}) {\n            let getPageRangeItemSegmentsResponse;\n            if (!!marker || marker === undefined) {\n                do {\n                    getPageRangeItemSegmentsResponse = yield __await(this.listPageRangesSegment(offset, count, marker, options));\n                    marker = getPageRangeItemSegmentsResponse.continuationToken;\n                    yield yield __await(yield __await(getPageRangeItemSegmentsResponse));\n                } while (marker);\n            }\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator of {@link PageRangeInfo} objects\n     *\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param options - Options to List Page Ranges operation.\n     */\n    listPageRangeItems() {\n        return __asyncGenerator(this, arguments, function* listPageRangeItems_1(offset = 0, count, options = {}) {\n            var _a, e_1, _b, _c;\n            let marker;\n            try {\n                for (var _d = true, _e = __asyncValues(this.listPageRangeItemSegments(offset, count, marker, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {\n                    _c = _f.value;\n                    _d = false;\n                    const getPageRangesSegment = _c;\n                    yield __await(yield* __asyncDelegator(__asyncValues(ExtractPageRangeInfoItems(getPageRangesSegment))));\n                }\n            }\n            catch (e_1_1) { e_1 = { error: e_1_1 }; }\n            finally {\n                try {\n                    if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));\n                }\n                finally { if (e_1) throw e_1.error; }\n            }\n        });\n    }\n    /**\n     * Returns an async iterable iterator to list of page ranges for a page blob.\n     * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges\n     *\n     *  .byPage() returns an async iterable iterator to list of page ranges for a page blob.\n     *\n     * Example using `for await` syntax:\n     *\n     * ```js\n     * // Get the pageBlobClient before you run these snippets,\n     * // Can be obtained from `blobServiceClient.getContainerClient(\"<your-container-name>\").getPageBlobClient(\"<your-blob-name>\");`\n     * let i = 1;\n     * for await (const pageRange of pageBlobClient.listPageRanges()) {\n     *   console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`);\n     * }\n     * ```\n     *\n     * Example using `iter.next()`:\n     *\n     * ```js\n     * let i = 1;\n     * let iter = pageBlobClient.listPageRanges();\n     * let pageRangeItem = await iter.next();\n     * while (!pageRangeItem.done) {\n     *   console.log(`Page range ${i++}: ${pageRangeItem.value.start} - ${pageRangeItem.value.end}, IsClear: ${pageRangeItem.value.isClear}`);\n     *   pageRangeItem = await iter.next();\n     * }\n     * ```\n     *\n     * Example using `byPage()`:\n     *\n     * ```js\n     * // passing optional maxPageSize in the page settings\n     * let i = 1;\n     * for await (const response of pageBlobClient.listPageRanges().byPage({ maxPageSize: 20 })) {\n     *   for (const pageRange of response) {\n     *     console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`);\n     *   }\n     * }\n     * ```\n     *\n     * Example using paging with a marker:\n     *\n     * ```js\n     * let i = 1;\n     * let iterator = pageBlobClient.listPageRanges().byPage({ maxPageSize: 2 });\n     * let response = (await iterator.next()).value;\n     *\n     * // Prints 2 page ranges\n     * for (const pageRange of response) {\n     *   console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`);\n     * }\n     *\n     * // Gets next marker\n     * let marker = response.continuationToken;\n     *\n     * // Passing next marker as continuationToken\n     *\n     * iterator = pageBlobClient.listPageRanges().byPage({ continuationToken: marker, maxPageSize: 10 });\n     * response = (await iterator.next()).value;\n     *\n     * // Prints 10 page ranges\n     * for (const blob of response) {\n     *   console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`);\n     * }\n     * ```\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param options - Options to the Page Blob Get Ranges operation.\n     * @returns An asyncIterableIterator that supports paging.\n     */\n    listPageRanges(offset = 0, count, options = {}) {\n        options.conditions = options.conditions || {};\n        // AsyncIterableIterator to iterate over blobs\n        const iter = this.listPageRangeItems(offset, count, options);\n        return {\n            /**\n             * The next method, part of the iteration protocol\n             */\n            next() {\n                return iter.next();\n            },\n            /**\n             * The connection to the async iterator, part of the iteration protocol\n             */\n            [Symbol.asyncIterator]() {\n                return this;\n            },\n            /**\n             * Return an AsyncIterableIterator that works a page at a time\n             */\n            byPage: (settings = {}) => {\n                return this.listPageRangeItemSegments(offset, count, settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, options));\n            },\n        };\n    }\n    /**\n     * Gets the collection of page ranges that differ between a specified snapshot and this page blob.\n     * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges\n     *\n     * @param offset - Starting byte position of the page blob\n     * @param count - Number of bytes to get ranges diff.\n     * @param prevSnapshot - Timestamp of snapshot to retrieve the difference.\n     * @param options - Options to the Page Blob Get Page Ranges Diff operation.\n     * @returns Response data for the Page Blob Get Page Range Diff operation.\n     */\n    async getPageRangesDiff(offset, count, prevSnapshot, options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"PageBlobClient-getPageRangesDiff\", options, async (updatedOptions) => {\n            var _a;\n            const result = assertResponse(await this.pageBlobContext.getPageRangesDiff({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                prevsnapshot: prevSnapshot,\n                range: rangeToString({ offset, count }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            return rangeResponseFromModel(result);\n        });\n    }\n    /**\n     * getPageRangesDiffSegment returns a single segment of page ranges starting from the\n     * specified Marker for difference between previous snapshot and the target page blob.\n     * Use an empty Marker to start enumeration from the beginning.\n     * After getting a segment, process it, and then call getPageRangesDiffSegment again\n     * (passing the the previously-returned Marker) to get the next segment.\n     * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges\n     *\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param prevSnapshotOrUrl - Timestamp of snapshot to retrieve the difference or URL of snapshot to retrieve the difference.\n     * @param marker - A string value that identifies the portion of the get to be returned with the next get operation.\n     * @param options - Options to the Page Blob Get Page Ranges Diff operation.\n     */\n    async listPageRangesDiffSegment(offset, count, prevSnapshotOrUrl, marker, options = {}) {\n        return tracingClient.withSpan(\"PageBlobClient-getPageRangesDiffSegment\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.pageBlobContext.getPageRangesDiff({\n                abortSignal: options === null || options === void 0 ? void 0 : options.abortSignal,\n                leaseAccessConditions: options === null || options === void 0 ? void 0 : options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options === null || options === void 0 ? void 0 : options.conditions), { ifTags: (_a = options === null || options === void 0 ? void 0 : options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                prevsnapshot: prevSnapshotOrUrl,\n                range: rangeToString({\n                    offset: offset,\n                    count: count,\n                }),\n                marker: marker,\n                maxPageSize: options === null || options === void 0 ? void 0 : options.maxPageSize,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for {@link PageBlobGetPageRangesDiffResponseModel}\n     *\n     *\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param prevSnapshotOrUrl - Timestamp of snapshot to retrieve the difference or URL of snapshot to retrieve the difference.\n     * @param marker - A string value that identifies the portion of\n     *                          the get of page ranges to be returned with the next getting operation. The\n     *                          operation returns the ContinuationToken value within the response body if the\n     *                          getting operation did not return all page ranges remaining within the current page.\n     *                          The ContinuationToken value can be used as the value for\n     *                          the marker parameter in a subsequent call to request the next page of get\n     *                          items. The marker value is opaque to the client.\n     * @param options - Options to the Page Blob Get Page Ranges Diff operation.\n     */\n    listPageRangeDiffItemSegments(offset, count, prevSnapshotOrUrl, marker, options) {\n        return __asyncGenerator(this, arguments, function* listPageRangeDiffItemSegments_1() {\n            let getPageRangeItemSegmentsResponse;\n            if (!!marker || marker === undefined) {\n                do {\n                    getPageRangeItemSegmentsResponse = yield __await(this.listPageRangesDiffSegment(offset, count, prevSnapshotOrUrl, marker, options));\n                    marker = getPageRangeItemSegmentsResponse.continuationToken;\n                    yield yield __await(yield __await(getPageRangeItemSegmentsResponse));\n                } while (marker);\n            }\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator of {@link PageRangeInfo} objects\n     *\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param prevSnapshotOrUrl - Timestamp of snapshot to retrieve the difference or URL of snapshot to retrieve the difference.\n     * @param options - Options to the Page Blob Get Page Ranges Diff operation.\n     */\n    listPageRangeDiffItems(offset, count, prevSnapshotOrUrl, options) {\n        return __asyncGenerator(this, arguments, function* listPageRangeDiffItems_1() {\n            var _a, e_2, _b, _c;\n            let marker;\n            try {\n                for (var _d = true, _e = __asyncValues(this.listPageRangeDiffItemSegments(offset, count, prevSnapshotOrUrl, marker, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {\n                    _c = _f.value;\n                    _d = false;\n                    const getPageRangesSegment = _c;\n                    yield __await(yield* __asyncDelegator(__asyncValues(ExtractPageRangeInfoItems(getPageRangesSegment))));\n                }\n            }\n            catch (e_2_1) { e_2 = { error: e_2_1 }; }\n            finally {\n                try {\n                    if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));\n                }\n                finally { if (e_2) throw e_2.error; }\n            }\n        });\n    }\n    /**\n     * Returns an async iterable iterator to list of page ranges that differ between a specified snapshot and this page blob.\n     * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges\n     *\n     *  .byPage() returns an async iterable iterator to list of page ranges that differ between a specified snapshot and this page blob.\n     *\n     * Example using `for await` syntax:\n     *\n     * ```js\n     * // Get the pageBlobClient before you run these snippets,\n     * // Can be obtained from `blobServiceClient.getContainerClient(\"<your-container-name>\").getPageBlobClient(\"<your-blob-name>\");`\n     * let i = 1;\n     * for await (const pageRange of pageBlobClient.listPageRangesDiff()) {\n     *   console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`);\n     * }\n     * ```\n     *\n     * Example using `iter.next()`:\n     *\n     * ```js\n     * let i = 1;\n     * let iter = pageBlobClient.listPageRangesDiff();\n     * let pageRangeItem = await iter.next();\n     * while (!pageRangeItem.done) {\n     *   console.log(`Page range ${i++}: ${pageRangeItem.value.start} - ${pageRangeItem.value.end}, IsClear: ${pageRangeItem.value.isClear}`);\n     *   pageRangeItem = await iter.next();\n     * }\n     * ```\n     *\n     * Example using `byPage()`:\n     *\n     * ```js\n     * // passing optional maxPageSize in the page settings\n     * let i = 1;\n     * for await (const response of pageBlobClient.listPageRangesDiff().byPage({ maxPageSize: 20 })) {\n     *   for (const pageRange of response) {\n     *     console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`);\n     *   }\n     * }\n     * ```\n     *\n     * Example using paging with a marker:\n     *\n     * ```js\n     * let i = 1;\n     * let iterator = pageBlobClient.listPageRangesDiff().byPage({ maxPageSize: 2 });\n     * let response = (await iterator.next()).value;\n     *\n     * // Prints 2 page ranges\n     * for (const pageRange of response) {\n     *   console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`);\n     * }\n     *\n     * // Gets next marker\n     * let marker = response.continuationToken;\n     *\n     * // Passing next marker as continuationToken\n     *\n     * iterator = pageBlobClient.listPageRangesDiff().byPage({ continuationToken: marker, maxPageSize: 10 });\n     * response = (await iterator.next()).value;\n     *\n     * // Prints 10 page ranges\n     * for (const blob of response) {\n     *   console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`);\n     * }\n     * ```\n     * @param offset - Starting byte position of the page ranges.\n     * @param count - Number of bytes to get.\n     * @param prevSnapshot - Timestamp of snapshot to retrieve the difference.\n     * @param options - Options to the Page Blob Get Ranges operation.\n     * @returns An asyncIterableIterator that supports paging.\n     */\n    listPageRangesDiff(offset, count, prevSnapshot, options = {}) {\n        options.conditions = options.conditions || {};\n        // AsyncIterableIterator to iterate over blobs\n        const iter = this.listPageRangeDiffItems(offset, count, prevSnapshot, Object.assign({}, options));\n        return {\n            /**\n             * The next method, part of the iteration protocol\n             */\n            next() {\n                return iter.next();\n            },\n            /**\n             * The connection to the async iterator, part of the iteration protocol\n             */\n            [Symbol.asyncIterator]() {\n                return this;\n            },\n            /**\n             * Return an AsyncIterableIterator that works a page at a time\n             */\n            byPage: (settings = {}) => {\n                return this.listPageRangeDiffItemSegments(offset, count, prevSnapshot, settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, options));\n            },\n        };\n    }\n    /**\n     * Gets the collection of page ranges that differ between a specified snapshot and this page blob for managed disks.\n     * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges\n     *\n     * @param offset - Starting byte position of the page blob\n     * @param count - Number of bytes to get ranges diff.\n     * @param prevSnapshotUrl - URL of snapshot to retrieve the difference.\n     * @param options - Options to the Page Blob Get Page Ranges Diff operation.\n     * @returns Response data for the Page Blob Get Page Range Diff operation.\n     */\n    async getPageRangesDiffForManagedDisks(offset, count, prevSnapshotUrl, options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"PageBlobClient-GetPageRangesDiffForManagedDisks\", options, async (updatedOptions) => {\n            var _a;\n            const response = assertResponse(await this.pageBlobContext.getPageRangesDiff({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                prevSnapshotUrl,\n                range: rangeToString({ offset, count }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            return rangeResponseFromModel(response);\n        });\n    }\n    /**\n     * Resizes the page blob to the specified size (which must be a multiple of 512).\n     * @see https://learn.microsoft.com/rest/api/storageservices/set-blob-properties\n     *\n     * @param size - Target size\n     * @param options - Options to the Page Blob Resize operation.\n     * @returns Response data for the Page Blob Resize operation.\n     */\n    async resize(size, options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"PageBlobClient-resize\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.pageBlobContext.resize(size, {\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                encryptionScope: options.encryptionScope,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Sets a page blob's sequence number.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/set-blob-properties\n     *\n     * @param sequenceNumberAction - Indicates how the service should modify the blob's sequence number.\n     * @param sequenceNumber - Required if sequenceNumberAction is max or update\n     * @param options - Options to the Page Blob Update Sequence Number operation.\n     * @returns Response data for the Page Blob Update Sequence Number operation.\n     */\n    async updateSequenceNumber(sequenceNumberAction, sequenceNumber, options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"PageBlobClient-updateSequenceNumber\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.pageBlobContext.updateSequenceNumber(sequenceNumberAction, {\n                abortSignal: options.abortSignal,\n                blobSequenceNumber: sequenceNumber,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Begins an operation to start an incremental copy from one page blob's snapshot to this page blob.\n     * The snapshot is copied such that only the differential changes between the previously\n     * copied snapshot are transferred to the destination.\n     * The copied snapshots are complete copies of the original snapshot and can be read or copied from as usual.\n     * @see https://learn.microsoft.com/rest/api/storageservices/incremental-copy-blob\n     * @see https://learn.microsoft.com/en-us/azure/virtual-machines/windows/incremental-snapshots\n     *\n     * @param copySource - Specifies the name of the source page blob snapshot. For example,\n     *                            https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot=<DateTime>\n     * @param options - Options to the Page Blob Copy Incremental operation.\n     * @returns Response data for the Page Blob Copy Incremental operation.\n     */\n    async startCopyIncremental(copySource, options = {}) {\n        return tracingClient.withSpan(\"PageBlobClient-startCopyIncremental\", options, async (updatedOptions) => {\n            var _a;\n            return assertResponse(await this.pageBlobContext.copyIncremental(copySource, {\n                abortSignal: options.abortSignal,\n                modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }),\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nasync function getBodyAsText(batchResponse) {\n    let buffer = Buffer.alloc(BATCH_MAX_PAYLOAD_IN_BYTES);\n    const responseLength = await streamToBuffer2(batchResponse.readableStreamBody, buffer);\n    // Slice the buffer to trim the empty ending.\n    buffer = buffer.slice(0, responseLength);\n    return buffer.toString();\n}\nfunction utf8ByteLength(str) {\n    return Buffer.byteLength(str);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nconst HTTP_HEADER_DELIMITER = \": \";\nconst SPACE_DELIMITER = \" \";\nconst NOT_FOUND = -1;\n/**\n * Util class for parsing batch response.\n */\nclass BatchResponseParser {\n    constructor(batchResponse, subRequests) {\n        if (!batchResponse || !batchResponse.contentType) {\n            // In special case(reported), server may return invalid content-type which could not be parsed.\n            throw new RangeError(\"batchResponse is malformed or doesn't contain valid content-type.\");\n        }\n        if (!subRequests || subRequests.size === 0) {\n            // This should be prevent during coding.\n            throw new RangeError(\"Invalid state: subRequests is not provided or size is 0.\");\n        }\n        this.batchResponse = batchResponse;\n        this.subRequests = subRequests;\n        this.responseBatchBoundary = this.batchResponse.contentType.split(\"=\")[1];\n        this.perResponsePrefix = `--${this.responseBatchBoundary}${HTTP_LINE_ENDING}`;\n        this.batchResponseEnding = `--${this.responseBatchBoundary}--`;\n    }\n    // For example of response, please refer to https://learn.microsoft.com/en-us/rest/api/storageservices/blob-batch#response\n    async parseBatchResponse() {\n        // When logic reach here, suppose batch request has already succeeded with 202, so we can further parse\n        // sub request's response.\n        if (this.batchResponse._response.status !== HTTPURLConnection.HTTP_ACCEPTED) {\n            throw new Error(`Invalid state: batch request failed with status: '${this.batchResponse._response.status}'.`);\n        }\n        const responseBodyAsText = await getBodyAsText(this.batchResponse);\n        const subResponses = responseBodyAsText\n            .split(this.batchResponseEnding)[0] // string after ending is useless\n            .split(this.perResponsePrefix)\n            .slice(1); // string before first response boundary is useless\n        const subResponseCount = subResponses.length;\n        // Defensive coding in case of potential error parsing.\n        // Note: subResponseCount == 1 is special case where sub request is invalid.\n        // We try to prevent such cases through early validation, e.g. validate sub request count >= 1.\n        // While in unexpected sub request invalid case, we allow sub response to be parsed and return to user.\n        if (subResponseCount !== this.subRequests.size && subResponseCount !== 1) {\n            throw new Error(\"Invalid state: sub responses' count is not equal to sub requests' count.\");\n        }\n        const deserializedSubResponses = new Array(subResponseCount);\n        let subResponsesSucceededCount = 0;\n        let subResponsesFailedCount = 0;\n        // Parse sub subResponses.\n        for (let index = 0; index < subResponseCount; index++) {\n            const subResponse = subResponses[index];\n            const deserializedSubResponse = {};\n            deserializedSubResponse.headers = toHttpHeadersLike(createHttpHeaders());\n            const responseLines = subResponse.split(`${HTTP_LINE_ENDING}`);\n            let subRespHeaderStartFound = false;\n            let subRespHeaderEndFound = false;\n            let subRespFailed = false;\n            let contentId = NOT_FOUND;\n            for (const responseLine of responseLines) {\n                if (!subRespHeaderStartFound) {\n                    // Convention line to indicate content ID\n                    if (responseLine.startsWith(HeaderConstants.CONTENT_ID)) {\n                        contentId = parseInt(responseLine.split(HTTP_HEADER_DELIMITER)[1]);\n                    }\n                    // Http version line with status code indicates the start of sub request's response.\n                    // Example: HTTP/1.1 202 Accepted\n                    if (responseLine.startsWith(HTTP_VERSION_1_1)) {\n                        subRespHeaderStartFound = true;\n                        const tokens = responseLine.split(SPACE_DELIMITER);\n                        deserializedSubResponse.status = parseInt(tokens[1]);\n                        deserializedSubResponse.statusMessage = tokens.slice(2).join(SPACE_DELIMITER);\n                    }\n                    continue; // Skip convention headers not specifically for sub request i.e. Content-Type: application/http and Content-ID: *\n                }\n                if (responseLine.trim() === \"\") {\n                    // Sub response's header start line already found, and the first empty line indicates header end line found.\n                    if (!subRespHeaderEndFound) {\n                        subRespHeaderEndFound = true;\n                    }\n                    continue; // Skip empty line\n                }\n                // Note: when code reach here, it indicates subRespHeaderStartFound == true\n                if (!subRespHeaderEndFound) {\n                    if (responseLine.indexOf(HTTP_HEADER_DELIMITER) === -1) {\n                        // Defensive coding to prevent from missing valuable lines.\n                        throw new Error(`Invalid state: find non-empty line '${responseLine}' without HTTP header delimiter '${HTTP_HEADER_DELIMITER}'.`);\n                    }\n                    // Parse headers of sub response.\n                    const tokens = responseLine.split(HTTP_HEADER_DELIMITER);\n                    deserializedSubResponse.headers.set(tokens[0], tokens[1]);\n                    if (tokens[0] === HeaderConstants.X_MS_ERROR_CODE) {\n                        deserializedSubResponse.errorCode = tokens[1];\n                        subRespFailed = true;\n                    }\n                }\n                else {\n                    // Assemble body of sub response.\n                    if (!deserializedSubResponse.bodyAsText) {\n                        deserializedSubResponse.bodyAsText = \"\";\n                    }\n                    deserializedSubResponse.bodyAsText += responseLine;\n                }\n            } // Inner for end\n            // The response will contain the Content-ID header for each corresponding subrequest response to use for tracking.\n            // The Content-IDs are set to a valid index in the subrequests we sent. In the status code 202 path, we could expect it\n            // to be 1-1 mapping from the [0, subRequests.size) to the Content-IDs returned. If not, we simply don't return that\n            // unexpected subResponse in the parsed reponse and we can always look it up in the raw response for debugging purpose.\n            if (contentId !== NOT_FOUND &&\n                Number.isInteger(contentId) &&\n                contentId >= 0 &&\n                contentId < this.subRequests.size &&\n                deserializedSubResponses[contentId] === undefined) {\n                deserializedSubResponse._request = this.subRequests.get(contentId);\n                deserializedSubResponses[contentId] = deserializedSubResponse;\n            }\n            else {\n                logger.error(`subResponses[${index}] is dropped as the Content-ID is not found or invalid, Content-ID: ${contentId}`);\n            }\n            if (subRespFailed) {\n                subResponsesFailedCount++;\n            }\n            else {\n                subResponsesSucceededCount++;\n            }\n        }\n        return {\n            subResponses: deserializedSubResponses,\n            subResponsesSucceededCount: subResponsesSucceededCount,\n            subResponsesFailedCount: subResponsesFailedCount,\n        };\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nvar MutexLockStatus;\n(function (MutexLockStatus) {\n    MutexLockStatus[MutexLockStatus[\"LOCKED\"] = 0] = \"LOCKED\";\n    MutexLockStatus[MutexLockStatus[\"UNLOCKED\"] = 1] = \"UNLOCKED\";\n})(MutexLockStatus || (MutexLockStatus = {}));\n/**\n * An async mutex lock.\n */\nclass Mutex {\n    /**\n     * Lock for a specific key. If the lock has been acquired by another customer, then\n     * will wait until getting the lock.\n     *\n     * @param key - lock key\n     */\n    static async lock(key) {\n        return new Promise((resolve) => {\n            if (this.keys[key] === undefined || this.keys[key] === MutexLockStatus.UNLOCKED) {\n                this.keys[key] = MutexLockStatus.LOCKED;\n                resolve();\n            }\n            else {\n                this.onUnlockEvent(key, () => {\n                    this.keys[key] = MutexLockStatus.LOCKED;\n                    resolve();\n                });\n            }\n        });\n    }\n    /**\n     * Unlock a key.\n     *\n     * @param key -\n     */\n    static async unlock(key) {\n        return new Promise((resolve) => {\n            if (this.keys[key] === MutexLockStatus.LOCKED) {\n                this.emitUnlockEvent(key);\n            }\n            delete this.keys[key];\n            resolve();\n        });\n    }\n    static onUnlockEvent(key, handler) {\n        if (this.listeners[key] === undefined) {\n            this.listeners[key] = [handler];\n        }\n        else {\n            this.listeners[key].push(handler);\n        }\n    }\n    static emitUnlockEvent(key) {\n        if (this.listeners[key] !== undefined && this.listeners[key].length > 0) {\n            const handler = this.listeners[key].shift();\n            setImmediate(() => {\n                handler.call(this);\n            });\n        }\n    }\n}\nMutex.keys = {};\nMutex.listeners = {};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A BlobBatch represents an aggregated set of operations on blobs.\n * Currently, only `delete` and `setAccessTier` are supported.\n */\nclass BlobBatch {\n    constructor() {\n        this.batch = \"batch\";\n        this.batchRequest = new InnerBatchRequest();\n    }\n    /**\n     * Get the value of Content-Type for a batch request.\n     * The value must be multipart/mixed with a batch boundary.\n     * Example: multipart/mixed; boundary=batch_a81786c8-e301-4e42-a729-a32ca24ae252\n     */\n    getMultiPartContentType() {\n        return this.batchRequest.getMultipartContentType();\n    }\n    /**\n     * Get assembled HTTP request body for sub requests.\n     */\n    getHttpRequestBody() {\n        return this.batchRequest.getHttpRequestBody();\n    }\n    /**\n     * Get sub requests that are added into the batch request.\n     */\n    getSubRequests() {\n        return this.batchRequest.getSubRequests();\n    }\n    async addSubRequestInternal(subRequest, assembleSubRequestFunc) {\n        await Mutex.lock(this.batch);\n        try {\n            this.batchRequest.preAddSubRequest(subRequest);\n            await assembleSubRequestFunc();\n            this.batchRequest.postAddSubRequest(subRequest);\n        }\n        finally {\n            await Mutex.unlock(this.batch);\n        }\n    }\n    setBatchType(batchType) {\n        if (!this.batchType) {\n            this.batchType = batchType;\n        }\n        if (this.batchType !== batchType) {\n            throw new RangeError(`BlobBatch only supports one operation type per batch and it already is being used for ${this.batchType} operations.`);\n        }\n    }\n    async deleteBlob(urlOrBlobClient, credentialOrOptions, options) {\n        let url;\n        let credential;\n        if (typeof urlOrBlobClient === \"string\" &&\n            ((isNode && credentialOrOptions instanceof StorageSharedKeyCredential) ||\n                credentialOrOptions instanceof AnonymousCredential ||\n                isTokenCredential(credentialOrOptions))) {\n            // First overload\n            url = urlOrBlobClient;\n            credential = credentialOrOptions;\n        }\n        else if (urlOrBlobClient instanceof BlobClient) {\n            // Second overload\n            url = urlOrBlobClient.url;\n            credential = urlOrBlobClient.credential;\n            options = credentialOrOptions;\n        }\n        else {\n            throw new RangeError(\"Invalid arguments. Either url and credential, or BlobClient need be provided.\");\n        }\n        if (!options) {\n            options = {};\n        }\n        return tracingClient.withSpan(\"BatchDeleteRequest-addSubRequest\", options, async (updatedOptions) => {\n            this.setBatchType(\"delete\");\n            await this.addSubRequestInternal({\n                url: url,\n                credential: credential,\n            }, async () => {\n                await new BlobClient(url, this.batchRequest.createPipeline(credential)).delete(updatedOptions);\n            });\n        });\n    }\n    async setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions, options) {\n        let url;\n        let credential;\n        let tier;\n        if (typeof urlOrBlobClient === \"string\" &&\n            ((isNode && credentialOrTier instanceof StorageSharedKeyCredential) ||\n                credentialOrTier instanceof AnonymousCredential ||\n                isTokenCredential(credentialOrTier))) {\n            // First overload\n            url = urlOrBlobClient;\n            credential = credentialOrTier;\n            tier = tierOrOptions;\n        }\n        else if (urlOrBlobClient instanceof BlobClient) {\n            // Second overload\n            url = urlOrBlobClient.url;\n            credential = urlOrBlobClient.credential;\n            tier = credentialOrTier;\n            options = tierOrOptions;\n        }\n        else {\n            throw new RangeError(\"Invalid arguments. Either url and credential, or BlobClient need be provided.\");\n        }\n        if (!options) {\n            options = {};\n        }\n        return tracingClient.withSpan(\"BatchSetTierRequest-addSubRequest\", options, async (updatedOptions) => {\n            this.setBatchType(\"setAccessTier\");\n            await this.addSubRequestInternal({\n                url: url,\n                credential: credential,\n            }, async () => {\n                await new BlobClient(url, this.batchRequest.createPipeline(credential)).setAccessTier(tier, updatedOptions);\n            });\n        });\n    }\n}\n/**\n * Inner batch request class which is responsible for assembling and serializing sub requests.\n * See https://learn.microsoft.com/en-us/rest/api/storageservices/blob-batch#request-body for how requests are assembled.\n */\nclass InnerBatchRequest {\n    constructor() {\n        this.operationCount = 0;\n        this.body = \"\";\n        const tempGuid = randomUUID();\n        // batch_{batchid}\n        this.boundary = `batch_${tempGuid}`;\n        // --batch_{batchid}\n        // Content-Type: application/http\n        // Content-Transfer-Encoding: binary\n        this.subRequestPrefix = `--${this.boundary}${HTTP_LINE_ENDING}${HeaderConstants.CONTENT_TYPE}: application/http${HTTP_LINE_ENDING}${HeaderConstants.CONTENT_TRANSFER_ENCODING}: binary`;\n        // multipart/mixed; boundary=batch_{batchid}\n        this.multipartContentType = `multipart/mixed; boundary=${this.boundary}`;\n        // --batch_{batchid}--\n        this.batchRequestEnding = `--${this.boundary}--`;\n        this.subRequests = new Map();\n    }\n    /**\n     * Create pipeline to assemble sub requests. The idea here is to use existing\n     * credential and serialization/deserialization components, with additional policies to\n     * filter unnecessary headers, assemble sub requests into request's body\n     * and intercept request from going to wire.\n     * @param credential -  Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the `@azure/identity` package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.\n     */\n    createPipeline(credential) {\n        const corePipeline = createEmptyPipeline();\n        corePipeline.addPolicy(serializationPolicy({\n            stringifyXML}), { phase: \"Serialize\" });\n        // Use batch header filter policy to exclude unnecessary headers\n        corePipeline.addPolicy(batchHeaderFilterPolicy());\n        // Use batch assemble policy to assemble request and intercept request from going to wire\n        corePipeline.addPolicy(batchRequestAssemblePolicy(this), { afterPhase: \"Sign\" });\n        if (isTokenCredential(credential)) {\n            corePipeline.addPolicy(bearerTokenAuthenticationPolicy({\n                credential,\n                scopes: StorageOAuthScopes,\n                challengeCallbacks: { authorizeRequestOnChallenge: authorizeRequestOnTenantChallenge },\n            }), { phase: \"Sign\" });\n        }\n        else if (credential instanceof StorageSharedKeyCredential) {\n            corePipeline.addPolicy(storageSharedKeyCredentialPolicy({\n                accountName: credential.accountName,\n                accountKey: credential.accountKey,\n            }), { phase: \"Sign\" });\n        }\n        const pipeline = new Pipeline([]);\n        // attach the v2 pipeline to this one\n        pipeline._credential = credential;\n        pipeline._corePipeline = corePipeline;\n        return pipeline;\n    }\n    appendSubRequestToBody(request) {\n        // Start to assemble sub request\n        this.body += [\n            this.subRequestPrefix, // sub request constant prefix\n            `${HeaderConstants.CONTENT_ID}: ${this.operationCount}`, // sub request's content ID\n            \"\", // empty line after sub request's content ID\n            `${request.method.toString()} ${getURLPathAndQuery(request.url)} ${HTTP_VERSION_1_1}${HTTP_LINE_ENDING}`, // sub request start line with method\n        ].join(HTTP_LINE_ENDING);\n        for (const [name, value] of request.headers) {\n            this.body += `${name}: ${value}${HTTP_LINE_ENDING}`;\n        }\n        this.body += HTTP_LINE_ENDING; // sub request's headers need be ending with an empty line\n        // No body to assemble for current batch request support\n        // End to assemble sub request\n    }\n    preAddSubRequest(subRequest) {\n        if (this.operationCount >= BATCH_MAX_REQUEST) {\n            throw new RangeError(`Cannot exceed ${BATCH_MAX_REQUEST} sub requests in a single batch`);\n        }\n        // Fast fail if url for sub request is invalid\n        const path = getURLPath(subRequest.url);\n        if (!path || path === \"\") {\n            throw new RangeError(`Invalid url for sub request: '${subRequest.url}'`);\n        }\n    }\n    postAddSubRequest(subRequest) {\n        this.subRequests.set(this.operationCount, subRequest);\n        this.operationCount++;\n    }\n    // Return the http request body with assembling the ending line to the sub request body.\n    getHttpRequestBody() {\n        return `${this.body}${this.batchRequestEnding}${HTTP_LINE_ENDING}`;\n    }\n    getMultipartContentType() {\n        return this.multipartContentType;\n    }\n    getSubRequests() {\n        return this.subRequests;\n    }\n}\nfunction batchRequestAssemblePolicy(batchRequest) {\n    return {\n        name: \"batchRequestAssemblePolicy\",\n        async sendRequest(request) {\n            batchRequest.appendSubRequestToBody(request);\n            return {\n                request,\n                status: 200,\n                headers: createHttpHeaders(),\n            };\n        },\n    };\n}\nfunction batchHeaderFilterPolicy() {\n    return {\n        name: \"batchHeaderFilterPolicy\",\n        async sendRequest(request, next) {\n            let xMsHeaderName = \"\";\n            for (const [name] of request.headers) {\n                if (iEqual(name, HeaderConstants.X_MS_VERSION)) {\n                    xMsHeaderName = name;\n                }\n            }\n            if (xMsHeaderName !== \"\") {\n                request.headers.delete(xMsHeaderName); // The subrequests should not have the x-ms-version header.\n            }\n            return next(request);\n        },\n    };\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * A BlobBatchClient allows you to make batched requests to the Azure Storage Blob service.\n *\n * @see https://learn.microsoft.com/en-us/rest/api/storageservices/blob-batch\n */\nclass BlobBatchClient {\n    constructor(url, credentialOrPipeline, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        let pipeline;\n        if (isPipelineLike(credentialOrPipeline)) {\n            pipeline = credentialOrPipeline;\n        }\n        else if (!credentialOrPipeline) {\n            // no credential provided\n            pipeline = newPipeline(new AnonymousCredential(), options);\n        }\n        else {\n            pipeline = newPipeline(credentialOrPipeline, options);\n        }\n        const storageClientContext = new StorageContextClient(url, getCoreClientOptions(pipeline));\n        const path = getURLPath(url);\n        if (path && path !== \"/\") {\n            // Container scoped.\n            this.serviceOrContainerContext = storageClientContext.container;\n        }\n        else {\n            this.serviceOrContainerContext = storageClientContext.service;\n        }\n    }\n    /**\n     * Creates a {@link BlobBatch}.\n     * A BlobBatch represents an aggregated set of operations on blobs.\n     */\n    createBatch() {\n        return new BlobBatch();\n    }\n    async deleteBlobs(urlsOrBlobClients, credentialOrOptions, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        const batch = new BlobBatch();\n        for (const urlOrBlobClient of urlsOrBlobClients) {\n            if (typeof urlOrBlobClient === \"string\") {\n                await batch.deleteBlob(urlOrBlobClient, credentialOrOptions, options);\n            }\n            else {\n                await batch.deleteBlob(urlOrBlobClient, credentialOrOptions);\n            }\n        }\n        return this.submitBatch(batch);\n    }\n    async setBlobsAccessTier(urlsOrBlobClients, credentialOrTier, tierOrOptions, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        const batch = new BlobBatch();\n        for (const urlOrBlobClient of urlsOrBlobClients) {\n            if (typeof urlOrBlobClient === \"string\") {\n                await batch.setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions, options);\n            }\n            else {\n                await batch.setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions);\n            }\n        }\n        return this.submitBatch(batch);\n    }\n    /**\n     * Submit batch request which consists of multiple subrequests.\n     *\n     * Get `blobBatchClient` and other details before running the snippets.\n     * `blobServiceClient.getBlobBatchClient()` gives the `blobBatchClient`\n     *\n     * Example usage:\n     *\n     * ```js\n     * let batchRequest = new BlobBatch();\n     * await batchRequest.deleteBlob(urlInString0, credential0);\n     * await batchRequest.deleteBlob(urlInString1, credential1, {\n     *  deleteSnapshots: \"include\"\n     * });\n     * const batchResp = await blobBatchClient.submitBatch(batchRequest);\n     * console.log(batchResp.subResponsesSucceededCount);\n     * ```\n     *\n     * Example using a lease:\n     *\n     * ```js\n     * let batchRequest = new BlobBatch();\n     * await batchRequest.setBlobAccessTier(blockBlobClient0, \"Cool\");\n     * await batchRequest.setBlobAccessTier(blockBlobClient1, \"Cool\", {\n     *  conditions: { leaseId: leaseId }\n     * });\n     * const batchResp = await blobBatchClient.submitBatch(batchRequest);\n     * console.log(batchResp.subResponsesSucceededCount);\n     * ```\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/blob-batch\n     *\n     * @param batchRequest - A set of Delete or SetTier operations.\n     * @param options -\n     */\n    async submitBatch(batchRequest, options = {}) {\n        if (!batchRequest || batchRequest.getSubRequests().size === 0) {\n            throw new RangeError(\"Batch request should contain one or more sub requests.\");\n        }\n        return tracingClient.withSpan(\"BlobBatchClient-submitBatch\", options, async (updatedOptions) => {\n            const batchRequestBody = batchRequest.getHttpRequestBody();\n            // ServiceSubmitBatchResponseModel and ContainerSubmitBatchResponse are compatible for now.\n            const rawBatchResponse = assertResponse(await this.serviceOrContainerContext.submitBatch(utf8ByteLength(batchRequestBody), batchRequest.getMultiPartContentType(), batchRequestBody, Object.assign({}, updatedOptions)));\n            // Parse the sub responses result, if logic reaches here(i.e. the batch request succeeded with status code 202).\n            const batchResponseParser = new BatchResponseParser(rawBatchResponse, batchRequest.getSubRequests());\n            const responseSummary = await batchResponseParser.parseBatchResponse();\n            const res = {\n                _response: rawBatchResponse._response,\n                contentType: rawBatchResponse.contentType,\n                errorCode: rawBatchResponse.errorCode,\n                requestId: rawBatchResponse.requestId,\n                clientRequestId: rawBatchResponse.clientRequestId,\n                version: rawBatchResponse.version,\n                subResponses: responseSummary.subResponses,\n                subResponsesSucceededCount: responseSummary.subResponsesSucceededCount,\n                subResponsesFailedCount: responseSummary.subResponsesFailedCount,\n            };\n            return res;\n        });\n    }\n}\n\n/**\n * A ContainerClient represents a URL to the Azure Storage container allowing you to manipulate its blobs.\n */\nclass ContainerClient extends StorageClient {\n    /**\n     * The name of the container.\n     */\n    get containerName() {\n        return this._containerName;\n    }\n    constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        let pipeline;\n        let url;\n        options = options || {};\n        if (isPipelineLike(credentialOrPipelineOrContainerName)) {\n            // (url: string, pipeline: Pipeline)\n            url = urlOrConnectionString;\n            pipeline = credentialOrPipelineOrContainerName;\n        }\n        else if ((isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) ||\n            credentialOrPipelineOrContainerName instanceof AnonymousCredential ||\n            isTokenCredential(credentialOrPipelineOrContainerName)) {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            url = urlOrConnectionString;\n            pipeline = newPipeline(credentialOrPipelineOrContainerName, options);\n        }\n        else if (!credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName !== \"string\") {\n            // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)\n            // The second parameter is undefined. Use anonymous credential.\n            url = urlOrConnectionString;\n            pipeline = newPipeline(new AnonymousCredential(), options);\n        }\n        else if (credentialOrPipelineOrContainerName &&\n            typeof credentialOrPipelineOrContainerName === \"string\") {\n            // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions)\n            const containerName = credentialOrPipelineOrContainerName;\n            const extractedCreds = extractConnectionStringParts(urlOrConnectionString);\n            if (extractedCreds.kind === \"AccountConnString\") {\n                if (isNode) {\n                    const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey);\n                    url = appendToURLPath(extractedCreds.url, encodeURIComponent(containerName));\n                    if (!options.proxyOptions) {\n                        options.proxyOptions = getDefaultProxySettings(extractedCreds.proxyUri);\n                    }\n                    pipeline = newPipeline(sharedKeyCredential, options);\n                }\n                else {\n                    throw new Error(\"Account connection string is only supported in Node.js environment\");\n                }\n            }\n            else if (extractedCreds.kind === \"SASConnString\") {\n                url =\n                    appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)) +\n                        \"?\" +\n                        extractedCreds.accountSas;\n                pipeline = newPipeline(new AnonymousCredential(), options);\n            }\n            else {\n                throw new Error(\"Connection string must be either an Account connection string or a SAS connection string\");\n            }\n        }\n        else {\n            throw new Error(\"Expecting non-empty strings for containerName parameter\");\n        }\n        super(url, pipeline);\n        this._containerName = this.getContainerNameFromUrl();\n        this.containerContext = this.storageClientContext.container;\n    }\n    /**\n     * Creates a new container under the specified account. If the container with\n     * the same name already exists, the operation fails.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/create-container\n     * Naming rules: @see https://learn.microsoft.com/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata\n     *\n     * @param options - Options to Container Create operation.\n     *\n     *\n     * Example usage:\n     *\n     * ```js\n     * const containerClient = blobServiceClient.getContainerClient(\"<container name>\");\n     * const createContainerResponse = await containerClient.create();\n     * console.log(\"Container was created successfully\", createContainerResponse.requestId);\n     * ```\n     */\n    async create(options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-create\", options, async (updatedOptions) => {\n            return assertResponse(await this.containerContext.create(updatedOptions));\n        });\n    }\n    /**\n     * Creates a new container under the specified account. If the container with\n     * the same name already exists, it is not changed.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/create-container\n     * Naming rules: @see https://learn.microsoft.com/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata\n     *\n     * @param options -\n     */\n    async createIfNotExists(options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-createIfNotExists\", options, async (updatedOptions) => {\n            var _a, _b;\n            try {\n                const res = await this.create(updatedOptions);\n                return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response });\n            }\n            catch (e) {\n                if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === \"ContainerAlreadyExists\") {\n                    return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response });\n                }\n                else {\n                    throw e;\n                }\n            }\n        });\n    }\n    /**\n     * Returns true if the Azure container resource represented by this client exists; false otherwise.\n     *\n     * NOTE: use this function with care since an existing container might be deleted by other clients or\n     * applications. Vice versa new containers with the same name might be added by other clients or\n     * applications after this function completes.\n     *\n     * @param options -\n     */\n    async exists(options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-exists\", options, async (updatedOptions) => {\n            try {\n                await this.getProperties({\n                    abortSignal: options.abortSignal,\n                    tracingOptions: updatedOptions.tracingOptions,\n                });\n                return true;\n            }\n            catch (e) {\n                if (e.statusCode === 404) {\n                    return false;\n                }\n                throw e;\n            }\n        });\n    }\n    /**\n     * Creates a {@link BlobClient}\n     *\n     * @param blobName - A blob name\n     * @returns A new BlobClient object for the given blob name.\n     */\n    getBlobClient(blobName) {\n        return new BlobClient(appendToURLPath(this.url, EscapePath(blobName)), this.pipeline);\n    }\n    /**\n     * Creates an {@link AppendBlobClient}\n     *\n     * @param blobName - An append blob name\n     */\n    getAppendBlobClient(blobName) {\n        return new AppendBlobClient(appendToURLPath(this.url, EscapePath(blobName)), this.pipeline);\n    }\n    /**\n     * Creates a {@link BlockBlobClient}\n     *\n     * @param blobName - A block blob name\n     *\n     *\n     * Example usage:\n     *\n     * ```js\n     * const content = \"Hello world!\";\n     *\n     * const blockBlobClient = containerClient.getBlockBlobClient(\"<blob name>\");\n     * const uploadBlobResponse = await blockBlobClient.upload(content, content.length);\n     * ```\n     */\n    getBlockBlobClient(blobName) {\n        return new BlockBlobClient(appendToURLPath(this.url, EscapePath(blobName)), this.pipeline);\n    }\n    /**\n     * Creates a {@link PageBlobClient}\n     *\n     * @param blobName - A page blob name\n     */\n    getPageBlobClient(blobName) {\n        return new PageBlobClient(appendToURLPath(this.url, EscapePath(blobName)), this.pipeline);\n    }\n    /**\n     * Returns all user-defined metadata and system properties for the specified\n     * container. The data returned does not include the container's list of blobs.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-container-properties\n     *\n     * WARNING: The `metadata` object returned in the response will have its keys in lowercase, even if\n     * they originally contained uppercase characters. This differs from the metadata keys returned by\n     * the `listContainers` method of {@link BlobServiceClient} using the `includeMetadata` option, which\n     * will retain their original casing.\n     *\n     * @param options - Options to Container Get Properties operation.\n     */\n    async getProperties(options = {}) {\n        if (!options.conditions) {\n            options.conditions = {};\n        }\n        return tracingClient.withSpan(\"ContainerClient-getProperties\", options, async (updatedOptions) => {\n            return assertResponse(await this.containerContext.getProperties(Object.assign(Object.assign({ abortSignal: options.abortSignal }, options.conditions), { tracingOptions: updatedOptions.tracingOptions })));\n        });\n    }\n    /**\n     * Marks the specified container for deletion. The container and any blobs\n     * contained within it are later deleted during garbage collection.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/delete-container\n     *\n     * @param options - Options to Container Delete operation.\n     */\n    async delete(options = {}) {\n        if (!options.conditions) {\n            options.conditions = {};\n        }\n        return tracingClient.withSpan(\"ContainerClient-delete\", options, async (updatedOptions) => {\n            return assertResponse(await this.containerContext.delete({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: options.conditions,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Marks the specified container for deletion if it exists. The container and any blobs\n     * contained within it are later deleted during garbage collection.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/delete-container\n     *\n     * @param options - Options to Container Delete operation.\n     */\n    async deleteIfExists(options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-deleteIfExists\", options, async (updatedOptions) => {\n            var _a, _b;\n            try {\n                const res = await this.delete(updatedOptions);\n                return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response });\n            }\n            catch (e) {\n                if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === \"ContainerNotFound\") {\n                    return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response });\n                }\n                throw e;\n            }\n        });\n    }\n    /**\n     * Sets one or more user-defined name-value pairs for the specified container.\n     *\n     * If no option provided, or no metadata defined in the parameter, the container\n     * metadata will be removed.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/set-container-metadata\n     *\n     * @param metadata - Replace existing metadata with this value.\n     *                            If no value provided the existing metadata will be removed.\n     * @param options - Options to Container Set Metadata operation.\n     */\n    async setMetadata(metadata, options = {}) {\n        if (!options.conditions) {\n            options.conditions = {};\n        }\n        if (options.conditions.ifUnmodifiedSince) {\n            throw new RangeError(\"the IfUnmodifiedSince must have their default values because they are ignored by the blob service\");\n        }\n        return tracingClient.withSpan(\"ContainerClient-setMetadata\", options, async (updatedOptions) => {\n            return assertResponse(await this.containerContext.setMetadata({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                metadata,\n                modifiedAccessConditions: options.conditions,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Gets the permissions for the specified container. The permissions indicate\n     * whether container data may be accessed publicly.\n     *\n     * WARNING: JavaScript Date will potentially lose precision when parsing startsOn and expiresOn strings.\n     * For example, new Date(\"2018-12-31T03:44:23.8827891Z\").toISOString() will get \"2018-12-31T03:44:23.882Z\".\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-container-acl\n     *\n     * @param options - Options to Container Get Access Policy operation.\n     */\n    async getAccessPolicy(options = {}) {\n        if (!options.conditions) {\n            options.conditions = {};\n        }\n        return tracingClient.withSpan(\"ContainerClient-getAccessPolicy\", options, async (updatedOptions) => {\n            const response = assertResponse(await this.containerContext.getAccessPolicy({\n                abortSignal: options.abortSignal,\n                leaseAccessConditions: options.conditions,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            const res = {\n                _response: response._response,\n                blobPublicAccess: response.blobPublicAccess,\n                date: response.date,\n                etag: response.etag,\n                errorCode: response.errorCode,\n                lastModified: response.lastModified,\n                requestId: response.requestId,\n                clientRequestId: response.clientRequestId,\n                signedIdentifiers: [],\n                version: response.version,\n            };\n            for (const identifier of response) {\n                let accessPolicy = undefined;\n                if (identifier.accessPolicy) {\n                    accessPolicy = {\n                        permissions: identifier.accessPolicy.permissions,\n                    };\n                    if (identifier.accessPolicy.expiresOn) {\n                        accessPolicy.expiresOn = new Date(identifier.accessPolicy.expiresOn);\n                    }\n                    if (identifier.accessPolicy.startsOn) {\n                        accessPolicy.startsOn = new Date(identifier.accessPolicy.startsOn);\n                    }\n                }\n                res.signedIdentifiers.push({\n                    accessPolicy,\n                    id: identifier.id,\n                });\n            }\n            return res;\n        });\n    }\n    /**\n     * Sets the permissions for the specified container. The permissions indicate\n     * whether blobs in a container may be accessed publicly.\n     *\n     * When you set permissions for a container, the existing permissions are replaced.\n     * If no access or containerAcl provided, the existing container ACL will be\n     * removed.\n     *\n     * When you establish a stored access policy on a container, it may take up to 30 seconds to take effect.\n     * During this interval, a shared access signature that is associated with the stored access policy will\n     * fail with status code 403 (Forbidden), until the access policy becomes active.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/set-container-acl\n     *\n     * @param access - The level of public access to data in the container.\n     * @param containerAcl - Array of elements each having a unique Id and details of the access policy.\n     * @param options - Options to Container Set Access Policy operation.\n     */\n    async setAccessPolicy(access, containerAcl, options = {}) {\n        options.conditions = options.conditions || {};\n        return tracingClient.withSpan(\"ContainerClient-setAccessPolicy\", options, async (updatedOptions) => {\n            const acl = [];\n            for (const identifier of containerAcl || []) {\n                acl.push({\n                    accessPolicy: {\n                        expiresOn: identifier.accessPolicy.expiresOn\n                            ? truncatedISO8061Date(identifier.accessPolicy.expiresOn)\n                            : \"\",\n                        permissions: identifier.accessPolicy.permissions,\n                        startsOn: identifier.accessPolicy.startsOn\n                            ? truncatedISO8061Date(identifier.accessPolicy.startsOn)\n                            : \"\",\n                    },\n                    id: identifier.id,\n                });\n            }\n            return assertResponse(await this.containerContext.setAccessPolicy({\n                abortSignal: options.abortSignal,\n                access,\n                containerAcl: acl,\n                leaseAccessConditions: options.conditions,\n                modifiedAccessConditions: options.conditions,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Get a {@link BlobLeaseClient} that manages leases on the container.\n     *\n     * @param proposeLeaseId - Initial proposed lease Id.\n     * @returns A new BlobLeaseClient object for managing leases on the container.\n     */\n    getBlobLeaseClient(proposeLeaseId) {\n        return new BlobLeaseClient(this, proposeLeaseId);\n    }\n    /**\n     * Creates a new block blob, or updates the content of an existing block blob.\n     *\n     * Updating an existing block blob overwrites any existing metadata on the blob.\n     * Partial updates are not supported; the content of the existing blob is\n     * overwritten with the new content. To perform a partial update of a block blob's,\n     * use {@link BlockBlobClient.stageBlock} and {@link BlockBlobClient.commitBlockList}.\n     *\n     * This is a non-parallel uploading method, please use {@link BlockBlobClient.uploadFile},\n     * {@link BlockBlobClient.uploadStream} or {@link BlockBlobClient.uploadBrowserData} for better\n     * performance with concurrency uploading.\n     *\n     * @see https://learn.microsoft.com/rest/api/storageservices/put-blob\n     *\n     * @param blobName - Name of the block blob to create or update.\n     * @param body - Blob, string, ArrayBuffer, ArrayBufferView or a function\n     *                               which returns a new Readable stream whose offset is from data source beginning.\n     * @param contentLength - Length of body in bytes. Use Buffer.byteLength() to calculate body length for a\n     *                               string including non non-Base64/Hex-encoded characters.\n     * @param options - Options to configure the Block Blob Upload operation.\n     * @returns Block Blob upload response data and the corresponding BlockBlobClient instance.\n     */\n    async uploadBlockBlob(blobName, body, contentLength, options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-uploadBlockBlob\", options, async (updatedOptions) => {\n            const blockBlobClient = this.getBlockBlobClient(blobName);\n            const response = await blockBlobClient.upload(body, contentLength, updatedOptions);\n            return {\n                blockBlobClient,\n                response,\n            };\n        });\n    }\n    /**\n     * Marks the specified blob or snapshot for deletion. The blob is later deleted\n     * during garbage collection. Note that in order to delete a blob, you must delete\n     * all of its snapshots. You can delete both at the same time with the Delete\n     * Blob operation.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/delete-blob\n     *\n     * @param blobName -\n     * @param options - Options to Blob Delete operation.\n     * @returns Block blob deletion response data.\n     */\n    async deleteBlob(blobName, options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-deleteBlob\", options, async (updatedOptions) => {\n            let blobClient = this.getBlobClient(blobName);\n            if (options.versionId) {\n                blobClient = blobClient.withVersion(options.versionId);\n            }\n            return blobClient.delete(updatedOptions);\n        });\n    }\n    /**\n     * listBlobFlatSegment returns a single segment of blobs starting from the\n     * specified Marker. Use an empty Marker to start enumeration from the beginning.\n     * After getting a segment, process it, and then call listBlobsFlatSegment again\n     * (passing the the previously-returned Marker) to get the next segment.\n     * @see https://learn.microsoft.com/rest/api/storageservices/list-blobs\n     *\n     * @param marker - A string value that identifies the portion of the list to be returned with the next list operation.\n     * @param options - Options to Container List Blob Flat Segment operation.\n     */\n    async listBlobFlatSegment(marker, options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-listBlobFlatSegment\", options, async (updatedOptions) => {\n            const response = assertResponse(await this.containerContext.listBlobFlatSegment(Object.assign(Object.assign({ marker }, options), { tracingOptions: updatedOptions.tracingOptions })));\n            const wrappedResponse = Object.assign(Object.assign({}, response), { _response: Object.assign(Object.assign({}, response._response), { parsedBody: ConvertInternalResponseOfListBlobFlat(response._response.parsedBody) }), segment: Object.assign(Object.assign({}, response.segment), { blobItems: response.segment.blobItems.map((blobItemInternal) => {\n                        const blobItem = Object.assign(Object.assign({}, blobItemInternal), { name: BlobNameToString(blobItemInternal.name), tags: toTags(blobItemInternal.blobTags), objectReplicationSourceProperties: parseObjectReplicationRecord(blobItemInternal.objectReplicationMetadata) });\n                        return blobItem;\n                    }) }) });\n            return wrappedResponse;\n        });\n    }\n    /**\n     * listBlobHierarchySegment returns a single segment of blobs starting from\n     * the specified Marker. Use an empty Marker to start enumeration from the\n     * beginning. After getting a segment, process it, and then call listBlobsHierarchicalSegment\n     * again (passing the the previously-returned Marker) to get the next segment.\n     * @see https://learn.microsoft.com/rest/api/storageservices/list-blobs\n     *\n     * @param delimiter - The character or string used to define the virtual hierarchy\n     * @param marker - A string value that identifies the portion of the list to be returned with the next list operation.\n     * @param options - Options to Container List Blob Hierarchy Segment operation.\n     */\n    async listBlobHierarchySegment(delimiter, marker, options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-listBlobHierarchySegment\", options, async (updatedOptions) => {\n            var _a;\n            const response = assertResponse(await this.containerContext.listBlobHierarchySegment(delimiter, Object.assign(Object.assign({ marker }, options), { tracingOptions: updatedOptions.tracingOptions })));\n            const wrappedResponse = Object.assign(Object.assign({}, response), { _response: Object.assign(Object.assign({}, response._response), { parsedBody: ConvertInternalResponseOfListBlobHierarchy(response._response.parsedBody) }), segment: Object.assign(Object.assign({}, response.segment), { blobItems: response.segment.blobItems.map((blobItemInternal) => {\n                        const blobItem = Object.assign(Object.assign({}, blobItemInternal), { name: BlobNameToString(blobItemInternal.name), tags: toTags(blobItemInternal.blobTags), objectReplicationSourceProperties: parseObjectReplicationRecord(blobItemInternal.objectReplicationMetadata) });\n                        return blobItem;\n                    }), blobPrefixes: (_a = response.segment.blobPrefixes) === null || _a === void 0 ? void 0 : _a.map((blobPrefixInternal) => {\n                        const blobPrefix = Object.assign(Object.assign({}, blobPrefixInternal), { name: BlobNameToString(blobPrefixInternal.name) });\n                        return blobPrefix;\n                    }) }) });\n            return wrappedResponse;\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for ContainerListBlobFlatSegmentResponse\n     *\n     * @param marker - A string value that identifies the portion of\n     *                          the list of blobs to be returned with the next listing operation. The\n     *                          operation returns the ContinuationToken value within the response body if the\n     *                          listing operation did not return all blobs remaining to be listed\n     *                          with the current page. The ContinuationToken value can be used as the value for\n     *                          the marker parameter in a subsequent call to request the next page of list\n     *                          items. The marker value is opaque to the client.\n     * @param options - Options to list blobs operation.\n     */\n    listSegments(marker_1) {\n        return __asyncGenerator(this, arguments, function* listSegments_1(marker, options = {}) {\n            let listBlobsFlatSegmentResponse;\n            if (!!marker || marker === undefined) {\n                do {\n                    listBlobsFlatSegmentResponse = yield __await(this.listBlobFlatSegment(marker, options));\n                    marker = listBlobsFlatSegmentResponse.continuationToken;\n                    yield yield __await(yield __await(listBlobsFlatSegmentResponse));\n                } while (marker);\n            }\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator of {@link BlobItem} objects\n     *\n     * @param options - Options to list blobs operation.\n     */\n    listItems() {\n        return __asyncGenerator(this, arguments, function* listItems_1(options = {}) {\n            var _a, e_1, _b, _c;\n            let marker;\n            try {\n                for (var _d = true, _e = __asyncValues(this.listSegments(marker, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {\n                    _c = _f.value;\n                    _d = false;\n                    const listBlobsFlatSegmentResponse = _c;\n                    yield __await(yield* __asyncDelegator(__asyncValues(listBlobsFlatSegmentResponse.segment.blobItems)));\n                }\n            }\n            catch (e_1_1) { e_1 = { error: e_1_1 }; }\n            finally {\n                try {\n                    if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));\n                }\n                finally { if (e_1) throw e_1.error; }\n            }\n        });\n    }\n    /**\n     * Returns an async iterable iterator to list all the blobs\n     * under the specified account.\n     *\n     * .byPage() returns an async iterable iterator to list the blobs in pages.\n     *\n     * Example using `for await` syntax:\n     *\n     * ```js\n     * // Get the containerClient before you run these snippets,\n     * // Can be obtained from `blobServiceClient.getContainerClient(\"<your-container-name>\");`\n     * let i = 1;\n     * for await (const blob of containerClient.listBlobsFlat()) {\n     *   console.log(`Blob ${i++}: ${blob.name}`);\n     * }\n     * ```\n     *\n     * Example using `iter.next()`:\n     *\n     * ```js\n     * let i = 1;\n     * let iter = containerClient.listBlobsFlat();\n     * let blobItem = await iter.next();\n     * while (!blobItem.done) {\n     *   console.log(`Blob ${i++}: ${blobItem.value.name}`);\n     *   blobItem = await iter.next();\n     * }\n     * ```\n     *\n     * Example using `byPage()`:\n     *\n     * ```js\n     * // passing optional maxPageSize in the page settings\n     * let i = 1;\n     * for await (const response of containerClient.listBlobsFlat().byPage({ maxPageSize: 20 })) {\n     *   for (const blob of response.segment.blobItems) {\n     *     console.log(`Blob ${i++}: ${blob.name}`);\n     *   }\n     * }\n     * ```\n     *\n     * Example using paging with a marker:\n     *\n     * ```js\n     * let i = 1;\n     * let iterator = containerClient.listBlobsFlat().byPage({ maxPageSize: 2 });\n     * let response = (await iterator.next()).value;\n     *\n     * // Prints 2 blob names\n     * for (const blob of response.segment.blobItems) {\n     *   console.log(`Blob ${i++}: ${blob.name}`);\n     * }\n     *\n     * // Gets next marker\n     * let marker = response.continuationToken;\n     *\n     * // Passing next marker as continuationToken\n     *\n     * iterator = containerClient.listBlobsFlat().byPage({ continuationToken: marker, maxPageSize: 10 });\n     * response = (await iterator.next()).value;\n     *\n     * // Prints 10 blob names\n     * for (const blob of response.segment.blobItems) {\n     *   console.log(`Blob ${i++}: ${blob.name}`);\n     * }\n     * ```\n     *\n     * @param options - Options to list blobs.\n     * @returns An asyncIterableIterator that supports paging.\n     */\n    listBlobsFlat(options = {}) {\n        const include = [];\n        if (options.includeCopy) {\n            include.push(\"copy\");\n        }\n        if (options.includeDeleted) {\n            include.push(\"deleted\");\n        }\n        if (options.includeMetadata) {\n            include.push(\"metadata\");\n        }\n        if (options.includeSnapshots) {\n            include.push(\"snapshots\");\n        }\n        if (options.includeVersions) {\n            include.push(\"versions\");\n        }\n        if (options.includeUncommitedBlobs) {\n            include.push(\"uncommittedblobs\");\n        }\n        if (options.includeTags) {\n            include.push(\"tags\");\n        }\n        if (options.includeDeletedWithVersions) {\n            include.push(\"deletedwithversions\");\n        }\n        if (options.includeImmutabilityPolicy) {\n            include.push(\"immutabilitypolicy\");\n        }\n        if (options.includeLegalHold) {\n            include.push(\"legalhold\");\n        }\n        if (options.prefix === \"\") {\n            options.prefix = undefined;\n        }\n        const updatedOptions = Object.assign(Object.assign({}, options), (include.length > 0 ? { include: include } : {}));\n        // AsyncIterableIterator to iterate over blobs\n        const iter = this.listItems(updatedOptions);\n        return {\n            /**\n             * The next method, part of the iteration protocol\n             */\n            next() {\n                return iter.next();\n            },\n            /**\n             * The connection to the async iterator, part of the iteration protocol\n             */\n            [Symbol.asyncIterator]() {\n                return this;\n            },\n            /**\n             * Return an AsyncIterableIterator that works a page at a time\n             */\n            byPage: (settings = {}) => {\n                return this.listSegments(settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, updatedOptions));\n            },\n        };\n    }\n    /**\n     * Returns an AsyncIterableIterator for ContainerListBlobHierarchySegmentResponse\n     *\n     * @param delimiter - The character or string used to define the virtual hierarchy\n     * @param marker - A string value that identifies the portion of\n     *                          the list of blobs to be returned with the next listing operation. The\n     *                          operation returns the ContinuationToken value within the response body if the\n     *                          listing operation did not return all blobs remaining to be listed\n     *                          with the current page. The ContinuationToken value can be used as the value for\n     *                          the marker parameter in a subsequent call to request the next page of list\n     *                          items. The marker value is opaque to the client.\n     * @param options - Options to list blobs operation.\n     */\n    listHierarchySegments(delimiter_1, marker_1) {\n        return __asyncGenerator(this, arguments, function* listHierarchySegments_1(delimiter, marker, options = {}) {\n            let listBlobsHierarchySegmentResponse;\n            if (!!marker || marker === undefined) {\n                do {\n                    listBlobsHierarchySegmentResponse = yield __await(this.listBlobHierarchySegment(delimiter, marker, options));\n                    marker = listBlobsHierarchySegmentResponse.continuationToken;\n                    yield yield __await(yield __await(listBlobsHierarchySegmentResponse));\n                } while (marker);\n            }\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for {@link BlobPrefix} and {@link BlobItem} objects.\n     *\n     * @param delimiter - The character or string used to define the virtual hierarchy\n     * @param options - Options to list blobs operation.\n     */\n    listItemsByHierarchy(delimiter_1) {\n        return __asyncGenerator(this, arguments, function* listItemsByHierarchy_1(delimiter, options = {}) {\n            var _a, e_2, _b, _c;\n            let marker;\n            try {\n                for (var _d = true, _e = __asyncValues(this.listHierarchySegments(delimiter, marker, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {\n                    _c = _f.value;\n                    _d = false;\n                    const listBlobsHierarchySegmentResponse = _c;\n                    const segment = listBlobsHierarchySegmentResponse.segment;\n                    if (segment.blobPrefixes) {\n                        for (const prefix of segment.blobPrefixes) {\n                            yield yield __await(Object.assign({ kind: \"prefix\" }, prefix));\n                        }\n                    }\n                    for (const blob of segment.blobItems) {\n                        yield yield __await(Object.assign({ kind: \"blob\" }, blob));\n                    }\n                }\n            }\n            catch (e_2_1) { e_2 = { error: e_2_1 }; }\n            finally {\n                try {\n                    if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));\n                }\n                finally { if (e_2) throw e_2.error; }\n            }\n        });\n    }\n    /**\n     * Returns an async iterable iterator to list all the blobs by hierarchy.\n     * under the specified account.\n     *\n     * .byPage() returns an async iterable iterator to list the blobs by hierarchy in pages.\n     *\n     * Example using `for await` syntax:\n     *\n     * ```js\n     * for await (const item of containerClient.listBlobsByHierarchy(\"/\")) {\n     *   if (item.kind === \"prefix\") {\n     *     console.log(`\\tBlobPrefix: ${item.name}`);\n     *   } else {\n     *     console.log(`\\tBlobItem: name - ${item.name}`);\n     *   }\n     * }\n     * ```\n     *\n     * Example using `iter.next()`:\n     *\n     * ```js\n     * let iter = containerClient.listBlobsByHierarchy(\"/\", { prefix: \"prefix1/\" });\n     * let entity = await iter.next();\n     * while (!entity.done) {\n     *   let item = entity.value;\n     *   if (item.kind === \"prefix\") {\n     *     console.log(`\\tBlobPrefix: ${item.name}`);\n     *   } else {\n     *     console.log(`\\tBlobItem: name - ${item.name}`);\n     *   }\n     *   entity = await iter.next();\n     * }\n     * ```\n     *\n     * Example using `byPage()`:\n     *\n     * ```js\n     * console.log(\"Listing blobs by hierarchy by page\");\n     * for await (const response of containerClient.listBlobsByHierarchy(\"/\").byPage()) {\n     *   const segment = response.segment;\n     *   if (segment.blobPrefixes) {\n     *     for (const prefix of segment.blobPrefixes) {\n     *       console.log(`\\tBlobPrefix: ${prefix.name}`);\n     *     }\n     *   }\n     *   for (const blob of response.segment.blobItems) {\n     *     console.log(`\\tBlobItem: name - ${blob.name}`);\n     *   }\n     * }\n     * ```\n     *\n     * Example using paging with a max page size:\n     *\n     * ```js\n     * console.log(\"Listing blobs by hierarchy by page, specifying a prefix and a max page size\");\n     *\n     * let i = 1;\n     * for await (const response of containerClient\n     *   .listBlobsByHierarchy(\"/\", { prefix: \"prefix2/sub1/\" })\n     *   .byPage({ maxPageSize: 2 })) {\n     *   console.log(`Page ${i++}`);\n     *   const segment = response.segment;\n     *\n     *   if (segment.blobPrefixes) {\n     *     for (const prefix of segment.blobPrefixes) {\n     *       console.log(`\\tBlobPrefix: ${prefix.name}`);\n     *     }\n     *   }\n     *\n     *   for (const blob of response.segment.blobItems) {\n     *     console.log(`\\tBlobItem: name - ${blob.name}`);\n     *   }\n     * }\n     * ```\n     *\n     * @param delimiter - The character or string used to define the virtual hierarchy\n     * @param options - Options to list blobs operation.\n     */\n    listBlobsByHierarchy(delimiter, options = {}) {\n        if (delimiter === \"\") {\n            throw new RangeError(\"delimiter should contain one or more characters\");\n        }\n        const include = [];\n        if (options.includeCopy) {\n            include.push(\"copy\");\n        }\n        if (options.includeDeleted) {\n            include.push(\"deleted\");\n        }\n        if (options.includeMetadata) {\n            include.push(\"metadata\");\n        }\n        if (options.includeSnapshots) {\n            include.push(\"snapshots\");\n        }\n        if (options.includeVersions) {\n            include.push(\"versions\");\n        }\n        if (options.includeUncommitedBlobs) {\n            include.push(\"uncommittedblobs\");\n        }\n        if (options.includeTags) {\n            include.push(\"tags\");\n        }\n        if (options.includeDeletedWithVersions) {\n            include.push(\"deletedwithversions\");\n        }\n        if (options.includeImmutabilityPolicy) {\n            include.push(\"immutabilitypolicy\");\n        }\n        if (options.includeLegalHold) {\n            include.push(\"legalhold\");\n        }\n        if (options.prefix === \"\") {\n            options.prefix = undefined;\n        }\n        const updatedOptions = Object.assign(Object.assign({}, options), (include.length > 0 ? { include: include } : {}));\n        // AsyncIterableIterator to iterate over blob prefixes and blobs\n        const iter = this.listItemsByHierarchy(delimiter, updatedOptions);\n        return {\n            /**\n             * The next method, part of the iteration protocol\n             */\n            async next() {\n                return iter.next();\n            },\n            /**\n             * The connection to the async iterator, part of the iteration protocol\n             */\n            [Symbol.asyncIterator]() {\n                return this;\n            },\n            /**\n             * Return an AsyncIterableIterator that works a page at a time\n             */\n            byPage: (settings = {}) => {\n                return this.listHierarchySegments(delimiter, settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, updatedOptions));\n            },\n        };\n    }\n    /**\n     * The Filter Blobs operation enables callers to list blobs in the container whose tags\n     * match a given search expression.\n     *\n     * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.\n     *                                        The given expression must evaluate to true for a blob to be returned in the results.\n     *                                        The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;\n     *                                        however, only a subset of the OData filter syntax is supported in the Blob service.\n     * @param marker - A string value that identifies the portion of\n     *                          the list of blobs to be returned with the next listing operation. The\n     *                          operation returns the continuationToken value within the response body if the\n     *                          listing operation did not return all blobs remaining to be listed\n     *                          with the current page. The continuationToken value can be used as the value for\n     *                          the marker parameter in a subsequent call to request the next page of list\n     *                          items. The marker value is opaque to the client.\n     * @param options - Options to find blobs by tags.\n     */\n    async findBlobsByTagsSegment(tagFilterSqlExpression, marker, options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-findBlobsByTagsSegment\", options, async (updatedOptions) => {\n            const response = assertResponse(await this.containerContext.filterBlobs({\n                abortSignal: options.abortSignal,\n                where: tagFilterSqlExpression,\n                marker,\n                maxPageSize: options.maxPageSize,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            const wrappedResponse = Object.assign(Object.assign({}, response), { _response: response._response, blobs: response.blobs.map((blob) => {\n                    var _a;\n                    let tagValue = \"\";\n                    if (((_a = blob.tags) === null || _a === void 0 ? void 0 : _a.blobTagSet.length) === 1) {\n                        tagValue = blob.tags.blobTagSet[0].value;\n                    }\n                    return Object.assign(Object.assign({}, blob), { tags: toTags(blob.tags), tagValue });\n                }) });\n            return wrappedResponse;\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for ContainerFindBlobsByTagsSegmentResponse.\n     *\n     * @param tagFilterSqlExpression -  The where parameter enables the caller to query blobs whose tags match a given expression.\n     *                                         The given expression must evaluate to true for a blob to be returned in the results.\n     *                                         The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;\n     *                                         however, only a subset of the OData filter syntax is supported in the Blob service.\n     * @param marker - A string value that identifies the portion of\n     *                          the list of blobs to be returned with the next listing operation. The\n     *                          operation returns the continuationToken value within the response body if the\n     *                          listing operation did not return all blobs remaining to be listed\n     *                          with the current page. The continuationToken value can be used as the value for\n     *                          the marker parameter in a subsequent call to request the next page of list\n     *                          items. The marker value is opaque to the client.\n     * @param options - Options to find blobs by tags.\n     */\n    findBlobsByTagsSegments(tagFilterSqlExpression_1, marker_1) {\n        return __asyncGenerator(this, arguments, function* findBlobsByTagsSegments_1(tagFilterSqlExpression, marker, options = {}) {\n            let response;\n            if (!!marker || marker === undefined) {\n                do {\n                    response = yield __await(this.findBlobsByTagsSegment(tagFilterSqlExpression, marker, options));\n                    response.blobs = response.blobs || [];\n                    marker = response.continuationToken;\n                    yield yield __await(response);\n                } while (marker);\n            }\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for blobs.\n     *\n     * @param tagFilterSqlExpression -  The where parameter enables the caller to query blobs whose tags match a given expression.\n     *                                         The given expression must evaluate to true for a blob to be returned in the results.\n     *                                         The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;\n     *                                         however, only a subset of the OData filter syntax is supported in the Blob service.\n     * @param options - Options to findBlobsByTagsItems.\n     */\n    findBlobsByTagsItems(tagFilterSqlExpression_1) {\n        return __asyncGenerator(this, arguments, function* findBlobsByTagsItems_1(tagFilterSqlExpression, options = {}) {\n            var _a, e_3, _b, _c;\n            let marker;\n            try {\n                for (var _d = true, _e = __asyncValues(this.findBlobsByTagsSegments(tagFilterSqlExpression, marker, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {\n                    _c = _f.value;\n                    _d = false;\n                    const segment = _c;\n                    yield __await(yield* __asyncDelegator(__asyncValues(segment.blobs)));\n                }\n            }\n            catch (e_3_1) { e_3 = { error: e_3_1 }; }\n            finally {\n                try {\n                    if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));\n                }\n                finally { if (e_3) throw e_3.error; }\n            }\n        });\n    }\n    /**\n     * Returns an async iterable iterator to find all blobs with specified tag\n     * under the specified container.\n     *\n     * .byPage() returns an async iterable iterator to list the blobs in pages.\n     *\n     * Example using `for await` syntax:\n     *\n     * ```js\n     * let i = 1;\n     * for await (const blob of containerClient.findBlobsByTags(\"tagkey='tagvalue'\")) {\n     *   console.log(`Blob ${i++}: ${blob.name}`);\n     * }\n     * ```\n     *\n     * Example using `iter.next()`:\n     *\n     * ```js\n     * let i = 1;\n     * const iter = containerClient.findBlobsByTags(\"tagkey='tagvalue'\");\n     * let blobItem = await iter.next();\n     * while (!blobItem.done) {\n     *   console.log(`Blob ${i++}: ${blobItem.value.name}`);\n     *   blobItem = await iter.next();\n     * }\n     * ```\n     *\n     * Example using `byPage()`:\n     *\n     * ```js\n     * // passing optional maxPageSize in the page settings\n     * let i = 1;\n     * for await (const response of containerClient.findBlobsByTags(\"tagkey='tagvalue'\").byPage({ maxPageSize: 20 })) {\n     *   if (response.blobs) {\n     *     for (const blob of response.blobs) {\n     *       console.log(`Blob ${i++}: ${blob.name}`);\n     *     }\n     *   }\n     * }\n     * ```\n     *\n     * Example using paging with a marker:\n     *\n     * ```js\n     * let i = 1;\n     * let iterator = containerClient.findBlobsByTags(\"tagkey='tagvalue'\").byPage({ maxPageSize: 2 });\n     * let response = (await iterator.next()).value;\n     *\n     * // Prints 2 blob names\n     * if (response.blobs) {\n     *   for (const blob of response.blobs) {\n     *     console.log(`Blob ${i++}: ${blob.name}`);\n     *   }\n     * }\n     *\n     * // Gets next marker\n     * let marker = response.continuationToken;\n     * // Passing next marker as continuationToken\n     * iterator = containerClient\n     *   .findBlobsByTags(\"tagkey='tagvalue'\")\n     *   .byPage({ continuationToken: marker, maxPageSize: 10 });\n     * response = (await iterator.next()).value;\n     *\n     * // Prints blob names\n     * if (response.blobs) {\n     *   for (const blob of response.blobs) {\n     *      console.log(`Blob ${i++}: ${blob.name}`);\n     *   }\n     * }\n     * ```\n     *\n     * @param tagFilterSqlExpression -  The where parameter enables the caller to query blobs whose tags match a given expression.\n     *                                         The given expression must evaluate to true for a blob to be returned in the results.\n     *                                         The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;\n     *                                         however, only a subset of the OData filter syntax is supported in the Blob service.\n     * @param options - Options to find blobs by tags.\n     */\n    findBlobsByTags(tagFilterSqlExpression, options = {}) {\n        // AsyncIterableIterator to iterate over blobs\n        const listSegmentOptions = Object.assign({}, options);\n        const iter = this.findBlobsByTagsItems(tagFilterSqlExpression, listSegmentOptions);\n        return {\n            /**\n             * The next method, part of the iteration protocol\n             */\n            next() {\n                return iter.next();\n            },\n            /**\n             * The connection to the async iterator, part of the iteration protocol\n             */\n            [Symbol.asyncIterator]() {\n                return this;\n            },\n            /**\n             * Return an AsyncIterableIterator that works a page at a time\n             */\n            byPage: (settings = {}) => {\n                return this.findBlobsByTagsSegments(tagFilterSqlExpression, settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, listSegmentOptions));\n            },\n        };\n    }\n    /**\n     * The Get Account Information operation returns the sku name and account kind\n     * for the specified account.\n     * The Get Account Information operation is available on service versions beginning\n     * with version 2018-03-28.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-account-information\n     *\n     * @param options - Options to the Service Get Account Info operation.\n     * @returns Response data for the Service Get Account Info operation.\n     */\n    async getAccountInfo(options = {}) {\n        return tracingClient.withSpan(\"ContainerClient-getAccountInfo\", options, async (updatedOptions) => {\n            return assertResponse(await this.containerContext.getAccountInfo({\n                abortSignal: options.abortSignal,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    getContainerNameFromUrl() {\n        let containerName;\n        try {\n            //  URL may look like the following\n            // \"https://myaccount.blob.core.windows.net/mycontainer?sasString\";\n            // \"https://myaccount.blob.core.windows.net/mycontainer\";\n            // IPv4/IPv6 address hosts, Endpoints - `http://127.0.0.1:10000/devstoreaccount1/containername`\n            // http://localhost:10001/devstoreaccount1/containername\n            const parsedUrl = new URL(this.url);\n            if (parsedUrl.hostname.split(\".\")[1] === \"blob\") {\n                // \"https://myaccount.blob.core.windows.net/containername\".\n                // \"https://customdomain.com/containername\".\n                // .getPath() -> /containername\n                containerName = parsedUrl.pathname.split(\"/\")[1];\n            }\n            else if (isIpEndpointStyle(parsedUrl)) {\n                // IPv4/IPv6 address hosts... Example - http://192.0.0.10:10001/devstoreaccount1/containername\n                // Single word domain without a [dot] in the endpoint... Example - http://localhost:10001/devstoreaccount1/containername\n                // .getPath() -> /devstoreaccount1/containername\n                containerName = parsedUrl.pathname.split(\"/\")[2];\n            }\n            else {\n                // \"https://customdomain.com/containername\".\n                // .getPath() -> /containername\n                containerName = parsedUrl.pathname.split(\"/\")[1];\n            }\n            // decode the encoded containerName - to get all the special characters that might be present in it\n            containerName = decodeURIComponent(containerName);\n            if (!containerName) {\n                throw new Error(\"Provided containerName is invalid.\");\n            }\n            return containerName;\n        }\n        catch (error) {\n            throw new Error(\"Unable to extract containerName with provided information.\");\n        }\n    }\n    /**\n     * Only available for ContainerClient constructed with a shared key credential.\n     *\n     * Generates a Blob Container Service Shared Access Signature (SAS) URI based on the client properties\n     * and parameters passed in. The SAS is signed by the shared key credential of the client.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     * @param options - Optional parameters.\n     * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    generateSasUrl(options) {\n        return new Promise((resolve) => {\n            if (!(this.credential instanceof StorageSharedKeyCredential)) {\n                throw new RangeError(\"Can only generate the SAS when the client is initialized with a shared key credential\");\n            }\n            const sas = generateBlobSASQueryParameters(Object.assign({ containerName: this._containerName }, options), this.credential).toString();\n            resolve(appendToURLQuery(this.url, sas));\n        });\n    }\n    /**\n     * Only available for ContainerClient constructed with a shared key credential.\n     *\n     * Generates string to sign for a Blob Container Service Shared Access Signature (SAS) URI\n     * based on the client properties and parameters passed in. The SAS is signed by the shared key credential of the client.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     * @param options - Optional parameters.\n     * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    generateSasStringToSign(options) {\n        if (!(this.credential instanceof StorageSharedKeyCredential)) {\n            throw new RangeError(\"Can only generate the SAS when the client is initialized with a shared key credential\");\n        }\n        return generateBlobSASQueryParametersInternal(Object.assign({ containerName: this._containerName }, options), this.credential).stringToSign;\n    }\n    /**\n     * Generates a Blob Container Service Shared Access Signature (SAS) URI based on the client properties\n     * and parameters passed in. The SAS is signed by the input user delegation key.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     * @param options - Optional parameters.\n     * @param userDelegationKey -  Return value of `blobServiceClient.getUserDelegationKey()`\n     * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    generateUserDelegationSasUrl(options, userDelegationKey) {\n        return new Promise((resolve) => {\n            const sas = generateBlobSASQueryParameters(Object.assign({ containerName: this._containerName }, options), userDelegationKey, this.accountName).toString();\n            resolve(appendToURLQuery(this.url, sas));\n        });\n    }\n    /**\n     * Generates string to sign for a Blob Container Service Shared Access Signature (SAS) URI\n     * based on the client properties and parameters passed in. The SAS is signed by the input user delegation key.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas\n     *\n     * @param options - Optional parameters.\n     * @param userDelegationKey -  Return value of `blobServiceClient.getUserDelegationKey()`\n     * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    generateUserDelegationSasStringToSign(options, userDelegationKey) {\n        return generateBlobSASQueryParametersInternal(Object.assign({ containerName: this._containerName }, options), userDelegationKey, this.accountName).stringToSign;\n    }\n    /**\n     * Creates a BlobBatchClient object to conduct batch operations.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/blob-batch\n     *\n     * @returns A new BlobBatchClient object for this container.\n     */\n    getBlobBatchClient() {\n        return new BlobBatchClient(this.url, this.pipeline);\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * This is a helper class to construct a string representing the permissions granted by an AccountSAS. Setting a value\n * to true means that any SAS which uses these permissions will grant permissions for that operation. Once all the\n * values are set, this should be serialized with toString and set as the permissions field on an\n * {@link AccountSASSignatureValues} object. It is possible to construct the permissions string without this class, but\n * the order of the permissions is particular and this class guarantees correctness.\n */\nclass AccountSASPermissions {\n    constructor() {\n        /**\n         * Permission to read resources and list queues and tables granted.\n         */\n        this.read = false;\n        /**\n         * Permission to write resources granted.\n         */\n        this.write = false;\n        /**\n         * Permission to delete blobs and files granted.\n         */\n        this.delete = false;\n        /**\n         * Permission to delete versions granted.\n         */\n        this.deleteVersion = false;\n        /**\n         * Permission to list blob containers, blobs, shares, directories, and files granted.\n         */\n        this.list = false;\n        /**\n         * Permission to add messages, table entities, and append to blobs granted.\n         */\n        this.add = false;\n        /**\n         * Permission to create blobs and files granted.\n         */\n        this.create = false;\n        /**\n         * Permissions to update messages and table entities granted.\n         */\n        this.update = false;\n        /**\n         * Permission to get and delete messages granted.\n         */\n        this.process = false;\n        /**\n         * Specfies Tag access granted.\n         */\n        this.tag = false;\n        /**\n         * Permission to filter blobs.\n         */\n        this.filter = false;\n        /**\n         * Permission to set immutability policy.\n         */\n        this.setImmutabilityPolicy = false;\n        /**\n         * Specifies that Permanent Delete is permitted.\n         */\n        this.permanentDelete = false;\n    }\n    /**\n     * Parse initializes the AccountSASPermissions fields from a string.\n     *\n     * @param permissions -\n     */\n    static parse(permissions) {\n        const accountSASPermissions = new AccountSASPermissions();\n        for (const c of permissions) {\n            switch (c) {\n                case \"r\":\n                    accountSASPermissions.read = true;\n                    break;\n                case \"w\":\n                    accountSASPermissions.write = true;\n                    break;\n                case \"d\":\n                    accountSASPermissions.delete = true;\n                    break;\n                case \"x\":\n                    accountSASPermissions.deleteVersion = true;\n                    break;\n                case \"l\":\n                    accountSASPermissions.list = true;\n                    break;\n                case \"a\":\n                    accountSASPermissions.add = true;\n                    break;\n                case \"c\":\n                    accountSASPermissions.create = true;\n                    break;\n                case \"u\":\n                    accountSASPermissions.update = true;\n                    break;\n                case \"p\":\n                    accountSASPermissions.process = true;\n                    break;\n                case \"t\":\n                    accountSASPermissions.tag = true;\n                    break;\n                case \"f\":\n                    accountSASPermissions.filter = true;\n                    break;\n                case \"i\":\n                    accountSASPermissions.setImmutabilityPolicy = true;\n                    break;\n                case \"y\":\n                    accountSASPermissions.permanentDelete = true;\n                    break;\n                default:\n                    throw new RangeError(`Invalid permission character: ${c}`);\n            }\n        }\n        return accountSASPermissions;\n    }\n    /**\n     * Creates a {@link AccountSASPermissions} from a raw object which contains same keys as it\n     * and boolean values for them.\n     *\n     * @param permissionLike -\n     */\n    static from(permissionLike) {\n        const accountSASPermissions = new AccountSASPermissions();\n        if (permissionLike.read) {\n            accountSASPermissions.read = true;\n        }\n        if (permissionLike.write) {\n            accountSASPermissions.write = true;\n        }\n        if (permissionLike.delete) {\n            accountSASPermissions.delete = true;\n        }\n        if (permissionLike.deleteVersion) {\n            accountSASPermissions.deleteVersion = true;\n        }\n        if (permissionLike.filter) {\n            accountSASPermissions.filter = true;\n        }\n        if (permissionLike.tag) {\n            accountSASPermissions.tag = true;\n        }\n        if (permissionLike.list) {\n            accountSASPermissions.list = true;\n        }\n        if (permissionLike.add) {\n            accountSASPermissions.add = true;\n        }\n        if (permissionLike.create) {\n            accountSASPermissions.create = true;\n        }\n        if (permissionLike.update) {\n            accountSASPermissions.update = true;\n        }\n        if (permissionLike.process) {\n            accountSASPermissions.process = true;\n        }\n        if (permissionLike.setImmutabilityPolicy) {\n            accountSASPermissions.setImmutabilityPolicy = true;\n        }\n        if (permissionLike.permanentDelete) {\n            accountSASPermissions.permanentDelete = true;\n        }\n        return accountSASPermissions;\n    }\n    /**\n     * Produces the SAS permissions string for an Azure Storage account.\n     * Call this method to set AccountSASSignatureValues Permissions field.\n     *\n     * Using this method will guarantee the resource types are in\n     * an order accepted by the service.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-an-account-sas\n     *\n     */\n    toString() {\n        // The order of the characters should be as specified here to ensure correctness:\n        // https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-an-account-sas\n        // Use a string array instead of string concatenating += operator for performance\n        const permissions = [];\n        if (this.read) {\n            permissions.push(\"r\");\n        }\n        if (this.write) {\n            permissions.push(\"w\");\n        }\n        if (this.delete) {\n            permissions.push(\"d\");\n        }\n        if (this.deleteVersion) {\n            permissions.push(\"x\");\n        }\n        if (this.filter) {\n            permissions.push(\"f\");\n        }\n        if (this.tag) {\n            permissions.push(\"t\");\n        }\n        if (this.list) {\n            permissions.push(\"l\");\n        }\n        if (this.add) {\n            permissions.push(\"a\");\n        }\n        if (this.create) {\n            permissions.push(\"c\");\n        }\n        if (this.update) {\n            permissions.push(\"u\");\n        }\n        if (this.process) {\n            permissions.push(\"p\");\n        }\n        if (this.setImmutabilityPolicy) {\n            permissions.push(\"i\");\n        }\n        if (this.permanentDelete) {\n            permissions.push(\"y\");\n        }\n        return permissions.join(\"\");\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * This is a helper class to construct a string representing the resources accessible by an AccountSAS. Setting a value\n * to true means that any SAS which uses these permissions will grant access to that resource type. Once all the\n * values are set, this should be serialized with toString and set as the resources field on an\n * {@link AccountSASSignatureValues} object. It is possible to construct the resources string without this class, but\n * the order of the resources is particular and this class guarantees correctness.\n */\nclass AccountSASResourceTypes {\n    constructor() {\n        /**\n         * Permission to access service level APIs granted.\n         */\n        this.service = false;\n        /**\n         * Permission to access container level APIs (Blob Containers, Tables, Queues, File Shares) granted.\n         */\n        this.container = false;\n        /**\n         * Permission to access object level APIs (Blobs, Table Entities, Queue Messages, Files) granted.\n         */\n        this.object = false;\n    }\n    /**\n     * Creates an {@link AccountSASResourceTypes} from the specified resource types string. This method will throw an\n     * Error if it encounters a character that does not correspond to a valid resource type.\n     *\n     * @param resourceTypes -\n     */\n    static parse(resourceTypes) {\n        const accountSASResourceTypes = new AccountSASResourceTypes();\n        for (const c of resourceTypes) {\n            switch (c) {\n                case \"s\":\n                    accountSASResourceTypes.service = true;\n                    break;\n                case \"c\":\n                    accountSASResourceTypes.container = true;\n                    break;\n                case \"o\":\n                    accountSASResourceTypes.object = true;\n                    break;\n                default:\n                    throw new RangeError(`Invalid resource type: ${c}`);\n            }\n        }\n        return accountSASResourceTypes;\n    }\n    /**\n     * Converts the given resource types to a string.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-an-account-sas\n     *\n     */\n    toString() {\n        const resourceTypes = [];\n        if (this.service) {\n            resourceTypes.push(\"s\");\n        }\n        if (this.container) {\n            resourceTypes.push(\"c\");\n        }\n        if (this.object) {\n            resourceTypes.push(\"o\");\n        }\n        return resourceTypes.join(\"\");\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * This is a helper class to construct a string representing the services accessible by an AccountSAS. Setting a value\n * to true means that any SAS which uses these permissions will grant access to that service. Once all the\n * values are set, this should be serialized with toString and set as the services field on an\n * {@link AccountSASSignatureValues} object. It is possible to construct the services string without this class, but\n * the order of the services is particular and this class guarantees correctness.\n */\nclass AccountSASServices {\n    constructor() {\n        /**\n         * Permission to access blob resources granted.\n         */\n        this.blob = false;\n        /**\n         * Permission to access file resources granted.\n         */\n        this.file = false;\n        /**\n         * Permission to access queue resources granted.\n         */\n        this.queue = false;\n        /**\n         * Permission to access table resources granted.\n         */\n        this.table = false;\n    }\n    /**\n     * Creates an {@link AccountSASServices} from the specified services string. This method will throw an\n     * Error if it encounters a character that does not correspond to a valid service.\n     *\n     * @param services -\n     */\n    static parse(services) {\n        const accountSASServices = new AccountSASServices();\n        for (const c of services) {\n            switch (c) {\n                case \"b\":\n                    accountSASServices.blob = true;\n                    break;\n                case \"f\":\n                    accountSASServices.file = true;\n                    break;\n                case \"q\":\n                    accountSASServices.queue = true;\n                    break;\n                case \"t\":\n                    accountSASServices.table = true;\n                    break;\n                default:\n                    throw new RangeError(`Invalid service character: ${c}`);\n            }\n        }\n        return accountSASServices;\n    }\n    /**\n     * Converts the given services to a string.\n     *\n     */\n    toString() {\n        const services = [];\n        if (this.blob) {\n            services.push(\"b\");\n        }\n        if (this.table) {\n            services.push(\"t\");\n        }\n        if (this.queue) {\n            services.push(\"q\");\n        }\n        if (this.file) {\n            services.push(\"f\");\n        }\n        return services.join(\"\");\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/**\n * ONLY AVAILABLE IN NODE.JS RUNTIME.\n *\n * Generates a {@link SASQueryParameters} object which contains all SAS query parameters needed to make an actual\n * REST request.\n *\n * @see https://learn.microsoft.com/en-us/rest/api/storageservices/constructing-an-account-sas\n *\n * @param accountSASSignatureValues -\n * @param sharedKeyCredential -\n */\nfunction generateAccountSASQueryParameters(accountSASSignatureValues, sharedKeyCredential) {\n    return generateAccountSASQueryParametersInternal(accountSASSignatureValues, sharedKeyCredential)\n        .sasQueryParameters;\n}\nfunction generateAccountSASQueryParametersInternal(accountSASSignatureValues, sharedKeyCredential) {\n    const version = accountSASSignatureValues.version\n        ? accountSASSignatureValues.version\n        : SERVICE_VERSION;\n    if (accountSASSignatureValues.permissions &&\n        accountSASSignatureValues.permissions.setImmutabilityPolicy &&\n        version < \"2020-08-04\") {\n        throw RangeError(\"'version' must be >= '2020-08-04' when provided 'i' permission.\");\n    }\n    if (accountSASSignatureValues.permissions &&\n        accountSASSignatureValues.permissions.deleteVersion &&\n        version < \"2019-10-10\") {\n        throw RangeError(\"'version' must be >= '2019-10-10' when provided 'x' permission.\");\n    }\n    if (accountSASSignatureValues.permissions &&\n        accountSASSignatureValues.permissions.permanentDelete &&\n        version < \"2019-10-10\") {\n        throw RangeError(\"'version' must be >= '2019-10-10' when provided 'y' permission.\");\n    }\n    if (accountSASSignatureValues.permissions &&\n        accountSASSignatureValues.permissions.tag &&\n        version < \"2019-12-12\") {\n        throw RangeError(\"'version' must be >= '2019-12-12' when provided 't' permission.\");\n    }\n    if (accountSASSignatureValues.permissions &&\n        accountSASSignatureValues.permissions.filter &&\n        version < \"2019-12-12\") {\n        throw RangeError(\"'version' must be >= '2019-12-12' when provided 'f' permission.\");\n    }\n    if (accountSASSignatureValues.encryptionScope && version < \"2020-12-06\") {\n        throw RangeError(\"'version' must be >= '2020-12-06' when provided 'encryptionScope' in SAS.\");\n    }\n    const parsedPermissions = AccountSASPermissions.parse(accountSASSignatureValues.permissions.toString());\n    const parsedServices = AccountSASServices.parse(accountSASSignatureValues.services).toString();\n    const parsedResourceTypes = AccountSASResourceTypes.parse(accountSASSignatureValues.resourceTypes).toString();\n    let stringToSign;\n    if (version >= \"2020-12-06\") {\n        stringToSign = [\n            sharedKeyCredential.accountName,\n            parsedPermissions,\n            parsedServices,\n            parsedResourceTypes,\n            accountSASSignatureValues.startsOn\n                ? truncatedISO8061Date(accountSASSignatureValues.startsOn, false)\n                : \"\",\n            truncatedISO8061Date(accountSASSignatureValues.expiresOn, false),\n            accountSASSignatureValues.ipRange ? ipRangeToString(accountSASSignatureValues.ipRange) : \"\",\n            accountSASSignatureValues.protocol ? accountSASSignatureValues.protocol : \"\",\n            version,\n            accountSASSignatureValues.encryptionScope ? accountSASSignatureValues.encryptionScope : \"\",\n            \"\", // Account SAS requires an additional newline character\n        ].join(\"\\n\");\n    }\n    else {\n        stringToSign = [\n            sharedKeyCredential.accountName,\n            parsedPermissions,\n            parsedServices,\n            parsedResourceTypes,\n            accountSASSignatureValues.startsOn\n                ? truncatedISO8061Date(accountSASSignatureValues.startsOn, false)\n                : \"\",\n            truncatedISO8061Date(accountSASSignatureValues.expiresOn, false),\n            accountSASSignatureValues.ipRange ? ipRangeToString(accountSASSignatureValues.ipRange) : \"\",\n            accountSASSignatureValues.protocol ? accountSASSignatureValues.protocol : \"\",\n            version,\n            \"\", // Account SAS requires an additional newline character\n        ].join(\"\\n\");\n    }\n    const signature = sharedKeyCredential.computeHMACSHA256(stringToSign);\n    return {\n        sasQueryParameters: new SASQueryParameters(version, signature, parsedPermissions.toString(), parsedServices, parsedResourceTypes, accountSASSignatureValues.protocol, accountSASSignatureValues.startsOn, accountSASSignatureValues.expiresOn, accountSASSignatureValues.ipRange, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, accountSASSignatureValues.encryptionScope),\n        stringToSign: stringToSign,\n    };\n}\n\n/**\n * A BlobServiceClient represents a Client to the Azure Storage Blob service allowing you\n * to manipulate blob containers.\n */\nclass BlobServiceClient extends StorageClient {\n    /**\n     *\n     * Creates an instance of BlobServiceClient from connection string.\n     *\n     * @param connectionString - Account connection string or a SAS connection string of an Azure storage account.\n     *                                  [ Note - Account connection string can only be used in NODE.JS runtime. ]\n     *                                  Account connection string example -\n     *                                  `DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=accountKey;EndpointSuffix=core.windows.net`\n     *                                  SAS connection string example -\n     *                                  `BlobEndpoint=https://myaccount.blob.core.windows.net/;QueueEndpoint=https://myaccount.queue.core.windows.net/;FileEndpoint=https://myaccount.file.core.windows.net/;TableEndpoint=https://myaccount.table.core.windows.net/;SharedAccessSignature=sasString`\n     * @param options - Optional. Options to configure the HTTP pipeline.\n     */\n    static fromConnectionString(connectionString, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        options = options || {};\n        const extractedCreds = extractConnectionStringParts(connectionString);\n        if (extractedCreds.kind === \"AccountConnString\") {\n            if (isNode) {\n                const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey);\n                if (!options.proxyOptions) {\n                    options.proxyOptions = getDefaultProxySettings(extractedCreds.proxyUri);\n                }\n                const pipeline = newPipeline(sharedKeyCredential, options);\n                return new BlobServiceClient(extractedCreds.url, pipeline);\n            }\n            else {\n                throw new Error(\"Account connection string is only supported in Node.js environment\");\n            }\n        }\n        else if (extractedCreds.kind === \"SASConnString\") {\n            const pipeline = newPipeline(new AnonymousCredential(), options);\n            return new BlobServiceClient(extractedCreds.url + \"?\" + extractedCreds.accountSas, pipeline);\n        }\n        else {\n            throw new Error(\"Connection string must be either an Account connection string or a SAS connection string\");\n        }\n    }\n    constructor(url, credentialOrPipeline, \n    // Legacy, no fix for eslint error without breaking. Disable it for this interface.\n    /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/\n    options) {\n        let pipeline;\n        if (isPipelineLike(credentialOrPipeline)) {\n            pipeline = credentialOrPipeline;\n        }\n        else if ((isNode && credentialOrPipeline instanceof StorageSharedKeyCredential) ||\n            credentialOrPipeline instanceof AnonymousCredential ||\n            isTokenCredential(credentialOrPipeline)) {\n            pipeline = newPipeline(credentialOrPipeline, options);\n        }\n        else {\n            // The second parameter is undefined. Use anonymous credential\n            pipeline = newPipeline(new AnonymousCredential(), options);\n        }\n        super(url, pipeline);\n        this.serviceContext = this.storageClientContext.service;\n    }\n    /**\n     * Creates a {@link ContainerClient} object\n     *\n     * @param containerName - A container name\n     * @returns A new ContainerClient object for the given container name.\n     *\n     * Example usage:\n     *\n     * ```js\n     * const containerClient = blobServiceClient.getContainerClient(\"<container name>\");\n     * ```\n     */\n    getContainerClient(containerName) {\n        return new ContainerClient(appendToURLPath(this.url, encodeURIComponent(containerName)), this.pipeline);\n    }\n    /**\n     * Create a Blob container. @see https://learn.microsoft.com/en-us/rest/api/storageservices/create-container\n     *\n     * @param containerName - Name of the container to create.\n     * @param options - Options to configure Container Create operation.\n     * @returns Container creation response and the corresponding container client.\n     */\n    async createContainer(containerName, options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-createContainer\", options, async (updatedOptions) => {\n            const containerClient = this.getContainerClient(containerName);\n            const containerCreateResponse = await containerClient.create(updatedOptions);\n            return {\n                containerClient,\n                containerCreateResponse,\n            };\n        });\n    }\n    /**\n     * Deletes a Blob container.\n     *\n     * @param containerName - Name of the container to delete.\n     * @param options - Options to configure Container Delete operation.\n     * @returns Container deletion response.\n     */\n    async deleteContainer(containerName, options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-deleteContainer\", options, async (updatedOptions) => {\n            const containerClient = this.getContainerClient(containerName);\n            return containerClient.delete(updatedOptions);\n        });\n    }\n    /**\n     * Restore a previously deleted Blob container.\n     * This API is only functional if Container Soft Delete is enabled for the storage account associated with the container.\n     *\n     * @param deletedContainerName - Name of the previously deleted container.\n     * @param deletedContainerVersion - Version of the previously deleted container, used to uniquely identify the deleted container.\n     * @param options - Options to configure Container Restore operation.\n     * @returns Container deletion response.\n     */\n    async undeleteContainer(deletedContainerName, deletedContainerVersion, options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-undeleteContainer\", options, async (updatedOptions) => {\n            const containerClient = this.getContainerClient(options.destinationContainerName || deletedContainerName);\n            // Hack to access a protected member.\n            const containerContext = containerClient[\"storageClientContext\"].container;\n            const containerUndeleteResponse = assertResponse(await containerContext.restore({\n                deletedContainerName,\n                deletedContainerVersion,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            return { containerClient, containerUndeleteResponse };\n        });\n    }\n    /**\n     * Rename an existing Blob Container.\n     *\n     * @param sourceContainerName - The name of the source container.\n     * @param destinationContainerName - The new name of the container.\n     * @param options - Options to configure Container Rename operation.\n     */\n    /* eslint-disable-next-line @typescript-eslint/ban-ts-comment */\n    // @ts-ignore Need to hide this interface for now. Make it public and turn on the live tests for it when the service is ready.\n    async renameContainer(sourceContainerName, destinationContainerName, options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-renameContainer\", options, async (updatedOptions) => {\n            var _a;\n            const containerClient = this.getContainerClient(destinationContainerName);\n            // Hack to access a protected member.\n            const containerContext = containerClient[\"storageClientContext\"].container;\n            const containerRenameResponse = assertResponse(await containerContext.rename(sourceContainerName, Object.assign(Object.assign({}, updatedOptions), { sourceLeaseId: (_a = options.sourceCondition) === null || _a === void 0 ? void 0 : _a.leaseId })));\n            return { containerClient, containerRenameResponse };\n        });\n    }\n    /**\n     * Gets the properties of a storage account’s Blob service, including properties\n     * for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-blob-service-properties\n     *\n     * @param options - Options to the Service Get Properties operation.\n     * @returns Response data for the Service Get Properties operation.\n     */\n    async getProperties(options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-getProperties\", options, async (updatedOptions) => {\n            return assertResponse(await this.serviceContext.getProperties({\n                abortSignal: options.abortSignal,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Sets properties for a storage account’s Blob service endpoint, including properties\n     * for Storage Analytics, CORS (Cross-Origin Resource Sharing) rules and soft delete settings.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/set-blob-service-properties\n     *\n     * @param properties -\n     * @param options - Options to the Service Set Properties operation.\n     * @returns Response data for the Service Set Properties operation.\n     */\n    async setProperties(properties, options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-setProperties\", options, async (updatedOptions) => {\n            return assertResponse(await this.serviceContext.setProperties(properties, {\n                abortSignal: options.abortSignal,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Retrieves statistics related to replication for the Blob service. It is only\n     * available on the secondary location endpoint when read-access geo-redundant\n     * replication is enabled for the storage account.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-blob-service-stats\n     *\n     * @param options - Options to the Service Get Statistics operation.\n     * @returns Response data for the Service Get Statistics operation.\n     */\n    async getStatistics(options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-getStatistics\", options, async (updatedOptions) => {\n            return assertResponse(await this.serviceContext.getStatistics({\n                abortSignal: options.abortSignal,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * The Get Account Information operation returns the sku name and account kind\n     * for the specified account.\n     * The Get Account Information operation is available on service versions beginning\n     * with version 2018-03-28.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-account-information\n     *\n     * @param options - Options to the Service Get Account Info operation.\n     * @returns Response data for the Service Get Account Info operation.\n     */\n    async getAccountInfo(options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-getAccountInfo\", options, async (updatedOptions) => {\n            return assertResponse(await this.serviceContext.getAccountInfo({\n                abortSignal: options.abortSignal,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n        });\n    }\n    /**\n     * Returns a list of the containers under the specified account.\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/list-containers2\n     *\n     * @param marker - A string value that identifies the portion of\n     *                        the list of containers to be returned with the next listing operation. The\n     *                        operation returns the continuationToken value within the response body if the\n     *                        listing operation did not return all containers remaining to be listed\n     *                        with the current page. The continuationToken value can be used as the value for\n     *                        the marker parameter in a subsequent call to request the next page of list\n     *                        items. The marker value is opaque to the client.\n     * @param options - Options to the Service List Container Segment operation.\n     * @returns Response data for the Service List Container Segment operation.\n     */\n    async listContainersSegment(marker, options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-listContainersSegment\", options, async (updatedOptions) => {\n            return assertResponse(await this.serviceContext.listContainersSegment(Object.assign(Object.assign({ abortSignal: options.abortSignal, marker }, options), { include: typeof options.include === \"string\" ? [options.include] : options.include, tracingOptions: updatedOptions.tracingOptions })));\n        });\n    }\n    /**\n     * The Filter Blobs operation enables callers to list blobs across all containers whose tags\n     * match a given search expression. Filter blobs searches across all containers within a\n     * storage account but can be scoped within the expression to a single container.\n     *\n     * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.\n     *                                        The given expression must evaluate to true for a blob to be returned in the results.\n     *                                        The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;\n     *                                        however, only a subset of the OData filter syntax is supported in the Blob service.\n     * @param marker - A string value that identifies the portion of\n     *                          the list of blobs to be returned with the next listing operation. The\n     *                          operation returns the continuationToken value within the response body if the\n     *                          listing operation did not return all blobs remaining to be listed\n     *                          with the current page. The continuationToken value can be used as the value for\n     *                          the marker parameter in a subsequent call to request the next page of list\n     *                          items. The marker value is opaque to the client.\n     * @param options - Options to find blobs by tags.\n     */\n    async findBlobsByTagsSegment(tagFilterSqlExpression, marker, options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-findBlobsByTagsSegment\", options, async (updatedOptions) => {\n            const response = assertResponse(await this.serviceContext.filterBlobs({\n                abortSignal: options.abortSignal,\n                where: tagFilterSqlExpression,\n                marker,\n                maxPageSize: options.maxPageSize,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            const wrappedResponse = Object.assign(Object.assign({}, response), { _response: response._response, blobs: response.blobs.map((blob) => {\n                    var _a;\n                    let tagValue = \"\";\n                    if (((_a = blob.tags) === null || _a === void 0 ? void 0 : _a.blobTagSet.length) === 1) {\n                        tagValue = blob.tags.blobTagSet[0].value;\n                    }\n                    return Object.assign(Object.assign({}, blob), { tags: toTags(blob.tags), tagValue });\n                }) });\n            return wrappedResponse;\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for ServiceFindBlobsByTagsSegmentResponse.\n     *\n     * @param tagFilterSqlExpression -  The where parameter enables the caller to query blobs whose tags match a given expression.\n     *                                         The given expression must evaluate to true for a blob to be returned in the results.\n     *                                         The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;\n     *                                         however, only a subset of the OData filter syntax is supported in the Blob service.\n     * @param marker - A string value that identifies the portion of\n     *                          the list of blobs to be returned with the next listing operation. The\n     *                          operation returns the continuationToken value within the response body if the\n     *                          listing operation did not return all blobs remaining to be listed\n     *                          with the current page. The continuationToken value can be used as the value for\n     *                          the marker parameter in a subsequent call to request the next page of list\n     *                          items. The marker value is opaque to the client.\n     * @param options - Options to find blobs by tags.\n     */\n    findBlobsByTagsSegments(tagFilterSqlExpression_1, marker_1) {\n        return __asyncGenerator(this, arguments, function* findBlobsByTagsSegments_1(tagFilterSqlExpression, marker, options = {}) {\n            let response;\n            if (!!marker || marker === undefined) {\n                do {\n                    response = yield __await(this.findBlobsByTagsSegment(tagFilterSqlExpression, marker, options));\n                    response.blobs = response.blobs || [];\n                    marker = response.continuationToken;\n                    yield yield __await(response);\n                } while (marker);\n            }\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for blobs.\n     *\n     * @param tagFilterSqlExpression -  The where parameter enables the caller to query blobs whose tags match a given expression.\n     *                                         The given expression must evaluate to true for a blob to be returned in the results.\n     *                                         The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;\n     *                                         however, only a subset of the OData filter syntax is supported in the Blob service.\n     * @param options - Options to findBlobsByTagsItems.\n     */\n    findBlobsByTagsItems(tagFilterSqlExpression_1) {\n        return __asyncGenerator(this, arguments, function* findBlobsByTagsItems_1(tagFilterSqlExpression, options = {}) {\n            var _a, e_1, _b, _c;\n            let marker;\n            try {\n                for (var _d = true, _e = __asyncValues(this.findBlobsByTagsSegments(tagFilterSqlExpression, marker, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {\n                    _c = _f.value;\n                    _d = false;\n                    const segment = _c;\n                    yield __await(yield* __asyncDelegator(__asyncValues(segment.blobs)));\n                }\n            }\n            catch (e_1_1) { e_1 = { error: e_1_1 }; }\n            finally {\n                try {\n                    if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));\n                }\n                finally { if (e_1) throw e_1.error; }\n            }\n        });\n    }\n    /**\n     * Returns an async iterable iterator to find all blobs with specified tag\n     * under the specified account.\n     *\n     * .byPage() returns an async iterable iterator to list the blobs in pages.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-blob-service-properties\n     *\n     * Example using `for await` syntax:\n     *\n     * ```js\n     * let i = 1;\n     * for await (const blob of blobServiceClient.findBlobsByTags(\"tagkey='tagvalue'\")) {\n     *   console.log(`Blob ${i++}: ${container.name}`);\n     * }\n     * ```\n     *\n     * Example using `iter.next()`:\n     *\n     * ```js\n     * let i = 1;\n     * const iter = blobServiceClient.findBlobsByTags(\"tagkey='tagvalue'\");\n     * let blobItem = await iter.next();\n     * while (!blobItem.done) {\n     *   console.log(`Blob ${i++}: ${blobItem.value.name}`);\n     *   blobItem = await iter.next();\n     * }\n     * ```\n     *\n     * Example using `byPage()`:\n     *\n     * ```js\n     * // passing optional maxPageSize in the page settings\n     * let i = 1;\n     * for await (const response of blobServiceClient.findBlobsByTags(\"tagkey='tagvalue'\").byPage({ maxPageSize: 20 })) {\n     *   if (response.blobs) {\n     *     for (const blob of response.blobs) {\n     *       console.log(`Blob ${i++}: ${blob.name}`);\n     *     }\n     *   }\n     * }\n     * ```\n     *\n     * Example using paging with a marker:\n     *\n     * ```js\n     * let i = 1;\n     * let iterator = blobServiceClient.findBlobsByTags(\"tagkey='tagvalue'\").byPage({ maxPageSize: 2 });\n     * let response = (await iterator.next()).value;\n     *\n     * // Prints 2 blob names\n     * if (response.blobs) {\n     *   for (const blob of response.blobs) {\n     *     console.log(`Blob ${i++}: ${blob.name}`);\n     *   }\n     * }\n     *\n     * // Gets next marker\n     * let marker = response.continuationToken;\n     * // Passing next marker as continuationToken\n     * iterator = blobServiceClient\n     *   .findBlobsByTags(\"tagkey='tagvalue'\")\n     *   .byPage({ continuationToken: marker, maxPageSize: 10 });\n     * response = (await iterator.next()).value;\n     *\n     * // Prints blob names\n     * if (response.blobs) {\n     *   for (const blob of response.blobs) {\n     *      console.log(`Blob ${i++}: ${blob.name}`);\n     *   }\n     * }\n     * ```\n     *\n     * @param tagFilterSqlExpression -  The where parameter enables the caller to query blobs whose tags match a given expression.\n     *                                         The given expression must evaluate to true for a blob to be returned in the results.\n     *                                         The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;\n     *                                         however, only a subset of the OData filter syntax is supported in the Blob service.\n     * @param options - Options to find blobs by tags.\n     */\n    findBlobsByTags(tagFilterSqlExpression, options = {}) {\n        // AsyncIterableIterator to iterate over blobs\n        const listSegmentOptions = Object.assign({}, options);\n        const iter = this.findBlobsByTagsItems(tagFilterSqlExpression, listSegmentOptions);\n        return {\n            /**\n             * The next method, part of the iteration protocol\n             */\n            next() {\n                return iter.next();\n            },\n            /**\n             * The connection to the async iterator, part of the iteration protocol\n             */\n            [Symbol.asyncIterator]() {\n                return this;\n            },\n            /**\n             * Return an AsyncIterableIterator that works a page at a time\n             */\n            byPage: (settings = {}) => {\n                return this.findBlobsByTagsSegments(tagFilterSqlExpression, settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, listSegmentOptions));\n            },\n        };\n    }\n    /**\n     * Returns an AsyncIterableIterator for ServiceListContainersSegmentResponses\n     *\n     * @param marker - A string value that identifies the portion of\n     *                        the list of containers to be returned with the next listing operation. The\n     *                        operation returns the continuationToken value within the response body if the\n     *                        listing operation did not return all containers remaining to be listed\n     *                        with the current page. The continuationToken value can be used as the value for\n     *                        the marker parameter in a subsequent call to request the next page of list\n     *                        items. The marker value is opaque to the client.\n     * @param options - Options to list containers operation.\n     */\n    listSegments(marker_1) {\n        return __asyncGenerator(this, arguments, function* listSegments_1(marker, options = {}) {\n            let listContainersSegmentResponse;\n            if (!!marker || marker === undefined) {\n                do {\n                    listContainersSegmentResponse = yield __await(this.listContainersSegment(marker, options));\n                    listContainersSegmentResponse.containerItems =\n                        listContainersSegmentResponse.containerItems || [];\n                    marker = listContainersSegmentResponse.continuationToken;\n                    yield yield __await(yield __await(listContainersSegmentResponse));\n                } while (marker);\n            }\n        });\n    }\n    /**\n     * Returns an AsyncIterableIterator for Container Items\n     *\n     * @param options - Options to list containers operation.\n     */\n    listItems() {\n        return __asyncGenerator(this, arguments, function* listItems_1(options = {}) {\n            var _a, e_2, _b, _c;\n            let marker;\n            try {\n                for (var _d = true, _e = __asyncValues(this.listSegments(marker, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {\n                    _c = _f.value;\n                    _d = false;\n                    const segment = _c;\n                    yield __await(yield* __asyncDelegator(__asyncValues(segment.containerItems)));\n                }\n            }\n            catch (e_2_1) { e_2 = { error: e_2_1 }; }\n            finally {\n                try {\n                    if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));\n                }\n                finally { if (e_2) throw e_2.error; }\n            }\n        });\n    }\n    /**\n     * Returns an async iterable iterator to list all the containers\n     * under the specified account.\n     *\n     * .byPage() returns an async iterable iterator to list the containers in pages.\n     *\n     * Example using `for await` syntax:\n     *\n     * ```js\n     * let i = 1;\n     * for await (const container of blobServiceClient.listContainers()) {\n     *   console.log(`Container ${i++}: ${container.name}`);\n     * }\n     * ```\n     *\n     * Example using `iter.next()`:\n     *\n     * ```js\n     * let i = 1;\n     * const iter = blobServiceClient.listContainers();\n     * let containerItem = await iter.next();\n     * while (!containerItem.done) {\n     *   console.log(`Container ${i++}: ${containerItem.value.name}`);\n     *   containerItem = await iter.next();\n     * }\n     * ```\n     *\n     * Example using `byPage()`:\n     *\n     * ```js\n     * // passing optional maxPageSize in the page settings\n     * let i = 1;\n     * for await (const response of blobServiceClient.listContainers().byPage({ maxPageSize: 20 })) {\n     *   if (response.containerItems) {\n     *     for (const container of response.containerItems) {\n     *       console.log(`Container ${i++}: ${container.name}`);\n     *     }\n     *   }\n     * }\n     * ```\n     *\n     * Example using paging with a marker:\n     *\n     * ```js\n     * let i = 1;\n     * let iterator = blobServiceClient.listContainers().byPage({ maxPageSize: 2 });\n     * let response = (await iterator.next()).value;\n     *\n     * // Prints 2 container names\n     * if (response.containerItems) {\n     *   for (const container of response.containerItems) {\n     *     console.log(`Container ${i++}: ${container.name}`);\n     *   }\n     * }\n     *\n     * // Gets next marker\n     * let marker = response.continuationToken;\n     * // Passing next marker as continuationToken\n     * iterator = blobServiceClient\n     *   .listContainers()\n     *   .byPage({ continuationToken: marker, maxPageSize: 10 });\n     * response = (await iterator.next()).value;\n     *\n     * // Prints 10 container names\n     * if (response.containerItems) {\n     *   for (const container of response.containerItems) {\n     *      console.log(`Container ${i++}: ${container.name}`);\n     *   }\n     * }\n     * ```\n     *\n     * @param options - Options to list containers.\n     * @returns An asyncIterableIterator that supports paging.\n     */\n    listContainers(options = {}) {\n        if (options.prefix === \"\") {\n            options.prefix = undefined;\n        }\n        const include = [];\n        if (options.includeDeleted) {\n            include.push(\"deleted\");\n        }\n        if (options.includeMetadata) {\n            include.push(\"metadata\");\n        }\n        if (options.includeSystem) {\n            include.push(\"system\");\n        }\n        // AsyncIterableIterator to iterate over containers\n        const listSegmentOptions = Object.assign(Object.assign({}, options), (include.length > 0 ? { include } : {}));\n        const iter = this.listItems(listSegmentOptions);\n        return {\n            /**\n             * The next method, part of the iteration protocol\n             */\n            next() {\n                return iter.next();\n            },\n            /**\n             * The connection to the async iterator, part of the iteration protocol\n             */\n            [Symbol.asyncIterator]() {\n                return this;\n            },\n            /**\n             * Return an AsyncIterableIterator that works a page at a time\n             */\n            byPage: (settings = {}) => {\n                return this.listSegments(settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, listSegmentOptions));\n            },\n        };\n    }\n    /**\n     * ONLY AVAILABLE WHEN USING BEARER TOKEN AUTHENTICATION (TokenCredential).\n     *\n     * Retrieves a user delegation key for the Blob service. This is only a valid operation when using\n     * bearer token authentication.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/get-user-delegation-key\n     *\n     * @param startsOn -      The start time for the user delegation SAS. Must be within 7 days of the current time\n     * @param expiresOn -     The end time for the user delegation SAS. Must be within 7 days of the current time\n     */\n    async getUserDelegationKey(startsOn, expiresOn, options = {}) {\n        return tracingClient.withSpan(\"BlobServiceClient-getUserDelegationKey\", options, async (updatedOptions) => {\n            const response = assertResponse(await this.serviceContext.getUserDelegationKey({\n                startsOn: truncatedISO8061Date(startsOn, false),\n                expiresOn: truncatedISO8061Date(expiresOn, false),\n            }, {\n                abortSignal: options.abortSignal,\n                tracingOptions: updatedOptions.tracingOptions,\n            }));\n            const userDelegationKey = {\n                signedObjectId: response.signedObjectId,\n                signedTenantId: response.signedTenantId,\n                signedStartsOn: new Date(response.signedStartsOn),\n                signedExpiresOn: new Date(response.signedExpiresOn),\n                signedService: response.signedService,\n                signedVersion: response.signedVersion,\n                value: response.value,\n            };\n            const res = Object.assign({ _response: response._response, requestId: response.requestId, clientRequestId: response.clientRequestId, version: response.version, date: response.date, errorCode: response.errorCode }, userDelegationKey);\n            return res;\n        });\n    }\n    /**\n     * Creates a BlobBatchClient object to conduct batch operations.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/blob-batch\n     *\n     * @returns A new BlobBatchClient object for this service.\n     */\n    getBlobBatchClient() {\n        return new BlobBatchClient(this.url, this.pipeline);\n    }\n    /**\n     * Only available for BlobServiceClient constructed with a shared key credential.\n     *\n     * Generates a Blob account Shared Access Signature (SAS) URI based on the client properties\n     * and parameters passed in. The SAS is signed by the shared key credential of the client.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/create-account-sas\n     *\n     * @param expiresOn - Optional. The time at which the shared access signature becomes invalid. Default to an hour later if not provided.\n     * @param permissions - Specifies the list of permissions to be associated with the SAS.\n     * @param resourceTypes - Specifies the resource types associated with the shared access signature.\n     * @param options - Optional parameters.\n     * @returns An account SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    generateAccountSasUrl(expiresOn, permissions = AccountSASPermissions.parse(\"r\"), resourceTypes = \"sco\", options = {}) {\n        if (!(this.credential instanceof StorageSharedKeyCredential)) {\n            throw RangeError(\"Can only generate the account SAS when the client is initialized with a shared key credential\");\n        }\n        if (expiresOn === undefined) {\n            const now = new Date();\n            expiresOn = new Date(now.getTime() + 3600 * 1000);\n        }\n        const sas = generateAccountSASQueryParameters(Object.assign({ permissions,\n            expiresOn,\n            resourceTypes, services: AccountSASServices.parse(\"b\").toString() }, options), this.credential).toString();\n        return appendToURLQuery(this.url, sas);\n    }\n    /**\n     * Only available for BlobServiceClient constructed with a shared key credential.\n     *\n     * Generates string to sign for a Blob account Shared Access Signature (SAS) URI based on\n     * the client properties and parameters passed in. The SAS is signed by the shared key credential of the client.\n     *\n     * @see https://learn.microsoft.com/en-us/rest/api/storageservices/create-account-sas\n     *\n     * @param expiresOn - Optional. The time at which the shared access signature becomes invalid. Default to an hour later if not provided.\n     * @param permissions - Specifies the list of permissions to be associated with the SAS.\n     * @param resourceTypes - Specifies the resource types associated with the shared access signature.\n     * @param options - Optional parameters.\n     * @returns An account SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token.\n     */\n    generateSasStringToSign(expiresOn, permissions = AccountSASPermissions.parse(\"r\"), resourceTypes = \"sco\", options = {}) {\n        if (!(this.credential instanceof StorageSharedKeyCredential)) {\n            throw RangeError(\"Can only generate the account SAS when the client is initialized with a shared key credential\");\n        }\n        if (expiresOn === undefined) {\n            const now = new Date();\n            expiresOn = new Date(now.getTime() + 3600 * 1000);\n        }\n        return generateAccountSASQueryParametersInternal(Object.assign({ permissions,\n            expiresOn,\n            resourceTypes, services: AccountSASServices.parse(\"b\").toString() }, options), this.credential).stringToSign;\n    }\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n/** Known values of {@link EncryptionAlgorithmType} that the service accepts. */\nvar KnownEncryptionAlgorithmType;\n(function (KnownEncryptionAlgorithmType) {\n    KnownEncryptionAlgorithmType[\"AES256\"] = \"AES256\";\n})(KnownEncryptionAlgorithmType || (KnownEncryptionAlgorithmType = {}));\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nvar src$1 = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tAccountSASPermissions: AccountSASPermissions,\n\tAccountSASResourceTypes: AccountSASResourceTypes,\n\tAccountSASServices: AccountSASServices,\n\tAnonymousCredential: AnonymousCredential,\n\tAnonymousCredentialPolicy: AnonymousCredentialPolicy,\n\tAppendBlobClient: AppendBlobClient,\n\tBaseRequestPolicy: BaseRequestPolicy,\n\tBlobBatch: BlobBatch,\n\tBlobBatchClient: BlobBatchClient,\n\tBlobClient: BlobClient,\n\tBlobLeaseClient: BlobLeaseClient,\n\tBlobSASPermissions: BlobSASPermissions,\n\tBlobServiceClient: BlobServiceClient,\n\tBlockBlobClient: BlockBlobClient,\n\tget BlockBlobTier () { return BlockBlobTier; },\n\tContainerClient: ContainerClient,\n\tContainerSASPermissions: ContainerSASPermissions,\n\tCredential: Credential,\n\tCredentialPolicy: CredentialPolicy,\n\tget KnownEncryptionAlgorithmType () { return KnownEncryptionAlgorithmType; },\n\tPageBlobClient: PageBlobClient,\n\tPipeline: Pipeline,\n\tget PremiumPageBlobTier () { return PremiumPageBlobTier; },\n\tRestError: RestError,\n\tget SASProtocol () { return SASProtocol; },\n\tSASQueryParameters: SASQueryParameters,\n\tget StorageBlobAudience () { return StorageBlobAudience; },\n\tStorageBrowserPolicy: StorageBrowserPolicy,\n\tStorageBrowserPolicyFactory: StorageBrowserPolicyFactory,\n\tStorageOAuthScopes: StorageOAuthScopes,\n\tStorageRetryPolicy: StorageRetryPolicy,\n\tStorageRetryPolicyFactory: StorageRetryPolicyFactory,\n\tget StorageRetryPolicyType () { return StorageRetryPolicyType$1; },\n\tStorageSharedKeyCredential: StorageSharedKeyCredential,\n\tStorageSharedKeyCredentialPolicy: StorageSharedKeyCredentialPolicy,\n\tgenerateAccountSASQueryParameters: generateAccountSASQueryParameters,\n\tgenerateBlobSASQueryParameters: generateBlobSASQueryParameters,\n\tgetBlobServiceAccountAudience: getBlobServiceAccountAudience,\n\tisPipelineLike: isPipelineLike,\n\tlogger: logger,\n\tnewPipeline: newPipeline\n});\n\nvar require$$0$4 = /*@__PURE__*/getAugmentedNamespace(src$1);\n\nvar errors$2 = {};\n\nvar hasRequiredErrors$2;\n\nfunction requireErrors$2 () {\n\tif (hasRequiredErrors$2) return errors$2;\n\thasRequiredErrors$2 = 1;\n\tObject.defineProperty(errors$2, \"__esModule\", { value: true });\n\terrors$2.UsageError = errors$2.NetworkError = errors$2.GHESNotSupportedError = errors$2.CacheNotFoundError = errors$2.InvalidResponseError = errors$2.FilesNotFoundError = void 0;\n\tclass FilesNotFoundError extends Error {\n\t    constructor(files = []) {\n\t        let message = 'No files were found to upload';\n\t        if (files.length > 0) {\n\t            message += `: ${files.join(', ')}`;\n\t        }\n\t        super(message);\n\t        this.files = files;\n\t        this.name = 'FilesNotFoundError';\n\t    }\n\t}\n\terrors$2.FilesNotFoundError = FilesNotFoundError;\n\tclass InvalidResponseError extends Error {\n\t    constructor(message) {\n\t        super(message);\n\t        this.name = 'InvalidResponseError';\n\t    }\n\t}\n\terrors$2.InvalidResponseError = InvalidResponseError;\n\tclass CacheNotFoundError extends Error {\n\t    constructor(message = 'Cache not found') {\n\t        super(message);\n\t        this.name = 'CacheNotFoundError';\n\t    }\n\t}\n\terrors$2.CacheNotFoundError = CacheNotFoundError;\n\tclass GHESNotSupportedError extends Error {\n\t    constructor(message = '@actions/cache v4.1.4+, actions/cache/save@v4+ and actions/cache/restore@v4+ are not currently supported on GHES.') {\n\t        super(message);\n\t        this.name = 'GHESNotSupportedError';\n\t    }\n\t}\n\terrors$2.GHESNotSupportedError = GHESNotSupportedError;\n\tclass NetworkError extends Error {\n\t    constructor(code) {\n\t        const message = `Unable to make request: ${code}\\nIf you are using self-hosted runners, please make sure your runner has access to all GitHub endpoints: https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#communication-between-self-hosted-runners-and-github`;\n\t        super(message);\n\t        this.code = code;\n\t        this.name = 'NetworkError';\n\t    }\n\t}\n\terrors$2.NetworkError = NetworkError;\n\tNetworkError.isNetworkErrorCode = (code) => {\n\t    if (!code)\n\t        return false;\n\t    return [\n\t        'ECONNRESET',\n\t        'ENOTFOUND',\n\t        'ETIMEDOUT',\n\t        'ECONNREFUSED',\n\t        'EHOSTUNREACH'\n\t    ].includes(code);\n\t};\n\tclass UsageError extends Error {\n\t    constructor() {\n\t        const message = `Cache storage quota has been hit. Unable to upload any new cache entries. Usage is recalculated every 6-12 hours.\\nMore info on storage limits: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending`;\n\t        super(message);\n\t        this.name = 'UsageError';\n\t    }\n\t}\n\terrors$2.UsageError = UsageError;\n\tUsageError.isUsageErrorMessage = (msg) => {\n\t    if (!msg)\n\t        return false;\n\t    return msg.includes('insufficient usage');\n\t};\n\t\n\treturn errors$2;\n}\n\nvar hasRequiredUploadUtils;\n\nfunction requireUploadUtils () {\n\tif (hasRequiredUploadUtils) return uploadUtils;\n\thasRequiredUploadUtils = 1;\n\tvar __createBinding = (uploadUtils && uploadUtils.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (uploadUtils && uploadUtils.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (uploadUtils && uploadUtils.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (uploadUtils && uploadUtils.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(uploadUtils, \"__esModule\", { value: true });\n\tuploadUtils.uploadCacheArchiveSDK = uploadUtils.UploadProgress = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst storage_blob_1 = require$$0$4;\n\tconst errors_1 = requireErrors$2();\n\t/**\n\t * Class for tracking the upload state and displaying stats.\n\t */\n\tclass UploadProgress {\n\t    constructor(contentLength) {\n\t        this.contentLength = contentLength;\n\t        this.sentBytes = 0;\n\t        this.displayedComplete = false;\n\t        this.startTime = Date.now();\n\t    }\n\t    /**\n\t     * Sets the number of bytes sent\n\t     *\n\t     * @param sentBytes the number of bytes sent\n\t     */\n\t    setSentBytes(sentBytes) {\n\t        this.sentBytes = sentBytes;\n\t    }\n\t    /**\n\t     * Returns the total number of bytes transferred.\n\t     */\n\t    getTransferredBytes() {\n\t        return this.sentBytes;\n\t    }\n\t    /**\n\t     * Returns true if the upload is complete.\n\t     */\n\t    isDone() {\n\t        return this.getTransferredBytes() === this.contentLength;\n\t    }\n\t    /**\n\t     * Prints the current upload stats. Once the upload completes, this will print one\n\t     * last line and then stop.\n\t     */\n\t    display() {\n\t        if (this.displayedComplete) {\n\t            return;\n\t        }\n\t        const transferredBytes = this.sentBytes;\n\t        const percentage = (100 * (transferredBytes / this.contentLength)).toFixed(1);\n\t        const elapsedTime = Date.now() - this.startTime;\n\t        const uploadSpeed = (transferredBytes /\n\t            (1024 * 1024) /\n\t            (elapsedTime / 1000)).toFixed(1);\n\t        core.info(`Sent ${transferredBytes} of ${this.contentLength} (${percentage}%), ${uploadSpeed} MBs/sec`);\n\t        if (this.isDone()) {\n\t            this.displayedComplete = true;\n\t        }\n\t    }\n\t    /**\n\t     * Returns a function used to handle TransferProgressEvents.\n\t     */\n\t    onProgress() {\n\t        return (progress) => {\n\t            this.setSentBytes(progress.loadedBytes);\n\t        };\n\t    }\n\t    /**\n\t     * Starts the timer that displays the stats.\n\t     *\n\t     * @param delayInMs the delay between each write\n\t     */\n\t    startDisplayTimer(delayInMs = 1000) {\n\t        const displayCallback = () => {\n\t            this.display();\n\t            if (!this.isDone()) {\n\t                this.timeoutHandle = setTimeout(displayCallback, delayInMs);\n\t            }\n\t        };\n\t        this.timeoutHandle = setTimeout(displayCallback, delayInMs);\n\t    }\n\t    /**\n\t     * Stops the timer that displays the stats. As this typically indicates the upload\n\t     * is complete, this will display one last line, unless the last line has already\n\t     * been written.\n\t     */\n\t    stopDisplayTimer() {\n\t        if (this.timeoutHandle) {\n\t            clearTimeout(this.timeoutHandle);\n\t            this.timeoutHandle = undefined;\n\t        }\n\t        this.display();\n\t    }\n\t}\n\tuploadUtils.UploadProgress = UploadProgress;\n\t/**\n\t * Uploads a cache archive directly to Azure Blob Storage using the Azure SDK.\n\t * This function will display progress information to the console. Concurrency of the\n\t * upload is determined by the calling functions.\n\t *\n\t * @param signedUploadURL\n\t * @param archivePath\n\t * @param options\n\t * @returns\n\t */\n\tfunction uploadCacheArchiveSDK(signedUploadURL, archivePath, options) {\n\t    var _a;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const blobClient = new storage_blob_1.BlobClient(signedUploadURL);\n\t        const blockBlobClient = blobClient.getBlockBlobClient();\n\t        const uploadProgress = new UploadProgress((_a = options === null || options === void 0 ? void 0 : options.archiveSizeBytes) !== null && _a !== void 0 ? _a : 0);\n\t        // Specify data transfer options\n\t        const uploadOptions = {\n\t            blockSize: options === null || options === void 0 ? void 0 : options.uploadChunkSize,\n\t            concurrency: options === null || options === void 0 ? void 0 : options.uploadConcurrency,\n\t            maxSingleShotSize: 128 * 1024 * 1024,\n\t            onProgress: uploadProgress.onProgress()\n\t        };\n\t        try {\n\t            uploadProgress.startDisplayTimer();\n\t            core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);\n\t            const response = yield blockBlobClient.uploadFile(archivePath, uploadOptions);\n\t            // TODO: better management of non-retryable errors\n\t            if (response._response.status >= 400) {\n\t                throw new errors_1.InvalidResponseError(`uploadCacheArchiveSDK: upload failed with status code ${response._response.status}`);\n\t            }\n\t            return response;\n\t        }\n\t        catch (error) {\n\t            core.warning(`uploadCacheArchiveSDK: internal error uploading cache archive: ${error.message}`);\n\t            throw error;\n\t        }\n\t        finally {\n\t            uploadProgress.stopDisplayTimer();\n\t        }\n\t    });\n\t}\n\tuploadUtils.uploadCacheArchiveSDK = uploadCacheArchiveSDK;\n\t\n\treturn uploadUtils;\n}\n\nvar downloadUtils = {};\n\nvar requestUtils = {};\n\nvar hasRequiredRequestUtils;\n\nfunction requireRequestUtils () {\n\tif (hasRequiredRequestUtils) return requestUtils;\n\thasRequiredRequestUtils = 1;\n\tvar __createBinding = (requestUtils && requestUtils.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (requestUtils && requestUtils.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (requestUtils && requestUtils.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (requestUtils && requestUtils.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(requestUtils, \"__esModule\", { value: true });\n\trequestUtils.retryHttpClientResponse = requestUtils.retryTypedResponse = requestUtils.retry = requestUtils.isRetryableStatusCode = requestUtils.isServerErrorStatusCode = requestUtils.isSuccessStatusCode = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst http_client_1 = requireLib$2();\n\tconst constants_1 = requireConstants$3();\n\tfunction isSuccessStatusCode(statusCode) {\n\t    if (!statusCode) {\n\t        return false;\n\t    }\n\t    return statusCode >= 200 && statusCode < 300;\n\t}\n\trequestUtils.isSuccessStatusCode = isSuccessStatusCode;\n\tfunction isServerErrorStatusCode(statusCode) {\n\t    if (!statusCode) {\n\t        return true;\n\t    }\n\t    return statusCode >= 500;\n\t}\n\trequestUtils.isServerErrorStatusCode = isServerErrorStatusCode;\n\tfunction isRetryableStatusCode(statusCode) {\n\t    if (!statusCode) {\n\t        return false;\n\t    }\n\t    const retryableStatusCodes = [\n\t        http_client_1.HttpCodes.BadGateway,\n\t        http_client_1.HttpCodes.ServiceUnavailable,\n\t        http_client_1.HttpCodes.GatewayTimeout\n\t    ];\n\t    return retryableStatusCodes.includes(statusCode);\n\t}\n\trequestUtils.isRetryableStatusCode = isRetryableStatusCode;\n\tfunction sleep(milliseconds) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        return new Promise(resolve => setTimeout(resolve, milliseconds));\n\t    });\n\t}\n\tfunction retry(name, method, getStatusCode, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay, onError = undefined) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        let errorMessage = '';\n\t        let attempt = 1;\n\t        while (attempt <= maxAttempts) {\n\t            let response = undefined;\n\t            let statusCode = undefined;\n\t            let isRetryable = false;\n\t            try {\n\t                response = yield method();\n\t            }\n\t            catch (error) {\n\t                if (onError) {\n\t                    response = onError(error);\n\t                }\n\t                isRetryable = true;\n\t                errorMessage = error.message;\n\t            }\n\t            if (response) {\n\t                statusCode = getStatusCode(response);\n\t                if (!isServerErrorStatusCode(statusCode)) {\n\t                    return response;\n\t                }\n\t            }\n\t            if (statusCode) {\n\t                isRetryable = isRetryableStatusCode(statusCode);\n\t                errorMessage = `Cache service responded with ${statusCode}`;\n\t            }\n\t            core.debug(`${name} - Attempt ${attempt} of ${maxAttempts} failed with error: ${errorMessage}`);\n\t            if (!isRetryable) {\n\t                core.debug(`${name} - Error is not retryable`);\n\t                break;\n\t            }\n\t            yield sleep(delay);\n\t            attempt++;\n\t        }\n\t        throw Error(`${name} failed: ${errorMessage}`);\n\t    });\n\t}\n\trequestUtils.retry = retry;\n\tfunction retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        return yield retry(name, method, (response) => response.statusCode, maxAttempts, delay, \n\t        // If the error object contains the statusCode property, extract it and return\n\t        // an TypedResponse<T> so it can be processed by the retry logic.\n\t        (error) => {\n\t            if (error instanceof http_client_1.HttpClientError) {\n\t                return {\n\t                    statusCode: error.statusCode,\n\t                    result: null,\n\t                    headers: {},\n\t                    error\n\t                };\n\t            }\n\t            else {\n\t                return undefined;\n\t            }\n\t        });\n\t    });\n\t}\n\trequestUtils.retryTypedResponse = retryTypedResponse;\n\tfunction retryHttpClientResponse(name, method, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        return yield retry(name, method, (response) => response.message.statusCode, maxAttempts, delay);\n\t    });\n\t}\n\trequestUtils.retryHttpClientResponse = retryHttpClientResponse;\n\t\n\treturn requestUtils;\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n/// <reference path=\"../shims-public.d.ts\" />\nconst listenersMap$1 = new WeakMap();\nconst abortedMap = new WeakMap();\n/**\n * An aborter instance implements AbortSignal interface, can abort HTTP requests.\n *\n * - Call AbortSignal.none to create a new AbortSignal instance that cannot be cancelled.\n * Use `AbortSignal.none` when you are required to pass a cancellation token but the operation\n * cannot or will not ever be cancelled.\n *\n * @example\n * Abort without timeout\n * ```ts\n * await doAsyncWork(AbortSignal.none);\n * ```\n */\nlet AbortSignal$2 = class AbortSignal {\n    constructor() {\n        /**\n         * onabort event listener.\n         */\n        this.onabort = null;\n        listenersMap$1.set(this, []);\n        abortedMap.set(this, false);\n    }\n    /**\n     * Status of whether aborted or not.\n     *\n     * @readonly\n     */\n    get aborted() {\n        if (!abortedMap.has(this)) {\n            throw new TypeError(\"Expected `this` to be an instance of AbortSignal.\");\n        }\n        return abortedMap.get(this);\n    }\n    /**\n     * Creates a new AbortSignal instance that will never be aborted.\n     *\n     * @readonly\n     */\n    static get none() {\n        return new AbortSignal();\n    }\n    /**\n     * Added new \"abort\" event listener, only support \"abort\" event.\n     *\n     * @param _type - Only support \"abort\" event\n     * @param listener - The listener to be added\n     */\n    addEventListener(\n    // tslint:disable-next-line:variable-name\n    _type, listener) {\n        if (!listenersMap$1.has(this)) {\n            throw new TypeError(\"Expected `this` to be an instance of AbortSignal.\");\n        }\n        const listeners = listenersMap$1.get(this);\n        listeners.push(listener);\n    }\n    /**\n     * Remove \"abort\" event listener, only support \"abort\" event.\n     *\n     * @param _type - Only support \"abort\" event\n     * @param listener - The listener to be removed\n     */\n    removeEventListener(\n    // tslint:disable-next-line:variable-name\n    _type, listener) {\n        if (!listenersMap$1.has(this)) {\n            throw new TypeError(\"Expected `this` to be an instance of AbortSignal.\");\n        }\n        const listeners = listenersMap$1.get(this);\n        const index = listeners.indexOf(listener);\n        if (index > -1) {\n            listeners.splice(index, 1);\n        }\n    }\n    /**\n     * Dispatches a synthetic event to the AbortSignal.\n     */\n    dispatchEvent(_event) {\n        throw new Error(\"This is a stub dispatchEvent implementation that should not be used.  It only exists for type-checking purposes.\");\n    }\n};\n/**\n * Helper to trigger an abort event immediately, the onabort and all abort event listeners will be triggered.\n * Will try to trigger abort event for all linked AbortSignal nodes.\n *\n * - If there is a timeout, the timer will be cancelled.\n * - If aborted is true, nothing will happen.\n *\n * @internal\n */\n// eslint-disable-next-line @azure/azure-sdk/ts-use-interface-parameters\nfunction abortSignal$1(signal) {\n    if (signal.aborted) {\n        return;\n    }\n    if (signal.onabort) {\n        signal.onabort.call(signal);\n    }\n    const listeners = listenersMap$1.get(signal);\n    if (listeners) {\n        // Create a copy of listeners so mutations to the array\n        // (e.g. via removeListener calls) don't affect the listeners\n        // we invoke.\n        listeners.slice().forEach((listener) => {\n            listener.call(signal, { type: \"abort\" });\n        });\n    }\n    abortedMap.set(signal, true);\n}\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n/**\n * This error is thrown when an asynchronous operation has been aborted.\n * Check for this error by testing the `name` that the name property of the\n * error matches `\"AbortError\"`.\n *\n * @example\n * ```ts\n * const controller = new AbortController();\n * controller.abort();\n * try {\n *   doAsyncWork(controller.signal)\n * } catch (e) {\n *   if (e.name === 'AbortError') {\n *     // handle abort error here.\n *   }\n * }\n * ```\n */\nlet AbortError$1 = class AbortError extends Error {\n    constructor(message) {\n        super(message);\n        this.name = \"AbortError\";\n    }\n};\n/**\n * An AbortController provides an AbortSignal and the associated controls to signal\n * that an asynchronous operation should be aborted.\n *\n * @example\n * Abort an operation when another event fires\n * ```ts\n * const controller = new AbortController();\n * const signal = controller.signal;\n * doAsyncWork(signal);\n * button.addEventListener('click', () => controller.abort());\n * ```\n *\n * @example\n * Share aborter cross multiple operations in 30s\n * ```ts\n * // Upload the same data to 2 different data centers at the same time,\n * // abort another when any of them is finished\n * const controller = AbortController.withTimeout(30 * 1000);\n * doAsyncWork(controller.signal).then(controller.abort);\n * doAsyncWork(controller.signal).then(controller.abort);\n *```\n *\n * @example\n * Cascaded aborting\n * ```ts\n * // All operations can't take more than 30 seconds\n * const aborter = Aborter.timeout(30 * 1000);\n *\n * // Following 2 operations can't take more than 25 seconds\n * await doAsyncWork(aborter.withTimeout(25 * 1000));\n * await doAsyncWork(aborter.withTimeout(25 * 1000));\n * ```\n */\nlet AbortController$2 = class AbortController {\n    // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\n    constructor(parentSignals) {\n        this._signal = new AbortSignal$2();\n        if (!parentSignals) {\n            return;\n        }\n        // coerce parentSignals into an array\n        if (!Array.isArray(parentSignals)) {\n            // eslint-disable-next-line prefer-rest-params\n            parentSignals = arguments;\n        }\n        for (const parentSignal of parentSignals) {\n            // if the parent signal has already had abort() called,\n            // then call abort on this signal as well.\n            if (parentSignal.aborted) {\n                this.abort();\n            }\n            else {\n                // when the parent signal aborts, this signal should as well.\n                parentSignal.addEventListener(\"abort\", () => {\n                    this.abort();\n                });\n            }\n        }\n    }\n    /**\n     * The AbortSignal associated with this controller that will signal aborted\n     * when the abort method is called on this controller.\n     *\n     * @readonly\n     */\n    get signal() {\n        return this._signal;\n    }\n    /**\n     * Signal that any operations passed this controller's associated abort signal\n     * to cancel any remaining work and throw an `AbortError`.\n     */\n    abort() {\n        abortSignal$1(this._signal);\n    }\n    /**\n     * Creates a new AbortSignal instance that will abort after the provided ms.\n     * @param ms - Elapsed time in milliseconds to trigger an abort.\n     */\n    static timeout(ms) {\n        const signal = new AbortSignal$2();\n        const timer = setTimeout(abortSignal$1, ms, signal);\n        // Prevent the active Timer from keeping the Node.js event loop active.\n        if (typeof timer.unref === \"function\") {\n            timer.unref();\n        }\n        return signal;\n    }\n};\n\n// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n// Changes to Aborter\n// * Rename Aborter to AbortSignal\n// * Remove withValue and getValue - async context should be solved differently/wholistically, not tied to cancellation\n// * Remove withTimeout, it's moved to the controller\n// * AbortSignal constructor no longer takes a parent. Cancellation graphs are created from the controller.\n// Potential changes to align with DOM Spec\n// * dispatchEvent on Signal\n\nvar src = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tAbortController: AbortController$2,\n\tAbortError: AbortError$1,\n\tAbortSignal: AbortSignal$2\n});\n\nvar require$$10 = /*@__PURE__*/getAugmentedNamespace(src);\n\nvar hasRequiredDownloadUtils;\n\nfunction requireDownloadUtils () {\n\tif (hasRequiredDownloadUtils) return downloadUtils;\n\thasRequiredDownloadUtils = 1;\n\tvar __createBinding = (downloadUtils && downloadUtils.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (downloadUtils && downloadUtils.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (downloadUtils && downloadUtils.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (downloadUtils && downloadUtils.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(downloadUtils, \"__esModule\", { value: true });\n\tdownloadUtils.downloadCacheStorageSDK = downloadUtils.downloadCacheHttpClientConcurrent = downloadUtils.downloadCacheHttpClient = downloadUtils.DownloadProgress = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst http_client_1 = requireLib$2();\n\tconst storage_blob_1 = require$$0$4;\n\tconst buffer = __importStar(require$$0$8);\n\tconst fs = __importStar(fs__default);\n\tconst stream = __importStar(require$$0$b);\n\tconst util = __importStar(require$$0__default$1);\n\tconst utils = __importStar(requireCacheUtils());\n\tconst constants_1 = requireConstants$3();\n\tconst requestUtils_1 = requireRequestUtils();\n\tconst abort_controller_1 = require$$10;\n\t/**\n\t * Pipes the body of a HTTP response to a stream\n\t *\n\t * @param response the HTTP response\n\t * @param output the writable stream\n\t */\n\tfunction pipeResponseToStream(response, output) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const pipeline = util.promisify(stream.pipeline);\n\t        yield pipeline(response.message, output);\n\t    });\n\t}\n\t/**\n\t * Class for tracking the download state and displaying stats.\n\t */\n\tclass DownloadProgress {\n\t    constructor(contentLength) {\n\t        this.contentLength = contentLength;\n\t        this.segmentIndex = 0;\n\t        this.segmentSize = 0;\n\t        this.segmentOffset = 0;\n\t        this.receivedBytes = 0;\n\t        this.displayedComplete = false;\n\t        this.startTime = Date.now();\n\t    }\n\t    /**\n\t     * Progress to the next segment. Only call this method when the previous segment\n\t     * is complete.\n\t     *\n\t     * @param segmentSize the length of the next segment\n\t     */\n\t    nextSegment(segmentSize) {\n\t        this.segmentOffset = this.segmentOffset + this.segmentSize;\n\t        this.segmentIndex = this.segmentIndex + 1;\n\t        this.segmentSize = segmentSize;\n\t        this.receivedBytes = 0;\n\t        core.debug(`Downloading segment at offset ${this.segmentOffset} with length ${this.segmentSize}...`);\n\t    }\n\t    /**\n\t     * Sets the number of bytes received for the current segment.\n\t     *\n\t     * @param receivedBytes the number of bytes received\n\t     */\n\t    setReceivedBytes(receivedBytes) {\n\t        this.receivedBytes = receivedBytes;\n\t    }\n\t    /**\n\t     * Returns the total number of bytes transferred.\n\t     */\n\t    getTransferredBytes() {\n\t        return this.segmentOffset + this.receivedBytes;\n\t    }\n\t    /**\n\t     * Returns true if the download is complete.\n\t     */\n\t    isDone() {\n\t        return this.getTransferredBytes() === this.contentLength;\n\t    }\n\t    /**\n\t     * Prints the current download stats. Once the download completes, this will print one\n\t     * last line and then stop.\n\t     */\n\t    display() {\n\t        if (this.displayedComplete) {\n\t            return;\n\t        }\n\t        const transferredBytes = this.segmentOffset + this.receivedBytes;\n\t        const percentage = (100 * (transferredBytes / this.contentLength)).toFixed(1);\n\t        const elapsedTime = Date.now() - this.startTime;\n\t        const downloadSpeed = (transferredBytes /\n\t            (1024 * 1024) /\n\t            (elapsedTime / 1000)).toFixed(1);\n\t        core.info(`Received ${transferredBytes} of ${this.contentLength} (${percentage}%), ${downloadSpeed} MBs/sec`);\n\t        if (this.isDone()) {\n\t            this.displayedComplete = true;\n\t        }\n\t    }\n\t    /**\n\t     * Returns a function used to handle TransferProgressEvents.\n\t     */\n\t    onProgress() {\n\t        return (progress) => {\n\t            this.setReceivedBytes(progress.loadedBytes);\n\t        };\n\t    }\n\t    /**\n\t     * Starts the timer that displays the stats.\n\t     *\n\t     * @param delayInMs the delay between each write\n\t     */\n\t    startDisplayTimer(delayInMs = 1000) {\n\t        const displayCallback = () => {\n\t            this.display();\n\t            if (!this.isDone()) {\n\t                this.timeoutHandle = setTimeout(displayCallback, delayInMs);\n\t            }\n\t        };\n\t        this.timeoutHandle = setTimeout(displayCallback, delayInMs);\n\t    }\n\t    /**\n\t     * Stops the timer that displays the stats. As this typically indicates the download\n\t     * is complete, this will display one last line, unless the last line has already\n\t     * been written.\n\t     */\n\t    stopDisplayTimer() {\n\t        if (this.timeoutHandle) {\n\t            clearTimeout(this.timeoutHandle);\n\t            this.timeoutHandle = undefined;\n\t        }\n\t        this.display();\n\t    }\n\t}\n\tdownloadUtils.DownloadProgress = DownloadProgress;\n\t/**\n\t * Download the cache using the Actions toolkit http-client\n\t *\n\t * @param archiveLocation the URL for the cache\n\t * @param archivePath the local path where the cache is saved\n\t */\n\tfunction downloadCacheHttpClient(archiveLocation, archivePath) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const writeStream = fs.createWriteStream(archivePath);\n\t        const httpClient = new http_client_1.HttpClient('actions/cache');\n\t        const downloadResponse = yield (0, requestUtils_1.retryHttpClientResponse)('downloadCache', () => __awaiter(this, void 0, void 0, function* () { return httpClient.get(archiveLocation); }));\n\t        // Abort download if no traffic received over the socket.\n\t        downloadResponse.message.socket.setTimeout(constants_1.SocketTimeout, () => {\n\t            downloadResponse.message.destroy();\n\t            core.debug(`Aborting download, socket timed out after ${constants_1.SocketTimeout} ms`);\n\t        });\n\t        yield pipeResponseToStream(downloadResponse, writeStream);\n\t        // Validate download size.\n\t        const contentLengthHeader = downloadResponse.message.headers['content-length'];\n\t        if (contentLengthHeader) {\n\t            const expectedLength = parseInt(contentLengthHeader);\n\t            const actualLength = utils.getArchiveFileSizeInBytes(archivePath);\n\t            if (actualLength !== expectedLength) {\n\t                throw new Error(`Incomplete download. Expected file size: ${expectedLength}, actual file size: ${actualLength}`);\n\t            }\n\t        }\n\t        else {\n\t            core.debug('Unable to validate download, no Content-Length header');\n\t        }\n\t    });\n\t}\n\tdownloadUtils.downloadCacheHttpClient = downloadCacheHttpClient;\n\t/**\n\t * Download the cache using the Actions toolkit http-client concurrently\n\t *\n\t * @param archiveLocation the URL for the cache\n\t * @param archivePath the local path where the cache is saved\n\t */\n\tfunction downloadCacheHttpClientConcurrent(archiveLocation, archivePath, options) {\n\t    var _a;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const archiveDescriptor = yield fs.promises.open(archivePath, 'w');\n\t        const httpClient = new http_client_1.HttpClient('actions/cache', undefined, {\n\t            socketTimeout: options.timeoutInMs,\n\t            keepAlive: true\n\t        });\n\t        try {\n\t            const res = yield (0, requestUtils_1.retryHttpClientResponse)('downloadCacheMetadata', () => __awaiter(this, void 0, void 0, function* () { return yield httpClient.request('HEAD', archiveLocation, null, {}); }));\n\t            const lengthHeader = res.message.headers['content-length'];\n\t            if (lengthHeader === undefined || lengthHeader === null) {\n\t                throw new Error('Content-Length not found on blob response');\n\t            }\n\t            const length = parseInt(lengthHeader);\n\t            if (Number.isNaN(length)) {\n\t                throw new Error(`Could not interpret Content-Length: ${length}`);\n\t            }\n\t            const downloads = [];\n\t            const blockSize = 4 * 1024 * 1024;\n\t            for (let offset = 0; offset < length; offset += blockSize) {\n\t                const count = Math.min(blockSize, length - offset);\n\t                downloads.push({\n\t                    offset,\n\t                    promiseGetter: () => __awaiter(this, void 0, void 0, function* () {\n\t                        return yield downloadSegmentRetry(httpClient, archiveLocation, offset, count);\n\t                    })\n\t                });\n\t            }\n\t            // reverse to use .pop instead of .shift\n\t            downloads.reverse();\n\t            let actives = 0;\n\t            let bytesDownloaded = 0;\n\t            const progress = new DownloadProgress(length);\n\t            progress.startDisplayTimer();\n\t            const progressFn = progress.onProgress();\n\t            const activeDownloads = [];\n\t            let nextDownload;\n\t            const waitAndWrite = () => __awaiter(this, void 0, void 0, function* () {\n\t                const segment = yield Promise.race(Object.values(activeDownloads));\n\t                yield archiveDescriptor.write(segment.buffer, 0, segment.count, segment.offset);\n\t                actives--;\n\t                delete activeDownloads[segment.offset];\n\t                bytesDownloaded += segment.count;\n\t                progressFn({ loadedBytes: bytesDownloaded });\n\t            });\n\t            while ((nextDownload = downloads.pop())) {\n\t                activeDownloads[nextDownload.offset] = nextDownload.promiseGetter();\n\t                actives++;\n\t                if (actives >= ((_a = options.downloadConcurrency) !== null && _a !== void 0 ? _a : 10)) {\n\t                    yield waitAndWrite();\n\t                }\n\t            }\n\t            while (actives > 0) {\n\t                yield waitAndWrite();\n\t            }\n\t        }\n\t        finally {\n\t            httpClient.dispose();\n\t            yield archiveDescriptor.close();\n\t        }\n\t    });\n\t}\n\tdownloadUtils.downloadCacheHttpClientConcurrent = downloadCacheHttpClientConcurrent;\n\tfunction downloadSegmentRetry(httpClient, archiveLocation, offset, count) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const retries = 5;\n\t        let failures = 0;\n\t        while (true) {\n\t            try {\n\t                const timeout = 30000;\n\t                const result = yield promiseWithTimeout(timeout, downloadSegment(httpClient, archiveLocation, offset, count));\n\t                if (typeof result === 'string') {\n\t                    throw new Error('downloadSegmentRetry failed due to timeout');\n\t                }\n\t                return result;\n\t            }\n\t            catch (err) {\n\t                if (failures >= retries) {\n\t                    throw err;\n\t                }\n\t                failures++;\n\t            }\n\t        }\n\t    });\n\t}\n\tfunction downloadSegment(httpClient, archiveLocation, offset, count) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const partRes = yield (0, requestUtils_1.retryHttpClientResponse)('downloadCachePart', () => __awaiter(this, void 0, void 0, function* () {\n\t            return yield httpClient.get(archiveLocation, {\n\t                Range: `bytes=${offset}-${offset + count - 1}`\n\t            });\n\t        }));\n\t        if (!partRes.readBodyBuffer) {\n\t            throw new Error('Expected HttpClientResponse to implement readBodyBuffer');\n\t        }\n\t        return {\n\t            offset,\n\t            count,\n\t            buffer: yield partRes.readBodyBuffer()\n\t        };\n\t    });\n\t}\n\t/**\n\t * Download the cache using the Azure Storage SDK.  Only call this method if the\n\t * URL points to an Azure Storage endpoint.\n\t *\n\t * @param archiveLocation the URL for the cache\n\t * @param archivePath the local path where the cache is saved\n\t * @param options the download options with the defaults set\n\t */\n\tfunction downloadCacheStorageSDK(archiveLocation, archivePath, options) {\n\t    var _a;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const client = new storage_blob_1.BlockBlobClient(archiveLocation, undefined, {\n\t            retryOptions: {\n\t                // Override the timeout used when downloading each 4 MB chunk\n\t                // The default is 2 min / MB, which is way too slow\n\t                tryTimeoutInMs: options.timeoutInMs\n\t            }\n\t        });\n\t        const properties = yield client.getProperties();\n\t        const contentLength = (_a = properties.contentLength) !== null && _a !== void 0 ? _a : -1;\n\t        if (contentLength < 0) {\n\t            // We should never hit this condition, but just in case fall back to downloading the\n\t            // file as one large stream\n\t            core.debug('Unable to determine content length, downloading file with http-client...');\n\t            yield downloadCacheHttpClient(archiveLocation, archivePath);\n\t        }\n\t        else {\n\t            // Use downloadToBuffer for faster downloads, since internally it splits the\n\t            // file into 4 MB chunks which can then be parallelized and retried independently\n\t            //\n\t            // If the file exceeds the buffer maximum length (~1 GB on 32-bit systems and ~2 GB\n\t            // on 64-bit systems), split the download into multiple segments\n\t            // ~2 GB = 2147483647, beyond this, we start getting out of range error. So, capping it accordingly.\n\t            // Updated segment size to 128MB = 134217728 bytes, to complete a segment faster and fail fast\n\t            const maxSegmentSize = Math.min(134217728, buffer.constants.MAX_LENGTH);\n\t            const downloadProgress = new DownloadProgress(contentLength);\n\t            const fd = fs.openSync(archivePath, 'w');\n\t            try {\n\t                downloadProgress.startDisplayTimer();\n\t                const controller = new abort_controller_1.AbortController();\n\t                const abortSignal = controller.signal;\n\t                while (!downloadProgress.isDone()) {\n\t                    const segmentStart = downloadProgress.segmentOffset + downloadProgress.segmentSize;\n\t                    const segmentSize = Math.min(maxSegmentSize, contentLength - segmentStart);\n\t                    downloadProgress.nextSegment(segmentSize);\n\t                    const result = yield promiseWithTimeout(options.segmentTimeoutInMs || 3600000, client.downloadToBuffer(segmentStart, segmentSize, {\n\t                        abortSignal,\n\t                        concurrency: options.downloadConcurrency,\n\t                        onProgress: downloadProgress.onProgress()\n\t                    }));\n\t                    if (result === 'timeout') {\n\t                        controller.abort();\n\t                        throw new Error('Aborting cache download as the download time exceeded the timeout.');\n\t                    }\n\t                    else if (Buffer.isBuffer(result)) {\n\t                        fs.writeFileSync(fd, result);\n\t                    }\n\t                }\n\t            }\n\t            finally {\n\t                downloadProgress.stopDisplayTimer();\n\t                fs.closeSync(fd);\n\t            }\n\t        }\n\t    });\n\t}\n\tdownloadUtils.downloadCacheStorageSDK = downloadCacheStorageSDK;\n\tconst promiseWithTimeout = (timeoutMs, promise) => __awaiter(void 0, void 0, void 0, function* () {\n\t    let timeoutHandle;\n\t    const timeoutPromise = new Promise(resolve => {\n\t        timeoutHandle = setTimeout(() => resolve('timeout'), timeoutMs);\n\t    });\n\t    return Promise.race([promise, timeoutPromise]).then(result => {\n\t        clearTimeout(timeoutHandle);\n\t        return result;\n\t    });\n\t});\n\t\n\treturn downloadUtils;\n}\n\nvar options = {};\n\nvar hasRequiredOptions;\n\nfunction requireOptions () {\n\tif (hasRequiredOptions) return options;\n\thasRequiredOptions = 1;\n\tvar __createBinding = (options && options.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (options && options.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (options && options.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(options, \"__esModule\", { value: true });\n\toptions.getDownloadOptions = options.getUploadOptions = void 0;\n\tconst core = __importStar(requireCore$1());\n\t/**\n\t * Returns a copy of the upload options with defaults filled in.\n\t *\n\t * @param copy the original upload options\n\t */\n\tfunction getUploadOptions(copy) {\n\t    // Defaults if not overriden\n\t    const result = {\n\t        useAzureSdk: false,\n\t        uploadConcurrency: 4,\n\t        uploadChunkSize: 32 * 1024 * 1024\n\t    };\n\t    if (copy) {\n\t        if (typeof copy.useAzureSdk === 'boolean') {\n\t            result.useAzureSdk = copy.useAzureSdk;\n\t        }\n\t        if (typeof copy.uploadConcurrency === 'number') {\n\t            result.uploadConcurrency = copy.uploadConcurrency;\n\t        }\n\t        if (typeof copy.uploadChunkSize === 'number') {\n\t            result.uploadChunkSize = copy.uploadChunkSize;\n\t        }\n\t    }\n\t    /**\n\t     * Add env var overrides\n\t     */\n\t    // Cap the uploadConcurrency at 32\n\t    result.uploadConcurrency = !isNaN(Number(process.env['CACHE_UPLOAD_CONCURRENCY']))\n\t        ? Math.min(32, Number(process.env['CACHE_UPLOAD_CONCURRENCY']))\n\t        : result.uploadConcurrency;\n\t    // Cap the uploadChunkSize at 128MiB\n\t    result.uploadChunkSize = !isNaN(Number(process.env['CACHE_UPLOAD_CHUNK_SIZE']))\n\t        ? Math.min(128 * 1024 * 1024, Number(process.env['CACHE_UPLOAD_CHUNK_SIZE']) * 1024 * 1024)\n\t        : result.uploadChunkSize;\n\t    core.debug(`Use Azure SDK: ${result.useAzureSdk}`);\n\t    core.debug(`Upload concurrency: ${result.uploadConcurrency}`);\n\t    core.debug(`Upload chunk size: ${result.uploadChunkSize}`);\n\t    return result;\n\t}\n\toptions.getUploadOptions = getUploadOptions;\n\t/**\n\t * Returns a copy of the download options with defaults filled in.\n\t *\n\t * @param copy the original download options\n\t */\n\tfunction getDownloadOptions(copy) {\n\t    const result = {\n\t        useAzureSdk: false,\n\t        concurrentBlobDownloads: true,\n\t        downloadConcurrency: 8,\n\t        timeoutInMs: 30000,\n\t        segmentTimeoutInMs: 600000,\n\t        lookupOnly: false\n\t    };\n\t    if (copy) {\n\t        if (typeof copy.useAzureSdk === 'boolean') {\n\t            result.useAzureSdk = copy.useAzureSdk;\n\t        }\n\t        if (typeof copy.concurrentBlobDownloads === 'boolean') {\n\t            result.concurrentBlobDownloads = copy.concurrentBlobDownloads;\n\t        }\n\t        if (typeof copy.downloadConcurrency === 'number') {\n\t            result.downloadConcurrency = copy.downloadConcurrency;\n\t        }\n\t        if (typeof copy.timeoutInMs === 'number') {\n\t            result.timeoutInMs = copy.timeoutInMs;\n\t        }\n\t        if (typeof copy.segmentTimeoutInMs === 'number') {\n\t            result.segmentTimeoutInMs = copy.segmentTimeoutInMs;\n\t        }\n\t        if (typeof copy.lookupOnly === 'boolean') {\n\t            result.lookupOnly = copy.lookupOnly;\n\t        }\n\t    }\n\t    const segmentDownloadTimeoutMins = process.env['SEGMENT_DOWNLOAD_TIMEOUT_MINS'];\n\t    if (segmentDownloadTimeoutMins &&\n\t        !isNaN(Number(segmentDownloadTimeoutMins)) &&\n\t        isFinite(Number(segmentDownloadTimeoutMins))) {\n\t        result.segmentTimeoutInMs = Number(segmentDownloadTimeoutMins) * 60 * 1000;\n\t    }\n\t    core.debug(`Use Azure SDK: ${result.useAzureSdk}`);\n\t    core.debug(`Download concurrency: ${result.downloadConcurrency}`);\n\t    core.debug(`Request timeout (ms): ${result.timeoutInMs}`);\n\t    core.debug(`Cache segment download timeout mins env var: ${process.env['SEGMENT_DOWNLOAD_TIMEOUT_MINS']}`);\n\t    core.debug(`Segment download timeout (ms): ${result.segmentTimeoutInMs}`);\n\t    core.debug(`Lookup only: ${result.lookupOnly}`);\n\t    return result;\n\t}\n\toptions.getDownloadOptions = getDownloadOptions;\n\t\n\treturn options;\n}\n\nvar config$1 = {};\n\nvar hasRequiredConfig$1;\n\nfunction requireConfig$1 () {\n\tif (hasRequiredConfig$1) return config$1;\n\thasRequiredConfig$1 = 1;\n\tObject.defineProperty(config$1, \"__esModule\", { value: true });\n\tconfig$1.getCacheServiceURL = config$1.getCacheServiceVersion = config$1.isGhes = void 0;\n\tfunction isGhes() {\n\t    const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');\n\t    const hostname = ghUrl.hostname.trimEnd().toUpperCase();\n\t    const isGitHubHost = hostname === 'GITHUB.COM';\n\t    const isGheHost = hostname.endsWith('.GHE.COM');\n\t    const isLocalHost = hostname.endsWith('.LOCALHOST');\n\t    return !isGitHubHost && !isGheHost && !isLocalHost;\n\t}\n\tconfig$1.isGhes = isGhes;\n\tfunction getCacheServiceVersion() {\n\t    // Cache service v2 is not supported on GHES. We will default to\n\t    // cache service v1 even if the feature flag was enabled by user.\n\t    if (isGhes())\n\t        return 'v1';\n\t    return process.env['ACTIONS_CACHE_SERVICE_V2'] ? 'v2' : 'v1';\n\t}\n\tconfig$1.getCacheServiceVersion = getCacheServiceVersion;\n\tfunction getCacheServiceURL() {\n\t    const version = getCacheServiceVersion();\n\t    // Based on the version of the cache service, we will determine which\n\t    // URL to use.\n\t    switch (version) {\n\t        case 'v1':\n\t            return (process.env['ACTIONS_CACHE_URL'] ||\n\t                process.env['ACTIONS_RESULTS_URL'] ||\n\t                '');\n\t        case 'v2':\n\t            return process.env['ACTIONS_RESULTS_URL'] || '';\n\t        default:\n\t            throw new Error(`Unsupported cache service version: ${version}`);\n\t    }\n\t}\n\tconfig$1.getCacheServiceURL = getCacheServiceURL;\n\t\n\treturn config$1;\n}\n\nvar userAgent$2 = {};\n\nvar version$1 = \"4.0.3\";\nvar require$$0$3 = {\n\tversion: version$1};\n\nvar hasRequiredUserAgent$1;\n\nfunction requireUserAgent$1 () {\n\tif (hasRequiredUserAgent$1) return userAgent$2;\n\thasRequiredUserAgent$1 = 1;\n\tObject.defineProperty(userAgent$2, \"__esModule\", { value: true });\n\tuserAgent$2.getUserAgentString = void 0;\n\t// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports\n\tconst packageJson = require$$0$3;\n\t/**\n\t * Ensure that this User Agent String is used in all HTTP calls so that we can monitor telemetry between different versions of this package\n\t */\n\tfunction getUserAgentString() {\n\t    return `@actions/cache-${packageJson.version}`;\n\t}\n\tuserAgent$2.getUserAgentString = getUserAgentString;\n\t\n\treturn userAgent$2;\n}\n\nvar hasRequiredCacheHttpClient;\n\nfunction requireCacheHttpClient () {\n\tif (hasRequiredCacheHttpClient) return cacheHttpClient;\n\thasRequiredCacheHttpClient = 1;\n\tvar __createBinding = (cacheHttpClient && cacheHttpClient.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (cacheHttpClient && cacheHttpClient.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (cacheHttpClient && cacheHttpClient.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (cacheHttpClient && cacheHttpClient.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(cacheHttpClient, \"__esModule\", { value: true });\n\tcacheHttpClient.saveCache = cacheHttpClient.reserveCache = cacheHttpClient.downloadCache = cacheHttpClient.getCacheEntry = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst http_client_1 = requireLib$2();\n\tconst auth_1 = requireAuth();\n\tconst fs = __importStar(fs__default);\n\tconst url_1 = Url;\n\tconst utils = __importStar(requireCacheUtils());\n\tconst uploadUtils_1 = requireUploadUtils();\n\tconst downloadUtils_1 = requireDownloadUtils();\n\tconst options_1 = requireOptions();\n\tconst requestUtils_1 = requireRequestUtils();\n\tconst config_1 = requireConfig$1();\n\tconst user_agent_1 = requireUserAgent$1();\n\tfunction getCacheApiUrl(resource) {\n\t    const baseUrl = (0, config_1.getCacheServiceURL)();\n\t    if (!baseUrl) {\n\t        throw new Error('Cache Service Url not found, unable to restore cache.');\n\t    }\n\t    const url = `${baseUrl}_apis/artifactcache/${resource}`;\n\t    core.debug(`Resource Url: ${url}`);\n\t    return url;\n\t}\n\tfunction createAcceptHeader(type, apiVersion) {\n\t    return `${type};api-version=${apiVersion}`;\n\t}\n\tfunction getRequestOptions() {\n\t    const requestOptions = {\n\t        headers: {\n\t            Accept: createAcceptHeader('application/json', '6.0-preview.1')\n\t        }\n\t    };\n\t    return requestOptions;\n\t}\n\tfunction createHttpClient() {\n\t    const token = process.env['ACTIONS_RUNTIME_TOKEN'] || '';\n\t    const bearerCredentialHandler = new auth_1.BearerCredentialHandler(token);\n\t    return new http_client_1.HttpClient((0, user_agent_1.getUserAgentString)(), [bearerCredentialHandler], getRequestOptions());\n\t}\n\tfunction getCacheEntry(keys, paths, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const httpClient = createHttpClient();\n\t        const version = utils.getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod, options === null || options === void 0 ? void 0 : options.enableCrossOsArchive);\n\t        const resource = `cache?keys=${encodeURIComponent(keys.join(','))}&version=${version}`;\n\t        const response = yield (0, requestUtils_1.retryTypedResponse)('getCacheEntry', () => __awaiter(this, void 0, void 0, function* () { return httpClient.getJson(getCacheApiUrl(resource)); }));\n\t        // Cache not found\n\t        if (response.statusCode === 204) {\n\t            // List cache for primary key only if cache miss occurs\n\t            if (core.isDebug()) {\n\t                yield printCachesListForDiagnostics(keys[0], httpClient, version);\n\t            }\n\t            return null;\n\t        }\n\t        if (!(0, requestUtils_1.isSuccessStatusCode)(response.statusCode)) {\n\t            throw new Error(`Cache service responded with ${response.statusCode}`);\n\t        }\n\t        const cacheResult = response.result;\n\t        const cacheDownloadUrl = cacheResult === null || cacheResult === void 0 ? void 0 : cacheResult.archiveLocation;\n\t        if (!cacheDownloadUrl) {\n\t            // Cache achiveLocation not found. This should never happen, and hence bail out.\n\t            throw new Error('Cache not found.');\n\t        }\n\t        core.setSecret(cacheDownloadUrl);\n\t        core.debug(`Cache Result:`);\n\t        core.debug(JSON.stringify(cacheResult));\n\t        return cacheResult;\n\t    });\n\t}\n\tcacheHttpClient.getCacheEntry = getCacheEntry;\n\tfunction printCachesListForDiagnostics(key, httpClient, version) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const resource = `caches?key=${encodeURIComponent(key)}`;\n\t        const response = yield (0, requestUtils_1.retryTypedResponse)('listCache', () => __awaiter(this, void 0, void 0, function* () { return httpClient.getJson(getCacheApiUrl(resource)); }));\n\t        if (response.statusCode === 200) {\n\t            const cacheListResult = response.result;\n\t            const totalCount = cacheListResult === null || cacheListResult === void 0 ? void 0 : cacheListResult.totalCount;\n\t            if (totalCount && totalCount > 0) {\n\t                core.debug(`No matching cache found for cache key '${key}', version '${version} and scope ${process.env['GITHUB_REF']}. There exist one or more cache(s) with similar key but they have different version or scope. See more info on cache matching here: https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key \\nOther caches with similar key:`);\n\t                for (const cacheEntry of (cacheListResult === null || cacheListResult === void 0 ? void 0 : cacheListResult.artifactCaches) || []) {\n\t                    core.debug(`Cache Key: ${cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.cacheKey}, Cache Version: ${cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.cacheVersion}, Cache Scope: ${cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.scope}, Cache Created: ${cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.creationTime}`);\n\t                }\n\t            }\n\t        }\n\t    });\n\t}\n\tfunction downloadCache(archiveLocation, archivePath, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const archiveUrl = new url_1.URL(archiveLocation);\n\t        const downloadOptions = (0, options_1.getDownloadOptions)(options);\n\t        if (archiveUrl.hostname.endsWith('.blob.core.windows.net')) {\n\t            if (downloadOptions.useAzureSdk) {\n\t                // Use Azure storage SDK to download caches hosted on Azure to improve speed and reliability.\n\t                yield (0, downloadUtils_1.downloadCacheStorageSDK)(archiveLocation, archivePath, downloadOptions);\n\t            }\n\t            else if (downloadOptions.concurrentBlobDownloads) {\n\t                // Use concurrent implementation with HttpClient to work around blob SDK issue\n\t                yield (0, downloadUtils_1.downloadCacheHttpClientConcurrent)(archiveLocation, archivePath, downloadOptions);\n\t            }\n\t            else {\n\t                // Otherwise, download using the Actions http-client.\n\t                yield (0, downloadUtils_1.downloadCacheHttpClient)(archiveLocation, archivePath);\n\t            }\n\t        }\n\t        else {\n\t            yield (0, downloadUtils_1.downloadCacheHttpClient)(archiveLocation, archivePath);\n\t        }\n\t    });\n\t}\n\tcacheHttpClient.downloadCache = downloadCache;\n\t// Reserve Cache\n\tfunction reserveCache(key, paths, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const httpClient = createHttpClient();\n\t        const version = utils.getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod, options === null || options === void 0 ? void 0 : options.enableCrossOsArchive);\n\t        const reserveCacheRequest = {\n\t            key,\n\t            version,\n\t            cacheSize: options === null || options === void 0 ? void 0 : options.cacheSize\n\t        };\n\t        const response = yield (0, requestUtils_1.retryTypedResponse)('reserveCache', () => __awaiter(this, void 0, void 0, function* () {\n\t            return httpClient.postJson(getCacheApiUrl('caches'), reserveCacheRequest);\n\t        }));\n\t        return response;\n\t    });\n\t}\n\tcacheHttpClient.reserveCache = reserveCache;\n\tfunction getContentRange(start, end) {\n\t    // Format: `bytes start-end/filesize\n\t    // start and end are inclusive\n\t    // filesize can be *\n\t    // For a 200 byte chunk starting at byte 0:\n\t    // Content-Range: bytes 0-199/*\n\t    return `bytes ${start}-${end}/*`;\n\t}\n\tfunction uploadChunk(httpClient, resourceUrl, openStream, start, end) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        core.debug(`Uploading chunk of size ${end - start + 1} bytes at offset ${start} with content range: ${getContentRange(start, end)}`);\n\t        const additionalHeaders = {\n\t            'Content-Type': 'application/octet-stream',\n\t            'Content-Range': getContentRange(start, end)\n\t        };\n\t        const uploadChunkResponse = yield (0, requestUtils_1.retryHttpClientResponse)(`uploadChunk (start: ${start}, end: ${end})`, () => __awaiter(this, void 0, void 0, function* () {\n\t            return httpClient.sendStream('PATCH', resourceUrl, openStream(), additionalHeaders);\n\t        }));\n\t        if (!(0, requestUtils_1.isSuccessStatusCode)(uploadChunkResponse.message.statusCode)) {\n\t            throw new Error(`Cache service responded with ${uploadChunkResponse.message.statusCode} during upload chunk.`);\n\t        }\n\t    });\n\t}\n\tfunction uploadFile(httpClient, cacheId, archivePath, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // Upload Chunks\n\t        const fileSize = utils.getArchiveFileSizeInBytes(archivePath);\n\t        const resourceUrl = getCacheApiUrl(`caches/${cacheId.toString()}`);\n\t        const fd = fs.openSync(archivePath, 'r');\n\t        const uploadOptions = (0, options_1.getUploadOptions)(options);\n\t        const concurrency = utils.assertDefined('uploadConcurrency', uploadOptions.uploadConcurrency);\n\t        const maxChunkSize = utils.assertDefined('uploadChunkSize', uploadOptions.uploadChunkSize);\n\t        const parallelUploads = [...new Array(concurrency).keys()];\n\t        core.debug('Awaiting all uploads');\n\t        let offset = 0;\n\t        try {\n\t            yield Promise.all(parallelUploads.map(() => __awaiter(this, void 0, void 0, function* () {\n\t                while (offset < fileSize) {\n\t                    const chunkSize = Math.min(fileSize - offset, maxChunkSize);\n\t                    const start = offset;\n\t                    const end = offset + chunkSize - 1;\n\t                    offset += maxChunkSize;\n\t                    yield uploadChunk(httpClient, resourceUrl, () => fs\n\t                        .createReadStream(archivePath, {\n\t                        fd,\n\t                        start,\n\t                        end,\n\t                        autoClose: false\n\t                    })\n\t                        .on('error', error => {\n\t                        throw new Error(`Cache upload failed because file read failed with ${error.message}`);\n\t                    }), start, end);\n\t                }\n\t            })));\n\t        }\n\t        finally {\n\t            fs.closeSync(fd);\n\t        }\n\t        return;\n\t    });\n\t}\n\tfunction commitCache(httpClient, cacheId, filesize) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const commitCacheRequest = { size: filesize };\n\t        return yield (0, requestUtils_1.retryTypedResponse)('commitCache', () => __awaiter(this, void 0, void 0, function* () {\n\t            return httpClient.postJson(getCacheApiUrl(`caches/${cacheId.toString()}`), commitCacheRequest);\n\t        }));\n\t    });\n\t}\n\tfunction saveCache(cacheId, archivePath, signedUploadURL, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const uploadOptions = (0, options_1.getUploadOptions)(options);\n\t        if (uploadOptions.useAzureSdk) {\n\t            // Use Azure storage SDK to upload caches directly to Azure\n\t            if (!signedUploadURL) {\n\t                throw new Error('Azure Storage SDK can only be used when a signed URL is provided.');\n\t            }\n\t            yield (0, uploadUtils_1.uploadCacheArchiveSDK)(signedUploadURL, archivePath, options);\n\t        }\n\t        else {\n\t            const httpClient = createHttpClient();\n\t            core.debug('Upload cache');\n\t            yield uploadFile(httpClient, cacheId, archivePath, options);\n\t            // Commit Cache\n\t            core.debug('Commiting cache');\n\t            const cacheSize = utils.getArchiveFileSizeInBytes(archivePath);\n\t            core.info(`Cache Size: ~${Math.round(cacheSize / (1024 * 1024))} MB (${cacheSize} B)`);\n\t            const commitCacheResponse = yield commitCache(httpClient, cacheId, cacheSize);\n\t            if (!(0, requestUtils_1.isSuccessStatusCode)(commitCacheResponse.statusCode)) {\n\t                throw new Error(`Cache service responded with ${commitCacheResponse.statusCode} during commit cache.`);\n\t            }\n\t            core.info('Cache saved successfully');\n\t        }\n\t    });\n\t}\n\tcacheHttpClient.saveCache = saveCache;\n\t\n\treturn cacheHttpClient;\n}\n\nvar cacheTwirpClient = {};\n\nvar cache_twirpClient = {};\n\nvar cache = {};\n\n/**\n * Get the type of a JSON value.\n * Distinguishes between array, null and object.\n */\nfunction typeofJsonValue(value) {\n    let t = typeof value;\n    if (t == \"object\") {\n        if (Array.isArray(value))\n            return \"array\";\n        if (value === null)\n            return \"null\";\n    }\n    return t;\n}\n/**\n * Is this a JSON object (instead of an array or null)?\n */\nfunction isJsonObject(value) {\n    return value !== null && typeof value == \"object\" && !Array.isArray(value);\n}\n\n// lookup table from base64 character to byte\nlet encTable = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split('');\n// lookup table from base64 character *code* to byte because lookup by number is fast\nlet decTable = [];\nfor (let i = 0; i < encTable.length; i++)\n    decTable[encTable[i].charCodeAt(0)] = i;\n// support base64url variants\ndecTable[\"-\".charCodeAt(0)] = encTable.indexOf(\"+\");\ndecTable[\"_\".charCodeAt(0)] = encTable.indexOf(\"/\");\n/**\n * Decodes a base64 string to a byte array.\n *\n * - ignores white-space, including line breaks and tabs\n * - allows inner padding (can decode concatenated base64 strings)\n * - does not require padding\n * - understands base64url encoding:\n *   \"-\" instead of \"+\",\n *   \"_\" instead of \"/\",\n *   no padding\n */\nfunction base64decode(base64Str) {\n    // estimate byte size, not accounting for inner padding and whitespace\n    let es = base64Str.length * 3 / 4;\n    // if (es % 3 !== 0)\n    // throw new Error('invalid base64 string');\n    if (base64Str[base64Str.length - 2] == '=')\n        es -= 2;\n    else if (base64Str[base64Str.length - 1] == '=')\n        es -= 1;\n    let bytes = new Uint8Array(es), bytePos = 0, // position in byte array\n    groupPos = 0, // position in base64 group\n    b, // current byte\n    p = 0 // previous byte\n    ;\n    for (let i = 0; i < base64Str.length; i++) {\n        b = decTable[base64Str.charCodeAt(i)];\n        if (b === undefined) {\n            // noinspection FallThroughInSwitchStatementJS\n            switch (base64Str[i]) {\n                case '=':\n                    groupPos = 0; // reset state when padding found\n                case '\\n':\n                case '\\r':\n                case '\\t':\n                case ' ':\n                    continue; // skip white-space, and padding\n                default:\n                    throw Error(`invalid base64 string.`);\n            }\n        }\n        switch (groupPos) {\n            case 0:\n                p = b;\n                groupPos = 1;\n                break;\n            case 1:\n                bytes[bytePos++] = p << 2 | (b & 48) >> 4;\n                p = b;\n                groupPos = 2;\n                break;\n            case 2:\n                bytes[bytePos++] = (p & 15) << 4 | (b & 60) >> 2;\n                p = b;\n                groupPos = 3;\n                break;\n            case 3:\n                bytes[bytePos++] = (p & 3) << 6 | b;\n                groupPos = 0;\n                break;\n        }\n    }\n    if (groupPos == 1)\n        throw Error(`invalid base64 string.`);\n    return bytes.subarray(0, bytePos);\n}\n/**\n * Encodes a byte array to a base64 string.\n * Adds padding at the end.\n * Does not insert newlines.\n */\nfunction base64encode(bytes) {\n    let base64 = '', groupPos = 0, // position in base64 group\n    b, // current byte\n    p = 0; // carry over from previous byte\n    for (let i = 0; i < bytes.length; i++) {\n        b = bytes[i];\n        switch (groupPos) {\n            case 0:\n                base64 += encTable[b >> 2];\n                p = (b & 3) << 4;\n                groupPos = 1;\n                break;\n            case 1:\n                base64 += encTable[p | b >> 4];\n                p = (b & 15) << 2;\n                groupPos = 2;\n                break;\n            case 2:\n                base64 += encTable[p | b >> 6];\n                base64 += encTable[b & 63];\n                groupPos = 0;\n                break;\n        }\n    }\n    // padding required?\n    if (groupPos) {\n        base64 += encTable[p];\n        base64 += '=';\n        if (groupPos == 1)\n            base64 += '=';\n    }\n    return base64;\n}\n\n// Copyright (c) 2016, Daniel Wirtz  All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n// * Redistributions of source code must retain the above copyright\n//   notice, this list of conditions and the following disclaimer.\n// * Redistributions in binary form must reproduce the above copyright\n//   notice, this list of conditions and the following disclaimer in the\n//   documentation and/or other materials provided with the distribution.\n// * Neither the name of its author, nor the names of its contributors\n//   may be used to endorse or promote products derived from this software\n//   without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nconst fromCharCodes = (chunk) => String.fromCharCode.apply(String, chunk);\n/**\n * @deprecated This function will no longer be exported with the next major\n * release, since protobuf-ts has switch to TextDecoder API. If you need this\n * function, please migrate to @protobufjs/utf8. For context, see\n * https://github.com/timostamm/protobuf-ts/issues/184\n *\n * Reads UTF8 bytes as a string.\n *\n * See [protobufjs / utf8](https://github.com/protobufjs/protobuf.js/blob/9893e35b854621cce64af4bf6be2cff4fb892796/lib/utf8/index.js#L40)\n *\n * Copyright (c) 2016, Daniel Wirtz\n */\nfunction utf8read(bytes) {\n    if (bytes.length < 1)\n        return \"\";\n    let pos = 0, // position in bytes\n    parts = [], chunk = [], i = 0, // char offset\n    t; // temporary\n    let len = bytes.length;\n    while (pos < len) {\n        t = bytes[pos++];\n        if (t < 128)\n            chunk[i++] = t;\n        else if (t > 191 && t < 224)\n            chunk[i++] = (t & 31) << 6 | bytes[pos++] & 63;\n        else if (t > 239 && t < 365) {\n            t = ((t & 7) << 18 | (bytes[pos++] & 63) << 12 | (bytes[pos++] & 63) << 6 | bytes[pos++] & 63) - 0x10000;\n            chunk[i++] = 0xD800 + (t >> 10);\n            chunk[i++] = 0xDC00 + (t & 1023);\n        }\n        else\n            chunk[i++] = (t & 15) << 12 | (bytes[pos++] & 63) << 6 | bytes[pos++] & 63;\n        if (i > 8191) {\n            parts.push(fromCharCodes(chunk));\n            i = 0;\n        }\n    }\n    if (parts.length) {\n        if (i)\n            parts.push(fromCharCodes(chunk.slice(0, i)));\n        return parts.join(\"\");\n    }\n    return fromCharCodes(chunk.slice(0, i));\n}\n\n/**\n * This handler implements the default behaviour for unknown fields.\n * When reading data, unknown fields are stored on the message, in a\n * symbol property.\n * When writing data, the symbol property is queried and unknown fields\n * are serialized into the output again.\n */\nvar UnknownFieldHandler;\n(function (UnknownFieldHandler) {\n    /**\n     * The symbol used to store unknown fields for a message.\n     * The property must conform to `UnknownFieldContainer`.\n     */\n    UnknownFieldHandler.symbol = Symbol.for(\"protobuf-ts/unknown\");\n    /**\n     * Store an unknown field during binary read directly on the message.\n     * This method is compatible with `BinaryReadOptions.readUnknownField`.\n     */\n    UnknownFieldHandler.onRead = (typeName, message, fieldNo, wireType, data) => {\n        let container = is(message) ? message[UnknownFieldHandler.symbol] : message[UnknownFieldHandler.symbol] = [];\n        container.push({ no: fieldNo, wireType, data });\n    };\n    /**\n     * Write unknown fields stored for the message to the writer.\n     * This method is compatible with `BinaryWriteOptions.writeUnknownFields`.\n     */\n    UnknownFieldHandler.onWrite = (typeName, message, writer) => {\n        for (let { no, wireType, data } of UnknownFieldHandler.list(message))\n            writer.tag(no, wireType).raw(data);\n    };\n    /**\n     * List unknown fields stored for the message.\n     * Note that there may be multiples fields with the same number.\n     */\n    UnknownFieldHandler.list = (message, fieldNo) => {\n        if (is(message)) {\n            let all = message[UnknownFieldHandler.symbol];\n            return fieldNo ? all.filter(uf => uf.no == fieldNo) : all;\n        }\n        return [];\n    };\n    /**\n     * Returns the last unknown field by field number.\n     */\n    UnknownFieldHandler.last = (message, fieldNo) => UnknownFieldHandler.list(message, fieldNo).slice(-1)[0];\n    const is = (message) => message && Array.isArray(message[UnknownFieldHandler.symbol]);\n})(UnknownFieldHandler || (UnknownFieldHandler = {}));\n/**\n * Merges binary write or read options. Later values override earlier values.\n */\nfunction mergeBinaryOptions(a, b) {\n    return Object.assign(Object.assign({}, a), b);\n}\n/**\n * Protobuf binary format wire types.\n *\n * A wire type provides just enough information to find the length of the\n * following value.\n *\n * See https://developers.google.com/protocol-buffers/docs/encoding#structure\n */\nvar WireType;\n(function (WireType) {\n    /**\n     * Used for int32, int64, uint32, uint64, sint32, sint64, bool, enum\n     */\n    WireType[WireType[\"Varint\"] = 0] = \"Varint\";\n    /**\n     * Used for fixed64, sfixed64, double.\n     * Always 8 bytes with little-endian byte order.\n     */\n    WireType[WireType[\"Bit64\"] = 1] = \"Bit64\";\n    /**\n     * Used for string, bytes, embedded messages, packed repeated fields\n     *\n     * Only repeated numeric types (types which use the varint, 32-bit,\n     * or 64-bit wire types) can be packed. In proto3, such fields are\n     * packed by default.\n     */\n    WireType[WireType[\"LengthDelimited\"] = 2] = \"LengthDelimited\";\n    /**\n     * Used for groups\n     * @deprecated\n     */\n    WireType[WireType[\"StartGroup\"] = 3] = \"StartGroup\";\n    /**\n     * Used for groups\n     * @deprecated\n     */\n    WireType[WireType[\"EndGroup\"] = 4] = \"EndGroup\";\n    /**\n     * Used for fixed32, sfixed32, float.\n     * Always 4 bytes with little-endian byte order.\n     */\n    WireType[WireType[\"Bit32\"] = 5] = \"Bit32\";\n})(WireType || (WireType = {}));\n\n// Copyright 2008 Google Inc.  All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n// * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n// * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n// * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Code generated by the Protocol Buffer compiler is owned by the owner\n// of the input file used when generating it.  This code is not\n// standalone and requires a support library to be linked with it.  This\n// support library is itself covered by the above license.\n/**\n * Read a 64 bit varint as two JS numbers.\n *\n * Returns tuple:\n * [0]: low bits\n * [0]: high bits\n *\n * Copyright 2008 Google Inc.  All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/buffer_decoder.js#L175\n */\nfunction varint64read() {\n    let lowBits = 0;\n    let highBits = 0;\n    for (let shift = 0; shift < 28; shift += 7) {\n        let b = this.buf[this.pos++];\n        lowBits |= (b & 0x7F) << shift;\n        if ((b & 0x80) == 0) {\n            this.assertBounds();\n            return [lowBits, highBits];\n        }\n    }\n    let middleByte = this.buf[this.pos++];\n    // last four bits of the first 32 bit number\n    lowBits |= (middleByte & 0x0F) << 28;\n    // 3 upper bits are part of the next 32 bit number\n    highBits = (middleByte & 0x70) >> 4;\n    if ((middleByte & 0x80) == 0) {\n        this.assertBounds();\n        return [lowBits, highBits];\n    }\n    for (let shift = 3; shift <= 31; shift += 7) {\n        let b = this.buf[this.pos++];\n        highBits |= (b & 0x7F) << shift;\n        if ((b & 0x80) == 0) {\n            this.assertBounds();\n            return [lowBits, highBits];\n        }\n    }\n    throw new Error('invalid varint');\n}\n/**\n * Write a 64 bit varint, given as two JS numbers, to the given bytes array.\n *\n * Copyright 2008 Google Inc.  All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/writer.js#L344\n */\nfunction varint64write(lo, hi, bytes) {\n    for (let i = 0; i < 28; i = i + 7) {\n        const shift = lo >>> i;\n        const hasNext = !((shift >>> 7) == 0 && hi == 0);\n        const byte = (hasNext ? shift | 0x80 : shift) & 0xFF;\n        bytes.push(byte);\n        if (!hasNext) {\n            return;\n        }\n    }\n    const splitBits = ((lo >>> 28) & 0x0F) | ((hi & 0x07) << 4);\n    const hasMoreBits = !((hi >> 3) == 0);\n    bytes.push((hasMoreBits ? splitBits | 0x80 : splitBits) & 0xFF);\n    if (!hasMoreBits) {\n        return;\n    }\n    for (let i = 3; i < 31; i = i + 7) {\n        const shift = hi >>> i;\n        const hasNext = !((shift >>> 7) == 0);\n        const byte = (hasNext ? shift | 0x80 : shift) & 0xFF;\n        bytes.push(byte);\n        if (!hasNext) {\n            return;\n        }\n    }\n    bytes.push((hi >>> 31) & 0x01);\n}\n// constants for binary math\nconst TWO_PWR_32_DBL$1 = (1 << 16) * (1 << 16);\n/**\n * Parse decimal string of 64 bit integer value as two JS numbers.\n *\n * Returns tuple:\n * [0]: minus sign?\n * [1]: low bits\n * [2]: high bits\n *\n * Copyright 2008 Google Inc.\n */\nfunction int64fromString(dec) {\n    // Check for minus sign.\n    let minus = dec[0] == '-';\n    if (minus)\n        dec = dec.slice(1);\n    // Work 6 decimal digits at a time, acting like we're converting base 1e6\n    // digits to binary. This is safe to do with floating point math because\n    // Number.isSafeInteger(ALL_32_BITS * 1e6) == true.\n    const base = 1e6;\n    let lowBits = 0;\n    let highBits = 0;\n    function add1e6digit(begin, end) {\n        // Note: Number('') is 0.\n        const digit1e6 = Number(dec.slice(begin, end));\n        highBits *= base;\n        lowBits = lowBits * base + digit1e6;\n        // Carry bits from lowBits to highBits\n        if (lowBits >= TWO_PWR_32_DBL$1) {\n            highBits = highBits + ((lowBits / TWO_PWR_32_DBL$1) | 0);\n            lowBits = lowBits % TWO_PWR_32_DBL$1;\n        }\n    }\n    add1e6digit(-24, -18);\n    add1e6digit(-18, -12);\n    add1e6digit(-12, -6);\n    add1e6digit(-6);\n    return [minus, lowBits, highBits];\n}\n/**\n * Format 64 bit integer value (as two JS numbers) to decimal string.\n *\n * Copyright 2008 Google Inc.\n */\nfunction int64toString(bitsLow, bitsHigh) {\n    // Skip the expensive conversion if the number is small enough to use the\n    // built-in conversions.\n    if ((bitsHigh >>> 0) <= 0x1FFFFF) {\n        return '' + (TWO_PWR_32_DBL$1 * bitsHigh + (bitsLow >>> 0));\n    }\n    // What this code is doing is essentially converting the input number from\n    // base-2 to base-1e7, which allows us to represent the 64-bit range with\n    // only 3 (very large) digits. Those digits are then trivial to convert to\n    // a base-10 string.\n    // The magic numbers used here are -\n    // 2^24 = 16777216 = (1,6777216) in base-1e7.\n    // 2^48 = 281474976710656 = (2,8147497,6710656) in base-1e7.\n    // Split 32:32 representation into 16:24:24 representation so our\n    // intermediate digits don't overflow.\n    let low = bitsLow & 0xFFFFFF;\n    let mid = (((bitsLow >>> 24) | (bitsHigh << 8)) >>> 0) & 0xFFFFFF;\n    let high = (bitsHigh >> 16) & 0xFFFF;\n    // Assemble our three base-1e7 digits, ignoring carries. The maximum\n    // value in a digit at this step is representable as a 48-bit integer, which\n    // can be stored in a 64-bit floating point number.\n    let digitA = low + (mid * 6777216) + (high * 6710656);\n    let digitB = mid + (high * 8147497);\n    let digitC = (high * 2);\n    // Apply carries from A to B and from B to C.\n    let base = 10000000;\n    if (digitA >= base) {\n        digitB += Math.floor(digitA / base);\n        digitA %= base;\n    }\n    if (digitB >= base) {\n        digitC += Math.floor(digitB / base);\n        digitB %= base;\n    }\n    // Convert base-1e7 digits to base-10, with optional leading zeroes.\n    function decimalFrom1e7(digit1e7, needLeadingZeros) {\n        let partial = digit1e7 ? String(digit1e7) : '';\n        if (needLeadingZeros) {\n            return '0000000'.slice(partial.length) + partial;\n        }\n        return partial;\n    }\n    return decimalFrom1e7(digitC, /*needLeadingZeros=*/ 0) +\n        decimalFrom1e7(digitB, /*needLeadingZeros=*/ digitC) +\n        // If the final 1e7 digit didn't need leading zeros, we would have\n        // returned via the trivial code path at the top.\n        decimalFrom1e7(digitA, /*needLeadingZeros=*/ 1);\n}\n/**\n * Write a 32 bit varint, signed or unsigned. Same as `varint64write(0, value, bytes)`\n *\n * Copyright 2008 Google Inc.  All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/1b18833f4f2a2f681f4e4a25cdf3b0a43115ec26/js/binary/encoder.js#L144\n */\nfunction varint32write(value, bytes) {\n    if (value >= 0) {\n        // write value as varint 32\n        while (value > 0x7f) {\n            bytes.push((value & 0x7f) | 0x80);\n            value = value >>> 7;\n        }\n        bytes.push(value);\n    }\n    else {\n        for (let i = 0; i < 9; i++) {\n            bytes.push(value & 127 | 128);\n            value = value >> 7;\n        }\n        bytes.push(1);\n    }\n}\n/**\n * Read an unsigned 32 bit varint.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/buffer_decoder.js#L220\n */\nfunction varint32read() {\n    let b = this.buf[this.pos++];\n    let result = b & 0x7F;\n    if ((b & 0x80) == 0) {\n        this.assertBounds();\n        return result;\n    }\n    b = this.buf[this.pos++];\n    result |= (b & 0x7F) << 7;\n    if ((b & 0x80) == 0) {\n        this.assertBounds();\n        return result;\n    }\n    b = this.buf[this.pos++];\n    result |= (b & 0x7F) << 14;\n    if ((b & 0x80) == 0) {\n        this.assertBounds();\n        return result;\n    }\n    b = this.buf[this.pos++];\n    result |= (b & 0x7F) << 21;\n    if ((b & 0x80) == 0) {\n        this.assertBounds();\n        return result;\n    }\n    // Extract only last 4 bits\n    b = this.buf[this.pos++];\n    result |= (b & 0x0F) << 28;\n    for (let readBytes = 5; ((b & 0x80) !== 0) && readBytes < 10; readBytes++)\n        b = this.buf[this.pos++];\n    if ((b & 0x80) != 0)\n        throw new Error('invalid varint');\n    this.assertBounds();\n    // Result can have 32 bits, convert it to unsigned\n    return result >>> 0;\n}\n\nlet BI;\nfunction detectBi() {\n    const dv = new DataView(new ArrayBuffer(8));\n    const ok = globalThis.BigInt !== undefined\n        && typeof dv.getBigInt64 === \"function\"\n        && typeof dv.getBigUint64 === \"function\"\n        && typeof dv.setBigInt64 === \"function\"\n        && typeof dv.setBigUint64 === \"function\";\n    BI = ok ? {\n        MIN: BigInt(\"-9223372036854775808\"),\n        MAX: BigInt(\"9223372036854775807\"),\n        UMIN: BigInt(\"0\"),\n        UMAX: BigInt(\"18446744073709551615\"),\n        C: BigInt,\n        V: dv,\n    } : undefined;\n}\ndetectBi();\nfunction assertBi(bi) {\n    if (!bi)\n        throw new Error(\"BigInt unavailable, see https://github.com/timostamm/protobuf-ts/blob/v1.0.8/MANUAL.md#bigint-support\");\n}\n// used to validate from(string) input (when bigint is unavailable)\nconst RE_DECIMAL_STR = /^-?[0-9]+$/;\n// constants for binary math\nconst TWO_PWR_32_DBL = 0x100000000;\nconst HALF_2_PWR_32 = 0x080000000;\n// base class for PbLong and PbULong provides shared code\nclass SharedPbLong {\n    /**\n     * Create a new instance with the given bits.\n     */\n    constructor(lo, hi) {\n        this.lo = lo | 0;\n        this.hi = hi | 0;\n    }\n    /**\n     * Is this instance equal to 0?\n     */\n    isZero() {\n        return this.lo == 0 && this.hi == 0;\n    }\n    /**\n     * Convert to a native number.\n     */\n    toNumber() {\n        let result = this.hi * TWO_PWR_32_DBL + (this.lo >>> 0);\n        if (!Number.isSafeInteger(result))\n            throw new Error(\"cannot convert to safe number\");\n        return result;\n    }\n}\n/**\n * 64-bit unsigned integer as two 32-bit values.\n * Converts between `string`, `number` and `bigint` representations.\n */\nclass PbULong extends SharedPbLong {\n    /**\n     * Create instance from a `string`, `number` or `bigint`.\n     */\n    static from(value) {\n        if (BI)\n            // noinspection FallThroughInSwitchStatementJS\n            switch (typeof value) {\n                case \"string\":\n                    if (value == \"0\")\n                        return this.ZERO;\n                    if (value == \"\")\n                        throw new Error('string is no integer');\n                    value = BI.C(value);\n                case \"number\":\n                    if (value === 0)\n                        return this.ZERO;\n                    value = BI.C(value);\n                case \"bigint\":\n                    if (!value)\n                        return this.ZERO;\n                    if (value < BI.UMIN)\n                        throw new Error('signed value for ulong');\n                    if (value > BI.UMAX)\n                        throw new Error('ulong too large');\n                    BI.V.setBigUint64(0, value, true);\n                    return new PbULong(BI.V.getInt32(0, true), BI.V.getInt32(4, true));\n            }\n        else\n            switch (typeof value) {\n                case \"string\":\n                    if (value == \"0\")\n                        return this.ZERO;\n                    value = value.trim();\n                    if (!RE_DECIMAL_STR.test(value))\n                        throw new Error('string is no integer');\n                    let [minus, lo, hi] = int64fromString(value);\n                    if (minus)\n                        throw new Error('signed value for ulong');\n                    return new PbULong(lo, hi);\n                case \"number\":\n                    if (value == 0)\n                        return this.ZERO;\n                    if (!Number.isSafeInteger(value))\n                        throw new Error('number is no integer');\n                    if (value < 0)\n                        throw new Error('signed value for ulong');\n                    return new PbULong(value, value / TWO_PWR_32_DBL);\n            }\n        throw new Error('unknown value ' + typeof value);\n    }\n    /**\n     * Convert to decimal string.\n     */\n    toString() {\n        return BI ? this.toBigInt().toString() : int64toString(this.lo, this.hi);\n    }\n    /**\n     * Convert to native bigint.\n     */\n    toBigInt() {\n        assertBi(BI);\n        BI.V.setInt32(0, this.lo, true);\n        BI.V.setInt32(4, this.hi, true);\n        return BI.V.getBigUint64(0, true);\n    }\n}\n/**\n * ulong 0 singleton.\n */\nPbULong.ZERO = new PbULong(0, 0);\n/**\n * 64-bit signed integer as two 32-bit values.\n * Converts between `string`, `number` and `bigint` representations.\n */\nclass PbLong extends SharedPbLong {\n    /**\n     * Create instance from a `string`, `number` or `bigint`.\n     */\n    static from(value) {\n        if (BI)\n            // noinspection FallThroughInSwitchStatementJS\n            switch (typeof value) {\n                case \"string\":\n                    if (value == \"0\")\n                        return this.ZERO;\n                    if (value == \"\")\n                        throw new Error('string is no integer');\n                    value = BI.C(value);\n                case \"number\":\n                    if (value === 0)\n                        return this.ZERO;\n                    value = BI.C(value);\n                case \"bigint\":\n                    if (!value)\n                        return this.ZERO;\n                    if (value < BI.MIN)\n                        throw new Error('signed long too small');\n                    if (value > BI.MAX)\n                        throw new Error('signed long too large');\n                    BI.V.setBigInt64(0, value, true);\n                    return new PbLong(BI.V.getInt32(0, true), BI.V.getInt32(4, true));\n            }\n        else\n            switch (typeof value) {\n                case \"string\":\n                    if (value == \"0\")\n                        return this.ZERO;\n                    value = value.trim();\n                    if (!RE_DECIMAL_STR.test(value))\n                        throw new Error('string is no integer');\n                    let [minus, lo, hi] = int64fromString(value);\n                    if (minus) {\n                        if (hi > HALF_2_PWR_32 || (hi == HALF_2_PWR_32 && lo != 0))\n                            throw new Error('signed long too small');\n                    }\n                    else if (hi >= HALF_2_PWR_32)\n                        throw new Error('signed long too large');\n                    let pbl = new PbLong(lo, hi);\n                    return minus ? pbl.negate() : pbl;\n                case \"number\":\n                    if (value == 0)\n                        return this.ZERO;\n                    if (!Number.isSafeInteger(value))\n                        throw new Error('number is no integer');\n                    return value > 0\n                        ? new PbLong(value, value / TWO_PWR_32_DBL)\n                        : new PbLong(-value, -value / TWO_PWR_32_DBL).negate();\n            }\n        throw new Error('unknown value ' + typeof value);\n    }\n    /**\n     * Do we have a minus sign?\n     */\n    isNegative() {\n        return (this.hi & HALF_2_PWR_32) !== 0;\n    }\n    /**\n     * Negate two's complement.\n     * Invert all the bits and add one to the result.\n     */\n    negate() {\n        let hi = ~this.hi, lo = this.lo;\n        if (lo)\n            lo = ~lo + 1;\n        else\n            hi += 1;\n        return new PbLong(lo, hi);\n    }\n    /**\n     * Convert to decimal string.\n     */\n    toString() {\n        if (BI)\n            return this.toBigInt().toString();\n        if (this.isNegative()) {\n            let n = this.negate();\n            return '-' + int64toString(n.lo, n.hi);\n        }\n        return int64toString(this.lo, this.hi);\n    }\n    /**\n     * Convert to native bigint.\n     */\n    toBigInt() {\n        assertBi(BI);\n        BI.V.setInt32(0, this.lo, true);\n        BI.V.setInt32(4, this.hi, true);\n        return BI.V.getBigInt64(0, true);\n    }\n}\n/**\n * long 0 singleton.\n */\nPbLong.ZERO = new PbLong(0, 0);\n\nconst defaultsRead$1 = {\n    readUnknownField: true,\n    readerFactory: bytes => new BinaryReader(bytes),\n};\n/**\n * Make options for reading binary data form partial options.\n */\nfunction binaryReadOptions(options) {\n    return options ? Object.assign(Object.assign({}, defaultsRead$1), options) : defaultsRead$1;\n}\nclass BinaryReader {\n    constructor(buf, textDecoder) {\n        this.varint64 = varint64read; // dirty cast for `this`\n        /**\n         * Read a `uint32` field, an unsigned 32 bit varint.\n         */\n        this.uint32 = varint32read; // dirty cast for `this` and access to protected `buf`\n        this.buf = buf;\n        this.len = buf.length;\n        this.pos = 0;\n        this.view = new DataView(buf.buffer, buf.byteOffset, buf.byteLength);\n        this.textDecoder = textDecoder !== null && textDecoder !== void 0 ? textDecoder : new TextDecoder(\"utf-8\", {\n            fatal: true,\n            ignoreBOM: true,\n        });\n    }\n    /**\n     * Reads a tag - field number and wire type.\n     */\n    tag() {\n        let tag = this.uint32(), fieldNo = tag >>> 3, wireType = tag & 7;\n        if (fieldNo <= 0 || wireType < 0 || wireType > 5)\n            throw new Error(\"illegal tag: field no \" + fieldNo + \" wire type \" + wireType);\n        return [fieldNo, wireType];\n    }\n    /**\n     * Skip one element on the wire and return the skipped data.\n     * Supports WireType.StartGroup since v2.0.0-alpha.23.\n     */\n    skip(wireType) {\n        let start = this.pos;\n        // noinspection FallThroughInSwitchStatementJS\n        switch (wireType) {\n            case WireType.Varint:\n                while (this.buf[this.pos++] & 0x80) {\n                    // ignore\n                }\n                break;\n            case WireType.Bit64:\n                this.pos += 4;\n            case WireType.Bit32:\n                this.pos += 4;\n                break;\n            case WireType.LengthDelimited:\n                let len = this.uint32();\n                this.pos += len;\n                break;\n            case WireType.StartGroup:\n                // From descriptor.proto: Group type is deprecated, not supported in proto3.\n                // But we must still be able to parse and treat as unknown.\n                let t;\n                while ((t = this.tag()[1]) !== WireType.EndGroup) {\n                    this.skip(t);\n                }\n                break;\n            default:\n                throw new Error(\"cant skip wire type \" + wireType);\n        }\n        this.assertBounds();\n        return this.buf.subarray(start, this.pos);\n    }\n    /**\n     * Throws error if position in byte array is out of range.\n     */\n    assertBounds() {\n        if (this.pos > this.len)\n            throw new RangeError(\"premature EOF\");\n    }\n    /**\n     * Read a `int32` field, a signed 32 bit varint.\n     */\n    int32() {\n        return this.uint32() | 0;\n    }\n    /**\n     * Read a `sint32` field, a signed, zigzag-encoded 32-bit varint.\n     */\n    sint32() {\n        let zze = this.uint32();\n        // decode zigzag\n        return (zze >>> 1) ^ -(zze & 1);\n    }\n    /**\n     * Read a `int64` field, a signed 64-bit varint.\n     */\n    int64() {\n        return new PbLong(...this.varint64());\n    }\n    /**\n     * Read a `uint64` field, an unsigned 64-bit varint.\n     */\n    uint64() {\n        return new PbULong(...this.varint64());\n    }\n    /**\n     * Read a `sint64` field, a signed, zig-zag-encoded 64-bit varint.\n     */\n    sint64() {\n        let [lo, hi] = this.varint64();\n        // decode zig zag\n        let s = -(lo & 1);\n        lo = ((lo >>> 1 | (hi & 1) << 31) ^ s);\n        hi = (hi >>> 1 ^ s);\n        return new PbLong(lo, hi);\n    }\n    /**\n     * Read a `bool` field, a variant.\n     */\n    bool() {\n        let [lo, hi] = this.varint64();\n        return lo !== 0 || hi !== 0;\n    }\n    /**\n     * Read a `fixed32` field, an unsigned, fixed-length 32-bit integer.\n     */\n    fixed32() {\n        return this.view.getUint32((this.pos += 4) - 4, true);\n    }\n    /**\n     * Read a `sfixed32` field, a signed, fixed-length 32-bit integer.\n     */\n    sfixed32() {\n        return this.view.getInt32((this.pos += 4) - 4, true);\n    }\n    /**\n     * Read a `fixed64` field, an unsigned, fixed-length 64 bit integer.\n     */\n    fixed64() {\n        return new PbULong(this.sfixed32(), this.sfixed32());\n    }\n    /**\n     * Read a `fixed64` field, a signed, fixed-length 64-bit integer.\n     */\n    sfixed64() {\n        return new PbLong(this.sfixed32(), this.sfixed32());\n    }\n    /**\n     * Read a `float` field, 32-bit floating point number.\n     */\n    float() {\n        return this.view.getFloat32((this.pos += 4) - 4, true);\n    }\n    /**\n     * Read a `double` field, a 64-bit floating point number.\n     */\n    double() {\n        return this.view.getFloat64((this.pos += 8) - 8, true);\n    }\n    /**\n     * Read a `bytes` field, length-delimited arbitrary data.\n     */\n    bytes() {\n        let len = this.uint32();\n        let start = this.pos;\n        this.pos += len;\n        this.assertBounds();\n        return this.buf.subarray(start, start + len);\n    }\n    /**\n     * Read a `string` field, length-delimited data converted to UTF-8 text.\n     */\n    string() {\n        return this.textDecoder.decode(this.bytes());\n    }\n}\n\n/**\n * assert that condition is true or throw error (with message)\n */\nfunction assert(condition, msg) {\n    if (!condition) {\n        throw new Error(msg);\n    }\n}\n/**\n * assert that value cannot exist = type `never`. throw runtime error if it does.\n */\nfunction assertNever(value, msg) {\n    throw new Error(msg !== null && msg !== void 0 ? msg : 'Unexpected object: ' + value);\n}\nconst FLOAT32_MAX = 3.4028234663852886e+38, FLOAT32_MIN = -34028234663852886e22, UINT32_MAX = 0xFFFFFFFF, INT32_MAX = 0X7FFFFFFF, INT32_MIN = -2147483648;\nfunction assertInt32(arg) {\n    if (typeof arg !== \"number\")\n        throw new Error('invalid int 32: ' + typeof arg);\n    if (!Number.isInteger(arg) || arg > INT32_MAX || arg < INT32_MIN)\n        throw new Error('invalid int 32: ' + arg);\n}\nfunction assertUInt32(arg) {\n    if (typeof arg !== \"number\")\n        throw new Error('invalid uint 32: ' + typeof arg);\n    if (!Number.isInteger(arg) || arg > UINT32_MAX || arg < 0)\n        throw new Error('invalid uint 32: ' + arg);\n}\nfunction assertFloat32(arg) {\n    if (typeof arg !== \"number\")\n        throw new Error('invalid float 32: ' + typeof arg);\n    if (!Number.isFinite(arg))\n        return;\n    if (arg > FLOAT32_MAX || arg < FLOAT32_MIN)\n        throw new Error('invalid float 32: ' + arg);\n}\n\nconst defaultsWrite$1 = {\n    writeUnknownFields: true,\n    writerFactory: () => new BinaryWriter(),\n};\n/**\n * Make options for writing binary data form partial options.\n */\nfunction binaryWriteOptions(options) {\n    return options ? Object.assign(Object.assign({}, defaultsWrite$1), options) : defaultsWrite$1;\n}\nclass BinaryWriter {\n    constructor(textEncoder) {\n        /**\n         * Previous fork states.\n         */\n        this.stack = [];\n        this.textEncoder = textEncoder !== null && textEncoder !== void 0 ? textEncoder : new TextEncoder();\n        this.chunks = [];\n        this.buf = [];\n    }\n    /**\n     * Return all bytes written and reset this writer.\n     */\n    finish() {\n        this.chunks.push(new Uint8Array(this.buf)); // flush the buffer\n        let len = 0;\n        for (let i = 0; i < this.chunks.length; i++)\n            len += this.chunks[i].length;\n        let bytes = new Uint8Array(len);\n        let offset = 0;\n        for (let i = 0; i < this.chunks.length; i++) {\n            bytes.set(this.chunks[i], offset);\n            offset += this.chunks[i].length;\n        }\n        this.chunks = [];\n        return bytes;\n    }\n    /**\n     * Start a new fork for length-delimited data like a message\n     * or a packed repeated field.\n     *\n     * Must be joined later with `join()`.\n     */\n    fork() {\n        this.stack.push({ chunks: this.chunks, buf: this.buf });\n        this.chunks = [];\n        this.buf = [];\n        return this;\n    }\n    /**\n     * Join the last fork. Write its length and bytes, then\n     * return to the previous state.\n     */\n    join() {\n        // get chunk of fork\n        let chunk = this.finish();\n        // restore previous state\n        let prev = this.stack.pop();\n        if (!prev)\n            throw new Error('invalid state, fork stack empty');\n        this.chunks = prev.chunks;\n        this.buf = prev.buf;\n        // write length of chunk as varint\n        this.uint32(chunk.byteLength);\n        return this.raw(chunk);\n    }\n    /**\n     * Writes a tag (field number and wire type).\n     *\n     * Equivalent to `uint32( (fieldNo << 3 | type) >>> 0 )`.\n     *\n     * Generated code should compute the tag ahead of time and call `uint32()`.\n     */\n    tag(fieldNo, type) {\n        return this.uint32((fieldNo << 3 | type) >>> 0);\n    }\n    /**\n     * Write a chunk of raw bytes.\n     */\n    raw(chunk) {\n        if (this.buf.length) {\n            this.chunks.push(new Uint8Array(this.buf));\n            this.buf = [];\n        }\n        this.chunks.push(chunk);\n        return this;\n    }\n    /**\n     * Write a `uint32` value, an unsigned 32 bit varint.\n     */\n    uint32(value) {\n        assertUInt32(value);\n        // write value as varint 32, inlined for speed\n        while (value > 0x7f) {\n            this.buf.push((value & 0x7f) | 0x80);\n            value = value >>> 7;\n        }\n        this.buf.push(value);\n        return this;\n    }\n    /**\n     * Write a `int32` value, a signed 32 bit varint.\n     */\n    int32(value) {\n        assertInt32(value);\n        varint32write(value, this.buf);\n        return this;\n    }\n    /**\n     * Write a `bool` value, a variant.\n     */\n    bool(value) {\n        this.buf.push(value ? 1 : 0);\n        return this;\n    }\n    /**\n     * Write a `bytes` value, length-delimited arbitrary data.\n     */\n    bytes(value) {\n        this.uint32(value.byteLength); // write length of chunk as varint\n        return this.raw(value);\n    }\n    /**\n     * Write a `string` value, length-delimited data converted to UTF-8 text.\n     */\n    string(value) {\n        let chunk = this.textEncoder.encode(value);\n        this.uint32(chunk.byteLength); // write length of chunk as varint\n        return this.raw(chunk);\n    }\n    /**\n     * Write a `float` value, 32-bit floating point number.\n     */\n    float(value) {\n        assertFloat32(value);\n        let chunk = new Uint8Array(4);\n        new DataView(chunk.buffer).setFloat32(0, value, true);\n        return this.raw(chunk);\n    }\n    /**\n     * Write a `double` value, a 64-bit floating point number.\n     */\n    double(value) {\n        let chunk = new Uint8Array(8);\n        new DataView(chunk.buffer).setFloat64(0, value, true);\n        return this.raw(chunk);\n    }\n    /**\n     * Write a `fixed32` value, an unsigned, fixed-length 32-bit integer.\n     */\n    fixed32(value) {\n        assertUInt32(value);\n        let chunk = new Uint8Array(4);\n        new DataView(chunk.buffer).setUint32(0, value, true);\n        return this.raw(chunk);\n    }\n    /**\n     * Write a `sfixed32` value, a signed, fixed-length 32-bit integer.\n     */\n    sfixed32(value) {\n        assertInt32(value);\n        let chunk = new Uint8Array(4);\n        new DataView(chunk.buffer).setInt32(0, value, true);\n        return this.raw(chunk);\n    }\n    /**\n     * Write a `sint32` value, a signed, zigzag-encoded 32-bit varint.\n     */\n    sint32(value) {\n        assertInt32(value);\n        // zigzag encode\n        value = ((value << 1) ^ (value >> 31)) >>> 0;\n        varint32write(value, this.buf);\n        return this;\n    }\n    /**\n     * Write a `fixed64` value, a signed, fixed-length 64-bit integer.\n     */\n    sfixed64(value) {\n        let chunk = new Uint8Array(8);\n        let view = new DataView(chunk.buffer);\n        let long = PbLong.from(value);\n        view.setInt32(0, long.lo, true);\n        view.setInt32(4, long.hi, true);\n        return this.raw(chunk);\n    }\n    /**\n     * Write a `fixed64` value, an unsigned, fixed-length 64 bit integer.\n     */\n    fixed64(value) {\n        let chunk = new Uint8Array(8);\n        let view = new DataView(chunk.buffer);\n        let long = PbULong.from(value);\n        view.setInt32(0, long.lo, true);\n        view.setInt32(4, long.hi, true);\n        return this.raw(chunk);\n    }\n    /**\n     * Write a `int64` value, a signed 64-bit varint.\n     */\n    int64(value) {\n        let long = PbLong.from(value);\n        varint64write(long.lo, long.hi, this.buf);\n        return this;\n    }\n    /**\n     * Write a `sint64` value, a signed, zig-zag-encoded 64-bit varint.\n     */\n    sint64(value) {\n        let long = PbLong.from(value), \n        // zigzag encode\n        sign = long.hi >> 31, lo = (long.lo << 1) ^ sign, hi = ((long.hi << 1) | (long.lo >>> 31)) ^ sign;\n        varint64write(lo, hi, this.buf);\n        return this;\n    }\n    /**\n     * Write a `uint64` value, an unsigned 64-bit varint.\n     */\n    uint64(value) {\n        let long = PbULong.from(value);\n        varint64write(long.lo, long.hi, this.buf);\n        return this;\n    }\n}\n\nconst defaultsWrite = {\n    emitDefaultValues: false,\n    enumAsInteger: false,\n    useProtoFieldName: false,\n    prettySpaces: 0,\n}, defaultsRead = {\n    ignoreUnknownFields: false,\n};\n/**\n * Make options for reading JSON data from partial options.\n */\nfunction jsonReadOptions(options) {\n    return options ? Object.assign(Object.assign({}, defaultsRead), options) : defaultsRead;\n}\n/**\n * Make options for writing JSON data from partial options.\n */\nfunction jsonWriteOptions(options) {\n    return options ? Object.assign(Object.assign({}, defaultsWrite), options) : defaultsWrite;\n}\n/**\n * Merges JSON write or read options. Later values override earlier values. Type registries are merged.\n */\nfunction mergeJsonOptions(a, b) {\n    var _a, _b;\n    let c = Object.assign(Object.assign({}, a), b);\n    c.typeRegistry = [...((_a = a === null || a === void 0 ? void 0 : a.typeRegistry) !== null && _a !== void 0 ? _a : []), ...((_b = b === null || b === void 0 ? void 0 : b.typeRegistry) !== null && _b !== void 0 ? _b : [])];\n    return c;\n}\n\n/**\n * The symbol used as a key on message objects to store the message type.\n *\n * Note that this is an experimental feature - it is here to stay, but\n * implementation details may change without notice.\n */\nconst MESSAGE_TYPE = Symbol.for(\"protobuf-ts/message-type\");\n\n/**\n * Converts snake_case to lowerCamelCase.\n *\n * Should behave like protoc:\n * https://github.com/protocolbuffers/protobuf/blob/e8ae137c96444ea313485ed1118c5e43b2099cf1/src/google/protobuf/compiler/java/java_helpers.cc#L118\n */\nfunction lowerCamelCase(snakeCase) {\n    let capNext = false;\n    const sb = [];\n    for (let i = 0; i < snakeCase.length; i++) {\n        let next = snakeCase.charAt(i);\n        if (next == '_') {\n            capNext = true;\n        }\n        else if (/\\d/.test(next)) {\n            sb.push(next);\n            capNext = true;\n        }\n        else if (capNext) {\n            sb.push(next.toUpperCase());\n            capNext = false;\n        }\n        else if (i == 0) {\n            sb.push(next.toLowerCase());\n        }\n        else {\n            sb.push(next);\n        }\n    }\n    return sb.join('');\n}\n\n/**\n * Scalar value types. This is a subset of field types declared by protobuf\n * enum google.protobuf.FieldDescriptorProto.Type The types GROUP and MESSAGE\n * are omitted, but the numerical values are identical.\n */\nvar ScalarType;\n(function (ScalarType) {\n    // 0 is reserved for errors.\n    // Order is weird for historical reasons.\n    ScalarType[ScalarType[\"DOUBLE\"] = 1] = \"DOUBLE\";\n    ScalarType[ScalarType[\"FLOAT\"] = 2] = \"FLOAT\";\n    // Not ZigZag encoded.  Negative numbers take 10 bytes.  Use TYPE_SINT64 if\n    // negative values are likely.\n    ScalarType[ScalarType[\"INT64\"] = 3] = \"INT64\";\n    ScalarType[ScalarType[\"UINT64\"] = 4] = \"UINT64\";\n    // Not ZigZag encoded.  Negative numbers take 10 bytes.  Use TYPE_SINT32 if\n    // negative values are likely.\n    ScalarType[ScalarType[\"INT32\"] = 5] = \"INT32\";\n    ScalarType[ScalarType[\"FIXED64\"] = 6] = \"FIXED64\";\n    ScalarType[ScalarType[\"FIXED32\"] = 7] = \"FIXED32\";\n    ScalarType[ScalarType[\"BOOL\"] = 8] = \"BOOL\";\n    ScalarType[ScalarType[\"STRING\"] = 9] = \"STRING\";\n    // Tag-delimited aggregate.\n    // Group type is deprecated and not supported in proto3. However, Proto3\n    // implementations should still be able to parse the group wire format and\n    // treat group fields as unknown fields.\n    // TYPE_GROUP = 10,\n    // TYPE_MESSAGE = 11,  // Length-delimited aggregate.\n    // New in version 2.\n    ScalarType[ScalarType[\"BYTES\"] = 12] = \"BYTES\";\n    ScalarType[ScalarType[\"UINT32\"] = 13] = \"UINT32\";\n    // TYPE_ENUM = 14,\n    ScalarType[ScalarType[\"SFIXED32\"] = 15] = \"SFIXED32\";\n    ScalarType[ScalarType[\"SFIXED64\"] = 16] = \"SFIXED64\";\n    ScalarType[ScalarType[\"SINT32\"] = 17] = \"SINT32\";\n    ScalarType[ScalarType[\"SINT64\"] = 18] = \"SINT64\";\n})(ScalarType || (ScalarType = {}));\n/**\n * JavaScript representation of 64 bit integral types. Equivalent to the\n * field option \"jstype\".\n *\n * By default, protobuf-ts represents 64 bit types as `bigint`.\n *\n * You can change the default behaviour by enabling the plugin parameter\n * `long_type_string`, which will represent 64 bit types as `string`.\n *\n * Alternatively, you can change the behaviour for individual fields\n * with the field option \"jstype\":\n *\n * ```protobuf\n * uint64 my_field = 1 [jstype = JS_STRING];\n * uint64 other_field = 2 [jstype = JS_NUMBER];\n * ```\n */\nvar LongType;\n(function (LongType) {\n    /**\n     * Use JavaScript `bigint`.\n     *\n     * Field option `[jstype = JS_NORMAL]`.\n     */\n    LongType[LongType[\"BIGINT\"] = 0] = \"BIGINT\";\n    /**\n     * Use JavaScript `string`.\n     *\n     * Field option `[jstype = JS_STRING]`.\n     */\n    LongType[LongType[\"STRING\"] = 1] = \"STRING\";\n    /**\n     * Use JavaScript `number`.\n     *\n     * Large values will loose precision.\n     *\n     * Field option `[jstype = JS_NUMBER]`.\n     */\n    LongType[LongType[\"NUMBER\"] = 2] = \"NUMBER\";\n})(LongType || (LongType = {}));\n/**\n * Protobuf 2.1.0 introduced packed repeated fields.\n * Setting the field option `[packed = true]` enables packing.\n *\n * In proto3, all repeated fields are packed by default.\n * Setting the field option `[packed = false]` disables packing.\n *\n * Packed repeated fields are encoded with a single tag,\n * then a length-delimiter, then the element values.\n *\n * Unpacked repeated fields are encoded with a tag and\n * value for each element.\n *\n * `bytes` and `string` cannot be packed.\n */\nvar RepeatType;\n(function (RepeatType) {\n    /**\n     * The field is not repeated.\n     */\n    RepeatType[RepeatType[\"NO\"] = 0] = \"NO\";\n    /**\n     * The field is repeated and should be packed.\n     * Invalid for `bytes` and `string`, they cannot be packed.\n     */\n    RepeatType[RepeatType[\"PACKED\"] = 1] = \"PACKED\";\n    /**\n     * The field is repeated but should not be packed.\n     * The only valid repeat type for repeated `bytes` and `string`.\n     */\n    RepeatType[RepeatType[\"UNPACKED\"] = 2] = \"UNPACKED\";\n})(RepeatType || (RepeatType = {}));\n/**\n * Turns PartialFieldInfo into FieldInfo.\n */\nfunction normalizeFieldInfo(field) {\n    var _a, _b, _c, _d;\n    field.localName = (_a = field.localName) !== null && _a !== void 0 ? _a : lowerCamelCase(field.name);\n    field.jsonName = (_b = field.jsonName) !== null && _b !== void 0 ? _b : lowerCamelCase(field.name);\n    field.repeat = (_c = field.repeat) !== null && _c !== void 0 ? _c : RepeatType.NO;\n    field.opt = (_d = field.opt) !== null && _d !== void 0 ? _d : (field.repeat ? false : field.oneof ? false : field.kind == \"message\");\n    return field;\n}\n/**\n * Read custom field options from a generated message type.\n *\n * @deprecated use readFieldOption()\n */\nfunction readFieldOptions(messageType, fieldName, extensionName, extensionType) {\n    var _a;\n    const options = (_a = messageType.fields.find((m, i) => m.localName == fieldName || i == fieldName)) === null || _a === void 0 ? void 0 : _a.options;\n    return options && options[extensionName] ? extensionType.fromJson(options[extensionName]) : undefined;\n}\nfunction readFieldOption(messageType, fieldName, extensionName, extensionType) {\n    var _a;\n    const options = (_a = messageType.fields.find((m, i) => m.localName == fieldName || i == fieldName)) === null || _a === void 0 ? void 0 : _a.options;\n    if (!options) {\n        return undefined;\n    }\n    const optionVal = options[extensionName];\n    if (optionVal === undefined) {\n        return optionVal;\n    }\n    return extensionType ? extensionType.fromJson(optionVal) : optionVal;\n}\nfunction readMessageOption(messageType, extensionName, extensionType) {\n    const options = messageType.options;\n    const optionVal = options[extensionName];\n    if (optionVal === undefined) {\n        return optionVal;\n    }\n    return extensionType ? extensionType.fromJson(optionVal) : optionVal;\n}\n\n/**\n * Is the given value a valid oneof group?\n *\n * We represent protobuf `oneof` as algebraic data types (ADT) in generated\n * code. But when working with messages of unknown type, the ADT does not\n * help us.\n *\n * This type guard checks if the given object adheres to the ADT rules, which\n * are as follows:\n *\n * 1) Must be an object.\n *\n * 2) Must have a \"oneofKind\" discriminator property.\n *\n * 3) If \"oneofKind\" is `undefined`, no member field is selected. The object\n * must not have any other properties.\n *\n * 4) If \"oneofKind\" is a `string`, the member field with this name is\n * selected.\n *\n * 5) If a member field is selected, the object must have a second property\n * with this name. The property must not be `undefined`.\n *\n * 6) No extra properties are allowed. The object has either one property\n * (no selection) or two properties (selection).\n *\n */\nfunction isOneofGroup(any) {\n    if (typeof any != 'object' || any === null || !any.hasOwnProperty('oneofKind')) {\n        return false;\n    }\n    switch (typeof any.oneofKind) {\n        case \"string\":\n            if (any[any.oneofKind] === undefined)\n                return false;\n            return Object.keys(any).length == 2;\n        case \"undefined\":\n            return Object.keys(any).length == 1;\n        default:\n            return false;\n    }\n}\n/**\n * Returns the value of the given field in a oneof group.\n */\nfunction getOneofValue(oneof, kind) {\n    return oneof[kind];\n}\nfunction setOneofValue(oneof, kind, value) {\n    if (oneof.oneofKind !== undefined) {\n        delete oneof[oneof.oneofKind];\n    }\n    oneof.oneofKind = kind;\n    if (value !== undefined) {\n        oneof[kind] = value;\n    }\n}\n/**\n * Removes the selected field in a oneof group.\n *\n * Note that the recommended way to modify a oneof group is to set\n * a new object:\n *\n * ```ts\n * message.result = { oneofKind: undefined };\n * ```\n */\nfunction clearOneofValue(oneof) {\n    if (oneof.oneofKind !== undefined) {\n        delete oneof[oneof.oneofKind];\n    }\n    oneof.oneofKind = undefined;\n}\n/**\n * Returns the selected value of the given oneof group.\n *\n * Not that the recommended way to access a oneof group is to check\n * the \"oneofKind\" property and let TypeScript narrow down the union\n * type for you:\n *\n * ```ts\n * if (message.result.oneofKind === \"error\") {\n *   message.result.error; // string\n * }\n * ```\n *\n * In the rare case you just need the value, and do not care about\n * which protobuf field is selected, you can use this function\n * for convenience.\n */\nfunction getSelectedOneofValue(oneof) {\n    if (oneof.oneofKind === undefined) {\n        return undefined;\n    }\n    return oneof[oneof.oneofKind];\n}\n\n// noinspection JSMethodCanBeStatic\nclass ReflectionTypeCheck {\n    constructor(info) {\n        var _a;\n        this.fields = (_a = info.fields) !== null && _a !== void 0 ? _a : [];\n    }\n    prepare() {\n        if (this.data)\n            return;\n        const req = [], known = [], oneofs = [];\n        for (let field of this.fields) {\n            if (field.oneof) {\n                if (!oneofs.includes(field.oneof)) {\n                    oneofs.push(field.oneof);\n                    req.push(field.oneof);\n                    known.push(field.oneof);\n                }\n            }\n            else {\n                known.push(field.localName);\n                switch (field.kind) {\n                    case \"scalar\":\n                    case \"enum\":\n                        if (!field.opt || field.repeat)\n                            req.push(field.localName);\n                        break;\n                    case \"message\":\n                        if (field.repeat)\n                            req.push(field.localName);\n                        break;\n                    case \"map\":\n                        req.push(field.localName);\n                        break;\n                }\n            }\n        }\n        this.data = { req, known, oneofs: Object.values(oneofs) };\n    }\n    /**\n     * Is the argument a valid message as specified by the\n     * reflection information?\n     *\n     * Checks all field types recursively. The `depth`\n     * specifies how deep into the structure the check will be.\n     *\n     * With a depth of 0, only the presence of fields\n     * is checked.\n     *\n     * With a depth of 1 or more, the field types are checked.\n     *\n     * With a depth of 2 or more, the members of map, repeated\n     * and message fields are checked.\n     *\n     * Message fields will be checked recursively with depth - 1.\n     *\n     * The number of map entries / repeated values being checked\n     * is < depth.\n     */\n    is(message, depth, allowExcessProperties = false) {\n        if (depth < 0)\n            return true;\n        if (message === null || message === undefined || typeof message != 'object')\n            return false;\n        this.prepare();\n        let keys = Object.keys(message), data = this.data;\n        // if a required field is missing in arg, this cannot be a T\n        if (keys.length < data.req.length || data.req.some(n => !keys.includes(n)))\n            return false;\n        if (!allowExcessProperties) {\n            // if the arg contains a key we dont know, this is not a literal T\n            if (keys.some(k => !data.known.includes(k)))\n                return false;\n        }\n        // \"With a depth of 0, only the presence and absence of fields is checked.\"\n        // \"With a depth of 1 or more, the field types are checked.\"\n        if (depth < 1) {\n            return true;\n        }\n        // check oneof group\n        for (const name of data.oneofs) {\n            const group = message[name];\n            if (!isOneofGroup(group))\n                return false;\n            if (group.oneofKind === undefined)\n                continue;\n            const field = this.fields.find(f => f.localName === group.oneofKind);\n            if (!field)\n                return false; // we found no field, but have a kind, something is wrong\n            if (!this.field(group[group.oneofKind], field, allowExcessProperties, depth))\n                return false;\n        }\n        // check types\n        for (const field of this.fields) {\n            if (field.oneof !== undefined)\n                continue;\n            if (!this.field(message[field.localName], field, allowExcessProperties, depth))\n                return false;\n        }\n        return true;\n    }\n    field(arg, field, allowExcessProperties, depth) {\n        let repeated = field.repeat;\n        switch (field.kind) {\n            case \"scalar\":\n                if (arg === undefined)\n                    return field.opt;\n                if (repeated)\n                    return this.scalars(arg, field.T, depth, field.L);\n                return this.scalar(arg, field.T, field.L);\n            case \"enum\":\n                if (arg === undefined)\n                    return field.opt;\n                if (repeated)\n                    return this.scalars(arg, ScalarType.INT32, depth);\n                return this.scalar(arg, ScalarType.INT32);\n            case \"message\":\n                if (arg === undefined)\n                    return true;\n                if (repeated)\n                    return this.messages(arg, field.T(), allowExcessProperties, depth);\n                return this.message(arg, field.T(), allowExcessProperties, depth);\n            case \"map\":\n                if (typeof arg != 'object' || arg === null)\n                    return false;\n                if (depth < 2)\n                    return true;\n                if (!this.mapKeys(arg, field.K, depth))\n                    return false;\n                switch (field.V.kind) {\n                    case \"scalar\":\n                        return this.scalars(Object.values(arg), field.V.T, depth, field.V.L);\n                    case \"enum\":\n                        return this.scalars(Object.values(arg), ScalarType.INT32, depth);\n                    case \"message\":\n                        return this.messages(Object.values(arg), field.V.T(), allowExcessProperties, depth);\n                }\n                break;\n        }\n        return true;\n    }\n    message(arg, type, allowExcessProperties, depth) {\n        if (allowExcessProperties) {\n            return type.isAssignable(arg, depth);\n        }\n        return type.is(arg, depth);\n    }\n    messages(arg, type, allowExcessProperties, depth) {\n        if (!Array.isArray(arg))\n            return false;\n        if (depth < 2)\n            return true;\n        if (allowExcessProperties) {\n            for (let i = 0; i < arg.length && i < depth; i++)\n                if (!type.isAssignable(arg[i], depth - 1))\n                    return false;\n        }\n        else {\n            for (let i = 0; i < arg.length && i < depth; i++)\n                if (!type.is(arg[i], depth - 1))\n                    return false;\n        }\n        return true;\n    }\n    scalar(arg, type, longType) {\n        let argType = typeof arg;\n        switch (type) {\n            case ScalarType.UINT64:\n            case ScalarType.FIXED64:\n            case ScalarType.INT64:\n            case ScalarType.SFIXED64:\n            case ScalarType.SINT64:\n                switch (longType) {\n                    case LongType.BIGINT:\n                        return argType == \"bigint\";\n                    case LongType.NUMBER:\n                        return argType == \"number\" && !isNaN(arg);\n                    default:\n                        return argType == \"string\";\n                }\n            case ScalarType.BOOL:\n                return argType == 'boolean';\n            case ScalarType.STRING:\n                return argType == 'string';\n            case ScalarType.BYTES:\n                return arg instanceof Uint8Array;\n            case ScalarType.DOUBLE:\n            case ScalarType.FLOAT:\n                return argType == 'number' && !isNaN(arg);\n            default:\n                // case ScalarType.UINT32:\n                // case ScalarType.FIXED32:\n                // case ScalarType.INT32:\n                // case ScalarType.SINT32:\n                // case ScalarType.SFIXED32:\n                return argType == 'number' && Number.isInteger(arg);\n        }\n    }\n    scalars(arg, type, depth, longType) {\n        if (!Array.isArray(arg))\n            return false;\n        if (depth < 2)\n            return true;\n        if (Array.isArray(arg))\n            for (let i = 0; i < arg.length && i < depth; i++)\n                if (!this.scalar(arg[i], type, longType))\n                    return false;\n        return true;\n    }\n    mapKeys(map, type, depth) {\n        let keys = Object.keys(map);\n        switch (type) {\n            case ScalarType.INT32:\n            case ScalarType.FIXED32:\n            case ScalarType.SFIXED32:\n            case ScalarType.SINT32:\n            case ScalarType.UINT32:\n                return this.scalars(keys.slice(0, depth).map(k => parseInt(k)), type, depth);\n            case ScalarType.BOOL:\n                return this.scalars(keys.slice(0, depth).map(k => k == 'true' ? true : k == 'false' ? false : k), type, depth);\n            default:\n                return this.scalars(keys, type, depth, LongType.STRING);\n        }\n    }\n}\n\n/**\n * Utility method to convert a PbLong or PbUlong to a JavaScript\n * representation during runtime.\n *\n * Works with generated field information, `undefined` is equivalent\n * to `STRING`.\n */\nfunction reflectionLongConvert(long, type) {\n    switch (type) {\n        case LongType.BIGINT:\n            return long.toBigInt();\n        case LongType.NUMBER:\n            return long.toNumber();\n        default:\n            // case undefined:\n            // case LongType.STRING:\n            return long.toString();\n    }\n}\n\n/**\n * Reads proto3 messages in canonical JSON format using reflection information.\n *\n * https://developers.google.com/protocol-buffers/docs/proto3#json\n */\nclass ReflectionJsonReader {\n    constructor(info) {\n        this.info = info;\n    }\n    prepare() {\n        var _a;\n        if (this.fMap === undefined) {\n            this.fMap = {};\n            const fieldsInput = (_a = this.info.fields) !== null && _a !== void 0 ? _a : [];\n            for (const field of fieldsInput) {\n                this.fMap[field.name] = field;\n                this.fMap[field.jsonName] = field;\n                this.fMap[field.localName] = field;\n            }\n        }\n    }\n    // Cannot parse JSON <type of jsonValue> for <type name>#<fieldName>.\n    assert(condition, fieldName, jsonValue) {\n        if (!condition) {\n            let what = typeofJsonValue(jsonValue);\n            if (what == \"number\" || what == \"boolean\")\n                what = jsonValue.toString();\n            throw new Error(`Cannot parse JSON ${what} for ${this.info.typeName}#${fieldName}`);\n        }\n    }\n    /**\n     * Reads a message from canonical JSON format into the target message.\n     *\n     * Repeated fields are appended. Map entries are added, overwriting\n     * existing keys.\n     *\n     * If a message field is already present, it will be merged with the\n     * new data.\n     */\n    read(input, message, options) {\n        this.prepare();\n        const oneofsHandled = [];\n        for (const [jsonKey, jsonValue] of Object.entries(input)) {\n            const field = this.fMap[jsonKey];\n            if (!field) {\n                if (!options.ignoreUnknownFields)\n                    throw new Error(`Found unknown field while reading ${this.info.typeName} from JSON format. JSON key: ${jsonKey}`);\n                continue;\n            }\n            const localName = field.localName;\n            // handle oneof ADT\n            let target; // this will be the target for the field value, whether it is member of a oneof or not\n            if (field.oneof) {\n                if (jsonValue === null && (field.kind !== 'enum' || field.T()[0] !== 'google.protobuf.NullValue')) {\n                    continue;\n                }\n                // since json objects are unordered by specification, it is not possible to take the last of multiple oneofs\n                if (oneofsHandled.includes(field.oneof))\n                    throw new Error(`Multiple members of the oneof group \"${field.oneof}\" of ${this.info.typeName} are present in JSON.`);\n                oneofsHandled.push(field.oneof);\n                target = message[field.oneof] = {\n                    oneofKind: localName\n                };\n            }\n            else {\n                target = message;\n            }\n            // we have handled oneof above. we just have read the value into `target`.\n            if (field.kind == 'map') {\n                if (jsonValue === null) {\n                    continue;\n                }\n                // check input\n                this.assert(isJsonObject(jsonValue), field.name, jsonValue);\n                // our target to put map entries into\n                const fieldObj = target[localName];\n                // read entries\n                for (const [jsonObjKey, jsonObjValue] of Object.entries(jsonValue)) {\n                    this.assert(jsonObjValue !== null, field.name + \" map value\", null);\n                    // read value\n                    let val;\n                    switch (field.V.kind) {\n                        case \"message\":\n                            val = field.V.T().internalJsonRead(jsonObjValue, options);\n                            break;\n                        case \"enum\":\n                            val = this.enum(field.V.T(), jsonObjValue, field.name, options.ignoreUnknownFields);\n                            if (val === false)\n                                continue;\n                            break;\n                        case \"scalar\":\n                            val = this.scalar(jsonObjValue, field.V.T, field.V.L, field.name);\n                            break;\n                    }\n                    this.assert(val !== undefined, field.name + \" map value\", jsonObjValue);\n                    // read key\n                    let key = jsonObjKey;\n                    if (field.K == ScalarType.BOOL)\n                        key = key == \"true\" ? true : key == \"false\" ? false : key;\n                    key = this.scalar(key, field.K, LongType.STRING, field.name).toString();\n                    fieldObj[key] = val;\n                }\n            }\n            else if (field.repeat) {\n                if (jsonValue === null)\n                    continue;\n                // check input\n                this.assert(Array.isArray(jsonValue), field.name, jsonValue);\n                // our target to put array entries into\n                const fieldArr = target[localName];\n                // read array entries\n                for (const jsonItem of jsonValue) {\n                    this.assert(jsonItem !== null, field.name, null);\n                    let val;\n                    switch (field.kind) {\n                        case \"message\":\n                            val = field.T().internalJsonRead(jsonItem, options);\n                            break;\n                        case \"enum\":\n                            val = this.enum(field.T(), jsonItem, field.name, options.ignoreUnknownFields);\n                            if (val === false)\n                                continue;\n                            break;\n                        case \"scalar\":\n                            val = this.scalar(jsonItem, field.T, field.L, field.name);\n                            break;\n                    }\n                    this.assert(val !== undefined, field.name, jsonValue);\n                    fieldArr.push(val);\n                }\n            }\n            else {\n                switch (field.kind) {\n                    case \"message\":\n                        if (jsonValue === null && field.T().typeName != 'google.protobuf.Value') {\n                            this.assert(field.oneof === undefined, field.name + \" (oneof member)\", null);\n                            continue;\n                        }\n                        target[localName] = field.T().internalJsonRead(jsonValue, options, target[localName]);\n                        break;\n                    case \"enum\":\n                        if (jsonValue === null)\n                            continue;\n                        let val = this.enum(field.T(), jsonValue, field.name, options.ignoreUnknownFields);\n                        if (val === false)\n                            continue;\n                        target[localName] = val;\n                        break;\n                    case \"scalar\":\n                        if (jsonValue === null)\n                            continue;\n                        target[localName] = this.scalar(jsonValue, field.T, field.L, field.name);\n                        break;\n                }\n            }\n        }\n    }\n    /**\n     * Returns `false` for unrecognized string representations.\n     *\n     * google.protobuf.NullValue accepts only JSON `null` (or the old `\"NULL_VALUE\"`).\n     */\n    enum(type, json, fieldName, ignoreUnknownFields) {\n        if (type[0] == 'google.protobuf.NullValue')\n            assert(json === null || json === \"NULL_VALUE\", `Unable to parse field ${this.info.typeName}#${fieldName}, enum ${type[0]} only accepts null.`);\n        if (json === null)\n            // we require 0 to be default value for all enums\n            return 0;\n        switch (typeof json) {\n            case \"number\":\n                assert(Number.isInteger(json), `Unable to parse field ${this.info.typeName}#${fieldName}, enum can only be integral number, got ${json}.`);\n                return json;\n            case \"string\":\n                let localEnumName = json;\n                if (type[2] && json.substring(0, type[2].length) === type[2])\n                    // lookup without the shared prefix\n                    localEnumName = json.substring(type[2].length);\n                let enumNumber = type[1][localEnumName];\n                if (typeof enumNumber === 'undefined' && ignoreUnknownFields) {\n                    return false;\n                }\n                assert(typeof enumNumber == \"number\", `Unable to parse field ${this.info.typeName}#${fieldName}, enum ${type[0]} has no value for \"${json}\".`);\n                return enumNumber;\n        }\n        assert(false, `Unable to parse field ${this.info.typeName}#${fieldName}, cannot parse enum value from ${typeof json}\".`);\n    }\n    scalar(json, type, longType, fieldName) {\n        let e;\n        try {\n            switch (type) {\n                // float, double: JSON value will be a number or one of the special string values \"NaN\", \"Infinity\", and \"-Infinity\".\n                // Either numbers or strings are accepted. Exponent notation is also accepted.\n                case ScalarType.DOUBLE:\n                case ScalarType.FLOAT:\n                    if (json === null)\n                        return .0;\n                    if (json === \"NaN\")\n                        return Number.NaN;\n                    if (json === \"Infinity\")\n                        return Number.POSITIVE_INFINITY;\n                    if (json === \"-Infinity\")\n                        return Number.NEGATIVE_INFINITY;\n                    if (json === \"\") {\n                        e = \"empty string\";\n                        break;\n                    }\n                    if (typeof json == \"string\" && json.trim().length !== json.length) {\n                        e = \"extra whitespace\";\n                        break;\n                    }\n                    if (typeof json != \"string\" && typeof json != \"number\") {\n                        break;\n                    }\n                    let float = Number(json);\n                    if (Number.isNaN(float)) {\n                        e = \"not a number\";\n                        break;\n                    }\n                    if (!Number.isFinite(float)) {\n                        // infinity and -infinity are handled by string representation above, so this is an error\n                        e = \"too large or small\";\n                        break;\n                    }\n                    if (type == ScalarType.FLOAT)\n                        assertFloat32(float);\n                    return float;\n                // int32, fixed32, uint32: JSON value will be a decimal number. Either numbers or strings are accepted.\n                case ScalarType.INT32:\n                case ScalarType.FIXED32:\n                case ScalarType.SFIXED32:\n                case ScalarType.SINT32:\n                case ScalarType.UINT32:\n                    if (json === null)\n                        return 0;\n                    let int32;\n                    if (typeof json == \"number\")\n                        int32 = json;\n                    else if (json === \"\")\n                        e = \"empty string\";\n                    else if (typeof json == \"string\") {\n                        if (json.trim().length !== json.length)\n                            e = \"extra whitespace\";\n                        else\n                            int32 = Number(json);\n                    }\n                    if (int32 === undefined)\n                        break;\n                    if (type == ScalarType.UINT32)\n                        assertUInt32(int32);\n                    else\n                        assertInt32(int32);\n                    return int32;\n                // int64, fixed64, uint64: JSON value will be a decimal string. Either numbers or strings are accepted.\n                case ScalarType.INT64:\n                case ScalarType.SFIXED64:\n                case ScalarType.SINT64:\n                    if (json === null)\n                        return reflectionLongConvert(PbLong.ZERO, longType);\n                    if (typeof json != \"number\" && typeof json != \"string\")\n                        break;\n                    return reflectionLongConvert(PbLong.from(json), longType);\n                case ScalarType.FIXED64:\n                case ScalarType.UINT64:\n                    if (json === null)\n                        return reflectionLongConvert(PbULong.ZERO, longType);\n                    if (typeof json != \"number\" && typeof json != \"string\")\n                        break;\n                    return reflectionLongConvert(PbULong.from(json), longType);\n                // bool:\n                case ScalarType.BOOL:\n                    if (json === null)\n                        return false;\n                    if (typeof json !== \"boolean\")\n                        break;\n                    return json;\n                // string:\n                case ScalarType.STRING:\n                    if (json === null)\n                        return \"\";\n                    if (typeof json !== \"string\") {\n                        e = \"extra whitespace\";\n                        break;\n                    }\n                    try {\n                        encodeURIComponent(json);\n                    }\n                    catch (e) {\n                        e = \"invalid UTF8\";\n                        break;\n                    }\n                    return json;\n                // bytes: JSON value will be the data encoded as a string using standard base64 encoding with paddings.\n                // Either standard or URL-safe base64 encoding with/without paddings are accepted.\n                case ScalarType.BYTES:\n                    if (json === null || json === \"\")\n                        return new Uint8Array(0);\n                    if (typeof json !== 'string')\n                        break;\n                    return base64decode(json);\n            }\n        }\n        catch (error) {\n            e = error.message;\n        }\n        this.assert(false, fieldName + (e ? \" - \" + e : \"\"), json);\n    }\n}\n\n/**\n * Writes proto3 messages in canonical JSON format using reflection\n * information.\n *\n * https://developers.google.com/protocol-buffers/docs/proto3#json\n */\nclass ReflectionJsonWriter {\n    constructor(info) {\n        var _a;\n        this.fields = (_a = info.fields) !== null && _a !== void 0 ? _a : [];\n    }\n    /**\n     * Converts the message to a JSON object, based on the field descriptors.\n     */\n    write(message, options) {\n        const json = {}, source = message;\n        for (const field of this.fields) {\n            // field is not part of a oneof, simply write as is\n            if (!field.oneof) {\n                let jsonValue = this.field(field, source[field.localName], options);\n                if (jsonValue !== undefined)\n                    json[options.useProtoFieldName ? field.name : field.jsonName] = jsonValue;\n                continue;\n            }\n            // field is part of a oneof\n            const group = source[field.oneof];\n            if (group.oneofKind !== field.localName)\n                continue; // not selected, skip\n            const opt = field.kind == 'scalar' || field.kind == 'enum'\n                ? Object.assign(Object.assign({}, options), { emitDefaultValues: true }) : options;\n            let jsonValue = this.field(field, group[field.localName], opt);\n            assert(jsonValue !== undefined);\n            json[options.useProtoFieldName ? field.name : field.jsonName] = jsonValue;\n        }\n        return json;\n    }\n    field(field, value, options) {\n        let jsonValue = undefined;\n        if (field.kind == 'map') {\n            assert(typeof value == \"object\" && value !== null);\n            const jsonObj = {};\n            switch (field.V.kind) {\n                case \"scalar\":\n                    for (const [entryKey, entryValue] of Object.entries(value)) {\n                        const val = this.scalar(field.V.T, entryValue, field.name, false, true);\n                        assert(val !== undefined);\n                        jsonObj[entryKey.toString()] = val; // JSON standard allows only (double quoted) string as property key\n                    }\n                    break;\n                case \"message\":\n                    const messageType = field.V.T();\n                    for (const [entryKey, entryValue] of Object.entries(value)) {\n                        const val = this.message(messageType, entryValue, field.name, options);\n                        assert(val !== undefined);\n                        jsonObj[entryKey.toString()] = val; // JSON standard allows only (double quoted) string as property key\n                    }\n                    break;\n                case \"enum\":\n                    const enumInfo = field.V.T();\n                    for (const [entryKey, entryValue] of Object.entries(value)) {\n                        assert(entryValue === undefined || typeof entryValue == 'number');\n                        const val = this.enum(enumInfo, entryValue, field.name, false, true, options.enumAsInteger);\n                        assert(val !== undefined);\n                        jsonObj[entryKey.toString()] = val; // JSON standard allows only (double quoted) string as property key\n                    }\n                    break;\n            }\n            if (options.emitDefaultValues || Object.keys(jsonObj).length > 0)\n                jsonValue = jsonObj;\n        }\n        else if (field.repeat) {\n            assert(Array.isArray(value));\n            const jsonArr = [];\n            switch (field.kind) {\n                case \"scalar\":\n                    for (let i = 0; i < value.length; i++) {\n                        const val = this.scalar(field.T, value[i], field.name, field.opt, true);\n                        assert(val !== undefined);\n                        jsonArr.push(val);\n                    }\n                    break;\n                case \"enum\":\n                    const enumInfo = field.T();\n                    for (let i = 0; i < value.length; i++) {\n                        assert(value[i] === undefined || typeof value[i] == 'number');\n                        const val = this.enum(enumInfo, value[i], field.name, field.opt, true, options.enumAsInteger);\n                        assert(val !== undefined);\n                        jsonArr.push(val);\n                    }\n                    break;\n                case \"message\":\n                    const messageType = field.T();\n                    for (let i = 0; i < value.length; i++) {\n                        const val = this.message(messageType, value[i], field.name, options);\n                        assert(val !== undefined);\n                        jsonArr.push(val);\n                    }\n                    break;\n            }\n            // add converted array to json output\n            if (options.emitDefaultValues || jsonArr.length > 0 || options.emitDefaultValues)\n                jsonValue = jsonArr;\n        }\n        else {\n            switch (field.kind) {\n                case \"scalar\":\n                    jsonValue = this.scalar(field.T, value, field.name, field.opt, options.emitDefaultValues);\n                    break;\n                case \"enum\":\n                    jsonValue = this.enum(field.T(), value, field.name, field.opt, options.emitDefaultValues, options.enumAsInteger);\n                    break;\n                case \"message\":\n                    jsonValue = this.message(field.T(), value, field.name, options);\n                    break;\n            }\n        }\n        return jsonValue;\n    }\n    /**\n     * Returns `null` as the default for google.protobuf.NullValue.\n     */\n    enum(type, value, fieldName, optional, emitDefaultValues, enumAsInteger) {\n        if (type[0] == 'google.protobuf.NullValue')\n            return !emitDefaultValues && !optional ? undefined : null;\n        if (value === undefined) {\n            assert(optional);\n            return undefined;\n        }\n        if (value === 0 && !emitDefaultValues && !optional)\n            // we require 0 to be default value for all enums\n            return undefined;\n        assert(typeof value == 'number');\n        assert(Number.isInteger(value));\n        if (enumAsInteger || !type[1].hasOwnProperty(value))\n            // if we don't now the enum value, just return the number\n            return value;\n        if (type[2])\n            // restore the dropped prefix\n            return type[2] + type[1][value];\n        return type[1][value];\n    }\n    message(type, value, fieldName, options) {\n        if (value === undefined)\n            return options.emitDefaultValues ? null : undefined;\n        return type.internalJsonWrite(value, options);\n    }\n    scalar(type, value, fieldName, optional, emitDefaultValues) {\n        if (value === undefined) {\n            assert(optional);\n            return undefined;\n        }\n        const ed = emitDefaultValues || optional;\n        // noinspection FallThroughInSwitchStatementJS\n        switch (type) {\n            // int32, fixed32, uint32: JSON value will be a decimal number. Either numbers or strings are accepted.\n            case ScalarType.INT32:\n            case ScalarType.SFIXED32:\n            case ScalarType.SINT32:\n                if (value === 0)\n                    return ed ? 0 : undefined;\n                assertInt32(value);\n                return value;\n            case ScalarType.FIXED32:\n            case ScalarType.UINT32:\n                if (value === 0)\n                    return ed ? 0 : undefined;\n                assertUInt32(value);\n                return value;\n            // float, double: JSON value will be a number or one of the special string values \"NaN\", \"Infinity\", and \"-Infinity\".\n            // Either numbers or strings are accepted. Exponent notation is also accepted.\n            case ScalarType.FLOAT:\n                assertFloat32(value);\n            case ScalarType.DOUBLE:\n                if (value === 0)\n                    return ed ? 0 : undefined;\n                assert(typeof value == 'number');\n                if (Number.isNaN(value))\n                    return 'NaN';\n                if (value === Number.POSITIVE_INFINITY)\n                    return 'Infinity';\n                if (value === Number.NEGATIVE_INFINITY)\n                    return '-Infinity';\n                return value;\n            // string:\n            case ScalarType.STRING:\n                if (value === \"\")\n                    return ed ? '' : undefined;\n                assert(typeof value == 'string');\n                return value;\n            // bool:\n            case ScalarType.BOOL:\n                if (value === false)\n                    return ed ? false : undefined;\n                assert(typeof value == 'boolean');\n                return value;\n            // JSON value will be a decimal string. Either numbers or strings are accepted.\n            case ScalarType.UINT64:\n            case ScalarType.FIXED64:\n                assert(typeof value == 'number' || typeof value == 'string' || typeof value == 'bigint');\n                let ulong = PbULong.from(value);\n                if (ulong.isZero() && !ed)\n                    return undefined;\n                return ulong.toString();\n            // JSON value will be a decimal string. Either numbers or strings are accepted.\n            case ScalarType.INT64:\n            case ScalarType.SFIXED64:\n            case ScalarType.SINT64:\n                assert(typeof value == 'number' || typeof value == 'string' || typeof value == 'bigint');\n                let long = PbLong.from(value);\n                if (long.isZero() && !ed)\n                    return undefined;\n                return long.toString();\n            // bytes: JSON value will be the data encoded as a string using standard base64 encoding with paddings.\n            // Either standard or URL-safe base64 encoding with/without paddings are accepted.\n            case ScalarType.BYTES:\n                assert(value instanceof Uint8Array);\n                if (!value.byteLength)\n                    return ed ? \"\" : undefined;\n                return base64encode(value);\n        }\n    }\n}\n\n/**\n * Creates the default value for a scalar type.\n */\nfunction reflectionScalarDefault(type, longType = LongType.STRING) {\n    switch (type) {\n        case ScalarType.BOOL:\n            return false;\n        case ScalarType.UINT64:\n        case ScalarType.FIXED64:\n            return reflectionLongConvert(PbULong.ZERO, longType);\n        case ScalarType.INT64:\n        case ScalarType.SFIXED64:\n        case ScalarType.SINT64:\n            return reflectionLongConvert(PbLong.ZERO, longType);\n        case ScalarType.DOUBLE:\n        case ScalarType.FLOAT:\n            return 0.0;\n        case ScalarType.BYTES:\n            return new Uint8Array(0);\n        case ScalarType.STRING:\n            return \"\";\n        default:\n            // case ScalarType.INT32:\n            // case ScalarType.UINT32:\n            // case ScalarType.SINT32:\n            // case ScalarType.FIXED32:\n            // case ScalarType.SFIXED32:\n            return 0;\n    }\n}\n\n/**\n * Reads proto3 messages in binary format using reflection information.\n *\n * https://developers.google.com/protocol-buffers/docs/encoding\n */\nclass ReflectionBinaryReader {\n    constructor(info) {\n        this.info = info;\n    }\n    prepare() {\n        var _a;\n        if (!this.fieldNoToField) {\n            const fieldsInput = (_a = this.info.fields) !== null && _a !== void 0 ? _a : [];\n            this.fieldNoToField = new Map(fieldsInput.map(field => [field.no, field]));\n        }\n    }\n    /**\n     * Reads a message from binary format into the target message.\n     *\n     * Repeated fields are appended. Map entries are added, overwriting\n     * existing keys.\n     *\n     * If a message field is already present, it will be merged with the\n     * new data.\n     */\n    read(reader, message, options, length) {\n        this.prepare();\n        const end = length === undefined ? reader.len : reader.pos + length;\n        while (reader.pos < end) {\n            // read the tag and find the field\n            const [fieldNo, wireType] = reader.tag(), field = this.fieldNoToField.get(fieldNo);\n            if (!field) {\n                let u = options.readUnknownField;\n                if (u == \"throw\")\n                    throw new Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.info.typeName}`);\n                let d = reader.skip(wireType);\n                if (u !== false)\n                    (u === true ? UnknownFieldHandler.onRead : u)(this.info.typeName, message, fieldNo, wireType, d);\n                continue;\n            }\n            // target object for the field we are reading\n            let target = message, repeated = field.repeat, localName = field.localName;\n            // if field is member of oneof ADT, use ADT as target\n            if (field.oneof) {\n                target = target[field.oneof];\n                // if other oneof member selected, set new ADT\n                if (target.oneofKind !== localName)\n                    target = message[field.oneof] = {\n                        oneofKind: localName\n                    };\n            }\n            // we have handled oneof above, we just have read the value into `target[localName]`\n            switch (field.kind) {\n                case \"scalar\":\n                case \"enum\":\n                    let T = field.kind == \"enum\" ? ScalarType.INT32 : field.T;\n                    let L = field.kind == \"scalar\" ? field.L : undefined;\n                    if (repeated) {\n                        let arr = target[localName]; // safe to assume presence of array, oneof cannot contain repeated values\n                        if (wireType == WireType.LengthDelimited && T != ScalarType.STRING && T != ScalarType.BYTES) {\n                            let e = reader.uint32() + reader.pos;\n                            while (reader.pos < e)\n                                arr.push(this.scalar(reader, T, L));\n                        }\n                        else\n                            arr.push(this.scalar(reader, T, L));\n                    }\n                    else\n                        target[localName] = this.scalar(reader, T, L);\n                    break;\n                case \"message\":\n                    if (repeated) {\n                        let arr = target[localName]; // safe to assume presence of array, oneof cannot contain repeated values\n                        let msg = field.T().internalBinaryRead(reader, reader.uint32(), options);\n                        arr.push(msg);\n                    }\n                    else\n                        target[localName] = field.T().internalBinaryRead(reader, reader.uint32(), options, target[localName]);\n                    break;\n                case \"map\":\n                    let [mapKey, mapVal] = this.mapEntry(field, reader, options);\n                    // safe to assume presence of map object, oneof cannot contain repeated values\n                    target[localName][mapKey] = mapVal;\n                    break;\n            }\n        }\n    }\n    /**\n     * Read a map field, expecting key field = 1, value field = 2\n     */\n    mapEntry(field, reader, options) {\n        let length = reader.uint32();\n        let end = reader.pos + length;\n        let key = undefined; // javascript only allows number or string for object properties\n        let val = undefined;\n        while (reader.pos < end) {\n            let [fieldNo, wireType] = reader.tag();\n            switch (fieldNo) {\n                case 1:\n                    if (field.K == ScalarType.BOOL)\n                        key = reader.bool().toString();\n                    else\n                        // long types are read as string, number types are okay as number\n                        key = this.scalar(reader, field.K, LongType.STRING);\n                    break;\n                case 2:\n                    switch (field.V.kind) {\n                        case \"scalar\":\n                            val = this.scalar(reader, field.V.T, field.V.L);\n                            break;\n                        case \"enum\":\n                            val = reader.int32();\n                            break;\n                        case \"message\":\n                            val = field.V.T().internalBinaryRead(reader, reader.uint32(), options);\n                            break;\n                    }\n                    break;\n                default:\n                    throw new Error(`Unknown field ${fieldNo} (wire type ${wireType}) in map entry for ${this.info.typeName}#${field.name}`);\n            }\n        }\n        if (key === undefined) {\n            let keyRaw = reflectionScalarDefault(field.K);\n            key = field.K == ScalarType.BOOL ? keyRaw.toString() : keyRaw;\n        }\n        if (val === undefined)\n            switch (field.V.kind) {\n                case \"scalar\":\n                    val = reflectionScalarDefault(field.V.T, field.V.L);\n                    break;\n                case \"enum\":\n                    val = 0;\n                    break;\n                case \"message\":\n                    val = field.V.T().create();\n                    break;\n            }\n        return [key, val];\n    }\n    scalar(reader, type, longType) {\n        switch (type) {\n            case ScalarType.INT32:\n                return reader.int32();\n            case ScalarType.STRING:\n                return reader.string();\n            case ScalarType.BOOL:\n                return reader.bool();\n            case ScalarType.DOUBLE:\n                return reader.double();\n            case ScalarType.FLOAT:\n                return reader.float();\n            case ScalarType.INT64:\n                return reflectionLongConvert(reader.int64(), longType);\n            case ScalarType.UINT64:\n                return reflectionLongConvert(reader.uint64(), longType);\n            case ScalarType.FIXED64:\n                return reflectionLongConvert(reader.fixed64(), longType);\n            case ScalarType.FIXED32:\n                return reader.fixed32();\n            case ScalarType.BYTES:\n                return reader.bytes();\n            case ScalarType.UINT32:\n                return reader.uint32();\n            case ScalarType.SFIXED32:\n                return reader.sfixed32();\n            case ScalarType.SFIXED64:\n                return reflectionLongConvert(reader.sfixed64(), longType);\n            case ScalarType.SINT32:\n                return reader.sint32();\n            case ScalarType.SINT64:\n                return reflectionLongConvert(reader.sint64(), longType);\n        }\n    }\n}\n\n/**\n * Writes proto3 messages in binary format using reflection information.\n *\n * https://developers.google.com/protocol-buffers/docs/encoding\n */\nclass ReflectionBinaryWriter {\n    constructor(info) {\n        this.info = info;\n    }\n    prepare() {\n        if (!this.fields) {\n            const fieldsInput = this.info.fields ? this.info.fields.concat() : [];\n            this.fields = fieldsInput.sort((a, b) => a.no - b.no);\n        }\n    }\n    /**\n     * Writes the message to binary format.\n     */\n    write(message, writer, options) {\n        this.prepare();\n        for (const field of this.fields) {\n            let value, // this will be our field value, whether it is member of a oneof or not\n            emitDefault, // whether we emit the default value (only true for oneof members)\n            repeated = field.repeat, localName = field.localName;\n            // handle oneof ADT\n            if (field.oneof) {\n                const group = message[field.oneof];\n                if (group.oneofKind !== localName)\n                    continue; // if field is not selected, skip\n                value = group[localName];\n                emitDefault = true;\n            }\n            else {\n                value = message[localName];\n                emitDefault = false;\n            }\n            // we have handled oneof above. we just have to honor `emitDefault`.\n            switch (field.kind) {\n                case \"scalar\":\n                case \"enum\":\n                    let T = field.kind == \"enum\" ? ScalarType.INT32 : field.T;\n                    if (repeated) {\n                        assert(Array.isArray(value));\n                        if (repeated == RepeatType.PACKED)\n                            this.packed(writer, T, field.no, value);\n                        else\n                            for (const item of value)\n                                this.scalar(writer, T, field.no, item, true);\n                    }\n                    else if (value === undefined)\n                        assert(field.opt);\n                    else\n                        this.scalar(writer, T, field.no, value, emitDefault || field.opt);\n                    break;\n                case \"message\":\n                    if (repeated) {\n                        assert(Array.isArray(value));\n                        for (const item of value)\n                            this.message(writer, options, field.T(), field.no, item);\n                    }\n                    else {\n                        this.message(writer, options, field.T(), field.no, value);\n                    }\n                    break;\n                case \"map\":\n                    assert(typeof value == 'object' && value !== null);\n                    for (const [key, val] of Object.entries(value))\n                        this.mapEntry(writer, options, field, key, val);\n                    break;\n            }\n        }\n        let u = options.writeUnknownFields;\n        if (u !== false)\n            (u === true ? UnknownFieldHandler.onWrite : u)(this.info.typeName, message, writer);\n    }\n    mapEntry(writer, options, field, key, value) {\n        writer.tag(field.no, WireType.LengthDelimited);\n        writer.fork();\n        // javascript only allows number or string for object properties\n        // we convert from our representation to the protobuf type\n        let keyValue = key;\n        switch (field.K) {\n            case ScalarType.INT32:\n            case ScalarType.FIXED32:\n            case ScalarType.UINT32:\n            case ScalarType.SFIXED32:\n            case ScalarType.SINT32:\n                keyValue = Number.parseInt(key);\n                break;\n            case ScalarType.BOOL:\n                assert(key == 'true' || key == 'false');\n                keyValue = key == 'true';\n                break;\n        }\n        // write key, expecting key field number = 1\n        this.scalar(writer, field.K, 1, keyValue, true);\n        // write value, expecting value field number = 2\n        switch (field.V.kind) {\n            case 'scalar':\n                this.scalar(writer, field.V.T, 2, value, true);\n                break;\n            case 'enum':\n                this.scalar(writer, ScalarType.INT32, 2, value, true);\n                break;\n            case 'message':\n                this.message(writer, options, field.V.T(), 2, value);\n                break;\n        }\n        writer.join();\n    }\n    message(writer, options, handler, fieldNo, value) {\n        if (value === undefined)\n            return;\n        handler.internalBinaryWrite(value, writer.tag(fieldNo, WireType.LengthDelimited).fork(), options);\n        writer.join();\n    }\n    /**\n     * Write a single scalar value.\n     */\n    scalar(writer, type, fieldNo, value, emitDefault) {\n        let [wireType, method, isDefault] = this.scalarInfo(type, value);\n        if (!isDefault || emitDefault) {\n            writer.tag(fieldNo, wireType);\n            writer[method](value);\n        }\n    }\n    /**\n     * Write an array of scalar values in packed format.\n     */\n    packed(writer, type, fieldNo, value) {\n        if (!value.length)\n            return;\n        assert(type !== ScalarType.BYTES && type !== ScalarType.STRING);\n        // write tag\n        writer.tag(fieldNo, WireType.LengthDelimited);\n        // begin length-delimited\n        writer.fork();\n        // write values without tags\n        let [, method,] = this.scalarInfo(type);\n        for (let i = 0; i < value.length; i++)\n            writer[method](value[i]);\n        // end length delimited\n        writer.join();\n    }\n    /**\n     * Get information for writing a scalar value.\n     *\n     * Returns tuple:\n     * [0]: appropriate WireType\n     * [1]: name of the appropriate method of IBinaryWriter\n     * [2]: whether the given value is a default value\n     *\n     * If argument `value` is omitted, [2] is always false.\n     */\n    scalarInfo(type, value) {\n        let t = WireType.Varint;\n        let m;\n        let i = value === undefined;\n        let d = value === 0;\n        switch (type) {\n            case ScalarType.INT32:\n                m = \"int32\";\n                break;\n            case ScalarType.STRING:\n                d = i || !value.length;\n                t = WireType.LengthDelimited;\n                m = \"string\";\n                break;\n            case ScalarType.BOOL:\n                d = value === false;\n                m = \"bool\";\n                break;\n            case ScalarType.UINT32:\n                m = \"uint32\";\n                break;\n            case ScalarType.DOUBLE:\n                t = WireType.Bit64;\n                m = \"double\";\n                break;\n            case ScalarType.FLOAT:\n                t = WireType.Bit32;\n                m = \"float\";\n                break;\n            case ScalarType.INT64:\n                d = i || PbLong.from(value).isZero();\n                m = \"int64\";\n                break;\n            case ScalarType.UINT64:\n                d = i || PbULong.from(value).isZero();\n                m = \"uint64\";\n                break;\n            case ScalarType.FIXED64:\n                d = i || PbULong.from(value).isZero();\n                t = WireType.Bit64;\n                m = \"fixed64\";\n                break;\n            case ScalarType.BYTES:\n                d = i || !value.byteLength;\n                t = WireType.LengthDelimited;\n                m = \"bytes\";\n                break;\n            case ScalarType.FIXED32:\n                t = WireType.Bit32;\n                m = \"fixed32\";\n                break;\n            case ScalarType.SFIXED32:\n                t = WireType.Bit32;\n                m = \"sfixed32\";\n                break;\n            case ScalarType.SFIXED64:\n                d = i || PbLong.from(value).isZero();\n                t = WireType.Bit64;\n                m = \"sfixed64\";\n                break;\n            case ScalarType.SINT32:\n                m = \"sint32\";\n                break;\n            case ScalarType.SINT64:\n                d = i || PbLong.from(value).isZero();\n                m = \"sint64\";\n                break;\n        }\n        return [t, m, i || d];\n    }\n}\n\n/**\n * Creates an instance of the generic message, using the field\n * information.\n */\nfunction reflectionCreate(type) {\n    /**\n     * This ternary can be removed in the next major version.\n     * The `Object.create()` code path utilizes a new `messagePrototype`\n     * property on the `IMessageType` which has this same `MESSAGE_TYPE`\n     * non-enumerable property on it. Doing it this way means that we only\n     * pay the cost of `Object.defineProperty()` once per `IMessageType`\n     * class of once per \"instance\". The falsy code path is only provided\n     * for backwards compatibility in cases where the runtime library is\n     * updated without also updating the generated code.\n     */\n    const msg = type.messagePrototype\n        ? Object.create(type.messagePrototype)\n        : Object.defineProperty({}, MESSAGE_TYPE, { value: type });\n    for (let field of type.fields) {\n        let name = field.localName;\n        if (field.opt)\n            continue;\n        if (field.oneof)\n            msg[field.oneof] = { oneofKind: undefined };\n        else if (field.repeat)\n            msg[name] = [];\n        else\n            switch (field.kind) {\n                case \"scalar\":\n                    msg[name] = reflectionScalarDefault(field.T, field.L);\n                    break;\n                case \"enum\":\n                    // we require 0 to be default value for all enums\n                    msg[name] = 0;\n                    break;\n                case \"map\":\n                    msg[name] = {};\n                    break;\n            }\n    }\n    return msg;\n}\n\n/**\n * Copy partial data into the target message.\n *\n * If a singular scalar or enum field is present in the source, it\n * replaces the field in the target.\n *\n * If a singular message field is present in the source, it is merged\n * with the target field by calling mergePartial() of the responsible\n * message type.\n *\n * If a repeated field is present in the source, its values replace\n * all values in the target array, removing extraneous values.\n * Repeated message fields are copied, not merged.\n *\n * If a map field is present in the source, entries are added to the\n * target map, replacing entries with the same key. Entries that only\n * exist in the target remain. Entries with message values are copied,\n * not merged.\n *\n * Note that this function differs from protobuf merge semantics,\n * which appends repeated fields.\n */\nfunction reflectionMergePartial(info, target, source) {\n    let fieldValue, // the field value we are working with\n    input = source, output; // where we want our field value to go\n    for (let field of info.fields) {\n        let name = field.localName;\n        if (field.oneof) {\n            const group = input[field.oneof]; // this is the oneof`s group in the source\n            if ((group === null || group === void 0 ? void 0 : group.oneofKind) == undefined) { // the user is free to omit\n                continue; // we skip this field, and all other members too\n            }\n            fieldValue = group[name]; // our value comes from the the oneof group of the source\n            output = target[field.oneof]; // and our output is the oneof group of the target\n            output.oneofKind = group.oneofKind; // always update discriminator\n            if (fieldValue == undefined) {\n                delete output[name]; // remove any existing value\n                continue; // skip further work on field\n            }\n        }\n        else {\n            fieldValue = input[name]; // we are using the source directly\n            output = target; // we want our field value to go directly into the target\n            if (fieldValue == undefined) {\n                continue; // skip further work on field, existing value is used as is\n            }\n        }\n        if (field.repeat)\n            output[name].length = fieldValue.length; // resize target array to match source array\n        // now we just work with `fieldValue` and `output` to merge the value\n        switch (field.kind) {\n            case \"scalar\":\n            case \"enum\":\n                if (field.repeat)\n                    for (let i = 0; i < fieldValue.length; i++)\n                        output[name][i] = fieldValue[i]; // not a reference type\n                else\n                    output[name] = fieldValue; // not a reference type\n                break;\n            case \"message\":\n                let T = field.T();\n                if (field.repeat)\n                    for (let i = 0; i < fieldValue.length; i++)\n                        output[name][i] = T.create(fieldValue[i]);\n                else if (output[name] === undefined)\n                    output[name] = T.create(fieldValue); // nothing to merge with\n                else\n                    T.mergePartial(output[name], fieldValue);\n                break;\n            case \"map\":\n                // Map and repeated fields are simply overwritten, not appended or merged\n                switch (field.V.kind) {\n                    case \"scalar\":\n                    case \"enum\":\n                        Object.assign(output[name], fieldValue); // elements are not reference types\n                        break;\n                    case \"message\":\n                        let T = field.V.T();\n                        for (let k of Object.keys(fieldValue))\n                            output[name][k] = T.create(fieldValue[k]);\n                        break;\n                }\n                break;\n        }\n    }\n}\n\n/**\n * Determines whether two message of the same type have the same field values.\n * Checks for deep equality, traversing repeated fields, oneof groups, maps\n * and messages recursively.\n * Will also return true if both messages are `undefined`.\n */\nfunction reflectionEquals(info, a, b) {\n    if (a === b)\n        return true;\n    if (!a || !b)\n        return false;\n    for (let field of info.fields) {\n        let localName = field.localName;\n        let val_a = field.oneof ? a[field.oneof][localName] : a[localName];\n        let val_b = field.oneof ? b[field.oneof][localName] : b[localName];\n        switch (field.kind) {\n            case \"enum\":\n            case \"scalar\":\n                let t = field.kind == \"enum\" ? ScalarType.INT32 : field.T;\n                if (!(field.repeat\n                    ? repeatedPrimitiveEq(t, val_a, val_b)\n                    : primitiveEq(t, val_a, val_b)))\n                    return false;\n                break;\n            case \"map\":\n                if (!(field.V.kind == \"message\"\n                    ? repeatedMsgEq(field.V.T(), objectValues(val_a), objectValues(val_b))\n                    : repeatedPrimitiveEq(field.V.kind == \"enum\" ? ScalarType.INT32 : field.V.T, objectValues(val_a), objectValues(val_b))))\n                    return false;\n                break;\n            case \"message\":\n                let T = field.T();\n                if (!(field.repeat\n                    ? repeatedMsgEq(T, val_a, val_b)\n                    : T.equals(val_a, val_b)))\n                    return false;\n                break;\n        }\n    }\n    return true;\n}\nconst objectValues = Object.values;\nfunction primitiveEq(type, a, b) {\n    if (a === b)\n        return true;\n    if (type !== ScalarType.BYTES)\n        return false;\n    let ba = a;\n    let bb = b;\n    if (ba.length !== bb.length)\n        return false;\n    for (let i = 0; i < ba.length; i++)\n        if (ba[i] != bb[i])\n            return false;\n    return true;\n}\nfunction repeatedPrimitiveEq(type, a, b) {\n    if (a.length !== b.length)\n        return false;\n    for (let i = 0; i < a.length; i++)\n        if (!primitiveEq(type, a[i], b[i]))\n            return false;\n    return true;\n}\nfunction repeatedMsgEq(type, a, b) {\n    if (a.length !== b.length)\n        return false;\n    for (let i = 0; i < a.length; i++)\n        if (!type.equals(a[i], b[i]))\n            return false;\n    return true;\n}\n\nconst baseDescriptors = Object.getOwnPropertyDescriptors(Object.getPrototypeOf({}));\n/**\n * This standard message type provides reflection-based\n * operations to work with a message.\n */\nclass MessageType {\n    constructor(name, fields, options) {\n        this.defaultCheckDepth = 16;\n        this.typeName = name;\n        this.fields = fields.map(normalizeFieldInfo);\n        this.options = options !== null && options !== void 0 ? options : {};\n        this.messagePrototype = Object.create(null, Object.assign(Object.assign({}, baseDescriptors), { [MESSAGE_TYPE]: { value: this } }));\n        this.refTypeCheck = new ReflectionTypeCheck(this);\n        this.refJsonReader = new ReflectionJsonReader(this);\n        this.refJsonWriter = new ReflectionJsonWriter(this);\n        this.refBinReader = new ReflectionBinaryReader(this);\n        this.refBinWriter = new ReflectionBinaryWriter(this);\n    }\n    create(value) {\n        let message = reflectionCreate(this);\n        if (value !== undefined) {\n            reflectionMergePartial(this, message, value);\n        }\n        return message;\n    }\n    /**\n     * Clone the message.\n     *\n     * Unknown fields are discarded.\n     */\n    clone(message) {\n        let copy = this.create();\n        reflectionMergePartial(this, copy, message);\n        return copy;\n    }\n    /**\n     * Determines whether two message of the same type have the same field values.\n     * Checks for deep equality, traversing repeated fields, oneof groups, maps\n     * and messages recursively.\n     * Will also return true if both messages are `undefined`.\n     */\n    equals(a, b) {\n        return reflectionEquals(this, a, b);\n    }\n    /**\n     * Is the given value assignable to our message type\n     * and contains no [excess properties](https://www.typescriptlang.org/docs/handbook/interfaces.html#excess-property-checks)?\n     */\n    is(arg, depth = this.defaultCheckDepth) {\n        return this.refTypeCheck.is(arg, depth, false);\n    }\n    /**\n     * Is the given value assignable to our message type,\n     * regardless of [excess properties](https://www.typescriptlang.org/docs/handbook/interfaces.html#excess-property-checks)?\n     */\n    isAssignable(arg, depth = this.defaultCheckDepth) {\n        return this.refTypeCheck.is(arg, depth, true);\n    }\n    /**\n     * Copy partial data into the target message.\n     */\n    mergePartial(target, source) {\n        reflectionMergePartial(this, target, source);\n    }\n    /**\n     * Create a new message from binary format.\n     */\n    fromBinary(data, options) {\n        let opt = binaryReadOptions(options);\n        return this.internalBinaryRead(opt.readerFactory(data), data.byteLength, opt);\n    }\n    /**\n     * Read a new message from a JSON value.\n     */\n    fromJson(json, options) {\n        return this.internalJsonRead(json, jsonReadOptions(options));\n    }\n    /**\n     * Read a new message from a JSON string.\n     * This is equivalent to `T.fromJson(JSON.parse(json))`.\n     */\n    fromJsonString(json, options) {\n        let value = JSON.parse(json);\n        return this.fromJson(value, options);\n    }\n    /**\n     * Write the message to canonical JSON value.\n     */\n    toJson(message, options) {\n        return this.internalJsonWrite(message, jsonWriteOptions(options));\n    }\n    /**\n     * Convert the message to canonical JSON string.\n     * This is equivalent to `JSON.stringify(T.toJson(t))`\n     */\n    toJsonString(message, options) {\n        var _a;\n        let value = this.toJson(message, options);\n        return JSON.stringify(value, null, (_a = options === null || options === void 0 ? void 0 : options.prettySpaces) !== null && _a !== void 0 ? _a : 0);\n    }\n    /**\n     * Write the message to binary format.\n     */\n    toBinary(message, options) {\n        let opt = binaryWriteOptions(options);\n        return this.internalBinaryWrite(message, opt.writerFactory(), opt).finish();\n    }\n    /**\n     * This is an internal method. If you just want to read a message from\n     * JSON, use `fromJson()` or `fromJsonString()`.\n     *\n     * Reads JSON value and merges the fields into the target\n     * according to protobuf rules. If the target is omitted,\n     * a new instance is created first.\n     */\n    internalJsonRead(json, options, target) {\n        if (json !== null && typeof json == \"object\" && !Array.isArray(json)) {\n            let message = target !== null && target !== void 0 ? target : this.create();\n            this.refJsonReader.read(json, message, options);\n            return message;\n        }\n        throw new Error(`Unable to parse message ${this.typeName} from JSON ${typeofJsonValue(json)}.`);\n    }\n    /**\n     * This is an internal method. If you just want to write a message\n     * to JSON, use `toJson()` or `toJsonString().\n     *\n     * Writes JSON value and returns it.\n     */\n    internalJsonWrite(message, options) {\n        return this.refJsonWriter.write(message, options);\n    }\n    /**\n     * This is an internal method. If you just want to write a message\n     * in binary format, use `toBinary()`.\n     *\n     * Serializes the message in binary format and appends it to the given\n     * writer. Returns passed writer.\n     */\n    internalBinaryWrite(message, writer, options) {\n        this.refBinWriter.write(message, writer, options);\n        return writer;\n    }\n    /**\n     * This is an internal method. If you just want to read a message from\n     * binary data, use `fromBinary()`.\n     *\n     * Reads data from binary format and merges the fields into\n     * the target according to protobuf rules. If the target is\n     * omitted, a new instance is created first.\n     */\n    internalBinaryRead(reader, length, options, target) {\n        let message = target !== null && target !== void 0 ? target : this.create();\n        this.refBinReader.read(reader, message, options, length);\n        return message;\n    }\n}\n\n/**\n * Check if the provided object is a proto message.\n *\n * Note that this is an experimental feature - it is here to stay, but\n * implementation details may change without notice.\n */\nfunction containsMessageType(msg) {\n    return msg[MESSAGE_TYPE] != null;\n}\n\n/**\n * Is this a lookup object generated by Typescript, for a Typescript enum\n * generated by protobuf-ts?\n *\n * - No `const enum` (enum must not be inlined, we need reverse mapping).\n * - No string enum (we need int32 for protobuf).\n * - Must have a value for 0 (otherwise, we would need to support custom default values).\n */\nfunction isEnumObject(arg) {\n    if (typeof arg != 'object' || arg === null) {\n        return false;\n    }\n    if (!arg.hasOwnProperty(0)) {\n        return false;\n    }\n    for (let k of Object.keys(arg)) {\n        let num = parseInt(k);\n        if (!Number.isNaN(num)) {\n            // is there a name for the number?\n            let nam = arg[num];\n            if (nam === undefined)\n                return false;\n            // does the name resolve back to the number?\n            if (arg[nam] !== num)\n                return false;\n        }\n        else {\n            // is there a number for the name?\n            let num = arg[k];\n            if (num === undefined)\n                return false;\n            // is it a string enum?\n            if (typeof num !== 'number')\n                return false;\n            // do we know the number?\n            if (arg[num] === undefined)\n                return false;\n        }\n    }\n    return true;\n}\n/**\n * Lists all values of a Typescript enum, as an array of objects with a \"name\"\n * property and a \"number\" property.\n *\n * Note that it is possible that a number appears more than once, because it is\n * possible to have aliases in an enum.\n *\n * Throws if the enum does not adhere to the rules of enums generated by\n * protobuf-ts. See `isEnumObject()`.\n */\nfunction listEnumValues(enumObject) {\n    if (!isEnumObject(enumObject))\n        throw new Error(\"not a typescript enum object\");\n    let values = [];\n    for (let [name, number] of Object.entries(enumObject))\n        if (typeof number == \"number\")\n            values.push({ name, number });\n    return values;\n}\n/**\n * Lists the names of a Typescript enum.\n *\n * Throws if the enum does not adhere to the rules of enums generated by\n * protobuf-ts. See `isEnumObject()`.\n */\nfunction listEnumNames(enumObject) {\n    return listEnumValues(enumObject).map(val => val.name);\n}\n/**\n * Lists the numbers of a Typescript enum.\n *\n * Throws if the enum does not adhere to the rules of enums generated by\n * protobuf-ts. See `isEnumObject()`.\n */\nfunction listEnumNumbers(enumObject) {\n    return listEnumValues(enumObject)\n        .map(val => val.number)\n        .filter((num, index, arr) => arr.indexOf(num) == index);\n}\n\n// Public API of the protobuf-ts runtime.\n// Note: we do not use `export * from ...` to help tree shakers,\n// webpack verbose output hints that this should be useful\n// Convenience JSON typings and corresponding type guards\n\nvar es2015$1 = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tBinaryReader: BinaryReader,\n\tBinaryWriter: BinaryWriter,\n\tget LongType () { return LongType; },\n\tMESSAGE_TYPE: MESSAGE_TYPE,\n\tMessageType: MessageType,\n\tPbLong: PbLong,\n\tPbULong: PbULong,\n\tReflectionBinaryReader: ReflectionBinaryReader,\n\tReflectionBinaryWriter: ReflectionBinaryWriter,\n\tReflectionJsonReader: ReflectionJsonReader,\n\tReflectionJsonWriter: ReflectionJsonWriter,\n\tReflectionTypeCheck: ReflectionTypeCheck,\n\tget RepeatType () { return RepeatType; },\n\tget ScalarType () { return ScalarType; },\n\tget UnknownFieldHandler () { return UnknownFieldHandler; },\n\tget WireType () { return WireType; },\n\tassert: assert,\n\tassertFloat32: assertFloat32,\n\tassertInt32: assertInt32,\n\tassertNever: assertNever,\n\tassertUInt32: assertUInt32,\n\tbase64decode: base64decode,\n\tbase64encode: base64encode,\n\tbinaryReadOptions: binaryReadOptions,\n\tbinaryWriteOptions: binaryWriteOptions,\n\tclearOneofValue: clearOneofValue,\n\tcontainsMessageType: containsMessageType,\n\tgetOneofValue: getOneofValue,\n\tgetSelectedOneofValue: getSelectedOneofValue,\n\tisEnumObject: isEnumObject,\n\tisJsonObject: isJsonObject,\n\tisOneofGroup: isOneofGroup,\n\tjsonReadOptions: jsonReadOptions,\n\tjsonWriteOptions: jsonWriteOptions,\n\tlistEnumNames: listEnumNames,\n\tlistEnumNumbers: listEnumNumbers,\n\tlistEnumValues: listEnumValues,\n\tlowerCamelCase: lowerCamelCase,\n\tmergeBinaryOptions: mergeBinaryOptions,\n\tmergeJsonOptions: mergeJsonOptions,\n\tnormalizeFieldInfo: normalizeFieldInfo,\n\treadFieldOption: readFieldOption,\n\treadFieldOptions: readFieldOptions,\n\treadMessageOption: readMessageOption,\n\treflectionCreate: reflectionCreate,\n\treflectionEquals: reflectionEquals,\n\treflectionMergePartial: reflectionMergePartial,\n\treflectionScalarDefault: reflectionScalarDefault,\n\tsetOneofValue: setOneofValue,\n\ttypeofJsonValue: typeofJsonValue,\n\tutf8read: utf8read\n});\n\n/**\n * Turns PartialMethodInfo into MethodInfo.\n */\nfunction normalizeMethodInfo(method, service) {\n    var _a, _b, _c;\n    let m = method;\n    m.service = service;\n    m.localName = (_a = m.localName) !== null && _a !== void 0 ? _a : lowerCamelCase(m.name);\n    // noinspection PointlessBooleanExpressionJS\n    m.serverStreaming = !!m.serverStreaming;\n    // noinspection PointlessBooleanExpressionJS\n    m.clientStreaming = !!m.clientStreaming;\n    m.options = (_b = m.options) !== null && _b !== void 0 ? _b : {};\n    m.idempotency = (_c = m.idempotency) !== null && _c !== void 0 ? _c : undefined;\n    return m;\n}\n/**\n * Read custom method options from a generated service client.\n *\n * @deprecated use readMethodOption()\n */\nfunction readMethodOptions(service, methodName, extensionName, extensionType) {\n    var _a;\n    const options = (_a = service.methods.find((m, i) => m.localName === methodName || i === methodName)) === null || _a === void 0 ? void 0 : _a.options;\n    return options && options[extensionName] ? extensionType.fromJson(options[extensionName]) : undefined;\n}\nfunction readMethodOption(service, methodName, extensionName, extensionType) {\n    var _a;\n    const options = (_a = service.methods.find((m, i) => m.localName === methodName || i === methodName)) === null || _a === void 0 ? void 0 : _a.options;\n    if (!options) {\n        return undefined;\n    }\n    const optionVal = options[extensionName];\n    if (optionVal === undefined) {\n        return optionVal;\n    }\n    return extensionType ? extensionType.fromJson(optionVal) : optionVal;\n}\nfunction readServiceOption(service, extensionName, extensionType) {\n    const options = service.options;\n    if (!options) {\n        return undefined;\n    }\n    const optionVal = options[extensionName];\n    if (optionVal === undefined) {\n        return optionVal;\n    }\n    return extensionType ? extensionType.fromJson(optionVal) : optionVal;\n}\n\nclass ServiceType {\n    constructor(typeName, methods, options) {\n        this.typeName = typeName;\n        this.methods = methods.map(i => normalizeMethodInfo(i, this));\n        this.options = options !== null && options !== void 0 ? options : {};\n    }\n}\n\n/**\n * An error that occurred while calling a RPC method.\n */\nclass RpcError extends Error {\n    constructor(message, code = 'UNKNOWN', meta) {\n        super(message);\n        this.name = 'RpcError';\n        // see https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-2.html#example\n        Object.setPrototypeOf(this, new.target.prototype);\n        this.code = code;\n        this.meta = meta !== null && meta !== void 0 ? meta : {};\n    }\n    toString() {\n        const l = [this.name + ': ' + this.message];\n        if (this.code) {\n            l.push('');\n            l.push('Code: ' + this.code);\n        }\n        if (this.serviceName && this.methodName) {\n            l.push('Method: ' + this.serviceName + '/' + this.methodName);\n        }\n        let m = Object.entries(this.meta);\n        if (m.length) {\n            l.push('');\n            l.push('Meta:');\n            for (let [k, v] of m) {\n                l.push(`  ${k}: ${v}`);\n            }\n        }\n        return l.join('\\n');\n    }\n}\n\n/**\n * Merges custom RPC options with defaults. Returns a new instance and keeps\n * the \"defaults\" and the \"options\" unmodified.\n *\n * Merges `RpcMetadata` \"meta\", overwriting values from \"defaults\" with\n * values from \"options\". Does not append values to existing entries.\n *\n * Merges \"jsonOptions\", including \"jsonOptions.typeRegistry\", by creating\n * a new array that contains types from \"options.jsonOptions.typeRegistry\"\n * first, then types from \"defaults.jsonOptions.typeRegistry\".\n *\n * Merges \"binaryOptions\".\n *\n * Merges \"interceptors\" by creating a new array that contains interceptors\n * from \"defaults\" first, then interceptors from \"options\".\n *\n * Works with objects that extend `RpcOptions`, but only if the added\n * properties are of type Date, primitive like string, boolean, or Array\n * of primitives. If you have other property types, you have to merge them\n * yourself.\n */\nfunction mergeRpcOptions(defaults, options) {\n    if (!options)\n        return defaults;\n    let o = {};\n    copy(defaults, o);\n    copy(options, o);\n    for (let key of Object.keys(options)) {\n        let val = options[key];\n        switch (key) {\n            case \"jsonOptions\":\n                o.jsonOptions = mergeJsonOptions(defaults.jsonOptions, o.jsonOptions);\n                break;\n            case \"binaryOptions\":\n                o.binaryOptions = mergeBinaryOptions(defaults.binaryOptions, o.binaryOptions);\n                break;\n            case \"meta\":\n                o.meta = {};\n                copy(defaults.meta, o.meta);\n                copy(options.meta, o.meta);\n                break;\n            case \"interceptors\":\n                o.interceptors = defaults.interceptors ? defaults.interceptors.concat(val) : val.concat();\n                break;\n        }\n    }\n    return o;\n}\nfunction copy(a, into) {\n    if (!a)\n        return;\n    let c = into;\n    for (let [k, v] of Object.entries(a)) {\n        if (v instanceof Date)\n            c[k] = new Date(v.getTime());\n        else if (Array.isArray(v))\n            c[k] = v.concat();\n        else\n            c[k] = v;\n    }\n}\n\nvar DeferredState;\n(function (DeferredState) {\n    DeferredState[DeferredState[\"PENDING\"] = 0] = \"PENDING\";\n    DeferredState[DeferredState[\"REJECTED\"] = 1] = \"REJECTED\";\n    DeferredState[DeferredState[\"RESOLVED\"] = 2] = \"RESOLVED\";\n})(DeferredState || (DeferredState = {}));\n/**\n * A deferred promise. This is a \"controller\" for a promise, which lets you\n * pass a promise around and reject or resolve it from the outside.\n *\n * Warning: This class is to be used with care. Using it can make code very\n * difficult to read. It is intended for use in library code that exposes\n * promises, not for regular business logic.\n */\nclass Deferred {\n    /**\n     * @param preventUnhandledRejectionWarning - prevents the warning\n     * \"Unhandled Promise rejection\" by adding a noop rejection handler.\n     * Working with calls returned from the runtime-rpc package in an\n     * async function usually means awaiting one call property after\n     * the other. This means that the \"status\" is not being awaited when\n     * an earlier await for the \"headers\" is rejected. This causes the\n     * \"unhandled promise reject\" warning. A more correct behaviour for\n     * calls might be to become aware whether at least one of the\n     * promises is handled and swallow the rejection warning for the\n     * others.\n     */\n    constructor(preventUnhandledRejectionWarning = true) {\n        this._state = DeferredState.PENDING;\n        this._promise = new Promise((resolve, reject) => {\n            this._resolve = resolve;\n            this._reject = reject;\n        });\n        if (preventUnhandledRejectionWarning) {\n            this._promise.catch(_ => { });\n        }\n    }\n    /**\n     * Get the current state of the promise.\n     */\n    get state() {\n        return this._state;\n    }\n    /**\n     * Get the deferred promise.\n     */\n    get promise() {\n        return this._promise;\n    }\n    /**\n     * Resolve the promise. Throws if the promise is already resolved or rejected.\n     */\n    resolve(value) {\n        if (this.state !== DeferredState.PENDING)\n            throw new Error(`cannot resolve ${DeferredState[this.state].toLowerCase()}`);\n        this._resolve(value);\n        this._state = DeferredState.RESOLVED;\n    }\n    /**\n     * Reject the promise. Throws if the promise is already resolved or rejected.\n     */\n    reject(reason) {\n        if (this.state !== DeferredState.PENDING)\n            throw new Error(`cannot reject ${DeferredState[this.state].toLowerCase()}`);\n        this._reject(reason);\n        this._state = DeferredState.REJECTED;\n    }\n    /**\n     * Resolve the promise. Ignore if not pending.\n     */\n    resolvePending(val) {\n        if (this._state === DeferredState.PENDING)\n            this.resolve(val);\n    }\n    /**\n     * Reject the promise. Ignore if not pending.\n     */\n    rejectPending(reason) {\n        if (this._state === DeferredState.PENDING)\n            this.reject(reason);\n    }\n}\n\n/**\n * A `RpcOutputStream` that you control.\n */\nclass RpcOutputStreamController {\n    constructor() {\n        this._lis = {\n            nxt: [],\n            msg: [],\n            err: [],\n            cmp: [],\n        };\n        this._closed = false;\n        // --- RpcOutputStream async iterator API\n        // iterator state.\n        // is undefined when no iterator has been acquired yet.\n        this._itState = { q: [] };\n    }\n    // --- RpcOutputStream callback API\n    onNext(callback) {\n        return this.addLis(callback, this._lis.nxt);\n    }\n    onMessage(callback) {\n        return this.addLis(callback, this._lis.msg);\n    }\n    onError(callback) {\n        return this.addLis(callback, this._lis.err);\n    }\n    onComplete(callback) {\n        return this.addLis(callback, this._lis.cmp);\n    }\n    addLis(callback, list) {\n        list.push(callback);\n        return () => {\n            let i = list.indexOf(callback);\n            if (i >= 0)\n                list.splice(i, 1);\n        };\n    }\n    // remove all listeners\n    clearLis() {\n        for (let l of Object.values(this._lis))\n            l.splice(0, l.length);\n    }\n    // --- Controller API\n    /**\n     * Is this stream already closed by a completion or error?\n     */\n    get closed() {\n        return this._closed !== false;\n    }\n    /**\n     * Emit message, close with error, or close successfully, but only one\n     * at a time.\n     * Can be used to wrap a stream by using the other stream's `onNext`.\n     */\n    notifyNext(message, error, complete) {\n        assert((message ? 1 : 0) + (error ? 1 : 0) + (complete ? 1 : 0) <= 1, 'only one emission at a time');\n        if (message)\n            this.notifyMessage(message);\n        if (error)\n            this.notifyError(error);\n        if (complete)\n            this.notifyComplete();\n    }\n    /**\n     * Emits a new message. Throws if stream is closed.\n     *\n     * Triggers onNext and onMessage callbacks.\n     */\n    notifyMessage(message) {\n        assert(!this.closed, 'stream is closed');\n        this.pushIt({ value: message, done: false });\n        this._lis.msg.forEach(l => l(message));\n        this._lis.nxt.forEach(l => l(message, undefined, false));\n    }\n    /**\n     * Closes the stream with an error. Throws if stream is closed.\n     *\n     * Triggers onNext and onError callbacks.\n     */\n    notifyError(error) {\n        assert(!this.closed, 'stream is closed');\n        this._closed = error;\n        this.pushIt(error);\n        this._lis.err.forEach(l => l(error));\n        this._lis.nxt.forEach(l => l(undefined, error, false));\n        this.clearLis();\n    }\n    /**\n     * Closes the stream successfully. Throws if stream is closed.\n     *\n     * Triggers onNext and onComplete callbacks.\n     */\n    notifyComplete() {\n        assert(!this.closed, 'stream is closed');\n        this._closed = true;\n        this.pushIt({ value: null, done: true });\n        this._lis.cmp.forEach(l => l());\n        this._lis.nxt.forEach(l => l(undefined, undefined, true));\n        this.clearLis();\n    }\n    /**\n     * Creates an async iterator (that can be used with `for await {...}`)\n     * to consume the stream.\n     *\n     * Some things to note:\n     * - If an error occurs, the `for await` will throw it.\n     * - If an error occurred before the `for await` was started, `for await`\n     *   will re-throw it.\n     * - If the stream is already complete, the `for await` will be empty.\n     * - If your `for await` consumes slower than the stream produces,\n     *   for example because you are relaying messages in a slow operation,\n     *   messages are queued.\n     */\n    [Symbol.asyncIterator]() {\n        // if we are closed, we are definitely not receiving any more messages.\n        // but we can't let the iterator get stuck. we want to either:\n        // a) finish the new iterator immediately, because we are completed\n        // b) reject the new iterator, because we errored\n        if (this._closed === true)\n            this.pushIt({ value: null, done: true });\n        else if (this._closed !== false)\n            this.pushIt(this._closed);\n        // the async iterator\n        return {\n            next: () => {\n                let state = this._itState;\n                assert(state, \"bad state\"); // if we don't have a state here, code is broken\n                // there should be no pending result.\n                // did the consumer call next() before we resolved our previous result promise?\n                assert(!state.p, \"iterator contract broken\");\n                // did we produce faster than the iterator consumed?\n                // return the oldest result from the queue.\n                let first = state.q.shift();\n                if (first)\n                    return (\"value\" in first) ? Promise.resolve(first) : Promise.reject(first);\n                // we have no result ATM, but we promise one.\n                // as soon as we have a result, we must resolve promise.\n                state.p = new Deferred();\n                return state.p.promise;\n            },\n        };\n    }\n    // \"push\" a new iterator result.\n    // this either resolves a pending promise, or enqueues the result.\n    pushIt(result) {\n        let state = this._itState;\n        // is the consumer waiting for us?\n        if (state.p) {\n            // yes, consumer is waiting for this promise.\n            const p = state.p;\n            assert(p.state == DeferredState.PENDING, \"iterator contract broken\");\n            // resolve the promise\n            (\"value\" in result) ? p.resolve(result) : p.reject(result);\n            // must cleanup, otherwise iterator.next() would pick it up again.\n            delete state.p;\n        }\n        else {\n            // we are producing faster than the iterator consumes.\n            // push result onto queue.\n            state.q.push(result);\n        }\n    }\n}\n\nvar __awaiter$4 = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\n/**\n * A unary RPC call. Unary means there is exactly one input message and\n * exactly one output message unless an error occurred.\n */\nclass UnaryCall {\n    constructor(method, requestHeaders, request, headers, response, status, trailers) {\n        this.method = method;\n        this.requestHeaders = requestHeaders;\n        this.request = request;\n        this.headers = headers;\n        this.response = response;\n        this.status = status;\n        this.trailers = trailers;\n    }\n    /**\n     * If you are only interested in the final outcome of this call,\n     * you can await it to receive a `FinishedUnaryCall`.\n     */\n    then(onfulfilled, onrejected) {\n        return this.promiseFinished().then(value => onfulfilled ? Promise.resolve(onfulfilled(value)) : value, reason => onrejected ? Promise.resolve(onrejected(reason)) : Promise.reject(reason));\n    }\n    promiseFinished() {\n        return __awaiter$4(this, void 0, void 0, function* () {\n            let [headers, response, status, trailers] = yield Promise.all([this.headers, this.response, this.status, this.trailers]);\n            return {\n                method: this.method,\n                requestHeaders: this.requestHeaders,\n                request: this.request,\n                headers,\n                response,\n                status,\n                trailers\n            };\n        });\n    }\n}\n\nvar __awaiter$3 = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\n/**\n * A server streaming RPC call. The client provides exactly one input message\n * but the server may respond with 0, 1, or more messages.\n */\nclass ServerStreamingCall {\n    constructor(method, requestHeaders, request, headers, response, status, trailers) {\n        this.method = method;\n        this.requestHeaders = requestHeaders;\n        this.request = request;\n        this.headers = headers;\n        this.responses = response;\n        this.status = status;\n        this.trailers = trailers;\n    }\n    /**\n     * Instead of awaiting the response status and trailers, you can\n     * just as well await this call itself to receive the server outcome.\n     * You should first setup some listeners to the `request` to\n     * see the actual messages the server replied with.\n     */\n    then(onfulfilled, onrejected) {\n        return this.promiseFinished().then(value => onfulfilled ? Promise.resolve(onfulfilled(value)) : value, reason => onrejected ? Promise.resolve(onrejected(reason)) : Promise.reject(reason));\n    }\n    promiseFinished() {\n        return __awaiter$3(this, void 0, void 0, function* () {\n            let [headers, status, trailers] = yield Promise.all([this.headers, this.status, this.trailers]);\n            return {\n                method: this.method,\n                requestHeaders: this.requestHeaders,\n                request: this.request,\n                headers,\n                status,\n                trailers,\n            };\n        });\n    }\n}\n\nvar __awaiter$2 = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\n/**\n * A client streaming RPC call. This means that the clients sends 0, 1, or\n * more messages to the server, and the server replies with exactly one\n * message.\n */\nclass ClientStreamingCall {\n    constructor(method, requestHeaders, request, headers, response, status, trailers) {\n        this.method = method;\n        this.requestHeaders = requestHeaders;\n        this.requests = request;\n        this.headers = headers;\n        this.response = response;\n        this.status = status;\n        this.trailers = trailers;\n    }\n    /**\n     * Instead of awaiting the response status and trailers, you can\n     * just as well await this call itself to receive the server outcome.\n     * Note that it may still be valid to send more request messages.\n     */\n    then(onfulfilled, onrejected) {\n        return this.promiseFinished().then(value => onfulfilled ? Promise.resolve(onfulfilled(value)) : value, reason => onrejected ? Promise.resolve(onrejected(reason)) : Promise.reject(reason));\n    }\n    promiseFinished() {\n        return __awaiter$2(this, void 0, void 0, function* () {\n            let [headers, response, status, trailers] = yield Promise.all([this.headers, this.response, this.status, this.trailers]);\n            return {\n                method: this.method,\n                requestHeaders: this.requestHeaders,\n                headers,\n                response,\n                status,\n                trailers\n            };\n        });\n    }\n}\n\nvar __awaiter$1 = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\n/**\n * A duplex streaming RPC call. This means that the clients sends an\n * arbitrary amount of messages to the server, while at the same time,\n * the server sends an arbitrary amount of messages to the client.\n */\nclass DuplexStreamingCall {\n    constructor(method, requestHeaders, request, headers, response, status, trailers) {\n        this.method = method;\n        this.requestHeaders = requestHeaders;\n        this.requests = request;\n        this.headers = headers;\n        this.responses = response;\n        this.status = status;\n        this.trailers = trailers;\n    }\n    /**\n     * Instead of awaiting the response status and trailers, you can\n     * just as well await this call itself to receive the server outcome.\n     * Note that it may still be valid to send more request messages.\n     */\n    then(onfulfilled, onrejected) {\n        return this.promiseFinished().then(value => onfulfilled ? Promise.resolve(onfulfilled(value)) : value, reason => onrejected ? Promise.resolve(onrejected(reason)) : Promise.reject(reason));\n    }\n    promiseFinished() {\n        return __awaiter$1(this, void 0, void 0, function* () {\n            let [headers, status, trailers] = yield Promise.all([this.headers, this.status, this.trailers]);\n            return {\n                method: this.method,\n                requestHeaders: this.requestHeaders,\n                headers,\n                status,\n                trailers,\n            };\n        });\n    }\n}\n\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\n/**\n * Transport for testing.\n */\nclass TestTransport {\n    /**\n     * Initialize with mock data. Omitted fields have default value.\n     */\n    constructor(data) {\n        /**\n         * Suppress warning / error about uncaught rejections of\n         * \"status\" and \"trailers\".\n         */\n        this.suppressUncaughtRejections = true;\n        this.headerDelay = 10;\n        this.responseDelay = 50;\n        this.betweenResponseDelay = 10;\n        this.afterResponseDelay = 10;\n        this.data = data !== null && data !== void 0 ? data : {};\n    }\n    /**\n     * Sent message(s) during the last operation.\n     */\n    get sentMessages() {\n        if (this.lastInput instanceof TestInputStream) {\n            return this.lastInput.sent;\n        }\n        else if (typeof this.lastInput == \"object\") {\n            return [this.lastInput.single];\n        }\n        return [];\n    }\n    /**\n     * Sending message(s) completed?\n     */\n    get sendComplete() {\n        if (this.lastInput instanceof TestInputStream) {\n            return this.lastInput.completed;\n        }\n        else if (typeof this.lastInput == \"object\") {\n            return true;\n        }\n        return false;\n    }\n    // Creates a promise for response headers from the mock data.\n    promiseHeaders() {\n        var _a;\n        const headers = (_a = this.data.headers) !== null && _a !== void 0 ? _a : TestTransport.defaultHeaders;\n        return headers instanceof RpcError\n            ? Promise.reject(headers)\n            : Promise.resolve(headers);\n    }\n    // Creates a promise for a single, valid, message from the mock data.\n    promiseSingleResponse(method) {\n        if (this.data.response instanceof RpcError) {\n            return Promise.reject(this.data.response);\n        }\n        let r;\n        if (Array.isArray(this.data.response)) {\n            assert(this.data.response.length > 0);\n            r = this.data.response[0];\n        }\n        else if (this.data.response !== undefined) {\n            r = this.data.response;\n        }\n        else {\n            r = method.O.create();\n        }\n        assert(method.O.is(r));\n        return Promise.resolve(r);\n    }\n    /**\n     * Pushes response messages from the mock data to the output stream.\n     * If an error response, status or trailers are mocked, the stream is\n     * closed with the respective error.\n     * Otherwise, stream is completed successfully.\n     *\n     * The returned promise resolves when the stream is closed. It should\n     * not reject. If it does, code is broken.\n     */\n    streamResponses(method, stream, abort) {\n        return __awaiter(this, void 0, void 0, function* () {\n            // normalize \"data.response\" into an array of valid output messages\n            const messages = [];\n            if (this.data.response === undefined) {\n                messages.push(method.O.create());\n            }\n            else if (Array.isArray(this.data.response)) {\n                for (let msg of this.data.response) {\n                    assert(method.O.is(msg));\n                    messages.push(msg);\n                }\n            }\n            else if (!(this.data.response instanceof RpcError)) {\n                assert(method.O.is(this.data.response));\n                messages.push(this.data.response);\n            }\n            // start the stream with an initial delay.\n            // if the request is cancelled, notify() error and exit.\n            try {\n                yield delay(this.responseDelay, abort)(undefined);\n            }\n            catch (error) {\n                stream.notifyError(error);\n                return;\n            }\n            // if error response was mocked, notify() error (stream is now closed with error) and exit.\n            if (this.data.response instanceof RpcError) {\n                stream.notifyError(this.data.response);\n                return;\n            }\n            // regular response messages were mocked. notify() them.\n            for (let msg of messages) {\n                stream.notifyMessage(msg);\n                // add a short delay between responses\n                // if the request is cancelled, notify() error and exit.\n                try {\n                    yield delay(this.betweenResponseDelay, abort)(undefined);\n                }\n                catch (error) {\n                    stream.notifyError(error);\n                    return;\n                }\n            }\n            // error status was mocked, notify() error (stream is now closed with error) and exit.\n            if (this.data.status instanceof RpcError) {\n                stream.notifyError(this.data.status);\n                return;\n            }\n            // error trailers were mocked, notify() error (stream is now closed with error) and exit.\n            if (this.data.trailers instanceof RpcError) {\n                stream.notifyError(this.data.trailers);\n                return;\n            }\n            // stream completed successfully\n            stream.notifyComplete();\n        });\n    }\n    // Creates a promise for response status from the mock data.\n    promiseStatus() {\n        var _a;\n        const status = (_a = this.data.status) !== null && _a !== void 0 ? _a : TestTransport.defaultStatus;\n        return status instanceof RpcError\n            ? Promise.reject(status)\n            : Promise.resolve(status);\n    }\n    // Creates a promise for response trailers from the mock data.\n    promiseTrailers() {\n        var _a;\n        const trailers = (_a = this.data.trailers) !== null && _a !== void 0 ? _a : TestTransport.defaultTrailers;\n        return trailers instanceof RpcError\n            ? Promise.reject(trailers)\n            : Promise.resolve(trailers);\n    }\n    maybeSuppressUncaught(...promise) {\n        if (this.suppressUncaughtRejections) {\n            for (let p of promise) {\n                p.catch(() => {\n                });\n            }\n        }\n    }\n    mergeOptions(options) {\n        return mergeRpcOptions({}, options);\n    }\n    unary(method, input, options) {\n        var _a;\n        const requestHeaders = (_a = options.meta) !== null && _a !== void 0 ? _a : {}, headersPromise = this.promiseHeaders()\n            .then(delay(this.headerDelay, options.abort)), responsePromise = headersPromise\n            .catch(_ => {\n        })\n            .then(delay(this.responseDelay, options.abort))\n            .then(_ => this.promiseSingleResponse(method)), statusPromise = responsePromise\n            .catch(_ => {\n        })\n            .then(delay(this.afterResponseDelay, options.abort))\n            .then(_ => this.promiseStatus()), trailersPromise = responsePromise\n            .catch(_ => {\n        })\n            .then(delay(this.afterResponseDelay, options.abort))\n            .then(_ => this.promiseTrailers());\n        this.maybeSuppressUncaught(statusPromise, trailersPromise);\n        this.lastInput = { single: input };\n        return new UnaryCall(method, requestHeaders, input, headersPromise, responsePromise, statusPromise, trailersPromise);\n    }\n    serverStreaming(method, input, options) {\n        var _a;\n        const requestHeaders = (_a = options.meta) !== null && _a !== void 0 ? _a : {}, headersPromise = this.promiseHeaders()\n            .then(delay(this.headerDelay, options.abort)), outputStream = new RpcOutputStreamController(), responseStreamClosedPromise = headersPromise\n            .then(delay(this.responseDelay, options.abort))\n            .catch(() => {\n        })\n            .then(() => this.streamResponses(method, outputStream, options.abort))\n            .then(delay(this.afterResponseDelay, options.abort)), statusPromise = responseStreamClosedPromise\n            .then(() => this.promiseStatus()), trailersPromise = responseStreamClosedPromise\n            .then(() => this.promiseTrailers());\n        this.maybeSuppressUncaught(statusPromise, trailersPromise);\n        this.lastInput = { single: input };\n        return new ServerStreamingCall(method, requestHeaders, input, headersPromise, outputStream, statusPromise, trailersPromise);\n    }\n    clientStreaming(method, options) {\n        var _a;\n        const requestHeaders = (_a = options.meta) !== null && _a !== void 0 ? _a : {}, headersPromise = this.promiseHeaders()\n            .then(delay(this.headerDelay, options.abort)), responsePromise = headersPromise\n            .catch(_ => {\n        })\n            .then(delay(this.responseDelay, options.abort))\n            .then(_ => this.promiseSingleResponse(method)), statusPromise = responsePromise\n            .catch(_ => {\n        })\n            .then(delay(this.afterResponseDelay, options.abort))\n            .then(_ => this.promiseStatus()), trailersPromise = responsePromise\n            .catch(_ => {\n        })\n            .then(delay(this.afterResponseDelay, options.abort))\n            .then(_ => this.promiseTrailers());\n        this.maybeSuppressUncaught(statusPromise, trailersPromise);\n        this.lastInput = new TestInputStream(this.data, options.abort);\n        return new ClientStreamingCall(method, requestHeaders, this.lastInput, headersPromise, responsePromise, statusPromise, trailersPromise);\n    }\n    duplex(method, options) {\n        var _a;\n        const requestHeaders = (_a = options.meta) !== null && _a !== void 0 ? _a : {}, headersPromise = this.promiseHeaders()\n            .then(delay(this.headerDelay, options.abort)), outputStream = new RpcOutputStreamController(), responseStreamClosedPromise = headersPromise\n            .then(delay(this.responseDelay, options.abort))\n            .catch(() => {\n        })\n            .then(() => this.streamResponses(method, outputStream, options.abort))\n            .then(delay(this.afterResponseDelay, options.abort)), statusPromise = responseStreamClosedPromise\n            .then(() => this.promiseStatus()), trailersPromise = responseStreamClosedPromise\n            .then(() => this.promiseTrailers());\n        this.maybeSuppressUncaught(statusPromise, trailersPromise);\n        this.lastInput = new TestInputStream(this.data, options.abort);\n        return new DuplexStreamingCall(method, requestHeaders, this.lastInput, headersPromise, outputStream, statusPromise, trailersPromise);\n    }\n}\nTestTransport.defaultHeaders = {\n    responseHeader: \"test\"\n};\nTestTransport.defaultStatus = {\n    code: \"OK\", detail: \"all good\"\n};\nTestTransport.defaultTrailers = {\n    responseTrailer: \"test\"\n};\nfunction delay(ms, abort) {\n    return (v) => new Promise((resolve, reject) => {\n        if (abort === null || abort === void 0 ? void 0 : abort.aborted) {\n            reject(new RpcError(\"user cancel\", \"CANCELLED\"));\n        }\n        else {\n            const id = setTimeout(() => resolve(v), ms);\n            if (abort) {\n                abort.addEventListener(\"abort\", ev => {\n                    clearTimeout(id);\n                    reject(new RpcError(\"user cancel\", \"CANCELLED\"));\n                });\n            }\n        }\n    });\n}\nclass TestInputStream {\n    constructor(data, abort) {\n        this._completed = false;\n        this._sent = [];\n        this.data = data;\n        this.abort = abort;\n    }\n    get sent() {\n        return this._sent;\n    }\n    get completed() {\n        return this._completed;\n    }\n    send(message) {\n        if (this.data.inputMessage instanceof RpcError) {\n            return Promise.reject(this.data.inputMessage);\n        }\n        const delayMs = this.data.inputMessage === undefined\n            ? 10\n            : this.data.inputMessage;\n        return Promise.resolve(undefined)\n            .then(() => {\n            this._sent.push(message);\n        })\n            .then(delay(delayMs, this.abort));\n    }\n    complete() {\n        if (this.data.inputComplete instanceof RpcError) {\n            return Promise.reject(this.data.inputComplete);\n        }\n        const delayMs = this.data.inputComplete === undefined\n            ? 10\n            : this.data.inputComplete;\n        return Promise.resolve(undefined)\n            .then(() => {\n            this._completed = true;\n        })\n            .then(delay(delayMs, this.abort));\n    }\n}\n\n/**\n * Creates a \"stack\" of of all interceptors specified in the given `RpcOptions`.\n * Used by generated client implementations.\n * @internal\n */\nfunction stackIntercept(kind, transport, method, options, input) {\n    var _a, _b, _c, _d;\n    if (kind == \"unary\") {\n        let tail = (mtd, inp, opt) => transport.unary(mtd, inp, opt);\n        for (const curr of ((_a = options.interceptors) !== null && _a !== void 0 ? _a : []).filter(i => i.interceptUnary).reverse()) {\n            const next = tail;\n            tail = (mtd, inp, opt) => curr.interceptUnary(next, mtd, inp, opt);\n        }\n        return tail(method, input, options);\n    }\n    if (kind == \"serverStreaming\") {\n        let tail = (mtd, inp, opt) => transport.serverStreaming(mtd, inp, opt);\n        for (const curr of ((_b = options.interceptors) !== null && _b !== void 0 ? _b : []).filter(i => i.interceptServerStreaming).reverse()) {\n            const next = tail;\n            tail = (mtd, inp, opt) => curr.interceptServerStreaming(next, mtd, inp, opt);\n        }\n        return tail(method, input, options);\n    }\n    if (kind == \"clientStreaming\") {\n        let tail = (mtd, opt) => transport.clientStreaming(mtd, opt);\n        for (const curr of ((_c = options.interceptors) !== null && _c !== void 0 ? _c : []).filter(i => i.interceptClientStreaming).reverse()) {\n            const next = tail;\n            tail = (mtd, opt) => curr.interceptClientStreaming(next, mtd, opt);\n        }\n        return tail(method, options);\n    }\n    if (kind == \"duplex\") {\n        let tail = (mtd, opt) => transport.duplex(mtd, opt);\n        for (const curr of ((_d = options.interceptors) !== null && _d !== void 0 ? _d : []).filter(i => i.interceptDuplex).reverse()) {\n            const next = tail;\n            tail = (mtd, opt) => curr.interceptDuplex(next, mtd, opt);\n        }\n        return tail(method, options);\n    }\n    assertNever(kind);\n}\n/**\n * @deprecated replaced by `stackIntercept()`, still here to support older generated code\n */\nfunction stackUnaryInterceptors(transport, method, input, options) {\n    return stackIntercept(\"unary\", transport, method, options, input);\n}\n/**\n * @deprecated replaced by `stackIntercept()`, still here to support older generated code\n */\nfunction stackServerStreamingInterceptors(transport, method, input, options) {\n    return stackIntercept(\"serverStreaming\", transport, method, options, input);\n}\n/**\n * @deprecated replaced by `stackIntercept()`, still here to support older generated code\n */\nfunction stackClientStreamingInterceptors(transport, method, options) {\n    return stackIntercept(\"clientStreaming\", transport, method, options);\n}\n/**\n * @deprecated replaced by `stackIntercept()`, still here to support older generated code\n */\nfunction stackDuplexStreamingInterceptors(transport, method, options) {\n    return stackIntercept(\"duplex\", transport, method, options);\n}\n\nclass ServerCallContextController {\n    constructor(method, headers, deadline, sendResponseHeadersFn, defaultStatus = { code: 'OK', detail: '' }) {\n        this._cancelled = false;\n        this._listeners = [];\n        this.method = method;\n        this.headers = headers;\n        this.deadline = deadline;\n        this.trailers = {};\n        this._sendRH = sendResponseHeadersFn;\n        this.status = defaultStatus;\n    }\n    /**\n     * Set the call cancelled.\n     *\n     * Invokes all callbacks registered with onCancel() and\n     * sets `cancelled = true`.\n     */\n    notifyCancelled() {\n        if (!this._cancelled) {\n            this._cancelled = true;\n            for (let l of this._listeners) {\n                l();\n            }\n        }\n    }\n    /**\n     * Send response headers.\n     */\n    sendResponseHeaders(data) {\n        this._sendRH(data);\n    }\n    /**\n     * Is the call cancelled?\n     *\n     * When the client closes the connection before the server\n     * is done, the call is cancelled.\n     *\n     * If you want to cancel a request on the server, throw a\n     * RpcError with the CANCELLED status code.\n     */\n    get cancelled() {\n        return this._cancelled;\n    }\n    /**\n     * Add a callback for cancellation.\n     */\n    onCancel(callback) {\n        const l = this._listeners;\n        l.push(callback);\n        return () => {\n            let i = l.indexOf(callback);\n            if (i >= 0)\n                l.splice(i, 1);\n        };\n    }\n}\n\n// Public API of the rpc runtime.\n// Note: we do not use `export * from ...` to help tree shakers,\n// webpack verbose output hints that this should be useful\n\nvar es2015 = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tClientStreamingCall: ClientStreamingCall,\n\tDeferred: Deferred,\n\tget DeferredState () { return DeferredState; },\n\tDuplexStreamingCall: DuplexStreamingCall,\n\tRpcError: RpcError,\n\tRpcOutputStreamController: RpcOutputStreamController,\n\tServerCallContextController: ServerCallContextController,\n\tServerStreamingCall: ServerStreamingCall,\n\tServiceType: ServiceType,\n\tTestTransport: TestTransport,\n\tUnaryCall: UnaryCall,\n\tmergeRpcOptions: mergeRpcOptions,\n\treadMethodOption: readMethodOption,\n\treadMethodOptions: readMethodOptions,\n\treadServiceOption: readServiceOption,\n\tstackClientStreamingInterceptors: stackClientStreamingInterceptors,\n\tstackDuplexStreamingInterceptors: stackDuplexStreamingInterceptors,\n\tstackIntercept: stackIntercept,\n\tstackServerStreamingInterceptors: stackServerStreamingInterceptors,\n\tstackUnaryInterceptors: stackUnaryInterceptors\n});\n\nvar require$$0$2 = /*@__PURE__*/getAugmentedNamespace(es2015);\n\nvar require$$1$1 = /*@__PURE__*/getAugmentedNamespace(es2015$1);\n\nvar cachemetadata = {};\n\nvar cachescope = {};\n\nvar hasRequiredCachescope;\n\nfunction requireCachescope () {\n\tif (hasRequiredCachescope) return cachescope;\n\thasRequiredCachescope = 1;\n\tObject.defineProperty(cachescope, \"__esModule\", { value: true });\n\tcachescope.CacheScope = void 0;\n\tconst runtime_1 = require$$1$1;\n\tconst runtime_2 = require$$1$1;\n\tconst runtime_3 = require$$1$1;\n\tconst runtime_4 = require$$1$1;\n\tconst runtime_5 = require$$1$1;\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass CacheScope$Type extends runtime_5.MessageType {\n\t    constructor() {\n\t        super(\"github.actions.results.entities.v1.CacheScope\", [\n\t            { no: 1, name: \"scope\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t            { no: 2, name: \"permission\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ }\n\t        ]);\n\t    }\n\t    create(value) {\n\t        const message = { scope: \"\", permission: \"0\" };\n\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* string scope */ 1:\n\t                    message.scope = reader.string();\n\t                    break;\n\t                case /* int64 permission */ 2:\n\t                    message.permission = reader.int64().toString();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* string scope = 1; */\n\t        if (message.scope !== \"\")\n\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.scope);\n\t        /* int64 permission = 2; */\n\t        if (message.permission !== \"0\")\n\t            writer.tag(2, runtime_1.WireType.Varint).int64(message.permission);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message github.actions.results.entities.v1.CacheScope\n\t */\n\tcachescope.CacheScope = new CacheScope$Type();\n\t\n\treturn cachescope;\n}\n\nvar hasRequiredCachemetadata;\n\nfunction requireCachemetadata () {\n\tif (hasRequiredCachemetadata) return cachemetadata;\n\thasRequiredCachemetadata = 1;\n\tObject.defineProperty(cachemetadata, \"__esModule\", { value: true });\n\tcachemetadata.CacheMetadata = void 0;\n\tconst runtime_1 = require$$1$1;\n\tconst runtime_2 = require$$1$1;\n\tconst runtime_3 = require$$1$1;\n\tconst runtime_4 = require$$1$1;\n\tconst runtime_5 = require$$1$1;\n\tconst cachescope_1 = requireCachescope();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass CacheMetadata$Type extends runtime_5.MessageType {\n\t    constructor() {\n\t        super(\"github.actions.results.entities.v1.CacheMetadata\", [\n\t            { no: 1, name: \"repository_id\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ },\n\t            { no: 2, name: \"scope\", kind: \"message\", repeat: 1 /*RepeatType.PACKED*/, T: () => cachescope_1.CacheScope }\n\t        ]);\n\t    }\n\t    create(value) {\n\t        const message = { repositoryId: \"0\", scope: [] };\n\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* int64 repository_id */ 1:\n\t                    message.repositoryId = reader.int64().toString();\n\t                    break;\n\t                case /* repeated github.actions.results.entities.v1.CacheScope scope */ 2:\n\t                    message.scope.push(cachescope_1.CacheScope.internalBinaryRead(reader, reader.uint32(), options));\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* int64 repository_id = 1; */\n\t        if (message.repositoryId !== \"0\")\n\t            writer.tag(1, runtime_1.WireType.Varint).int64(message.repositoryId);\n\t        /* repeated github.actions.results.entities.v1.CacheScope scope = 2; */\n\t        for (let i = 0; i < message.scope.length; i++)\n\t            cachescope_1.CacheScope.internalBinaryWrite(message.scope[i], writer.tag(2, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message github.actions.results.entities.v1.CacheMetadata\n\t */\n\tcachemetadata.CacheMetadata = new CacheMetadata$Type();\n\t\n\treturn cachemetadata;\n}\n\nvar hasRequiredCache$1;\n\nfunction requireCache$1 () {\n\tif (hasRequiredCache$1) return cache;\n\thasRequiredCache$1 = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.CacheService = exports.GetCacheEntryDownloadURLResponse = exports.GetCacheEntryDownloadURLRequest = exports.FinalizeCacheEntryUploadResponse = exports.FinalizeCacheEntryUploadRequest = exports.CreateCacheEntryResponse = exports.CreateCacheEntryRequest = void 0;\n\t\t// @generated by protobuf-ts 2.9.1 with parameter long_type_string,client_none,generate_dependencies\n\t\t// @generated from protobuf file \"results/api/v1/cache.proto\" (package \"github.actions.results.api.v1\", syntax proto3)\n\t\t// tslint:disable\n\t\tconst runtime_rpc_1 = require$$0$2;\n\t\tconst runtime_1 = require$$1$1;\n\t\tconst runtime_2 = require$$1$1;\n\t\tconst runtime_3 = require$$1$1;\n\t\tconst runtime_4 = require$$1$1;\n\t\tconst runtime_5 = require$$1$1;\n\t\tconst cachemetadata_1 = requireCachemetadata();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass CreateCacheEntryRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.CreateCacheEntryRequest\", [\n\t\t            { no: 1, name: \"metadata\", kind: \"message\", T: () => cachemetadata_1.CacheMetadata },\n\t\t            { no: 2, name: \"key\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"version\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { key: \"\", version: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* github.actions.results.entities.v1.CacheMetadata metadata */ 1:\n\t\t                    message.metadata = cachemetadata_1.CacheMetadata.internalBinaryRead(reader, reader.uint32(), options, message.metadata);\n\t\t                    break;\n\t\t                case /* string key */ 2:\n\t\t                    message.key = reader.string();\n\t\t                    break;\n\t\t                case /* string version */ 3:\n\t\t                    message.version = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* github.actions.results.entities.v1.CacheMetadata metadata = 1; */\n\t\t        if (message.metadata)\n\t\t            cachemetadata_1.CacheMetadata.internalBinaryWrite(message.metadata, writer.tag(1, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        /* string key = 2; */\n\t\t        if (message.key !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.key);\n\t\t        /* string version = 3; */\n\t\t        if (message.version !== \"\")\n\t\t            writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.version);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.CreateCacheEntryRequest\n\t\t */\n\t\texports.CreateCacheEntryRequest = new CreateCacheEntryRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass CreateCacheEntryResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.CreateCacheEntryResponse\", [\n\t\t            { no: 1, name: \"ok\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ },\n\t\t            { no: 2, name: \"signed_upload_url\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { ok: false, signedUploadUrl: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* bool ok */ 1:\n\t\t                    message.ok = reader.bool();\n\t\t                    break;\n\t\t                case /* string signed_upload_url */ 2:\n\t\t                    message.signedUploadUrl = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* bool ok = 1; */\n\t\t        if (message.ok !== false)\n\t\t            writer.tag(1, runtime_1.WireType.Varint).bool(message.ok);\n\t\t        /* string signed_upload_url = 2; */\n\t\t        if (message.signedUploadUrl !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.signedUploadUrl);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.CreateCacheEntryResponse\n\t\t */\n\t\texports.CreateCacheEntryResponse = new CreateCacheEntryResponse$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass FinalizeCacheEntryUploadRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.FinalizeCacheEntryUploadRequest\", [\n\t\t            { no: 1, name: \"metadata\", kind: \"message\", T: () => cachemetadata_1.CacheMetadata },\n\t\t            { no: 2, name: \"key\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"size_bytes\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ },\n\t\t            { no: 4, name: \"version\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { key: \"\", sizeBytes: \"0\", version: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* github.actions.results.entities.v1.CacheMetadata metadata */ 1:\n\t\t                    message.metadata = cachemetadata_1.CacheMetadata.internalBinaryRead(reader, reader.uint32(), options, message.metadata);\n\t\t                    break;\n\t\t                case /* string key */ 2:\n\t\t                    message.key = reader.string();\n\t\t                    break;\n\t\t                case /* int64 size_bytes */ 3:\n\t\t                    message.sizeBytes = reader.int64().toString();\n\t\t                    break;\n\t\t                case /* string version */ 4:\n\t\t                    message.version = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* github.actions.results.entities.v1.CacheMetadata metadata = 1; */\n\t\t        if (message.metadata)\n\t\t            cachemetadata_1.CacheMetadata.internalBinaryWrite(message.metadata, writer.tag(1, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        /* string key = 2; */\n\t\t        if (message.key !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.key);\n\t\t        /* int64 size_bytes = 3; */\n\t\t        if (message.sizeBytes !== \"0\")\n\t\t            writer.tag(3, runtime_1.WireType.Varint).int64(message.sizeBytes);\n\t\t        /* string version = 4; */\n\t\t        if (message.version !== \"\")\n\t\t            writer.tag(4, runtime_1.WireType.LengthDelimited).string(message.version);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.FinalizeCacheEntryUploadRequest\n\t\t */\n\t\texports.FinalizeCacheEntryUploadRequest = new FinalizeCacheEntryUploadRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass FinalizeCacheEntryUploadResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.FinalizeCacheEntryUploadResponse\", [\n\t\t            { no: 1, name: \"ok\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ },\n\t\t            { no: 2, name: \"entry_id\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { ok: false, entryId: \"0\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* bool ok */ 1:\n\t\t                    message.ok = reader.bool();\n\t\t                    break;\n\t\t                case /* int64 entry_id */ 2:\n\t\t                    message.entryId = reader.int64().toString();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* bool ok = 1; */\n\t\t        if (message.ok !== false)\n\t\t            writer.tag(1, runtime_1.WireType.Varint).bool(message.ok);\n\t\t        /* int64 entry_id = 2; */\n\t\t        if (message.entryId !== \"0\")\n\t\t            writer.tag(2, runtime_1.WireType.Varint).int64(message.entryId);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.FinalizeCacheEntryUploadResponse\n\t\t */\n\t\texports.FinalizeCacheEntryUploadResponse = new FinalizeCacheEntryUploadResponse$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass GetCacheEntryDownloadURLRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.GetCacheEntryDownloadURLRequest\", [\n\t\t            { no: 1, name: \"metadata\", kind: \"message\", T: () => cachemetadata_1.CacheMetadata },\n\t\t            { no: 2, name: \"key\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"restore_keys\", kind: \"scalar\", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 4, name: \"version\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { key: \"\", restoreKeys: [], version: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* github.actions.results.entities.v1.CacheMetadata metadata */ 1:\n\t\t                    message.metadata = cachemetadata_1.CacheMetadata.internalBinaryRead(reader, reader.uint32(), options, message.metadata);\n\t\t                    break;\n\t\t                case /* string key */ 2:\n\t\t                    message.key = reader.string();\n\t\t                    break;\n\t\t                case /* repeated string restore_keys */ 3:\n\t\t                    message.restoreKeys.push(reader.string());\n\t\t                    break;\n\t\t                case /* string version */ 4:\n\t\t                    message.version = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* github.actions.results.entities.v1.CacheMetadata metadata = 1; */\n\t\t        if (message.metadata)\n\t\t            cachemetadata_1.CacheMetadata.internalBinaryWrite(message.metadata, writer.tag(1, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        /* string key = 2; */\n\t\t        if (message.key !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.key);\n\t\t        /* repeated string restore_keys = 3; */\n\t\t        for (let i = 0; i < message.restoreKeys.length; i++)\n\t\t            writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.restoreKeys[i]);\n\t\t        /* string version = 4; */\n\t\t        if (message.version !== \"\")\n\t\t            writer.tag(4, runtime_1.WireType.LengthDelimited).string(message.version);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.GetCacheEntryDownloadURLRequest\n\t\t */\n\t\texports.GetCacheEntryDownloadURLRequest = new GetCacheEntryDownloadURLRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass GetCacheEntryDownloadURLResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.GetCacheEntryDownloadURLResponse\", [\n\t\t            { no: 1, name: \"ok\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ },\n\t\t            { no: 2, name: \"signed_download_url\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"matched_key\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { ok: false, signedDownloadUrl: \"\", matchedKey: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* bool ok */ 1:\n\t\t                    message.ok = reader.bool();\n\t\t                    break;\n\t\t                case /* string signed_download_url */ 2:\n\t\t                    message.signedDownloadUrl = reader.string();\n\t\t                    break;\n\t\t                case /* string matched_key */ 3:\n\t\t                    message.matchedKey = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* bool ok = 1; */\n\t\t        if (message.ok !== false)\n\t\t            writer.tag(1, runtime_1.WireType.Varint).bool(message.ok);\n\t\t        /* string signed_download_url = 2; */\n\t\t        if (message.signedDownloadUrl !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.signedDownloadUrl);\n\t\t        /* string matched_key = 3; */\n\t\t        if (message.matchedKey !== \"\")\n\t\t            writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.matchedKey);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.GetCacheEntryDownloadURLResponse\n\t\t */\n\t\texports.GetCacheEntryDownloadURLResponse = new GetCacheEntryDownloadURLResponse$Type();\n\t\t/**\n\t\t * @generated ServiceType for protobuf service github.actions.results.api.v1.CacheService\n\t\t */\n\t\texports.CacheService = new runtime_rpc_1.ServiceType(\"github.actions.results.api.v1.CacheService\", [\n\t\t    { name: \"CreateCacheEntry\", options: {}, I: exports.CreateCacheEntryRequest, O: exports.CreateCacheEntryResponse },\n\t\t    { name: \"FinalizeCacheEntryUpload\", options: {}, I: exports.FinalizeCacheEntryUploadRequest, O: exports.FinalizeCacheEntryUploadResponse },\n\t\t    { name: \"GetCacheEntryDownloadURL\", options: {}, I: exports.GetCacheEntryDownloadURLRequest, O: exports.GetCacheEntryDownloadURLResponse }\n\t\t]);\n\t\t\n\t} (cache));\n\treturn cache;\n}\n\nvar hasRequiredCache_twirpClient;\n\nfunction requireCache_twirpClient () {\n\tif (hasRequiredCache_twirpClient) return cache_twirpClient;\n\thasRequiredCache_twirpClient = 1;\n\tObject.defineProperty(cache_twirpClient, \"__esModule\", { value: true });\n\tcache_twirpClient.CacheServiceClientProtobuf = cache_twirpClient.CacheServiceClientJSON = void 0;\n\tconst cache_1 = requireCache$1();\n\tclass CacheServiceClientJSON {\n\t    constructor(rpc) {\n\t        this.rpc = rpc;\n\t        this.CreateCacheEntry.bind(this);\n\t        this.FinalizeCacheEntryUpload.bind(this);\n\t        this.GetCacheEntryDownloadURL.bind(this);\n\t    }\n\t    CreateCacheEntry(request) {\n\t        const data = cache_1.CreateCacheEntryRequest.toJson(request, {\n\t            useProtoFieldName: true,\n\t            emitDefaultValues: false,\n\t        });\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.CacheService\", \"CreateCacheEntry\", \"application/json\", data);\n\t        return promise.then((data) => cache_1.CreateCacheEntryResponse.fromJson(data, {\n\t            ignoreUnknownFields: true,\n\t        }));\n\t    }\n\t    FinalizeCacheEntryUpload(request) {\n\t        const data = cache_1.FinalizeCacheEntryUploadRequest.toJson(request, {\n\t            useProtoFieldName: true,\n\t            emitDefaultValues: false,\n\t        });\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.CacheService\", \"FinalizeCacheEntryUpload\", \"application/json\", data);\n\t        return promise.then((data) => cache_1.FinalizeCacheEntryUploadResponse.fromJson(data, {\n\t            ignoreUnknownFields: true,\n\t        }));\n\t    }\n\t    GetCacheEntryDownloadURL(request) {\n\t        const data = cache_1.GetCacheEntryDownloadURLRequest.toJson(request, {\n\t            useProtoFieldName: true,\n\t            emitDefaultValues: false,\n\t        });\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.CacheService\", \"GetCacheEntryDownloadURL\", \"application/json\", data);\n\t        return promise.then((data) => cache_1.GetCacheEntryDownloadURLResponse.fromJson(data, {\n\t            ignoreUnknownFields: true,\n\t        }));\n\t    }\n\t}\n\tcache_twirpClient.CacheServiceClientJSON = CacheServiceClientJSON;\n\tclass CacheServiceClientProtobuf {\n\t    constructor(rpc) {\n\t        this.rpc = rpc;\n\t        this.CreateCacheEntry.bind(this);\n\t        this.FinalizeCacheEntryUpload.bind(this);\n\t        this.GetCacheEntryDownloadURL.bind(this);\n\t    }\n\t    CreateCacheEntry(request) {\n\t        const data = cache_1.CreateCacheEntryRequest.toBinary(request);\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.CacheService\", \"CreateCacheEntry\", \"application/protobuf\", data);\n\t        return promise.then((data) => cache_1.CreateCacheEntryResponse.fromBinary(data));\n\t    }\n\t    FinalizeCacheEntryUpload(request) {\n\t        const data = cache_1.FinalizeCacheEntryUploadRequest.toBinary(request);\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.CacheService\", \"FinalizeCacheEntryUpload\", \"application/protobuf\", data);\n\t        return promise.then((data) => cache_1.FinalizeCacheEntryUploadResponse.fromBinary(data));\n\t    }\n\t    GetCacheEntryDownloadURL(request) {\n\t        const data = cache_1.GetCacheEntryDownloadURLRequest.toBinary(request);\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.CacheService\", \"GetCacheEntryDownloadURL\", \"application/protobuf\", data);\n\t        return promise.then((data) => cache_1.GetCacheEntryDownloadURLResponse.fromBinary(data));\n\t    }\n\t}\n\tcache_twirpClient.CacheServiceClientProtobuf = CacheServiceClientProtobuf;\n\t\n\treturn cache_twirpClient;\n}\n\nvar util$5 = {};\n\nvar hasRequiredUtil$5;\n\nfunction requireUtil$5 () {\n\tif (hasRequiredUtil$5) return util$5;\n\thasRequiredUtil$5 = 1;\n\tObject.defineProperty(util$5, \"__esModule\", { value: true });\n\tutil$5.maskSecretUrls = util$5.maskSigUrl = void 0;\n\tconst core_1 = requireCore$1();\n\t/**\n\t * Masks the `sig` parameter in a URL and sets it as a secret.\n\t *\n\t * @param url - The URL containing the signature parameter to mask\n\t * @remarks\n\t * This function attempts to parse the provided URL and identify the 'sig' query parameter.\n\t * If found, it registers both the raw and URL-encoded signature values as secrets using\n\t * the Actions `setSecret` API, which prevents them from being displayed in logs.\n\t *\n\t * The function handles errors gracefully if URL parsing fails, logging them as debug messages.\n\t *\n\t * @example\n\t * ```typescript\n\t * // Mask a signature in an Azure SAS token URL\n\t * maskSigUrl('https://example.blob.core.windows.net/container/file.txt?sig=abc123&se=2023-01-01');\n\t * ```\n\t */\n\tfunction maskSigUrl(url) {\n\t    if (!url)\n\t        return;\n\t    try {\n\t        const parsedUrl = new URL(url);\n\t        const signature = parsedUrl.searchParams.get('sig');\n\t        if (signature) {\n\t            (0, core_1.setSecret)(signature);\n\t            (0, core_1.setSecret)(encodeURIComponent(signature));\n\t        }\n\t    }\n\t    catch (error) {\n\t        (0, core_1.debug)(`Failed to parse URL: ${url} ${error instanceof Error ? error.message : String(error)}`);\n\t    }\n\t}\n\tutil$5.maskSigUrl = maskSigUrl;\n\t/**\n\t * Masks sensitive information in URLs containing signature parameters.\n\t * Currently supports masking 'sig' parameters in the 'signed_upload_url'\n\t * and 'signed_download_url' properties of the provided object.\n\t *\n\t * @param body - The object should contain a signature\n\t * @remarks\n\t * This function extracts URLs from the object properties and calls maskSigUrl\n\t * on each one to redact sensitive signature information. The function doesn't\n\t * modify the original object; it only marks the signatures as secrets for\n\t * logging purposes.\n\t *\n\t * @example\n\t * ```typescript\n\t * const responseBody = {\n\t *   signed_upload_url: 'https://blob.core.windows.net/?sig=abc123',\n\t *   signed_download_url: 'https://blob.core/windows.net/?sig=def456'\n\t * };\n\t * maskSecretUrls(responseBody);\n\t * ```\n\t */\n\tfunction maskSecretUrls(body) {\n\t    if (typeof body !== 'object' || body === null) {\n\t        (0, core_1.debug)('body is not an object or is null');\n\t        return;\n\t    }\n\t    if ('signed_upload_url' in body &&\n\t        typeof body.signed_upload_url === 'string') {\n\t        maskSigUrl(body.signed_upload_url);\n\t    }\n\t    if ('signed_download_url' in body &&\n\t        typeof body.signed_download_url === 'string') {\n\t        maskSigUrl(body.signed_download_url);\n\t    }\n\t}\n\tutil$5.maskSecretUrls = maskSecretUrls;\n\t\n\treturn util$5;\n}\n\nvar hasRequiredCacheTwirpClient;\n\nfunction requireCacheTwirpClient () {\n\tif (hasRequiredCacheTwirpClient) return cacheTwirpClient;\n\thasRequiredCacheTwirpClient = 1;\n\tvar __awaiter = (cacheTwirpClient && cacheTwirpClient.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(cacheTwirpClient, \"__esModule\", { value: true });\n\tcacheTwirpClient.internalCacheTwirpClient = void 0;\n\tconst core_1 = requireCore$1();\n\tconst user_agent_1 = requireUserAgent$1();\n\tconst errors_1 = requireErrors$2();\n\tconst config_1 = requireConfig$1();\n\tconst cacheUtils_1 = requireCacheUtils();\n\tconst auth_1 = requireAuth();\n\tconst http_client_1 = requireLib$2();\n\tconst cache_twirp_client_1 = requireCache_twirpClient();\n\tconst util_1 = requireUtil$5();\n\t/**\n\t * This class is a wrapper around the CacheServiceClientJSON class generated by Twirp.\n\t *\n\t * It adds retry logic to the request method, which is not present in the generated client.\n\t *\n\t * This class is used to interact with cache service v2.\n\t */\n\tclass CacheServiceClient {\n\t    constructor(userAgent, maxAttempts, baseRetryIntervalMilliseconds, retryMultiplier) {\n\t        this.maxAttempts = 5;\n\t        this.baseRetryIntervalMilliseconds = 3000;\n\t        this.retryMultiplier = 1.5;\n\t        const token = (0, cacheUtils_1.getRuntimeToken)();\n\t        this.baseUrl = (0, config_1.getCacheServiceURL)();\n\t        if (maxAttempts) {\n\t            this.maxAttempts = maxAttempts;\n\t        }\n\t        if (baseRetryIntervalMilliseconds) {\n\t            this.baseRetryIntervalMilliseconds = baseRetryIntervalMilliseconds;\n\t        }\n\t        if (retryMultiplier) {\n\t            this.retryMultiplier = retryMultiplier;\n\t        }\n\t        this.httpClient = new http_client_1.HttpClient(userAgent, [\n\t            new auth_1.BearerCredentialHandler(token)\n\t        ]);\n\t    }\n\t    // This function satisfies the Rpc interface. It is compatible with the JSON\n\t    // JSON generated client.\n\t    request(service, method, contentType, data) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            const url = new URL(`/twirp/${service}/${method}`, this.baseUrl).href;\n\t            (0, core_1.debug)(`[Request] ${method} ${url}`);\n\t            const headers = {\n\t                'Content-Type': contentType\n\t            };\n\t            try {\n\t                const { body } = yield this.retryableRequest(() => __awaiter(this, void 0, void 0, function* () { return this.httpClient.post(url, JSON.stringify(data), headers); }));\n\t                return body;\n\t            }\n\t            catch (error) {\n\t                throw new Error(`Failed to ${method}: ${error.message}`);\n\t            }\n\t        });\n\t    }\n\t    retryableRequest(operation) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            let attempt = 0;\n\t            let errorMessage = '';\n\t            let rawBody = '';\n\t            while (attempt < this.maxAttempts) {\n\t                let isRetryable = false;\n\t                try {\n\t                    const response = yield operation();\n\t                    const statusCode = response.message.statusCode;\n\t                    rawBody = yield response.readBody();\n\t                    (0, core_1.debug)(`[Response] - ${response.message.statusCode}`);\n\t                    (0, core_1.debug)(`Headers: ${JSON.stringify(response.message.headers, null, 2)}`);\n\t                    const body = JSON.parse(rawBody);\n\t                    (0, util_1.maskSecretUrls)(body);\n\t                    (0, core_1.debug)(`Body: ${JSON.stringify(body, null, 2)}`);\n\t                    if (this.isSuccessStatusCode(statusCode)) {\n\t                        return { response, body };\n\t                    }\n\t                    isRetryable = this.isRetryableHttpStatusCode(statusCode);\n\t                    errorMessage = `Failed request: (${statusCode}) ${response.message.statusMessage}`;\n\t                    if (body.msg) {\n\t                        if (errors_1.UsageError.isUsageErrorMessage(body.msg)) {\n\t                            throw new errors_1.UsageError();\n\t                        }\n\t                        errorMessage = `${errorMessage}: ${body.msg}`;\n\t                    }\n\t                }\n\t                catch (error) {\n\t                    if (error instanceof SyntaxError) {\n\t                        (0, core_1.debug)(`Raw Body: ${rawBody}`);\n\t                    }\n\t                    if (error instanceof errors_1.UsageError) {\n\t                        throw error;\n\t                    }\n\t                    if (errors_1.NetworkError.isNetworkErrorCode(error === null || error === void 0 ? void 0 : error.code)) {\n\t                        throw new errors_1.NetworkError(error === null || error === void 0 ? void 0 : error.code);\n\t                    }\n\t                    isRetryable = true;\n\t                    errorMessage = error.message;\n\t                }\n\t                if (!isRetryable) {\n\t                    throw new Error(`Received non-retryable error: ${errorMessage}`);\n\t                }\n\t                if (attempt + 1 === this.maxAttempts) {\n\t                    throw new Error(`Failed to make request after ${this.maxAttempts} attempts: ${errorMessage}`);\n\t                }\n\t                const retryTimeMilliseconds = this.getExponentialRetryTimeMilliseconds(attempt);\n\t                (0, core_1.info)(`Attempt ${attempt + 1} of ${this.maxAttempts} failed with error: ${errorMessage}. Retrying request in ${retryTimeMilliseconds} ms...`);\n\t                yield this.sleep(retryTimeMilliseconds);\n\t                attempt++;\n\t            }\n\t            throw new Error(`Request failed`);\n\t        });\n\t    }\n\t    isSuccessStatusCode(statusCode) {\n\t        if (!statusCode)\n\t            return false;\n\t        return statusCode >= 200 && statusCode < 300;\n\t    }\n\t    isRetryableHttpStatusCode(statusCode) {\n\t        if (!statusCode)\n\t            return false;\n\t        const retryableStatusCodes = [\n\t            http_client_1.HttpCodes.BadGateway,\n\t            http_client_1.HttpCodes.GatewayTimeout,\n\t            http_client_1.HttpCodes.InternalServerError,\n\t            http_client_1.HttpCodes.ServiceUnavailable,\n\t            http_client_1.HttpCodes.TooManyRequests\n\t        ];\n\t        return retryableStatusCodes.includes(statusCode);\n\t    }\n\t    sleep(milliseconds) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return new Promise(resolve => setTimeout(resolve, milliseconds));\n\t        });\n\t    }\n\t    getExponentialRetryTimeMilliseconds(attempt) {\n\t        if (attempt < 0) {\n\t            throw new Error('attempt should be a positive integer');\n\t        }\n\t        if (attempt === 0) {\n\t            return this.baseRetryIntervalMilliseconds;\n\t        }\n\t        const minTime = this.baseRetryIntervalMilliseconds * Math.pow(this.retryMultiplier, attempt);\n\t        const maxTime = minTime * this.retryMultiplier;\n\t        // returns a random number between minTime and maxTime (exclusive)\n\t        return Math.trunc(Math.random() * (maxTime - minTime) + minTime);\n\t    }\n\t}\n\tfunction internalCacheTwirpClient(options) {\n\t    const client = new CacheServiceClient((0, user_agent_1.getUserAgentString)(), options === null || options === void 0 ? void 0 : options.maxAttempts, options === null || options === void 0 ? void 0 : options.retryIntervalMs, options === null || options === void 0 ? void 0 : options.retryMultiplier);\n\t    return new cache_twirp_client_1.CacheServiceClientJSON(client);\n\t}\n\tcacheTwirpClient.internalCacheTwirpClient = internalCacheTwirpClient;\n\t\n\treturn cacheTwirpClient;\n}\n\nvar tar$1 = {};\n\nvar hasRequiredTar$1;\n\nfunction requireTar$1 () {\n\tif (hasRequiredTar$1) return tar$1;\n\thasRequiredTar$1 = 1;\n\tvar __createBinding = (tar$1 && tar$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (tar$1 && tar$1.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (tar$1 && tar$1.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (tar$1 && tar$1.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(tar$1, \"__esModule\", { value: true });\n\ttar$1.createTar = tar$1.extractTar = tar$1.listTar = void 0;\n\tconst exec_1 = requireExec();\n\tconst io = __importStar(requireIo());\n\tconst fs_1 = fs__default;\n\tconst path = __importStar(require$$1__default);\n\tconst utils = __importStar(requireCacheUtils());\n\tconst constants_1 = requireConstants$3();\n\tconst IS_WINDOWS = process.platform === 'win32';\n\t// Returns tar path and type: BSD or GNU\n\tfunction getTarPath() {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        switch (process.platform) {\n\t            case 'win32': {\n\t                const gnuTar = yield utils.getGnuTarPathOnWindows();\n\t                const systemTar = constants_1.SystemTarPathOnWindows;\n\t                if (gnuTar) {\n\t                    // Use GNUtar as default on windows\n\t                    return { path: gnuTar, type: constants_1.ArchiveToolType.GNU };\n\t                }\n\t                else if ((0, fs_1.existsSync)(systemTar)) {\n\t                    return { path: systemTar, type: constants_1.ArchiveToolType.BSD };\n\t                }\n\t                break;\n\t            }\n\t            case 'darwin': {\n\t                const gnuTar = yield io.which('gtar', false);\n\t                if (gnuTar) {\n\t                    // fix permission denied errors when extracting BSD tar archive with GNU tar - https://github.com/actions/cache/issues/527\n\t                    return { path: gnuTar, type: constants_1.ArchiveToolType.GNU };\n\t                }\n\t                else {\n\t                    return {\n\t                        path: yield io.which('tar', true),\n\t                        type: constants_1.ArchiveToolType.BSD\n\t                    };\n\t                }\n\t            }\n\t        }\n\t        // Default assumption is GNU tar is present in path\n\t        return {\n\t            path: yield io.which('tar', true),\n\t            type: constants_1.ArchiveToolType.GNU\n\t        };\n\t    });\n\t}\n\t// Return arguments for tar as per tarPath, compressionMethod, method type and os\n\tfunction getTarArgs(tarPath, compressionMethod, type, archivePath = '') {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const args = [`\"${tarPath.path}\"`];\n\t        const cacheFileName = utils.getCacheFileName(compressionMethod);\n\t        const tarFile = 'cache.tar';\n\t        const workingDirectory = getWorkingDirectory();\n\t        // Speficic args for BSD tar on windows for workaround\n\t        const BSD_TAR_ZSTD = tarPath.type === constants_1.ArchiveToolType.BSD &&\n\t            compressionMethod !== constants_1.CompressionMethod.Gzip &&\n\t            IS_WINDOWS;\n\t        // Method specific args\n\t        switch (type) {\n\t            case 'create':\n\t                args.push('--posix', '-cf', BSD_TAR_ZSTD\n\t                    ? tarFile\n\t                    : cacheFileName.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/'), '--exclude', BSD_TAR_ZSTD\n\t                    ? tarFile\n\t                    : cacheFileName.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/'), '-P', '-C', workingDirectory.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/'), '--files-from', constants_1.ManifestFilename);\n\t                break;\n\t            case 'extract':\n\t                args.push('-xf', BSD_TAR_ZSTD\n\t                    ? tarFile\n\t                    : archivePath.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/'), '-P', '-C', workingDirectory.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/'));\n\t                break;\n\t            case 'list':\n\t                args.push('-tf', BSD_TAR_ZSTD\n\t                    ? tarFile\n\t                    : archivePath.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/'), '-P');\n\t                break;\n\t        }\n\t        // Platform specific args\n\t        if (tarPath.type === constants_1.ArchiveToolType.GNU) {\n\t            switch (process.platform) {\n\t                case 'win32':\n\t                    args.push('--force-local');\n\t                    break;\n\t                case 'darwin':\n\t                    args.push('--delay-directory-restore');\n\t                    break;\n\t            }\n\t        }\n\t        return args;\n\t    });\n\t}\n\t// Returns commands to run tar and compression program\n\tfunction getCommands(compressionMethod, type, archivePath = '') {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        let args;\n\t        const tarPath = yield getTarPath();\n\t        const tarArgs = yield getTarArgs(tarPath, compressionMethod, type, archivePath);\n\t        const compressionArgs = type !== 'create'\n\t            ? yield getDecompressionProgram(tarPath, compressionMethod, archivePath)\n\t            : yield getCompressionProgram(tarPath, compressionMethod);\n\t        const BSD_TAR_ZSTD = tarPath.type === constants_1.ArchiveToolType.BSD &&\n\t            compressionMethod !== constants_1.CompressionMethod.Gzip &&\n\t            IS_WINDOWS;\n\t        if (BSD_TAR_ZSTD && type !== 'create') {\n\t            args = [[...compressionArgs].join(' '), [...tarArgs].join(' ')];\n\t        }\n\t        else {\n\t            args = [[...tarArgs].join(' '), [...compressionArgs].join(' ')];\n\t        }\n\t        if (BSD_TAR_ZSTD) {\n\t            return args;\n\t        }\n\t        return [args.join(' ')];\n\t    });\n\t}\n\tfunction getWorkingDirectory() {\n\t    var _a;\n\t    return (_a = process.env['GITHUB_WORKSPACE']) !== null && _a !== void 0 ? _a : process.cwd();\n\t}\n\t// Common function for extractTar and listTar to get the compression method\n\tfunction getDecompressionProgram(tarPath, compressionMethod, archivePath) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // -d: Decompress.\n\t        // unzstd is equivalent to 'zstd -d'\n\t        // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.\n\t        // Using 30 here because we also support 32-bit self-hosted runners.\n\t        const BSD_TAR_ZSTD = tarPath.type === constants_1.ArchiveToolType.BSD &&\n\t            compressionMethod !== constants_1.CompressionMethod.Gzip &&\n\t            IS_WINDOWS;\n\t        switch (compressionMethod) {\n\t            case constants_1.CompressionMethod.Zstd:\n\t                return BSD_TAR_ZSTD\n\t                    ? [\n\t                        'zstd -d --long=30 --force -o',\n\t                        constants_1.TarFilename,\n\t                        archivePath.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/')\n\t                    ]\n\t                    : [\n\t                        '--use-compress-program',\n\t                        IS_WINDOWS ? '\"zstd -d --long=30\"' : 'unzstd --long=30'\n\t                    ];\n\t            case constants_1.CompressionMethod.ZstdWithoutLong:\n\t                return BSD_TAR_ZSTD\n\t                    ? [\n\t                        'zstd -d --force -o',\n\t                        constants_1.TarFilename,\n\t                        archivePath.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/')\n\t                    ]\n\t                    : ['--use-compress-program', IS_WINDOWS ? '\"zstd -d\"' : 'unzstd'];\n\t            default:\n\t                return ['-z'];\n\t        }\n\t    });\n\t}\n\t// Used for creating the archive\n\t// -T#: Compress using # working thread. If # is 0, attempt to detect and use the number of physical CPU cores.\n\t// zstdmt is equivalent to 'zstd -T0'\n\t// --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.\n\t// Using 30 here because we also support 32-bit self-hosted runners.\n\t// Long range mode is added to zstd in v1.3.2 release, so we will not use --long in older version of zstd.\n\tfunction getCompressionProgram(tarPath, compressionMethod) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const cacheFileName = utils.getCacheFileName(compressionMethod);\n\t        const BSD_TAR_ZSTD = tarPath.type === constants_1.ArchiveToolType.BSD &&\n\t            compressionMethod !== constants_1.CompressionMethod.Gzip &&\n\t            IS_WINDOWS;\n\t        switch (compressionMethod) {\n\t            case constants_1.CompressionMethod.Zstd:\n\t                return BSD_TAR_ZSTD\n\t                    ? [\n\t                        'zstd -T0 --long=30 --force -o',\n\t                        cacheFileName.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/'),\n\t                        constants_1.TarFilename\n\t                    ]\n\t                    : [\n\t                        '--use-compress-program',\n\t                        IS_WINDOWS ? '\"zstd -T0 --long=30\"' : 'zstdmt --long=30'\n\t                    ];\n\t            case constants_1.CompressionMethod.ZstdWithoutLong:\n\t                return BSD_TAR_ZSTD\n\t                    ? [\n\t                        'zstd -T0 --force -o',\n\t                        cacheFileName.replace(new RegExp(`\\\\${path.sep}`, 'g'), '/'),\n\t                        constants_1.TarFilename\n\t                    ]\n\t                    : ['--use-compress-program', IS_WINDOWS ? '\"zstd -T0\"' : 'zstdmt'];\n\t            default:\n\t                return ['-z'];\n\t        }\n\t    });\n\t}\n\t// Executes all commands as separate processes\n\tfunction execCommands(commands, cwd) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        for (const command of commands) {\n\t            try {\n\t                yield (0, exec_1.exec)(command, undefined, {\n\t                    cwd,\n\t                    env: Object.assign(Object.assign({}, process.env), { MSYS: 'winsymlinks:nativestrict' })\n\t                });\n\t            }\n\t            catch (error) {\n\t                throw new Error(`${command.split(' ')[0]} failed with error: ${error === null || error === void 0 ? void 0 : error.message}`);\n\t            }\n\t        }\n\t    });\n\t}\n\t// List the contents of a tar\n\tfunction listTar(archivePath, compressionMethod) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const commands = yield getCommands(compressionMethod, 'list', archivePath);\n\t        yield execCommands(commands);\n\t    });\n\t}\n\ttar$1.listTar = listTar;\n\t// Extract a tar\n\tfunction extractTar(archivePath, compressionMethod) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // Create directory to extract tar into\n\t        const workingDirectory = getWorkingDirectory();\n\t        yield io.mkdirP(workingDirectory);\n\t        const commands = yield getCommands(compressionMethod, 'extract', archivePath);\n\t        yield execCommands(commands);\n\t    });\n\t}\n\ttar$1.extractTar = extractTar;\n\t// Create a tar\n\tfunction createTar(archiveFolder, sourceDirectories, compressionMethod) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // Write source directories to manifest.txt to avoid command length limits\n\t        (0, fs_1.writeFileSync)(path.join(archiveFolder, constants_1.ManifestFilename), sourceDirectories.join('\\n'));\n\t        const commands = yield getCommands(compressionMethod, 'create');\n\t        yield execCommands(commands, archiveFolder);\n\t    });\n\t}\n\ttar$1.createTar = createTar;\n\t\n\treturn tar$1;\n}\n\nvar hasRequiredCache;\n\nfunction requireCache () {\n\tif (hasRequiredCache) return cache$1;\n\thasRequiredCache = 1;\n\tvar __createBinding = (cache$1 && cache$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (cache$1 && cache$1.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (cache$1 && cache$1.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (cache$1 && cache$1.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(cache$1, \"__esModule\", { value: true });\n\tcache$1.saveCache = cache$1.restoreCache = cache$1.isFeatureAvailable = cache$1.ReserveCacheError = cache$1.ValidationError = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst path = __importStar(require$$1__default);\n\tconst utils = __importStar(requireCacheUtils());\n\tconst cacheHttpClient = __importStar(requireCacheHttpClient());\n\tconst cacheTwirpClient = __importStar(requireCacheTwirpClient());\n\tconst config_1 = requireConfig$1();\n\tconst tar_1 = requireTar$1();\n\tconst constants_1 = requireConstants$3();\n\tclass ValidationError extends Error {\n\t    constructor(message) {\n\t        super(message);\n\t        this.name = 'ValidationError';\n\t        Object.setPrototypeOf(this, ValidationError.prototype);\n\t    }\n\t}\n\tcache$1.ValidationError = ValidationError;\n\tclass ReserveCacheError extends Error {\n\t    constructor(message) {\n\t        super(message);\n\t        this.name = 'ReserveCacheError';\n\t        Object.setPrototypeOf(this, ReserveCacheError.prototype);\n\t    }\n\t}\n\tcache$1.ReserveCacheError = ReserveCacheError;\n\tfunction checkPaths(paths) {\n\t    if (!paths || paths.length === 0) {\n\t        throw new ValidationError(`Path Validation Error: At least one directory or file path is required`);\n\t    }\n\t}\n\tfunction checkKey(key) {\n\t    if (key.length > 512) {\n\t        throw new ValidationError(`Key Validation Error: ${key} cannot be larger than 512 characters.`);\n\t    }\n\t    const regex = /^[^,]*$/;\n\t    if (!regex.test(key)) {\n\t        throw new ValidationError(`Key Validation Error: ${key} cannot contain commas.`);\n\t    }\n\t}\n\t/**\n\t * isFeatureAvailable to check the presence of Actions cache service\n\t *\n\t * @returns boolean return true if Actions cache service feature is available, otherwise false\n\t */\n\tfunction isFeatureAvailable() {\n\t    return !!process.env['ACTIONS_CACHE_URL'];\n\t}\n\tcache$1.isFeatureAvailable = isFeatureAvailable;\n\t/**\n\t * Restores cache from keys\n\t *\n\t * @param paths a list of file paths to restore from the cache\n\t * @param primaryKey an explicit key for restoring the cache. Lookup is done with prefix matching.\n\t * @param restoreKeys an optional ordered list of keys to use for restoring the cache if no cache hit occurred for primaryKey\n\t * @param downloadOptions cache download options\n\t * @param enableCrossOsArchive an optional boolean enabled to restore on windows any cache created on any platform\n\t * @returns string returns the key for the cache hit, otherwise returns undefined\n\t */\n\tfunction restoreCache(paths, primaryKey, restoreKeys, options, enableCrossOsArchive = false) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const cacheServiceVersion = (0, config_1.getCacheServiceVersion)();\n\t        core.debug(`Cache service version: ${cacheServiceVersion}`);\n\t        checkPaths(paths);\n\t        switch (cacheServiceVersion) {\n\t            case 'v2':\n\t                return yield restoreCacheV2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);\n\t            case 'v1':\n\t            default:\n\t                return yield restoreCacheV1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);\n\t        }\n\t    });\n\t}\n\tcache$1.restoreCache = restoreCache;\n\t/**\n\t * Restores cache using the legacy Cache Service\n\t *\n\t * @param paths a list of file paths to restore from the cache\n\t * @param primaryKey an explicit key for restoring the cache. Lookup is done with prefix matching.\n\t * @param restoreKeys an optional ordered list of keys to use for restoring the cache if no cache hit occurred for primaryKey\n\t * @param options cache download options\n\t * @param enableCrossOsArchive an optional boolean enabled to restore on Windows any cache created on any platform\n\t * @returns string returns the key for the cache hit, otherwise returns undefined\n\t */\n\tfunction restoreCacheV1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive = false) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        restoreKeys = restoreKeys || [];\n\t        const keys = [primaryKey, ...restoreKeys];\n\t        core.debug('Resolved Keys:');\n\t        core.debug(JSON.stringify(keys));\n\t        if (keys.length > 10) {\n\t            throw new ValidationError(`Key Validation Error: Keys are limited to a maximum of 10.`);\n\t        }\n\t        for (const key of keys) {\n\t            checkKey(key);\n\t        }\n\t        const compressionMethod = yield utils.getCompressionMethod();\n\t        let archivePath = '';\n\t        try {\n\t            // path are needed to compute version\n\t            const cacheEntry = yield cacheHttpClient.getCacheEntry(keys, paths, {\n\t                compressionMethod,\n\t                enableCrossOsArchive\n\t            });\n\t            if (!(cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.archiveLocation)) {\n\t                // Cache not found\n\t                return undefined;\n\t            }\n\t            if (options === null || options === void 0 ? void 0 : options.lookupOnly) {\n\t                core.info('Lookup only - skipping download');\n\t                return cacheEntry.cacheKey;\n\t            }\n\t            archivePath = path.join(yield utils.createTempDirectory(), utils.getCacheFileName(compressionMethod));\n\t            core.debug(`Archive Path: ${archivePath}`);\n\t            // Download the cache from the cache entry\n\t            yield cacheHttpClient.downloadCache(cacheEntry.archiveLocation, archivePath, options);\n\t            if (core.isDebug()) {\n\t                yield (0, tar_1.listTar)(archivePath, compressionMethod);\n\t            }\n\t            const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath);\n\t            core.info(`Cache Size: ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B)`);\n\t            yield (0, tar_1.extractTar)(archivePath, compressionMethod);\n\t            core.info('Cache restored successfully');\n\t            return cacheEntry.cacheKey;\n\t        }\n\t        catch (error) {\n\t            const typedError = error;\n\t            if (typedError.name === ValidationError.name) {\n\t                throw error;\n\t            }\n\t            else {\n\t                // Supress all non-validation cache related errors because caching should be optional\n\t                core.warning(`Failed to restore: ${error.message}`);\n\t            }\n\t        }\n\t        finally {\n\t            // Try to delete the archive to save space\n\t            try {\n\t                yield utils.unlinkFile(archivePath);\n\t            }\n\t            catch (error) {\n\t                core.debug(`Failed to delete archive: ${error}`);\n\t            }\n\t        }\n\t        return undefined;\n\t    });\n\t}\n\t/**\n\t * Restores cache using Cache Service v2\n\t *\n\t * @param paths a list of file paths to restore from the cache\n\t * @param primaryKey an explicit key for restoring the cache. Lookup is done with prefix matching\n\t * @param restoreKeys an optional ordered list of keys to use for restoring the cache if no cache hit occurred for primaryKey\n\t * @param downloadOptions cache download options\n\t * @param enableCrossOsArchive an optional boolean enabled to restore on windows any cache created on any platform\n\t * @returns string returns the key for the cache hit, otherwise returns undefined\n\t */\n\tfunction restoreCacheV2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive = false) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // Override UploadOptions to force the use of Azure\n\t        options = Object.assign(Object.assign({}, options), { useAzureSdk: true });\n\t        restoreKeys = restoreKeys || [];\n\t        const keys = [primaryKey, ...restoreKeys];\n\t        core.debug('Resolved Keys:');\n\t        core.debug(JSON.stringify(keys));\n\t        if (keys.length > 10) {\n\t            throw new ValidationError(`Key Validation Error: Keys are limited to a maximum of 10.`);\n\t        }\n\t        for (const key of keys) {\n\t            checkKey(key);\n\t        }\n\t        let archivePath = '';\n\t        try {\n\t            const twirpClient = cacheTwirpClient.internalCacheTwirpClient();\n\t            const compressionMethod = yield utils.getCompressionMethod();\n\t            const request = {\n\t                key: primaryKey,\n\t                restoreKeys,\n\t                version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive)\n\t            };\n\t            const response = yield twirpClient.GetCacheEntryDownloadURL(request);\n\t            if (!response.ok) {\n\t                core.debug(`Cache not found for version ${request.version} of keys: ${keys.join(', ')}`);\n\t                return undefined;\n\t            }\n\t            core.info(`Cache hit for: ${request.key}`);\n\t            if (options === null || options === void 0 ? void 0 : options.lookupOnly) {\n\t                core.info('Lookup only - skipping download');\n\t                return response.matchedKey;\n\t            }\n\t            archivePath = path.join(yield utils.createTempDirectory(), utils.getCacheFileName(compressionMethod));\n\t            core.debug(`Archive path: ${archivePath}`);\n\t            core.debug(`Starting download of archive to: ${archivePath}`);\n\t            yield cacheHttpClient.downloadCache(response.signedDownloadUrl, archivePath, options);\n\t            const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath);\n\t            core.info(`Cache Size: ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B)`);\n\t            if (core.isDebug()) {\n\t                yield (0, tar_1.listTar)(archivePath, compressionMethod);\n\t            }\n\t            yield (0, tar_1.extractTar)(archivePath, compressionMethod);\n\t            core.info('Cache restored successfully');\n\t            return response.matchedKey;\n\t        }\n\t        catch (error) {\n\t            const typedError = error;\n\t            if (typedError.name === ValidationError.name) {\n\t                throw error;\n\t            }\n\t            else {\n\t                // Supress all non-validation cache related errors because caching should be optional\n\t                core.warning(`Failed to restore: ${error.message}`);\n\t            }\n\t        }\n\t        finally {\n\t            try {\n\t                if (archivePath) {\n\t                    yield utils.unlinkFile(archivePath);\n\t                }\n\t            }\n\t            catch (error) {\n\t                core.debug(`Failed to delete archive: ${error}`);\n\t            }\n\t        }\n\t        return undefined;\n\t    });\n\t}\n\t/**\n\t * Saves a list of files with the specified key\n\t *\n\t * @param paths a list of file paths to be cached\n\t * @param key an explicit key for restoring the cache\n\t * @param enableCrossOsArchive an optional boolean enabled to save cache on windows which could be restored on any platform\n\t * @param options cache upload options\n\t * @returns number returns cacheId if the cache was saved successfully and throws an error if save fails\n\t */\n\tfunction saveCache(paths, key, options, enableCrossOsArchive = false) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const cacheServiceVersion = (0, config_1.getCacheServiceVersion)();\n\t        core.debug(`Cache service version: ${cacheServiceVersion}`);\n\t        checkPaths(paths);\n\t        checkKey(key);\n\t        switch (cacheServiceVersion) {\n\t            case 'v2':\n\t                return yield saveCacheV2(paths, key, options, enableCrossOsArchive);\n\t            case 'v1':\n\t            default:\n\t                return yield saveCacheV1(paths, key, options, enableCrossOsArchive);\n\t        }\n\t    });\n\t}\n\tcache$1.saveCache = saveCache;\n\t/**\n\t * Save cache using the legacy Cache Service\n\t *\n\t * @param paths\n\t * @param key\n\t * @param options\n\t * @param enableCrossOsArchive\n\t * @returns\n\t */\n\tfunction saveCacheV1(paths, key, options, enableCrossOsArchive = false) {\n\t    var _a, _b, _c, _d, _e;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const compressionMethod = yield utils.getCompressionMethod();\n\t        let cacheId = -1;\n\t        const cachePaths = yield utils.resolvePaths(paths);\n\t        core.debug('Cache Paths:');\n\t        core.debug(`${JSON.stringify(cachePaths)}`);\n\t        if (cachePaths.length === 0) {\n\t            throw new Error(`Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.`);\n\t        }\n\t        const archiveFolder = yield utils.createTempDirectory();\n\t        const archivePath = path.join(archiveFolder, utils.getCacheFileName(compressionMethod));\n\t        core.debug(`Archive Path: ${archivePath}`);\n\t        try {\n\t            yield (0, tar_1.createTar)(archiveFolder, cachePaths, compressionMethod);\n\t            if (core.isDebug()) {\n\t                yield (0, tar_1.listTar)(archivePath, compressionMethod);\n\t            }\n\t            const fileSizeLimit = 10 * 1024 * 1024 * 1024; // 10GB per repo limit\n\t            const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath);\n\t            core.debug(`File Size: ${archiveFileSize}`);\n\t            // For GHES, this check will take place in ReserveCache API with enterprise file size limit\n\t            if (archiveFileSize > fileSizeLimit && !(0, config_1.isGhes)()) {\n\t                throw new Error(`Cache size of ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B) is over the 10GB limit, not saving cache.`);\n\t            }\n\t            core.debug('Reserving Cache');\n\t            const reserveCacheResponse = yield cacheHttpClient.reserveCache(key, paths, {\n\t                compressionMethod,\n\t                enableCrossOsArchive,\n\t                cacheSize: archiveFileSize\n\t            });\n\t            if ((_a = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.result) === null || _a === void 0 ? void 0 : _a.cacheId) {\n\t                cacheId = (_b = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.result) === null || _b === void 0 ? void 0 : _b.cacheId;\n\t            }\n\t            else if ((reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.statusCode) === 400) {\n\t                throw new Error((_d = (_c = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.error) === null || _c === void 0 ? void 0 : _c.message) !== null && _d !== void 0 ? _d : `Cache size of ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B) is over the data cap limit, not saving cache.`);\n\t            }\n\t            else {\n\t                throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache. More details: ${(_e = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.error) === null || _e === void 0 ? void 0 : _e.message}`);\n\t            }\n\t            core.debug(`Saving Cache (ID: ${cacheId})`);\n\t            yield cacheHttpClient.saveCache(cacheId, archivePath, '', options);\n\t        }\n\t        catch (error) {\n\t            const typedError = error;\n\t            if (typedError.name === ValidationError.name) {\n\t                throw error;\n\t            }\n\t            else if (typedError.name === ReserveCacheError.name) {\n\t                core.info(`Failed to save: ${typedError.message}`);\n\t            }\n\t            else {\n\t                core.warning(`Failed to save: ${typedError.message}`);\n\t            }\n\t        }\n\t        finally {\n\t            // Try to delete the archive to save space\n\t            try {\n\t                yield utils.unlinkFile(archivePath);\n\t            }\n\t            catch (error) {\n\t                core.debug(`Failed to delete archive: ${error}`);\n\t            }\n\t        }\n\t        return cacheId;\n\t    });\n\t}\n\t/**\n\t * Save cache using Cache Service v2\n\t *\n\t * @param paths a list of file paths to restore from the cache\n\t * @param key an explicit key for restoring the cache\n\t * @param options cache upload options\n\t * @param enableCrossOsArchive an optional boolean enabled to save cache on windows which could be restored on any platform\n\t * @returns\n\t */\n\tfunction saveCacheV2(paths, key, options, enableCrossOsArchive = false) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // Override UploadOptions to force the use of Azure\n\t        // ...options goes first because we want to override the default values\n\t        // set in UploadOptions with these specific figures\n\t        options = Object.assign(Object.assign({}, options), { uploadChunkSize: 64 * 1024 * 1024, uploadConcurrency: 8, useAzureSdk: true });\n\t        const compressionMethod = yield utils.getCompressionMethod();\n\t        const twirpClient = cacheTwirpClient.internalCacheTwirpClient();\n\t        let cacheId = -1;\n\t        const cachePaths = yield utils.resolvePaths(paths);\n\t        core.debug('Cache Paths:');\n\t        core.debug(`${JSON.stringify(cachePaths)}`);\n\t        if (cachePaths.length === 0) {\n\t            throw new Error(`Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.`);\n\t        }\n\t        const archiveFolder = yield utils.createTempDirectory();\n\t        const archivePath = path.join(archiveFolder, utils.getCacheFileName(compressionMethod));\n\t        core.debug(`Archive Path: ${archivePath}`);\n\t        try {\n\t            yield (0, tar_1.createTar)(archiveFolder, cachePaths, compressionMethod);\n\t            if (core.isDebug()) {\n\t                yield (0, tar_1.listTar)(archivePath, compressionMethod);\n\t            }\n\t            const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath);\n\t            core.debug(`File Size: ${archiveFileSize}`);\n\t            // For GHES, this check will take place in ReserveCache API with enterprise file size limit\n\t            if (archiveFileSize > constants_1.CacheFileSizeLimit && !(0, config_1.isGhes)()) {\n\t                throw new Error(`Cache size of ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B) is over the 10GB limit, not saving cache.`);\n\t            }\n\t            // Set the archive size in the options, will be used to display the upload progress\n\t            options.archiveSizeBytes = archiveFileSize;\n\t            core.debug('Reserving Cache');\n\t            const version = utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive);\n\t            const request = {\n\t                key,\n\t                version\n\t            };\n\t            let signedUploadUrl;\n\t            try {\n\t                const response = yield twirpClient.CreateCacheEntry(request);\n\t                if (!response.ok) {\n\t                    throw new Error('Response was not ok');\n\t                }\n\t                signedUploadUrl = response.signedUploadUrl;\n\t            }\n\t            catch (error) {\n\t                core.debug(`Failed to reserve cache: ${error}`);\n\t                throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);\n\t            }\n\t            core.debug(`Attempting to upload cache located at: ${archivePath}`);\n\t            yield cacheHttpClient.saveCache(cacheId, archivePath, signedUploadUrl, options);\n\t            const finalizeRequest = {\n\t                key,\n\t                version,\n\t                sizeBytes: `${archiveFileSize}`\n\t            };\n\t            const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);\n\t            core.debug(`FinalizeCacheEntryUploadResponse: ${finalizeResponse.ok}`);\n\t            if (!finalizeResponse.ok) {\n\t                throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);\n\t            }\n\t            cacheId = parseInt(finalizeResponse.entryId);\n\t        }\n\t        catch (error) {\n\t            const typedError = error;\n\t            if (typedError.name === ValidationError.name) {\n\t                throw error;\n\t            }\n\t            else if (typedError.name === ReserveCacheError.name) {\n\t                core.info(`Failed to save: ${typedError.message}`);\n\t            }\n\t            else {\n\t                core.warning(`Failed to save: ${typedError.message}`);\n\t            }\n\t        }\n\t        finally {\n\t            // Try to delete the archive to save space\n\t            try {\n\t                yield utils.unlinkFile(archivePath);\n\t            }\n\t            catch (error) {\n\t                core.debug(`Failed to delete archive: ${error}`);\n\t            }\n\t        }\n\t        return cacheId;\n\t    });\n\t}\n\t\n\treturn cache$1;\n}\n\nvar cacheExports = requireCache();\n\nvar toolCache = {};\n\nvar manifest$1 = {exports: {}};\n\nvar semver$2 = {exports: {}};\n\nvar hasRequiredSemver$2;\n\nfunction requireSemver$2 () {\n\tif (hasRequiredSemver$2) return semver$2.exports;\n\thasRequiredSemver$2 = 1;\n\t(function (module, exports) {\n\t\texports = module.exports = SemVer;\n\n\t\tvar debug;\n\t\t/* istanbul ignore next */\n\t\tif (typeof process === 'object' &&\n\t\t    process.env &&\n\t\t    process.env.NODE_DEBUG &&\n\t\t    /\\bsemver\\b/i.test(process.env.NODE_DEBUG)) {\n\t\t  debug = function () {\n\t\t    var args = Array.prototype.slice.call(arguments, 0);\n\t\t    args.unshift('SEMVER');\n\t\t    console.log.apply(console, args);\n\t\t  };\n\t\t} else {\n\t\t  debug = function () {};\n\t\t}\n\n\t\t// Note: this is the semver.org version of the spec that it implements\n\t\t// Not necessarily the package version of this code.\n\t\texports.SEMVER_SPEC_VERSION = '2.0.0';\n\n\t\tvar MAX_LENGTH = 256;\n\t\tvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n\t\t  /* istanbul ignore next */ 9007199254740991;\n\n\t\t// Max safe segment length for coercion.\n\t\tvar MAX_SAFE_COMPONENT_LENGTH = 16;\n\n\t\tvar MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6;\n\n\t\t// The actual regexps go on exports.re\n\t\tvar re = exports.re = [];\n\t\tvar safeRe = exports.safeRe = [];\n\t\tvar src = exports.src = [];\n\t\tvar t = exports.tokens = {};\n\t\tvar R = 0;\n\n\t\tfunction tok (n) {\n\t\t  t[n] = R++;\n\t\t}\n\n\t\tvar LETTERDASHNUMBER = '[a-zA-Z0-9-]';\n\n\t\t// Replace some greedy regex tokens to prevent regex dos issues. These regex are\n\t\t// used internally via the safeRe object since all inputs in this library get\n\t\t// normalized first to trim and collapse all extra whitespace. The original\n\t\t// regexes are exported for userland consumption and lower level usage. A\n\t\t// future breaking change could export the safer regex only with a note that\n\t\t// all input should have extra whitespace removed.\n\t\tvar safeRegexReplacements = [\n\t\t  ['\\\\s', 1],\n\t\t  ['\\\\d', MAX_LENGTH],\n\t\t  [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH],\n\t\t];\n\n\t\tfunction makeSafeRe (value) {\n\t\t  for (var i = 0; i < safeRegexReplacements.length; i++) {\n\t\t    var token = safeRegexReplacements[i][0];\n\t\t    var max = safeRegexReplacements[i][1];\n\t\t    value = value\n\t\t      .split(token + '*').join(token + '{0,' + max + '}')\n\t\t      .split(token + '+').join(token + '{1,' + max + '}');\n\t\t  }\n\t\t  return value\n\t\t}\n\n\t\t// The following Regular Expressions can be used for tokenizing,\n\t\t// validating, and parsing SemVer version strings.\n\n\t\t// ## Numeric Identifier\n\t\t// A single `0`, or a non-zero digit followed by zero or more digits.\n\n\t\ttok('NUMERICIDENTIFIER');\n\t\tsrc[t.NUMERICIDENTIFIER] = '0|[1-9]\\\\d*';\n\t\ttok('NUMERICIDENTIFIERLOOSE');\n\t\tsrc[t.NUMERICIDENTIFIERLOOSE] = '\\\\d+';\n\n\t\t// ## Non-numeric Identifier\n\t\t// Zero or more digits, followed by a letter or hyphen, and then zero or\n\t\t// more letters, digits, or hyphens.\n\n\t\ttok('NONNUMERICIDENTIFIER');\n\t\tsrc[t.NONNUMERICIDENTIFIER] = '\\\\d*[a-zA-Z-]' + LETTERDASHNUMBER + '*';\n\n\t\t// ## Main Version\n\t\t// Three dot-separated numeric identifiers.\n\n\t\ttok('MAINVERSION');\n\t\tsrc[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n\t\t                   '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n\t\t                   '(' + src[t.NUMERICIDENTIFIER] + ')';\n\n\t\ttok('MAINVERSIONLOOSE');\n\t\tsrc[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n\t\t                        '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n\t\t                        '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')';\n\n\t\t// ## Pre-release Version Identifier\n\t\t// A numeric identifier, or a non-numeric identifier.\n\n\t\ttok('PRERELEASEIDENTIFIER');\n\t\tsrc[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] +\n\t\t                            '|' + src[t.NONNUMERICIDENTIFIER] + ')';\n\n\t\ttok('PRERELEASEIDENTIFIERLOOSE');\n\t\tsrc[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] +\n\t\t                                 '|' + src[t.NONNUMERICIDENTIFIER] + ')';\n\n\t\t// ## Pre-release Version\n\t\t// Hyphen, followed by one or more dot-separated pre-release version\n\t\t// identifiers.\n\n\t\ttok('PRERELEASE');\n\t\tsrc[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] +\n\t\t                  '(?:\\\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))';\n\n\t\ttok('PRERELEASELOOSE');\n\t\tsrc[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] +\n\t\t                       '(?:\\\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))';\n\n\t\t// ## Build Metadata Identifier\n\t\t// Any combination of digits, letters, or hyphens.\n\n\t\ttok('BUILDIDENTIFIER');\n\t\tsrc[t.BUILDIDENTIFIER] = LETTERDASHNUMBER + '+';\n\n\t\t// ## Build Metadata\n\t\t// Plus sign, followed by one or more period-separated build metadata\n\t\t// identifiers.\n\n\t\ttok('BUILD');\n\t\tsrc[t.BUILD] = '(?:\\\\+(' + src[t.BUILDIDENTIFIER] +\n\t\t             '(?:\\\\.' + src[t.BUILDIDENTIFIER] + ')*))';\n\n\t\t// ## Full Version String\n\t\t// A main version, followed optionally by a pre-release version and\n\t\t// build metadata.\n\n\t\t// Note that the only major, minor, patch, and pre-release sections of\n\t\t// the version string are capturing groups.  The build metadata is not a\n\t\t// capturing group, because it should not ever be used in version\n\t\t// comparison.\n\n\t\ttok('FULL');\n\t\ttok('FULLPLAIN');\n\t\tsrc[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] +\n\t\t                  src[t.PRERELEASE] + '?' +\n\t\t                  src[t.BUILD] + '?';\n\n\t\tsrc[t.FULL] = '^' + src[t.FULLPLAIN] + '$';\n\n\t\t// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n\t\t// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n\t\t// common in the npm registry.\n\t\ttok('LOOSEPLAIN');\n\t\tsrc[t.LOOSEPLAIN] = '[v=\\\\s]*' + src[t.MAINVERSIONLOOSE] +\n\t\t                  src[t.PRERELEASELOOSE] + '?' +\n\t\t                  src[t.BUILD] + '?';\n\n\t\ttok('LOOSE');\n\t\tsrc[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$';\n\n\t\ttok('GTLT');\n\t\tsrc[t.GTLT] = '((?:<|>)?=?)';\n\n\t\t// Something like \"2.*\" or \"1.2.x\".\n\t\t// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n\t\t// Only the first item is strictly required.\n\t\ttok('XRANGEIDENTIFIERLOOSE');\n\t\tsrc[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\\\*';\n\t\ttok('XRANGEIDENTIFIER');\n\t\tsrc[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\\\*';\n\n\t\ttok('XRANGEPLAIN');\n\t\tsrc[t.XRANGEPLAIN] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' +\n\t\t                   '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n\t\t                   '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n\t\t                   '(?:' + src[t.PRERELEASE] + ')?' +\n\t\t                   src[t.BUILD] + '?' +\n\t\t                   ')?)?';\n\n\t\ttok('XRANGEPLAINLOOSE');\n\t\tsrc[t.XRANGEPLAINLOOSE] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n\t\t                        '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n\t\t                        '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n\t\t                        '(?:' + src[t.PRERELEASELOOSE] + ')?' +\n\t\t                        src[t.BUILD] + '?' +\n\t\t                        ')?)?';\n\n\t\ttok('XRANGE');\n\t\tsrc[t.XRANGE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAIN] + '$';\n\t\ttok('XRANGELOOSE');\n\t\tsrc[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAINLOOSE] + '$';\n\n\t\t// Coercion.\n\t\t// Extract anything that could conceivably be a part of a valid semver\n\t\ttok('COERCE');\n\t\tsrc[t.COERCE] = '(^|[^\\\\d])' +\n\t\t              '(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +\n\t\t              '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n\t\t              '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n\t\t              '(?:$|[^\\\\d])';\n\t\ttok('COERCERTL');\n\t\tre[t.COERCERTL] = new RegExp(src[t.COERCE], 'g');\n\t\tsafeRe[t.COERCERTL] = new RegExp(makeSafeRe(src[t.COERCE]), 'g');\n\n\t\t// Tilde ranges.\n\t\t// Meaning is \"reasonably at or greater than\"\n\t\ttok('LONETILDE');\n\t\tsrc[t.LONETILDE] = '(?:~>?)';\n\n\t\ttok('TILDETRIM');\n\t\tsrc[t.TILDETRIM] = '(\\\\s*)' + src[t.LONETILDE] + '\\\\s+';\n\t\tre[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g');\n\t\tsafeRe[t.TILDETRIM] = new RegExp(makeSafeRe(src[t.TILDETRIM]), 'g');\n\t\tvar tildeTrimReplace = '$1~';\n\n\t\ttok('TILDE');\n\t\tsrc[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$';\n\t\ttok('TILDELOOSE');\n\t\tsrc[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$';\n\n\t\t// Caret ranges.\n\t\t// Meaning is \"at least and backwards compatible with\"\n\t\ttok('LONECARET');\n\t\tsrc[t.LONECARET] = '(?:\\\\^)';\n\n\t\ttok('CARETTRIM');\n\t\tsrc[t.CARETTRIM] = '(\\\\s*)' + src[t.LONECARET] + '\\\\s+';\n\t\tre[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g');\n\t\tsafeRe[t.CARETTRIM] = new RegExp(makeSafeRe(src[t.CARETTRIM]), 'g');\n\t\tvar caretTrimReplace = '$1^';\n\n\t\ttok('CARET');\n\t\tsrc[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$';\n\t\ttok('CARETLOOSE');\n\t\tsrc[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$';\n\n\t\t// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\n\t\ttok('COMPARATORLOOSE');\n\t\tsrc[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.LOOSEPLAIN] + ')$|^$';\n\t\ttok('COMPARATOR');\n\t\tsrc[t.COMPARATOR] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.FULLPLAIN] + ')$|^$';\n\n\t\t// An expression to strip any whitespace between the gtlt and the thing\n\t\t// it modifies, so that `> 1.2.3` ==> `>1.2.3`\n\t\ttok('COMPARATORTRIM');\n\t\tsrc[t.COMPARATORTRIM] = '(\\\\s*)' + src[t.GTLT] +\n\t\t                      '\\\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')';\n\n\t\t// this one has to use the /g flag\n\t\tre[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g');\n\t\tsafeRe[t.COMPARATORTRIM] = new RegExp(makeSafeRe(src[t.COMPARATORTRIM]), 'g');\n\t\tvar comparatorTrimReplace = '$1$2$3';\n\n\t\t// Something like `1.2.3 - 1.2.4`\n\t\t// Note that these all use the loose form, because they'll be\n\t\t// checked against either the strict or loose comparator form\n\t\t// later.\n\t\ttok('HYPHENRANGE');\n\t\tsrc[t.HYPHENRANGE] = '^\\\\s*(' + src[t.XRANGEPLAIN] + ')' +\n\t\t                   '\\\\s+-\\\\s+' +\n\t\t                   '(' + src[t.XRANGEPLAIN] + ')' +\n\t\t                   '\\\\s*$';\n\n\t\ttok('HYPHENRANGELOOSE');\n\t\tsrc[t.HYPHENRANGELOOSE] = '^\\\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' +\n\t\t                        '\\\\s+-\\\\s+' +\n\t\t                        '(' + src[t.XRANGEPLAINLOOSE] + ')' +\n\t\t                        '\\\\s*$';\n\n\t\t// Star ranges basically just allow anything at all.\n\t\ttok('STAR');\n\t\tsrc[t.STAR] = '(<|>)?=?\\\\s*\\\\*';\n\n\t\t// Compile to actual regexp objects.\n\t\t// All are flag-free, unless they were created above with a flag.\n\t\tfor (var i = 0; i < R; i++) {\n\t\t  debug(i, src[i]);\n\t\t  if (!re[i]) {\n\t\t    re[i] = new RegExp(src[i]);\n\n\t\t    // Replace all greedy whitespace to prevent regex dos issues. These regex are\n\t\t    // used internally via the safeRe object since all inputs in this library get\n\t\t    // normalized first to trim and collapse all extra whitespace. The original\n\t\t    // regexes are exported for userland consumption and lower level usage. A\n\t\t    // future breaking change could export the safer regex only with a note that\n\t\t    // all input should have extra whitespace removed.\n\t\t    safeRe[i] = new RegExp(makeSafeRe(src[i]));\n\t\t  }\n\t\t}\n\n\t\texports.parse = parse;\n\t\tfunction parse (version, options) {\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\n\t\t  if (version instanceof SemVer) {\n\t\t    return version\n\t\t  }\n\n\t\t  if (typeof version !== 'string') {\n\t\t    return null\n\t\t  }\n\n\t\t  if (version.length > MAX_LENGTH) {\n\t\t    return null\n\t\t  }\n\n\t\t  var r = options.loose ? safeRe[t.LOOSE] : safeRe[t.FULL];\n\t\t  if (!r.test(version)) {\n\t\t    return null\n\t\t  }\n\n\t\t  try {\n\t\t    return new SemVer(version, options)\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t}\n\n\t\texports.valid = valid;\n\t\tfunction valid (version, options) {\n\t\t  var v = parse(version, options);\n\t\t  return v ? v.version : null\n\t\t}\n\n\t\texports.clean = clean;\n\t\tfunction clean (version, options) {\n\t\t  var s = parse(version.trim().replace(/^[=v]+/, ''), options);\n\t\t  return s ? s.version : null\n\t\t}\n\n\t\texports.SemVer = SemVer;\n\n\t\tfunction SemVer (version, options) {\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\t\t  if (version instanceof SemVer) {\n\t\t    if (version.loose === options.loose) {\n\t\t      return version\n\t\t    } else {\n\t\t      version = version.version;\n\t\t    }\n\t\t  } else if (typeof version !== 'string') {\n\t\t    throw new TypeError('Invalid Version: ' + version)\n\t\t  }\n\n\t\t  if (version.length > MAX_LENGTH) {\n\t\t    throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')\n\t\t  }\n\n\t\t  if (!(this instanceof SemVer)) {\n\t\t    return new SemVer(version, options)\n\t\t  }\n\n\t\t  debug('SemVer', version, options);\n\t\t  this.options = options;\n\t\t  this.loose = !!options.loose;\n\n\t\t  var m = version.trim().match(options.loose ? safeRe[t.LOOSE] : safeRe[t.FULL]);\n\n\t\t  if (!m) {\n\t\t    throw new TypeError('Invalid Version: ' + version)\n\t\t  }\n\n\t\t  this.raw = version;\n\n\t\t  // these are actually numbers\n\t\t  this.major = +m[1];\n\t\t  this.minor = +m[2];\n\t\t  this.patch = +m[3];\n\n\t\t  if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n\t\t    throw new TypeError('Invalid major version')\n\t\t  }\n\n\t\t  if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n\t\t    throw new TypeError('Invalid minor version')\n\t\t  }\n\n\t\t  if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n\t\t    throw new TypeError('Invalid patch version')\n\t\t  }\n\n\t\t  // numberify any prerelease numeric ids\n\t\t  if (!m[4]) {\n\t\t    this.prerelease = [];\n\t\t  } else {\n\t\t    this.prerelease = m[4].split('.').map(function (id) {\n\t\t      if (/^[0-9]+$/.test(id)) {\n\t\t        var num = +id;\n\t\t        if (num >= 0 && num < MAX_SAFE_INTEGER) {\n\t\t          return num\n\t\t        }\n\t\t      }\n\t\t      return id\n\t\t    });\n\t\t  }\n\n\t\t  this.build = m[5] ? m[5].split('.') : [];\n\t\t  this.format();\n\t\t}\n\n\t\tSemVer.prototype.format = function () {\n\t\t  this.version = this.major + '.' + this.minor + '.' + this.patch;\n\t\t  if (this.prerelease.length) {\n\t\t    this.version += '-' + this.prerelease.join('.');\n\t\t  }\n\t\t  return this.version\n\t\t};\n\n\t\tSemVer.prototype.toString = function () {\n\t\t  return this.version\n\t\t};\n\n\t\tSemVer.prototype.compare = function (other) {\n\t\t  debug('SemVer.compare', this.version, this.options, other);\n\t\t  if (!(other instanceof SemVer)) {\n\t\t    other = new SemVer(other, this.options);\n\t\t  }\n\n\t\t  return this.compareMain(other) || this.comparePre(other)\n\t\t};\n\n\t\tSemVer.prototype.compareMain = function (other) {\n\t\t  if (!(other instanceof SemVer)) {\n\t\t    other = new SemVer(other, this.options);\n\t\t  }\n\n\t\t  return compareIdentifiers(this.major, other.major) ||\n\t\t         compareIdentifiers(this.minor, other.minor) ||\n\t\t         compareIdentifiers(this.patch, other.patch)\n\t\t};\n\n\t\tSemVer.prototype.comparePre = function (other) {\n\t\t  if (!(other instanceof SemVer)) {\n\t\t    other = new SemVer(other, this.options);\n\t\t  }\n\n\t\t  // NOT having a prerelease is > having one\n\t\t  if (this.prerelease.length && !other.prerelease.length) {\n\t\t    return -1\n\t\t  } else if (!this.prerelease.length && other.prerelease.length) {\n\t\t    return 1\n\t\t  } else if (!this.prerelease.length && !other.prerelease.length) {\n\t\t    return 0\n\t\t  }\n\n\t\t  var i = 0;\n\t\t  do {\n\t\t    var a = this.prerelease[i];\n\t\t    var b = other.prerelease[i];\n\t\t    debug('prerelease compare', i, a, b);\n\t\t    if (a === undefined && b === undefined) {\n\t\t      return 0\n\t\t    } else if (b === undefined) {\n\t\t      return 1\n\t\t    } else if (a === undefined) {\n\t\t      return -1\n\t\t    } else if (a === b) {\n\t\t      continue\n\t\t    } else {\n\t\t      return compareIdentifiers(a, b)\n\t\t    }\n\t\t  } while (++i)\n\t\t};\n\n\t\tSemVer.prototype.compareBuild = function (other) {\n\t\t  if (!(other instanceof SemVer)) {\n\t\t    other = new SemVer(other, this.options);\n\t\t  }\n\n\t\t  var i = 0;\n\t\t  do {\n\t\t    var a = this.build[i];\n\t\t    var b = other.build[i];\n\t\t    debug('prerelease compare', i, a, b);\n\t\t    if (a === undefined && b === undefined) {\n\t\t      return 0\n\t\t    } else if (b === undefined) {\n\t\t      return 1\n\t\t    } else if (a === undefined) {\n\t\t      return -1\n\t\t    } else if (a === b) {\n\t\t      continue\n\t\t    } else {\n\t\t      return compareIdentifiers(a, b)\n\t\t    }\n\t\t  } while (++i)\n\t\t};\n\n\t\t// preminor will bump the version up to the next minor release, and immediately\n\t\t// down to pre-release. premajor and prepatch work the same way.\n\t\tSemVer.prototype.inc = function (release, identifier) {\n\t\t  switch (release) {\n\t\t    case 'premajor':\n\t\t      this.prerelease.length = 0;\n\t\t      this.patch = 0;\n\t\t      this.minor = 0;\n\t\t      this.major++;\n\t\t      this.inc('pre', identifier);\n\t\t      break\n\t\t    case 'preminor':\n\t\t      this.prerelease.length = 0;\n\t\t      this.patch = 0;\n\t\t      this.minor++;\n\t\t      this.inc('pre', identifier);\n\t\t      break\n\t\t    case 'prepatch':\n\t\t      // If this is already a prerelease, it will bump to the next version\n\t\t      // drop any prereleases that might already exist, since they are not\n\t\t      // relevant at this point.\n\t\t      this.prerelease.length = 0;\n\t\t      this.inc('patch', identifier);\n\t\t      this.inc('pre', identifier);\n\t\t      break\n\t\t    // If the input is a non-prerelease version, this acts the same as\n\t\t    // prepatch.\n\t\t    case 'prerelease':\n\t\t      if (this.prerelease.length === 0) {\n\t\t        this.inc('patch', identifier);\n\t\t      }\n\t\t      this.inc('pre', identifier);\n\t\t      break\n\n\t\t    case 'major':\n\t\t      // If this is a pre-major version, bump up to the same major version.\n\t\t      // Otherwise increment major.\n\t\t      // 1.0.0-5 bumps to 1.0.0\n\t\t      // 1.1.0 bumps to 2.0.0\n\t\t      if (this.minor !== 0 ||\n\t\t          this.patch !== 0 ||\n\t\t          this.prerelease.length === 0) {\n\t\t        this.major++;\n\t\t      }\n\t\t      this.minor = 0;\n\t\t      this.patch = 0;\n\t\t      this.prerelease = [];\n\t\t      break\n\t\t    case 'minor':\n\t\t      // If this is a pre-minor version, bump up to the same minor version.\n\t\t      // Otherwise increment minor.\n\t\t      // 1.2.0-5 bumps to 1.2.0\n\t\t      // 1.2.1 bumps to 1.3.0\n\t\t      if (this.patch !== 0 || this.prerelease.length === 0) {\n\t\t        this.minor++;\n\t\t      }\n\t\t      this.patch = 0;\n\t\t      this.prerelease = [];\n\t\t      break\n\t\t    case 'patch':\n\t\t      // If this is not a pre-release version, it will increment the patch.\n\t\t      // If it is a pre-release it will bump up to the same patch version.\n\t\t      // 1.2.0-5 patches to 1.2.0\n\t\t      // 1.2.0 patches to 1.2.1\n\t\t      if (this.prerelease.length === 0) {\n\t\t        this.patch++;\n\t\t      }\n\t\t      this.prerelease = [];\n\t\t      break\n\t\t    // This probably shouldn't be used publicly.\n\t\t    // 1.0.0 \"pre\" would become 1.0.0-0 which is the wrong direction.\n\t\t    case 'pre':\n\t\t      if (this.prerelease.length === 0) {\n\t\t        this.prerelease = [0];\n\t\t      } else {\n\t\t        var i = this.prerelease.length;\n\t\t        while (--i >= 0) {\n\t\t          if (typeof this.prerelease[i] === 'number') {\n\t\t            this.prerelease[i]++;\n\t\t            i = -2;\n\t\t          }\n\t\t        }\n\t\t        if (i === -1) {\n\t\t          // didn't increment anything\n\t\t          this.prerelease.push(0);\n\t\t        }\n\t\t      }\n\t\t      if (identifier) {\n\t\t        // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n\t\t        // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n\t\t        if (this.prerelease[0] === identifier) {\n\t\t          if (isNaN(this.prerelease[1])) {\n\t\t            this.prerelease = [identifier, 0];\n\t\t          }\n\t\t        } else {\n\t\t          this.prerelease = [identifier, 0];\n\t\t        }\n\t\t      }\n\t\t      break\n\n\t\t    default:\n\t\t      throw new Error('invalid increment argument: ' + release)\n\t\t  }\n\t\t  this.format();\n\t\t  this.raw = this.version;\n\t\t  return this\n\t\t};\n\n\t\texports.inc = inc;\n\t\tfunction inc (version, release, loose, identifier) {\n\t\t  if (typeof (loose) === 'string') {\n\t\t    identifier = loose;\n\t\t    loose = undefined;\n\t\t  }\n\n\t\t  try {\n\t\t    return new SemVer(version, loose).inc(release, identifier).version\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t}\n\n\t\texports.diff = diff;\n\t\tfunction diff (version1, version2) {\n\t\t  if (eq(version1, version2)) {\n\t\t    return null\n\t\t  } else {\n\t\t    var v1 = parse(version1);\n\t\t    var v2 = parse(version2);\n\t\t    var prefix = '';\n\t\t    if (v1.prerelease.length || v2.prerelease.length) {\n\t\t      prefix = 'pre';\n\t\t      var defaultResult = 'prerelease';\n\t\t    }\n\t\t    for (var key in v1) {\n\t\t      if (key === 'major' || key === 'minor' || key === 'patch') {\n\t\t        if (v1[key] !== v2[key]) {\n\t\t          return prefix + key\n\t\t        }\n\t\t      }\n\t\t    }\n\t\t    return defaultResult // may be undefined\n\t\t  }\n\t\t}\n\n\t\texports.compareIdentifiers = compareIdentifiers;\n\n\t\tvar numeric = /^[0-9]+$/;\n\t\tfunction compareIdentifiers (a, b) {\n\t\t  var anum = numeric.test(a);\n\t\t  var bnum = numeric.test(b);\n\n\t\t  if (anum && bnum) {\n\t\t    a = +a;\n\t\t    b = +b;\n\t\t  }\n\n\t\t  return a === b ? 0\n\t\t    : (anum && !bnum) ? -1\n\t\t    : (bnum && !anum) ? 1\n\t\t    : a < b ? -1\n\t\t    : 1\n\t\t}\n\n\t\texports.rcompareIdentifiers = rcompareIdentifiers;\n\t\tfunction rcompareIdentifiers (a, b) {\n\t\t  return compareIdentifiers(b, a)\n\t\t}\n\n\t\texports.major = major;\n\t\tfunction major (a, loose) {\n\t\t  return new SemVer(a, loose).major\n\t\t}\n\n\t\texports.minor = minor;\n\t\tfunction minor (a, loose) {\n\t\t  return new SemVer(a, loose).minor\n\t\t}\n\n\t\texports.patch = patch;\n\t\tfunction patch (a, loose) {\n\t\t  return new SemVer(a, loose).patch\n\t\t}\n\n\t\texports.compare = compare;\n\t\tfunction compare (a, b, loose) {\n\t\t  return new SemVer(a, loose).compare(new SemVer(b, loose))\n\t\t}\n\n\t\texports.compareLoose = compareLoose;\n\t\tfunction compareLoose (a, b) {\n\t\t  return compare(a, b, true)\n\t\t}\n\n\t\texports.compareBuild = compareBuild;\n\t\tfunction compareBuild (a, b, loose) {\n\t\t  var versionA = new SemVer(a, loose);\n\t\t  var versionB = new SemVer(b, loose);\n\t\t  return versionA.compare(versionB) || versionA.compareBuild(versionB)\n\t\t}\n\n\t\texports.rcompare = rcompare;\n\t\tfunction rcompare (a, b, loose) {\n\t\t  return compare(b, a, loose)\n\t\t}\n\n\t\texports.sort = sort;\n\t\tfunction sort (list, loose) {\n\t\t  return list.sort(function (a, b) {\n\t\t    return exports.compareBuild(a, b, loose)\n\t\t  })\n\t\t}\n\n\t\texports.rsort = rsort;\n\t\tfunction rsort (list, loose) {\n\t\t  return list.sort(function (a, b) {\n\t\t    return exports.compareBuild(b, a, loose)\n\t\t  })\n\t\t}\n\n\t\texports.gt = gt;\n\t\tfunction gt (a, b, loose) {\n\t\t  return compare(a, b, loose) > 0\n\t\t}\n\n\t\texports.lt = lt;\n\t\tfunction lt (a, b, loose) {\n\t\t  return compare(a, b, loose) < 0\n\t\t}\n\n\t\texports.eq = eq;\n\t\tfunction eq (a, b, loose) {\n\t\t  return compare(a, b, loose) === 0\n\t\t}\n\n\t\texports.neq = neq;\n\t\tfunction neq (a, b, loose) {\n\t\t  return compare(a, b, loose) !== 0\n\t\t}\n\n\t\texports.gte = gte;\n\t\tfunction gte (a, b, loose) {\n\t\t  return compare(a, b, loose) >= 0\n\t\t}\n\n\t\texports.lte = lte;\n\t\tfunction lte (a, b, loose) {\n\t\t  return compare(a, b, loose) <= 0\n\t\t}\n\n\t\texports.cmp = cmp;\n\t\tfunction cmp (a, op, b, loose) {\n\t\t  switch (op) {\n\t\t    case '===':\n\t\t      if (typeof a === 'object')\n\t\t        a = a.version;\n\t\t      if (typeof b === 'object')\n\t\t        b = b.version;\n\t\t      return a === b\n\n\t\t    case '!==':\n\t\t      if (typeof a === 'object')\n\t\t        a = a.version;\n\t\t      if (typeof b === 'object')\n\t\t        b = b.version;\n\t\t      return a !== b\n\n\t\t    case '':\n\t\t    case '=':\n\t\t    case '==':\n\t\t      return eq(a, b, loose)\n\n\t\t    case '!=':\n\t\t      return neq(a, b, loose)\n\n\t\t    case '>':\n\t\t      return gt(a, b, loose)\n\n\t\t    case '>=':\n\t\t      return gte(a, b, loose)\n\n\t\t    case '<':\n\t\t      return lt(a, b, loose)\n\n\t\t    case '<=':\n\t\t      return lte(a, b, loose)\n\n\t\t    default:\n\t\t      throw new TypeError('Invalid operator: ' + op)\n\t\t  }\n\t\t}\n\n\t\texports.Comparator = Comparator;\n\t\tfunction Comparator (comp, options) {\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\n\t\t  if (comp instanceof Comparator) {\n\t\t    if (comp.loose === !!options.loose) {\n\t\t      return comp\n\t\t    } else {\n\t\t      comp = comp.value;\n\t\t    }\n\t\t  }\n\n\t\t  if (!(this instanceof Comparator)) {\n\t\t    return new Comparator(comp, options)\n\t\t  }\n\n\t\t  comp = comp.trim().split(/\\s+/).join(' ');\n\t\t  debug('comparator', comp, options);\n\t\t  this.options = options;\n\t\t  this.loose = !!options.loose;\n\t\t  this.parse(comp);\n\n\t\t  if (this.semver === ANY) {\n\t\t    this.value = '';\n\t\t  } else {\n\t\t    this.value = this.operator + this.semver.version;\n\t\t  }\n\n\t\t  debug('comp', this);\n\t\t}\n\n\t\tvar ANY = {};\n\t\tComparator.prototype.parse = function (comp) {\n\t\t  var r = this.options.loose ? safeRe[t.COMPARATORLOOSE] : safeRe[t.COMPARATOR];\n\t\t  var m = comp.match(r);\n\n\t\t  if (!m) {\n\t\t    throw new TypeError('Invalid comparator: ' + comp)\n\t\t  }\n\n\t\t  this.operator = m[1] !== undefined ? m[1] : '';\n\t\t  if (this.operator === '=') {\n\t\t    this.operator = '';\n\t\t  }\n\n\t\t  // if it literally is just '>' or '' then allow anything.\n\t\t  if (!m[2]) {\n\t\t    this.semver = ANY;\n\t\t  } else {\n\t\t    this.semver = new SemVer(m[2], this.options.loose);\n\t\t  }\n\t\t};\n\n\t\tComparator.prototype.toString = function () {\n\t\t  return this.value\n\t\t};\n\n\t\tComparator.prototype.test = function (version) {\n\t\t  debug('Comparator.test', version, this.options.loose);\n\n\t\t  if (this.semver === ANY || version === ANY) {\n\t\t    return true\n\t\t  }\n\n\t\t  if (typeof version === 'string') {\n\t\t    try {\n\t\t      version = new SemVer(version, this.options);\n\t\t    } catch (er) {\n\t\t      return false\n\t\t    }\n\t\t  }\n\n\t\t  return cmp(version, this.operator, this.semver, this.options)\n\t\t};\n\n\t\tComparator.prototype.intersects = function (comp, options) {\n\t\t  if (!(comp instanceof Comparator)) {\n\t\t    throw new TypeError('a Comparator is required')\n\t\t  }\n\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\n\t\t  var rangeTmp;\n\n\t\t  if (this.operator === '') {\n\t\t    if (this.value === '') {\n\t\t      return true\n\t\t    }\n\t\t    rangeTmp = new Range(comp.value, options);\n\t\t    return satisfies(this.value, rangeTmp, options)\n\t\t  } else if (comp.operator === '') {\n\t\t    if (comp.value === '') {\n\t\t      return true\n\t\t    }\n\t\t    rangeTmp = new Range(this.value, options);\n\t\t    return satisfies(comp.semver, rangeTmp, options)\n\t\t  }\n\n\t\t  var sameDirectionIncreasing =\n\t\t    (this.operator === '>=' || this.operator === '>') &&\n\t\t    (comp.operator === '>=' || comp.operator === '>');\n\t\t  var sameDirectionDecreasing =\n\t\t    (this.operator === '<=' || this.operator === '<') &&\n\t\t    (comp.operator === '<=' || comp.operator === '<');\n\t\t  var sameSemVer = this.semver.version === comp.semver.version;\n\t\t  var differentDirectionsInclusive =\n\t\t    (this.operator === '>=' || this.operator === '<=') &&\n\t\t    (comp.operator === '>=' || comp.operator === '<=');\n\t\t  var oppositeDirectionsLessThan =\n\t\t    cmp(this.semver, '<', comp.semver, options) &&\n\t\t    ((this.operator === '>=' || this.operator === '>') &&\n\t\t    (comp.operator === '<=' || comp.operator === '<'));\n\t\t  var oppositeDirectionsGreaterThan =\n\t\t    cmp(this.semver, '>', comp.semver, options) &&\n\t\t    ((this.operator === '<=' || this.operator === '<') &&\n\t\t    (comp.operator === '>=' || comp.operator === '>'));\n\n\t\t  return sameDirectionIncreasing || sameDirectionDecreasing ||\n\t\t    (sameSemVer && differentDirectionsInclusive) ||\n\t\t    oppositeDirectionsLessThan || oppositeDirectionsGreaterThan\n\t\t};\n\n\t\texports.Range = Range;\n\t\tfunction Range (range, options) {\n\t\t  if (!options || typeof options !== 'object') {\n\t\t    options = {\n\t\t      loose: !!options,\n\t\t      includePrerelease: false\n\t\t    };\n\t\t  }\n\n\t\t  if (range instanceof Range) {\n\t\t    if (range.loose === !!options.loose &&\n\t\t        range.includePrerelease === !!options.includePrerelease) {\n\t\t      return range\n\t\t    } else {\n\t\t      return new Range(range.raw, options)\n\t\t    }\n\t\t  }\n\n\t\t  if (range instanceof Comparator) {\n\t\t    return new Range(range.value, options)\n\t\t  }\n\n\t\t  if (!(this instanceof Range)) {\n\t\t    return new Range(range, options)\n\t\t  }\n\n\t\t  this.options = options;\n\t\t  this.loose = !!options.loose;\n\t\t  this.includePrerelease = !!options.includePrerelease;\n\n\t\t  // First reduce all whitespace as much as possible so we do not have to rely\n\t\t  // on potentially slow regexes like \\s*. This is then stored and used for\n\t\t  // future error messages as well.\n\t\t  this.raw = range\n\t\t    .trim()\n\t\t    .split(/\\s+/)\n\t\t    .join(' ');\n\n\t\t  // First, split based on boolean or ||\n\t\t  this.set = this.raw.split('||').map(function (range) {\n\t\t    return this.parseRange(range.trim())\n\t\t  }, this).filter(function (c) {\n\t\t    // throw out any that are not relevant for whatever reason\n\t\t    return c.length\n\t\t  });\n\n\t\t  if (!this.set.length) {\n\t\t    throw new TypeError('Invalid SemVer Range: ' + this.raw)\n\t\t  }\n\n\t\t  this.format();\n\t\t}\n\n\t\tRange.prototype.format = function () {\n\t\t  this.range = this.set.map(function (comps) {\n\t\t    return comps.join(' ').trim()\n\t\t  }).join('||').trim();\n\t\t  return this.range\n\t\t};\n\n\t\tRange.prototype.toString = function () {\n\t\t  return this.range\n\t\t};\n\n\t\tRange.prototype.parseRange = function (range) {\n\t\t  var loose = this.options.loose;\n\t\t  // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`\n\t\t  var hr = loose ? safeRe[t.HYPHENRANGELOOSE] : safeRe[t.HYPHENRANGE];\n\t\t  range = range.replace(hr, hyphenReplace);\n\t\t  debug('hyphen replace', range);\n\t\t  // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`\n\t\t  range = range.replace(safeRe[t.COMPARATORTRIM], comparatorTrimReplace);\n\t\t  debug('comparator trim', range, safeRe[t.COMPARATORTRIM]);\n\n\t\t  // `~ 1.2.3` => `~1.2.3`\n\t\t  range = range.replace(safeRe[t.TILDETRIM], tildeTrimReplace);\n\n\t\t  // `^ 1.2.3` => `^1.2.3`\n\t\t  range = range.replace(safeRe[t.CARETTRIM], caretTrimReplace);\n\n\t\t  // normalize spaces\n\t\t  range = range.split(/\\s+/).join(' ');\n\n\t\t  // At this point, the range is completely trimmed and\n\t\t  // ready to be split into comparators.\n\n\t\t  var compRe = loose ? safeRe[t.COMPARATORLOOSE] : safeRe[t.COMPARATOR];\n\t\t  var set = range.split(' ').map(function (comp) {\n\t\t    return parseComparator(comp, this.options)\n\t\t  }, this).join(' ').split(/\\s+/);\n\t\t  if (this.options.loose) {\n\t\t    // in loose mode, throw out any that are not valid comparators\n\t\t    set = set.filter(function (comp) {\n\t\t      return !!comp.match(compRe)\n\t\t    });\n\t\t  }\n\t\t  set = set.map(function (comp) {\n\t\t    return new Comparator(comp, this.options)\n\t\t  }, this);\n\n\t\t  return set\n\t\t};\n\n\t\tRange.prototype.intersects = function (range, options) {\n\t\t  if (!(range instanceof Range)) {\n\t\t    throw new TypeError('a Range is required')\n\t\t  }\n\n\t\t  return this.set.some(function (thisComparators) {\n\t\t    return (\n\t\t      isSatisfiable(thisComparators, options) &&\n\t\t      range.set.some(function (rangeComparators) {\n\t\t        return (\n\t\t          isSatisfiable(rangeComparators, options) &&\n\t\t          thisComparators.every(function (thisComparator) {\n\t\t            return rangeComparators.every(function (rangeComparator) {\n\t\t              return thisComparator.intersects(rangeComparator, options)\n\t\t            })\n\t\t          })\n\t\t        )\n\t\t      })\n\t\t    )\n\t\t  })\n\t\t};\n\n\t\t// take a set of comparators and determine whether there\n\t\t// exists a version which can satisfy it\n\t\tfunction isSatisfiable (comparators, options) {\n\t\t  var result = true;\n\t\t  var remainingComparators = comparators.slice();\n\t\t  var testComparator = remainingComparators.pop();\n\n\t\t  while (result && remainingComparators.length) {\n\t\t    result = remainingComparators.every(function (otherComparator) {\n\t\t      return testComparator.intersects(otherComparator, options)\n\t\t    });\n\n\t\t    testComparator = remainingComparators.pop();\n\t\t  }\n\n\t\t  return result\n\t\t}\n\n\t\t// Mostly just for testing and legacy API reasons\n\t\texports.toComparators = toComparators;\n\t\tfunction toComparators (range, options) {\n\t\t  return new Range(range, options).set.map(function (comp) {\n\t\t    return comp.map(function (c) {\n\t\t      return c.value\n\t\t    }).join(' ').trim().split(' ')\n\t\t  })\n\t\t}\n\n\t\t// comprised of xranges, tildes, stars, and gtlt's at this point.\n\t\t// already replaced the hyphen ranges\n\t\t// turn into a set of JUST comparators.\n\t\tfunction parseComparator (comp, options) {\n\t\t  debug('comp', comp, options);\n\t\t  comp = replaceCarets(comp, options);\n\t\t  debug('caret', comp);\n\t\t  comp = replaceTildes(comp, options);\n\t\t  debug('tildes', comp);\n\t\t  comp = replaceXRanges(comp, options);\n\t\t  debug('xrange', comp);\n\t\t  comp = replaceStars(comp, options);\n\t\t  debug('stars', comp);\n\t\t  return comp\n\t\t}\n\n\t\tfunction isX (id) {\n\t\t  return !id || id.toLowerCase() === 'x' || id === '*'\n\t\t}\n\n\t\t// ~, ~> --> * (any, kinda silly)\n\t\t// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0\n\t\t// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0\n\t\t// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0\n\t\t// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0\n\t\t// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0\n\t\tfunction replaceTildes (comp, options) {\n\t\t  return comp.trim().split(/\\s+/).map(function (comp) {\n\t\t    return replaceTilde(comp, options)\n\t\t  }).join(' ')\n\t\t}\n\n\t\tfunction replaceTilde (comp, options) {\n\t\t  var r = options.loose ? safeRe[t.TILDELOOSE] : safeRe[t.TILDE];\n\t\t  return comp.replace(r, function (_, M, m, p, pr) {\n\t\t    debug('tilde', comp, _, M, m, p, pr);\n\t\t    var ret;\n\n\t\t    if (isX(M)) {\n\t\t      ret = '';\n\t\t    } else if (isX(m)) {\n\t\t      ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0';\n\t\t    } else if (isX(p)) {\n\t\t      // ~1.2 == >=1.2.0 <1.3.0\n\t\t      ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0';\n\t\t    } else if (pr) {\n\t\t      debug('replaceTilde pr', pr);\n\t\t      ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n\t\t            ' <' + M + '.' + (+m + 1) + '.0';\n\t\t    } else {\n\t\t      // ~1.2.3 == >=1.2.3 <1.3.0\n\t\t      ret = '>=' + M + '.' + m + '.' + p +\n\t\t            ' <' + M + '.' + (+m + 1) + '.0';\n\t\t    }\n\n\t\t    debug('tilde return', ret);\n\t\t    return ret\n\t\t  })\n\t\t}\n\n\t\t// ^ --> * (any, kinda silly)\n\t\t// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0\n\t\t// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0\n\t\t// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0\n\t\t// ^1.2.3 --> >=1.2.3 <2.0.0\n\t\t// ^1.2.0 --> >=1.2.0 <2.0.0\n\t\tfunction replaceCarets (comp, options) {\n\t\t  return comp.trim().split(/\\s+/).map(function (comp) {\n\t\t    return replaceCaret(comp, options)\n\t\t  }).join(' ')\n\t\t}\n\n\t\tfunction replaceCaret (comp, options) {\n\t\t  debug('caret', comp, options);\n\t\t  var r = options.loose ? safeRe[t.CARETLOOSE] : safeRe[t.CARET];\n\t\t  return comp.replace(r, function (_, M, m, p, pr) {\n\t\t    debug('caret', comp, _, M, m, p, pr);\n\t\t    var ret;\n\n\t\t    if (isX(M)) {\n\t\t      ret = '';\n\t\t    } else if (isX(m)) {\n\t\t      ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0';\n\t\t    } else if (isX(p)) {\n\t\t      if (M === '0') {\n\t\t        ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0';\n\t\t      } else {\n\t\t        ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0';\n\t\t      }\n\t\t    } else if (pr) {\n\t\t      debug('replaceCaret pr', pr);\n\t\t      if (M === '0') {\n\t\t        if (m === '0') {\n\t\t          ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n\t\t                ' <' + M + '.' + m + '.' + (+p + 1);\n\t\t        } else {\n\t\t          ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n\t\t                ' <' + M + '.' + (+m + 1) + '.0';\n\t\t        }\n\t\t      } else {\n\t\t        ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n\t\t              ' <' + (+M + 1) + '.0.0';\n\t\t      }\n\t\t    } else {\n\t\t      debug('no pr');\n\t\t      if (M === '0') {\n\t\t        if (m === '0') {\n\t\t          ret = '>=' + M + '.' + m + '.' + p +\n\t\t                ' <' + M + '.' + m + '.' + (+p + 1);\n\t\t        } else {\n\t\t          ret = '>=' + M + '.' + m + '.' + p +\n\t\t                ' <' + M + '.' + (+m + 1) + '.0';\n\t\t        }\n\t\t      } else {\n\t\t        ret = '>=' + M + '.' + m + '.' + p +\n\t\t              ' <' + (+M + 1) + '.0.0';\n\t\t      }\n\t\t    }\n\n\t\t    debug('caret return', ret);\n\t\t    return ret\n\t\t  })\n\t\t}\n\n\t\tfunction replaceXRanges (comp, options) {\n\t\t  debug('replaceXRanges', comp, options);\n\t\t  return comp.split(/\\s+/).map(function (comp) {\n\t\t    return replaceXRange(comp, options)\n\t\t  }).join(' ')\n\t\t}\n\n\t\tfunction replaceXRange (comp, options) {\n\t\t  comp = comp.trim();\n\t\t  var r = options.loose ? safeRe[t.XRANGELOOSE] : safeRe[t.XRANGE];\n\t\t  return comp.replace(r, function (ret, gtlt, M, m, p, pr) {\n\t\t    debug('xRange', comp, ret, gtlt, M, m, p, pr);\n\t\t    var xM = isX(M);\n\t\t    var xm = xM || isX(m);\n\t\t    var xp = xm || isX(p);\n\t\t    var anyX = xp;\n\n\t\t    if (gtlt === '=' && anyX) {\n\t\t      gtlt = '';\n\t\t    }\n\n\t\t    // if we're including prereleases in the match, then we need\n\t\t    // to fix this to -0, the lowest possible prerelease value\n\t\t    pr = options.includePrerelease ? '-0' : '';\n\n\t\t    if (xM) {\n\t\t      if (gtlt === '>' || gtlt === '<') {\n\t\t        // nothing is allowed\n\t\t        ret = '<0.0.0-0';\n\t\t      } else {\n\t\t        // nothing is forbidden\n\t\t        ret = '*';\n\t\t      }\n\t\t    } else if (gtlt && anyX) {\n\t\t      // we know patch is an x, because we have any x at all.\n\t\t      // replace X with 0\n\t\t      if (xm) {\n\t\t        m = 0;\n\t\t      }\n\t\t      p = 0;\n\n\t\t      if (gtlt === '>') {\n\t\t        // >1 => >=2.0.0\n\t\t        // >1.2 => >=1.3.0\n\t\t        // >1.2.3 => >= 1.2.4\n\t\t        gtlt = '>=';\n\t\t        if (xm) {\n\t\t          M = +M + 1;\n\t\t          m = 0;\n\t\t          p = 0;\n\t\t        } else {\n\t\t          m = +m + 1;\n\t\t          p = 0;\n\t\t        }\n\t\t      } else if (gtlt === '<=') {\n\t\t        // <=0.7.x is actually <0.8.0, since any 0.7.x should\n\t\t        // pass.  Similarly, <=7.x is actually <8.0.0, etc.\n\t\t        gtlt = '<';\n\t\t        if (xm) {\n\t\t          M = +M + 1;\n\t\t        } else {\n\t\t          m = +m + 1;\n\t\t        }\n\t\t      }\n\n\t\t      ret = gtlt + M + '.' + m + '.' + p + pr;\n\t\t    } else if (xm) {\n\t\t      ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr;\n\t\t    } else if (xp) {\n\t\t      ret = '>=' + M + '.' + m + '.0' + pr +\n\t\t        ' <' + M + '.' + (+m + 1) + '.0' + pr;\n\t\t    }\n\n\t\t    debug('xRange return', ret);\n\n\t\t    return ret\n\t\t  })\n\t\t}\n\n\t\t// Because * is AND-ed with everything else in the comparator,\n\t\t// and '' means \"any version\", just remove the *s entirely.\n\t\tfunction replaceStars (comp, options) {\n\t\t  debug('replaceStars', comp, options);\n\t\t  // Looseness is ignored here.  star is always as loose as it gets!\n\t\t  return comp.trim().replace(safeRe[t.STAR], '')\n\t\t}\n\n\t\t// This function is passed to string.replace(re[t.HYPHENRANGE])\n\t\t// M, m, patch, prerelease, build\n\t\t// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5\n\t\t// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do\n\t\t// 1.2 - 3.4 => >=1.2.0 <3.5.0\n\t\tfunction hyphenReplace ($0,\n\t\t  from, fM, fm, fp, fpr, fb,\n\t\t  to, tM, tm, tp, tpr, tb) {\n\t\t  if (isX(fM)) {\n\t\t    from = '';\n\t\t  } else if (isX(fm)) {\n\t\t    from = '>=' + fM + '.0.0';\n\t\t  } else if (isX(fp)) {\n\t\t    from = '>=' + fM + '.' + fm + '.0';\n\t\t  } else {\n\t\t    from = '>=' + from;\n\t\t  }\n\n\t\t  if (isX(tM)) {\n\t\t    to = '';\n\t\t  } else if (isX(tm)) {\n\t\t    to = '<' + (+tM + 1) + '.0.0';\n\t\t  } else if (isX(tp)) {\n\t\t    to = '<' + tM + '.' + (+tm + 1) + '.0';\n\t\t  } else if (tpr) {\n\t\t    to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr;\n\t\t  } else {\n\t\t    to = '<=' + to;\n\t\t  }\n\n\t\t  return (from + ' ' + to).trim()\n\t\t}\n\n\t\t// if ANY of the sets match ALL of its comparators, then pass\n\t\tRange.prototype.test = function (version) {\n\t\t  if (!version) {\n\t\t    return false\n\t\t  }\n\n\t\t  if (typeof version === 'string') {\n\t\t    try {\n\t\t      version = new SemVer(version, this.options);\n\t\t    } catch (er) {\n\t\t      return false\n\t\t    }\n\t\t  }\n\n\t\t  for (var i = 0; i < this.set.length; i++) {\n\t\t    if (testSet(this.set[i], version, this.options)) {\n\t\t      return true\n\t\t    }\n\t\t  }\n\t\t  return false\n\t\t};\n\n\t\tfunction testSet (set, version, options) {\n\t\t  for (var i = 0; i < set.length; i++) {\n\t\t    if (!set[i].test(version)) {\n\t\t      return false\n\t\t    }\n\t\t  }\n\n\t\t  if (version.prerelease.length && !options.includePrerelease) {\n\t\t    // Find the set of versions that are allowed to have prereleases\n\t\t    // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0\n\t\t    // That should allow `1.2.3-pr.2` to pass.\n\t\t    // However, `1.2.4-alpha.notready` should NOT be allowed,\n\t\t    // even though it's within the range set by the comparators.\n\t\t    for (i = 0; i < set.length; i++) {\n\t\t      debug(set[i].semver);\n\t\t      if (set[i].semver === ANY) {\n\t\t        continue\n\t\t      }\n\n\t\t      if (set[i].semver.prerelease.length > 0) {\n\t\t        var allowed = set[i].semver;\n\t\t        if (allowed.major === version.major &&\n\t\t            allowed.minor === version.minor &&\n\t\t            allowed.patch === version.patch) {\n\t\t          return true\n\t\t        }\n\t\t      }\n\t\t    }\n\n\t\t    // Version has a -pre, but it's not one of the ones we like.\n\t\t    return false\n\t\t  }\n\n\t\t  return true\n\t\t}\n\n\t\texports.satisfies = satisfies;\n\t\tfunction satisfies (version, range, options) {\n\t\t  try {\n\t\t    range = new Range(range, options);\n\t\t  } catch (er) {\n\t\t    return false\n\t\t  }\n\t\t  return range.test(version)\n\t\t}\n\n\t\texports.maxSatisfying = maxSatisfying;\n\t\tfunction maxSatisfying (versions, range, options) {\n\t\t  var max = null;\n\t\t  var maxSV = null;\n\t\t  try {\n\t\t    var rangeObj = new Range(range, options);\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t  versions.forEach(function (v) {\n\t\t    if (rangeObj.test(v)) {\n\t\t      // satisfies(v, range, options)\n\t\t      if (!max || maxSV.compare(v) === -1) {\n\t\t        // compare(max, v, true)\n\t\t        max = v;\n\t\t        maxSV = new SemVer(max, options);\n\t\t      }\n\t\t    }\n\t\t  });\n\t\t  return max\n\t\t}\n\n\t\texports.minSatisfying = minSatisfying;\n\t\tfunction minSatisfying (versions, range, options) {\n\t\t  var min = null;\n\t\t  var minSV = null;\n\t\t  try {\n\t\t    var rangeObj = new Range(range, options);\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t  versions.forEach(function (v) {\n\t\t    if (rangeObj.test(v)) {\n\t\t      // satisfies(v, range, options)\n\t\t      if (!min || minSV.compare(v) === 1) {\n\t\t        // compare(min, v, true)\n\t\t        min = v;\n\t\t        minSV = new SemVer(min, options);\n\t\t      }\n\t\t    }\n\t\t  });\n\t\t  return min\n\t\t}\n\n\t\texports.minVersion = minVersion;\n\t\tfunction minVersion (range, loose) {\n\t\t  range = new Range(range, loose);\n\n\t\t  var minver = new SemVer('0.0.0');\n\t\t  if (range.test(minver)) {\n\t\t    return minver\n\t\t  }\n\n\t\t  minver = new SemVer('0.0.0-0');\n\t\t  if (range.test(minver)) {\n\t\t    return minver\n\t\t  }\n\n\t\t  minver = null;\n\t\t  for (var i = 0; i < range.set.length; ++i) {\n\t\t    var comparators = range.set[i];\n\n\t\t    comparators.forEach(function (comparator) {\n\t\t      // Clone to avoid manipulating the comparator's semver object.\n\t\t      var compver = new SemVer(comparator.semver.version);\n\t\t      switch (comparator.operator) {\n\t\t        case '>':\n\t\t          if (compver.prerelease.length === 0) {\n\t\t            compver.patch++;\n\t\t          } else {\n\t\t            compver.prerelease.push(0);\n\t\t          }\n\t\t          compver.raw = compver.format();\n\t\t          /* fallthrough */\n\t\t        case '':\n\t\t        case '>=':\n\t\t          if (!minver || gt(minver, compver)) {\n\t\t            minver = compver;\n\t\t          }\n\t\t          break\n\t\t        case '<':\n\t\t        case '<=':\n\t\t          /* Ignore maximum versions */\n\t\t          break\n\t\t        /* istanbul ignore next */\n\t\t        default:\n\t\t          throw new Error('Unexpected operation: ' + comparator.operator)\n\t\t      }\n\t\t    });\n\t\t  }\n\n\t\t  if (minver && range.test(minver)) {\n\t\t    return minver\n\t\t  }\n\n\t\t  return null\n\t\t}\n\n\t\texports.validRange = validRange;\n\t\tfunction validRange (range, options) {\n\t\t  try {\n\t\t    // Return '*' instead of '' so that truthiness works.\n\t\t    // This will throw if it's invalid anyway\n\t\t    return new Range(range, options).range || '*'\n\t\t  } catch (er) {\n\t\t    return null\n\t\t  }\n\t\t}\n\n\t\t// Determine if version is less than all the versions possible in the range\n\t\texports.ltr = ltr;\n\t\tfunction ltr (version, range, options) {\n\t\t  return outside(version, range, '<', options)\n\t\t}\n\n\t\t// Determine if version is greater than all the versions possible in the range.\n\t\texports.gtr = gtr;\n\t\tfunction gtr (version, range, options) {\n\t\t  return outside(version, range, '>', options)\n\t\t}\n\n\t\texports.outside = outside;\n\t\tfunction outside (version, range, hilo, options) {\n\t\t  version = new SemVer(version, options);\n\t\t  range = new Range(range, options);\n\n\t\t  var gtfn, ltefn, ltfn, comp, ecomp;\n\t\t  switch (hilo) {\n\t\t    case '>':\n\t\t      gtfn = gt;\n\t\t      ltefn = lte;\n\t\t      ltfn = lt;\n\t\t      comp = '>';\n\t\t      ecomp = '>=';\n\t\t      break\n\t\t    case '<':\n\t\t      gtfn = lt;\n\t\t      ltefn = gte;\n\t\t      ltfn = gt;\n\t\t      comp = '<';\n\t\t      ecomp = '<=';\n\t\t      break\n\t\t    default:\n\t\t      throw new TypeError('Must provide a hilo val of \"<\" or \">\"')\n\t\t  }\n\n\t\t  // If it satisifes the range it is not outside\n\t\t  if (satisfies(version, range, options)) {\n\t\t    return false\n\t\t  }\n\n\t\t  // From now on, variable terms are as if we're in \"gtr\" mode.\n\t\t  // but note that everything is flipped for the \"ltr\" function.\n\n\t\t  for (var i = 0; i < range.set.length; ++i) {\n\t\t    var comparators = range.set[i];\n\n\t\t    var high = null;\n\t\t    var low = null;\n\n\t\t    comparators.forEach(function (comparator) {\n\t\t      if (comparator.semver === ANY) {\n\t\t        comparator = new Comparator('>=0.0.0');\n\t\t      }\n\t\t      high = high || comparator;\n\t\t      low = low || comparator;\n\t\t      if (gtfn(comparator.semver, high.semver, options)) {\n\t\t        high = comparator;\n\t\t      } else if (ltfn(comparator.semver, low.semver, options)) {\n\t\t        low = comparator;\n\t\t      }\n\t\t    });\n\n\t\t    // If the edge version comparator has a operator then our version\n\t\t    // isn't outside it\n\t\t    if (high.operator === comp || high.operator === ecomp) {\n\t\t      return false\n\t\t    }\n\n\t\t    // If the lowest version comparator has an operator and our version\n\t\t    // is less than it then it isn't higher than the range\n\t\t    if ((!low.operator || low.operator === comp) &&\n\t\t        ltefn(version, low.semver)) {\n\t\t      return false\n\t\t    } else if (low.operator === ecomp && ltfn(version, low.semver)) {\n\t\t      return false\n\t\t    }\n\t\t  }\n\t\t  return true\n\t\t}\n\n\t\texports.prerelease = prerelease;\n\t\tfunction prerelease (version, options) {\n\t\t  var parsed = parse(version, options);\n\t\t  return (parsed && parsed.prerelease.length) ? parsed.prerelease : null\n\t\t}\n\n\t\texports.intersects = intersects;\n\t\tfunction intersects (r1, r2, options) {\n\t\t  r1 = new Range(r1, options);\n\t\t  r2 = new Range(r2, options);\n\t\t  return r1.intersects(r2)\n\t\t}\n\n\t\texports.coerce = coerce;\n\t\tfunction coerce (version, options) {\n\t\t  if (version instanceof SemVer) {\n\t\t    return version\n\t\t  }\n\n\t\t  if (typeof version === 'number') {\n\t\t    version = String(version);\n\t\t  }\n\n\t\t  if (typeof version !== 'string') {\n\t\t    return null\n\t\t  }\n\n\t\t  options = options || {};\n\n\t\t  var match = null;\n\t\t  if (!options.rtl) {\n\t\t    match = version.match(safeRe[t.COERCE]);\n\t\t  } else {\n\t\t    // Find the right-most coercible string that does not share\n\t\t    // a terminus with a more left-ward coercible string.\n\t\t    // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'\n\t\t    //\n\t\t    // Walk through the string checking with a /g regexp\n\t\t    // Manually set the index so as to pick up overlapping matches.\n\t\t    // Stop when we get a match that ends at the string end, since no\n\t\t    // coercible string can be more right-ward without the same terminus.\n\t\t    var next;\n\t\t    while ((next = safeRe[t.COERCERTL].exec(version)) &&\n\t\t      (!match || match.index + match[0].length !== version.length)\n\t\t    ) {\n\t\t      if (!match ||\n\t\t          next.index + next[0].length !== match.index + match[0].length) {\n\t\t        match = next;\n\t\t      }\n\t\t      safeRe[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length;\n\t\t    }\n\t\t    // leave it in a clean state\n\t\t    safeRe[t.COERCERTL].lastIndex = -1;\n\t\t  }\n\n\t\t  if (match === null) {\n\t\t    return null\n\t\t  }\n\n\t\t  return parse(match[2] +\n\t\t    '.' + (match[3] || '0') +\n\t\t    '.' + (match[4] || '0'), options)\n\t\t} \n\t} (semver$2, semver$2.exports));\n\treturn semver$2.exports;\n}\n\nvar manifest = manifest$1.exports;\n\nvar hasRequiredManifest;\n\nfunction requireManifest () {\n\tif (hasRequiredManifest) return manifest$1.exports;\n\thasRequiredManifest = 1;\n\t(function (module, exports) {\n\t\tvar __createBinding = (manifest && manifest.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t\t    }\n\t\t    Object.defineProperty(o, k2, desc);\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __setModuleDefault = (manifest && manifest.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t\t}) : function(o, v) {\n\t\t    o[\"default\"] = v;\n\t\t});\n\t\tvar __importStar = (manifest && manifest.__importStar) || function (mod) {\n\t\t    if (mod && mod.__esModule) return mod;\n\t\t    var result = {};\n\t\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t\t    __setModuleDefault(result, mod);\n\t\t    return result;\n\t\t};\n\t\tvar __awaiter = (manifest && manifest.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t\t    });\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports._readLinuxVersionFile = exports._getOsVersion = exports._findMatch = void 0;\n\t\tconst semver = __importStar(requireSemver$2());\n\t\tconst core_1 = requireCore$1();\n\t\t// needs to be require for core node modules to be mocked\n\t\t/* eslint @typescript-eslint/no-require-imports: 0 */\n\t\tconst os = require$$0__default;\n\t\tconst cp = require$$2$5;\n\t\tconst fs = fs__default;\n\t\tfunction _findMatch(versionSpec, stable, candidates, archFilter) {\n\t\t    return __awaiter(this, void 0, void 0, function* () {\n\t\t        const platFilter = os.platform();\n\t\t        let result;\n\t\t        let match;\n\t\t        let file;\n\t\t        for (const candidate of candidates) {\n\t\t            const version = candidate.version;\n\t\t            (0, core_1.debug)(`check ${version} satisfies ${versionSpec}`);\n\t\t            if (semver.satisfies(version, versionSpec) &&\n\t\t                (!stable || candidate.stable === stable)) {\n\t\t                file = candidate.files.find(item => {\n\t\t                    (0, core_1.debug)(`${item.arch}===${archFilter} && ${item.platform}===${platFilter}`);\n\t\t                    let chk = item.arch === archFilter && item.platform === platFilter;\n\t\t                    if (chk && item.platform_version) {\n\t\t                        const osVersion = module.exports._getOsVersion();\n\t\t                        if (osVersion === item.platform_version) {\n\t\t                            chk = true;\n\t\t                        }\n\t\t                        else {\n\t\t                            chk = semver.satisfies(osVersion, item.platform_version);\n\t\t                        }\n\t\t                    }\n\t\t                    return chk;\n\t\t                });\n\t\t                if (file) {\n\t\t                    (0, core_1.debug)(`matched ${candidate.version}`);\n\t\t                    match = candidate;\n\t\t                    break;\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t        if (match && file) {\n\t\t            // clone since we're mutating the file list to be only the file that matches\n\t\t            result = Object.assign({}, match);\n\t\t            result.files = [file];\n\t\t        }\n\t\t        return result;\n\t\t    });\n\t\t}\n\t\texports._findMatch = _findMatch;\n\t\tfunction _getOsVersion() {\n\t\t    // TODO: add windows and other linux, arm variants\n\t\t    // right now filtering on version is only an ubuntu and macos scenario for tools we build for hosted (python)\n\t\t    const plat = os.platform();\n\t\t    let version = '';\n\t\t    if (plat === 'darwin') {\n\t\t        version = cp.execSync('sw_vers -productVersion').toString();\n\t\t    }\n\t\t    else if (plat === 'linux') {\n\t\t        // lsb_release process not in some containers, readfile\n\t\t        // Run cat /etc/lsb-release\n\t\t        // DISTRIB_ID=Ubuntu\n\t\t        // DISTRIB_RELEASE=18.04\n\t\t        // DISTRIB_CODENAME=bionic\n\t\t        // DISTRIB_DESCRIPTION=\"Ubuntu 18.04.4 LTS\"\n\t\t        const lsbContents = module.exports._readLinuxVersionFile();\n\t\t        if (lsbContents) {\n\t\t            const lines = lsbContents.split('\\n');\n\t\t            for (const line of lines) {\n\t\t                const parts = line.split('=');\n\t\t                if (parts.length === 2 &&\n\t\t                    (parts[0].trim() === 'VERSION_ID' ||\n\t\t                        parts[0].trim() === 'DISTRIB_RELEASE')) {\n\t\t                    version = parts[1].trim().replace(/^\"/, '').replace(/\"$/, '');\n\t\t                    break;\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t    }\n\t\t    return version;\n\t\t}\n\t\texports._getOsVersion = _getOsVersion;\n\t\tfunction _readLinuxVersionFile() {\n\t\t    const lsbReleaseFile = '/etc/lsb-release';\n\t\t    const osReleaseFile = '/etc/os-release';\n\t\t    let contents = '';\n\t\t    if (fs.existsSync(lsbReleaseFile)) {\n\t\t        contents = fs.readFileSync(lsbReleaseFile).toString();\n\t\t    }\n\t\t    else if (fs.existsSync(osReleaseFile)) {\n\t\t        contents = fs.readFileSync(osReleaseFile).toString();\n\t\t    }\n\t\t    return contents;\n\t\t}\n\t\texports._readLinuxVersionFile = _readLinuxVersionFile;\n\t\t\n\t} (manifest$1, manifest$1.exports));\n\treturn manifest$1.exports;\n}\n\nvar retryHelper = {};\n\nvar hasRequiredRetryHelper;\n\nfunction requireRetryHelper () {\n\tif (hasRequiredRetryHelper) return retryHelper;\n\thasRequiredRetryHelper = 1;\n\tvar __createBinding = (retryHelper && retryHelper.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (retryHelper && retryHelper.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (retryHelper && retryHelper.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (retryHelper && retryHelper.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(retryHelper, \"__esModule\", { value: true });\n\tretryHelper.RetryHelper = void 0;\n\tconst core = __importStar(requireCore$1());\n\t/**\n\t * Internal class for retries\n\t */\n\tclass RetryHelper {\n\t    constructor(maxAttempts, minSeconds, maxSeconds) {\n\t        if (maxAttempts < 1) {\n\t            throw new Error('max attempts should be greater than or equal to 1');\n\t        }\n\t        this.maxAttempts = maxAttempts;\n\t        this.minSeconds = Math.floor(minSeconds);\n\t        this.maxSeconds = Math.floor(maxSeconds);\n\t        if (this.minSeconds > this.maxSeconds) {\n\t            throw new Error('min seconds should be less than or equal to max seconds');\n\t        }\n\t    }\n\t    execute(action, isRetryable) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            let attempt = 1;\n\t            while (attempt < this.maxAttempts) {\n\t                // Try\n\t                try {\n\t                    return yield action();\n\t                }\n\t                catch (err) {\n\t                    if (isRetryable && !isRetryable(err)) {\n\t                        throw err;\n\t                    }\n\t                    core.info(err.message);\n\t                }\n\t                // Sleep\n\t                const seconds = this.getSleepAmount();\n\t                core.info(`Waiting ${seconds} seconds before trying again`);\n\t                yield this.sleep(seconds);\n\t                attempt++;\n\t            }\n\t            // Last attempt\n\t            return yield action();\n\t        });\n\t    }\n\t    getSleepAmount() {\n\t        return (Math.floor(Math.random() * (this.maxSeconds - this.minSeconds + 1)) +\n\t            this.minSeconds);\n\t    }\n\t    sleep(seconds) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return new Promise(resolve => setTimeout(resolve, seconds * 1000));\n\t        });\n\t    }\n\t}\n\tretryHelper.RetryHelper = RetryHelper;\n\t\n\treturn retryHelper;\n}\n\nvar hasRequiredToolCache;\n\nfunction requireToolCache () {\n\tif (hasRequiredToolCache) return toolCache;\n\thasRequiredToolCache = 1;\n\tvar __createBinding = (toolCache && toolCache.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (toolCache && toolCache.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (toolCache && toolCache.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (toolCache && toolCache.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(toolCache, \"__esModule\", { value: true });\n\ttoolCache.evaluateVersions = toolCache.isExplicitVersion = toolCache.findFromManifest = toolCache.getManifestFromRepo = toolCache.findAllVersions = toolCache.find = toolCache.cacheFile = toolCache.cacheDir = toolCache.extractZip = toolCache.extractXar = toolCache.extractTar = toolCache.extract7z = toolCache.downloadTool = toolCache.HTTPError = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst io = __importStar(requireIo());\n\tconst crypto = __importStar(require$$0$7);\n\tconst fs = __importStar(fs__default);\n\tconst mm = __importStar(requireManifest());\n\tconst os = __importStar(require$$0__default);\n\tconst path = __importStar(require$$1__default);\n\tconst httpm = __importStar(requireLib$2());\n\tconst semver = __importStar(requireSemver$2());\n\tconst stream = __importStar(require$$0$b);\n\tconst util = __importStar(require$$0__default$1);\n\tconst assert_1 = require$$0$9;\n\tconst exec_1 = requireExec();\n\tconst retry_helper_1 = requireRetryHelper();\n\tclass HTTPError extends Error {\n\t    constructor(httpStatusCode) {\n\t        super(`Unexpected HTTP response: ${httpStatusCode}`);\n\t        this.httpStatusCode = httpStatusCode;\n\t        Object.setPrototypeOf(this, new.target.prototype);\n\t    }\n\t}\n\ttoolCache.HTTPError = HTTPError;\n\tconst IS_WINDOWS = process.platform === 'win32';\n\tconst IS_MAC = process.platform === 'darwin';\n\tconst userAgent = 'actions/tool-cache';\n\t/**\n\t * Download a tool from an url and stream it into a file\n\t *\n\t * @param url       url of tool to download\n\t * @param dest      path to download tool\n\t * @param auth      authorization header\n\t * @param headers   other headers\n\t * @returns         path to downloaded tool\n\t */\n\tfunction downloadTool(url, dest, auth, headers) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        dest = dest || path.join(_getTempDirectory(), crypto.randomUUID());\n\t        yield io.mkdirP(path.dirname(dest));\n\t        core.debug(`Downloading ${url}`);\n\t        core.debug(`Destination ${dest}`);\n\t        const maxAttempts = 3;\n\t        const minSeconds = _getGlobal('TEST_DOWNLOAD_TOOL_RETRY_MIN_SECONDS', 10);\n\t        const maxSeconds = _getGlobal('TEST_DOWNLOAD_TOOL_RETRY_MAX_SECONDS', 20);\n\t        const retryHelper = new retry_helper_1.RetryHelper(maxAttempts, minSeconds, maxSeconds);\n\t        return yield retryHelper.execute(() => __awaiter(this, void 0, void 0, function* () {\n\t            return yield downloadToolAttempt(url, dest || '', auth, headers);\n\t        }), (err) => {\n\t            if (err instanceof HTTPError && err.httpStatusCode) {\n\t                // Don't retry anything less than 500, except 408 Request Timeout and 429 Too Many Requests\n\t                if (err.httpStatusCode < 500 &&\n\t                    err.httpStatusCode !== 408 &&\n\t                    err.httpStatusCode !== 429) {\n\t                    return false;\n\t                }\n\t            }\n\t            // Otherwise retry\n\t            return true;\n\t        });\n\t    });\n\t}\n\ttoolCache.downloadTool = downloadTool;\n\tfunction downloadToolAttempt(url, dest, auth, headers) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (fs.existsSync(dest)) {\n\t            throw new Error(`Destination file path ${dest} already exists`);\n\t        }\n\t        // Get the response headers\n\t        const http = new httpm.HttpClient(userAgent, [], {\n\t            allowRetries: false\n\t        });\n\t        if (auth) {\n\t            core.debug('set auth');\n\t            if (headers === undefined) {\n\t                headers = {};\n\t            }\n\t            headers.authorization = auth;\n\t        }\n\t        const response = yield http.get(url, headers);\n\t        if (response.message.statusCode !== 200) {\n\t            const err = new HTTPError(response.message.statusCode);\n\t            core.debug(`Failed to download from \"${url}\". Code(${response.message.statusCode}) Message(${response.message.statusMessage})`);\n\t            throw err;\n\t        }\n\t        // Download the response body\n\t        const pipeline = util.promisify(stream.pipeline);\n\t        const responseMessageFactory = _getGlobal('TEST_DOWNLOAD_TOOL_RESPONSE_MESSAGE_FACTORY', () => response.message);\n\t        const readStream = responseMessageFactory();\n\t        let succeeded = false;\n\t        try {\n\t            yield pipeline(readStream, fs.createWriteStream(dest));\n\t            core.debug('download complete');\n\t            succeeded = true;\n\t            return dest;\n\t        }\n\t        finally {\n\t            // Error, delete dest before retry\n\t            if (!succeeded) {\n\t                core.debug('download failed');\n\t                try {\n\t                    yield io.rmRF(dest);\n\t                }\n\t                catch (err) {\n\t                    core.debug(`Failed to delete '${dest}'. ${err.message}`);\n\t                }\n\t            }\n\t        }\n\t    });\n\t}\n\t/**\n\t * Extract a .7z file\n\t *\n\t * @param file     path to the .7z file\n\t * @param dest     destination directory. Optional.\n\t * @param _7zPath  path to 7zr.exe. Optional, for long path support. Most .7z archives do not have this\n\t * problem. If your .7z archive contains very long paths, you can pass the path to 7zr.exe which will\n\t * gracefully handle long paths. By default 7zdec.exe is used because it is a very small program and is\n\t * bundled with the tool lib. However it does not support long paths. 7zr.exe is the reduced command line\n\t * interface, it is smaller than the full command line interface, and it does support long paths. At the\n\t * time of this writing, it is freely available from the LZMA SDK that is available on the 7zip website.\n\t * Be sure to check the current license agreement. If 7zr.exe is bundled with your action, then the path\n\t * to 7zr.exe can be pass to this function.\n\t * @returns        path to the destination directory\n\t */\n\tfunction extract7z(file, dest, _7zPath) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        (0, assert_1.ok)(IS_WINDOWS, 'extract7z() not supported on current OS');\n\t        (0, assert_1.ok)(file, 'parameter \"file\" is required');\n\t        dest = yield _createExtractFolder(dest);\n\t        const originalCwd = process.cwd();\n\t        process.chdir(dest);\n\t        if (_7zPath) {\n\t            try {\n\t                const logLevel = core.isDebug() ? '-bb1' : '-bb0';\n\t                const args = [\n\t                    'x',\n\t                    logLevel,\n\t                    '-bd',\n\t                    '-sccUTF-8',\n\t                    file\n\t                ];\n\t                const options = {\n\t                    silent: true\n\t                };\n\t                yield (0, exec_1.exec)(`\"${_7zPath}\"`, args, options);\n\t            }\n\t            finally {\n\t                process.chdir(originalCwd);\n\t            }\n\t        }\n\t        else {\n\t            const escapedScript = path\n\t                .join(__dirname, '..', 'scripts', 'Invoke-7zdec.ps1')\n\t                .replace(/'/g, \"''\")\n\t                .replace(/\"|\\n|\\r/g, ''); // double-up single quotes, remove double quotes and newlines\n\t            const escapedFile = file.replace(/'/g, \"''\").replace(/\"|\\n|\\r/g, '');\n\t            const escapedTarget = dest.replace(/'/g, \"''\").replace(/\"|\\n|\\r/g, '');\n\t            const command = `& '${escapedScript}' -Source '${escapedFile}' -Target '${escapedTarget}'`;\n\t            const args = [\n\t                '-NoLogo',\n\t                '-Sta',\n\t                '-NoProfile',\n\t                '-NonInteractive',\n\t                '-ExecutionPolicy',\n\t                'Unrestricted',\n\t                '-Command',\n\t                command\n\t            ];\n\t            const options = {\n\t                silent: true\n\t            };\n\t            try {\n\t                const powershellPath = yield io.which('powershell', true);\n\t                yield (0, exec_1.exec)(`\"${powershellPath}\"`, args, options);\n\t            }\n\t            finally {\n\t                process.chdir(originalCwd);\n\t            }\n\t        }\n\t        return dest;\n\t    });\n\t}\n\ttoolCache.extract7z = extract7z;\n\t/**\n\t * Extract a compressed tar archive\n\t *\n\t * @param file     path to the tar\n\t * @param dest     destination directory. Optional.\n\t * @param flags    flags for the tar command to use for extraction. Defaults to 'xz' (extracting gzipped tars). Optional.\n\t * @returns        path to the destination directory\n\t */\n\tfunction extractTar(file, dest, flags = 'xz') {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (!file) {\n\t            throw new Error(\"parameter 'file' is required\");\n\t        }\n\t        // Create dest\n\t        dest = yield _createExtractFolder(dest);\n\t        // Determine whether GNU tar\n\t        core.debug('Checking tar --version');\n\t        let versionOutput = '';\n\t        yield (0, exec_1.exec)('tar --version', [], {\n\t            ignoreReturnCode: true,\n\t            silent: true,\n\t            listeners: {\n\t                stdout: (data) => (versionOutput += data.toString()),\n\t                stderr: (data) => (versionOutput += data.toString())\n\t            }\n\t        });\n\t        core.debug(versionOutput.trim());\n\t        const isGnuTar = versionOutput.toUpperCase().includes('GNU TAR');\n\t        // Initialize args\n\t        let args;\n\t        if (flags instanceof Array) {\n\t            args = flags;\n\t        }\n\t        else {\n\t            args = [flags];\n\t        }\n\t        if (core.isDebug() && !flags.includes('v')) {\n\t            args.push('-v');\n\t        }\n\t        let destArg = dest;\n\t        let fileArg = file;\n\t        if (IS_WINDOWS && isGnuTar) {\n\t            args.push('--force-local');\n\t            destArg = dest.replace(/\\\\/g, '/');\n\t            // Technically only the dest needs to have `/` but for aesthetic consistency\n\t            // convert slashes in the file arg too.\n\t            fileArg = file.replace(/\\\\/g, '/');\n\t        }\n\t        if (isGnuTar) {\n\t            // Suppress warnings when using GNU tar to extract archives created by BSD tar\n\t            args.push('--warning=no-unknown-keyword');\n\t            args.push('--overwrite');\n\t        }\n\t        args.push('-C', destArg, '-f', fileArg);\n\t        yield (0, exec_1.exec)(`tar`, args);\n\t        return dest;\n\t    });\n\t}\n\ttoolCache.extractTar = extractTar;\n\t/**\n\t * Extract a xar compatible archive\n\t *\n\t * @param file     path to the archive\n\t * @param dest     destination directory. Optional.\n\t * @param flags    flags for the xar. Optional.\n\t * @returns        path to the destination directory\n\t */\n\tfunction extractXar(file, dest, flags = []) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        (0, assert_1.ok)(IS_MAC, 'extractXar() not supported on current OS');\n\t        (0, assert_1.ok)(file, 'parameter \"file\" is required');\n\t        dest = yield _createExtractFolder(dest);\n\t        let args;\n\t        if (flags instanceof Array) {\n\t            args = flags;\n\t        }\n\t        else {\n\t            args = [flags];\n\t        }\n\t        args.push('-x', '-C', dest, '-f', file);\n\t        if (core.isDebug()) {\n\t            args.push('-v');\n\t        }\n\t        const xarPath = yield io.which('xar', true);\n\t        yield (0, exec_1.exec)(`\"${xarPath}\"`, _unique(args));\n\t        return dest;\n\t    });\n\t}\n\ttoolCache.extractXar = extractXar;\n\t/**\n\t * Extract a zip\n\t *\n\t * @param file     path to the zip\n\t * @param dest     destination directory. Optional.\n\t * @returns        path to the destination directory\n\t */\n\tfunction extractZip(file, dest) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (!file) {\n\t            throw new Error(\"parameter 'file' is required\");\n\t        }\n\t        dest = yield _createExtractFolder(dest);\n\t        if (IS_WINDOWS) {\n\t            yield extractZipWin(file, dest);\n\t        }\n\t        else {\n\t            yield extractZipNix(file, dest);\n\t        }\n\t        return dest;\n\t    });\n\t}\n\ttoolCache.extractZip = extractZip;\n\tfunction extractZipWin(file, dest) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // build the powershell command\n\t        const escapedFile = file.replace(/'/g, \"''\").replace(/\"|\\n|\\r/g, ''); // double-up single quotes, remove double quotes and newlines\n\t        const escapedDest = dest.replace(/'/g, \"''\").replace(/\"|\\n|\\r/g, '');\n\t        const pwshPath = yield io.which('pwsh', false);\n\t        //To match the file overwrite behavior on nix systems, we use the overwrite = true flag for ExtractToDirectory\n\t        //and the -Force flag for Expand-Archive as a fallback\n\t        if (pwshPath) {\n\t            //attempt to use pwsh with ExtractToDirectory, if this fails attempt Expand-Archive\n\t            const pwshCommand = [\n\t                `$ErrorActionPreference = 'Stop' ;`,\n\t                `try { Add-Type -AssemblyName System.IO.Compression.ZipFile } catch { } ;`,\n\t                `try { [System.IO.Compression.ZipFile]::ExtractToDirectory('${escapedFile}', '${escapedDest}', $true) }`,\n\t                `catch { if (($_.Exception.GetType().FullName -eq 'System.Management.Automation.MethodException') -or ($_.Exception.GetType().FullName -eq 'System.Management.Automation.RuntimeException') ){ Expand-Archive -LiteralPath '${escapedFile}' -DestinationPath '${escapedDest}' -Force } else { throw $_ } } ;`\n\t            ].join(' ');\n\t            const args = [\n\t                '-NoLogo',\n\t                '-NoProfile',\n\t                '-NonInteractive',\n\t                '-ExecutionPolicy',\n\t                'Unrestricted',\n\t                '-Command',\n\t                pwshCommand\n\t            ];\n\t            core.debug(`Using pwsh at path: ${pwshPath}`);\n\t            yield (0, exec_1.exec)(`\"${pwshPath}\"`, args);\n\t        }\n\t        else {\n\t            const powershellCommand = [\n\t                `$ErrorActionPreference = 'Stop' ;`,\n\t                `try { Add-Type -AssemblyName System.IO.Compression.FileSystem } catch { } ;`,\n\t                `if ((Get-Command -Name Expand-Archive -Module Microsoft.PowerShell.Archive -ErrorAction Ignore)) { Expand-Archive -LiteralPath '${escapedFile}' -DestinationPath '${escapedDest}' -Force }`,\n\t                `else {[System.IO.Compression.ZipFile]::ExtractToDirectory('${escapedFile}', '${escapedDest}', $true) }`\n\t            ].join(' ');\n\t            const args = [\n\t                '-NoLogo',\n\t                '-Sta',\n\t                '-NoProfile',\n\t                '-NonInteractive',\n\t                '-ExecutionPolicy',\n\t                'Unrestricted',\n\t                '-Command',\n\t                powershellCommand\n\t            ];\n\t            const powershellPath = yield io.which('powershell', true);\n\t            core.debug(`Using powershell at path: ${powershellPath}`);\n\t            yield (0, exec_1.exec)(`\"${powershellPath}\"`, args);\n\t        }\n\t    });\n\t}\n\tfunction extractZipNix(file, dest) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const unzipPath = yield io.which('unzip', true);\n\t        const args = [file];\n\t        if (!core.isDebug()) {\n\t            args.unshift('-q');\n\t        }\n\t        args.unshift('-o'); //overwrite with -o, otherwise a prompt is shown which freezes the run\n\t        yield (0, exec_1.exec)(`\"${unzipPath}\"`, args, { cwd: dest });\n\t    });\n\t}\n\t/**\n\t * Caches a directory and installs it into the tool cacheDir\n\t *\n\t * @param sourceDir    the directory to cache into tools\n\t * @param tool          tool name\n\t * @param version       version of the tool.  semver format\n\t * @param arch          architecture of the tool.  Optional.  Defaults to machine architecture\n\t */\n\tfunction cacheDir(sourceDir, tool, version, arch) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        version = semver.clean(version) || version;\n\t        arch = arch || os.arch();\n\t        core.debug(`Caching tool ${tool} ${version} ${arch}`);\n\t        core.debug(`source dir: ${sourceDir}`);\n\t        if (!fs.statSync(sourceDir).isDirectory()) {\n\t            throw new Error('sourceDir is not a directory');\n\t        }\n\t        // Create the tool dir\n\t        const destPath = yield _createToolPath(tool, version, arch);\n\t        // copy each child item. do not move. move can fail on Windows\n\t        // due to anti-virus software having an open handle on a file.\n\t        for (const itemName of fs.readdirSync(sourceDir)) {\n\t            const s = path.join(sourceDir, itemName);\n\t            yield io.cp(s, destPath, { recursive: true });\n\t        }\n\t        // write .complete\n\t        _completeToolPath(tool, version, arch);\n\t        return destPath;\n\t    });\n\t}\n\ttoolCache.cacheDir = cacheDir;\n\t/**\n\t * Caches a downloaded file (GUID) and installs it\n\t * into the tool cache with a given targetName\n\t *\n\t * @param sourceFile    the file to cache into tools.  Typically a result of downloadTool which is a guid.\n\t * @param targetFile    the name of the file name in the tools directory\n\t * @param tool          tool name\n\t * @param version       version of the tool.  semver format\n\t * @param arch          architecture of the tool.  Optional.  Defaults to machine architecture\n\t */\n\tfunction cacheFile(sourceFile, targetFile, tool, version, arch) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        version = semver.clean(version) || version;\n\t        arch = arch || os.arch();\n\t        core.debug(`Caching tool ${tool} ${version} ${arch}`);\n\t        core.debug(`source file: ${sourceFile}`);\n\t        if (!fs.statSync(sourceFile).isFile()) {\n\t            throw new Error('sourceFile is not a file');\n\t        }\n\t        // create the tool dir\n\t        const destFolder = yield _createToolPath(tool, version, arch);\n\t        // copy instead of move. move can fail on Windows due to\n\t        // anti-virus software having an open handle on a file.\n\t        const destPath = path.join(destFolder, targetFile);\n\t        core.debug(`destination file ${destPath}`);\n\t        yield io.cp(sourceFile, destPath);\n\t        // write .complete\n\t        _completeToolPath(tool, version, arch);\n\t        return destFolder;\n\t    });\n\t}\n\ttoolCache.cacheFile = cacheFile;\n\t/**\n\t * Finds the path to a tool version in the local installed tool cache\n\t *\n\t * @param toolName      name of the tool\n\t * @param versionSpec   version of the tool\n\t * @param arch          optional arch.  defaults to arch of computer\n\t */\n\tfunction find(toolName, versionSpec, arch) {\n\t    if (!toolName) {\n\t        throw new Error('toolName parameter is required');\n\t    }\n\t    if (!versionSpec) {\n\t        throw new Error('versionSpec parameter is required');\n\t    }\n\t    arch = arch || os.arch();\n\t    // attempt to resolve an explicit version\n\t    if (!isExplicitVersion(versionSpec)) {\n\t        const localVersions = findAllVersions(toolName, arch);\n\t        const match = evaluateVersions(localVersions, versionSpec);\n\t        versionSpec = match;\n\t    }\n\t    // check for the explicit version in the cache\n\t    let toolPath = '';\n\t    if (versionSpec) {\n\t        versionSpec = semver.clean(versionSpec) || '';\n\t        const cachePath = path.join(_getCacheDirectory(), toolName, versionSpec, arch);\n\t        core.debug(`checking cache: ${cachePath}`);\n\t        if (fs.existsSync(cachePath) && fs.existsSync(`${cachePath}.complete`)) {\n\t            core.debug(`Found tool in cache ${toolName} ${versionSpec} ${arch}`);\n\t            toolPath = cachePath;\n\t        }\n\t        else {\n\t            core.debug('not found');\n\t        }\n\t    }\n\t    return toolPath;\n\t}\n\ttoolCache.find = find;\n\t/**\n\t * Finds the paths to all versions of a tool that are installed in the local tool cache\n\t *\n\t * @param toolName  name of the tool\n\t * @param arch      optional arch.  defaults to arch of computer\n\t */\n\tfunction findAllVersions(toolName, arch) {\n\t    const versions = [];\n\t    arch = arch || os.arch();\n\t    const toolPath = path.join(_getCacheDirectory(), toolName);\n\t    if (fs.existsSync(toolPath)) {\n\t        const children = fs.readdirSync(toolPath);\n\t        for (const child of children) {\n\t            if (isExplicitVersion(child)) {\n\t                const fullPath = path.join(toolPath, child, arch || '');\n\t                if (fs.existsSync(fullPath) && fs.existsSync(`${fullPath}.complete`)) {\n\t                    versions.push(child);\n\t                }\n\t            }\n\t        }\n\t    }\n\t    return versions;\n\t}\n\ttoolCache.findAllVersions = findAllVersions;\n\tfunction getManifestFromRepo(owner, repo, auth, branch = 'master') {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        let releases = [];\n\t        const treeUrl = `https://api.github.com/repos/${owner}/${repo}/git/trees/${branch}`;\n\t        const http = new httpm.HttpClient('tool-cache');\n\t        const headers = {};\n\t        if (auth) {\n\t            core.debug('set auth');\n\t            headers.authorization = auth;\n\t        }\n\t        const response = yield http.getJson(treeUrl, headers);\n\t        if (!response.result) {\n\t            return releases;\n\t        }\n\t        let manifestUrl = '';\n\t        for (const item of response.result.tree) {\n\t            if (item.path === 'versions-manifest.json') {\n\t                manifestUrl = item.url;\n\t                break;\n\t            }\n\t        }\n\t        headers['accept'] = 'application/vnd.github.VERSION.raw';\n\t        let versionsRaw = yield (yield http.get(manifestUrl, headers)).readBody();\n\t        if (versionsRaw) {\n\t            // shouldn't be needed but protects against invalid json saved with BOM\n\t            versionsRaw = versionsRaw.replace(/^\\uFEFF/, '');\n\t            try {\n\t                releases = JSON.parse(versionsRaw);\n\t            }\n\t            catch (_a) {\n\t                core.debug('Invalid json');\n\t            }\n\t        }\n\t        return releases;\n\t    });\n\t}\n\ttoolCache.getManifestFromRepo = getManifestFromRepo;\n\tfunction findFromManifest(versionSpec, stable, manifest, archFilter = os.arch()) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        // wrap the internal impl\n\t        const match = yield mm._findMatch(versionSpec, stable, manifest, archFilter);\n\t        return match;\n\t    });\n\t}\n\ttoolCache.findFromManifest = findFromManifest;\n\tfunction _createExtractFolder(dest) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (!dest) {\n\t            // create a temp dir\n\t            dest = path.join(_getTempDirectory(), crypto.randomUUID());\n\t        }\n\t        yield io.mkdirP(dest);\n\t        return dest;\n\t    });\n\t}\n\tfunction _createToolPath(tool, version, arch) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const folderPath = path.join(_getCacheDirectory(), tool, semver.clean(version) || version, arch || '');\n\t        core.debug(`destination ${folderPath}`);\n\t        const markerPath = `${folderPath}.complete`;\n\t        yield io.rmRF(folderPath);\n\t        yield io.rmRF(markerPath);\n\t        yield io.mkdirP(folderPath);\n\t        return folderPath;\n\t    });\n\t}\n\tfunction _completeToolPath(tool, version, arch) {\n\t    const folderPath = path.join(_getCacheDirectory(), tool, semver.clean(version) || version, arch || '');\n\t    const markerPath = `${folderPath}.complete`;\n\t    fs.writeFileSync(markerPath, '');\n\t    core.debug('finished caching tool');\n\t}\n\t/**\n\t * Check if version string is explicit\n\t *\n\t * @param versionSpec      version string to check\n\t */\n\tfunction isExplicitVersion(versionSpec) {\n\t    const c = semver.clean(versionSpec) || '';\n\t    core.debug(`isExplicit: ${c}`);\n\t    const valid = semver.valid(c) != null;\n\t    core.debug(`explicit? ${valid}`);\n\t    return valid;\n\t}\n\ttoolCache.isExplicitVersion = isExplicitVersion;\n\t/**\n\t * Get the highest satisfiying semantic version in `versions` which satisfies `versionSpec`\n\t *\n\t * @param versions        array of versions to evaluate\n\t * @param versionSpec     semantic version spec to satisfy\n\t */\n\tfunction evaluateVersions(versions, versionSpec) {\n\t    let version = '';\n\t    core.debug(`evaluating ${versions.length} versions`);\n\t    versions = versions.sort((a, b) => {\n\t        if (semver.gt(a, b)) {\n\t            return 1;\n\t        }\n\t        return -1;\n\t    });\n\t    for (let i = versions.length - 1; i >= 0; i--) {\n\t        const potential = versions[i];\n\t        const satisfied = semver.satisfies(potential, versionSpec);\n\t        if (satisfied) {\n\t            version = potential;\n\t            break;\n\t        }\n\t    }\n\t    if (version) {\n\t        core.debug(`matched: ${version}`);\n\t    }\n\t    else {\n\t        core.debug('match not found');\n\t    }\n\t    return version;\n\t}\n\ttoolCache.evaluateVersions = evaluateVersions;\n\t/**\n\t * Gets RUNNER_TOOL_CACHE\n\t */\n\tfunction _getCacheDirectory() {\n\t    const cacheDirectory = process.env['RUNNER_TOOL_CACHE'] || '';\n\t    (0, assert_1.ok)(cacheDirectory, 'Expected RUNNER_TOOL_CACHE to be defined');\n\t    return cacheDirectory;\n\t}\n\t/**\n\t * Gets RUNNER_TEMP\n\t */\n\tfunction _getTempDirectory() {\n\t    const tempDirectory = process.env['RUNNER_TEMP'] || '';\n\t    (0, assert_1.ok)(tempDirectory, 'Expected RUNNER_TEMP to be defined');\n\t    return tempDirectory;\n\t}\n\t/**\n\t * Gets a global variable\n\t */\n\tfunction _getGlobal(key, defaultValue) {\n\t    /* eslint-disable @typescript-eslint/no-explicit-any */\n\t    const value = commonjsGlobal[key];\n\t    /* eslint-enable @typescript-eslint/no-explicit-any */\n\t    return value !== undefined ? value : defaultValue;\n\t}\n\t/**\n\t * Returns an array of unique values.\n\t * @param values Values to make unique.\n\t */\n\tfunction _unique(values) {\n\t    return Array.from(new Set(values));\n\t}\n\t\n\treturn toolCache;\n}\n\nvar toolCacheExports = requireToolCache();\n\nvar ioExports = requireIo();\n\nvar re = {exports: {}};\n\nvar constants$2;\nvar hasRequiredConstants$2;\n\nfunction requireConstants$2 () {\n\tif (hasRequiredConstants$2) return constants$2;\n\thasRequiredConstants$2 = 1;\n\n\t// Note: this is the semver.org version of the spec that it implements\n\t// Not necessarily the package version of this code.\n\tconst SEMVER_SPEC_VERSION = '2.0.0';\n\n\tconst MAX_LENGTH = 256;\n\tconst MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n\t/* istanbul ignore next */ 9007199254740991;\n\n\t// Max safe segment length for coercion.\n\tconst MAX_SAFE_COMPONENT_LENGTH = 16;\n\n\t// Max safe length for a build identifier. The max length minus 6 characters for\n\t// the shortest version with a build 0.0.0+BUILD.\n\tconst MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6;\n\n\tconst RELEASE_TYPES = [\n\t  'major',\n\t  'premajor',\n\t  'minor',\n\t  'preminor',\n\t  'patch',\n\t  'prepatch',\n\t  'prerelease',\n\t];\n\n\tconstants$2 = {\n\t  MAX_LENGTH,\n\t  MAX_SAFE_COMPONENT_LENGTH,\n\t  MAX_SAFE_BUILD_LENGTH,\n\t  MAX_SAFE_INTEGER,\n\t  RELEASE_TYPES,\n\t  SEMVER_SPEC_VERSION,\n\t  FLAG_INCLUDE_PRERELEASE: 0b001,\n\t  FLAG_LOOSE: 0b010,\n\t};\n\treturn constants$2;\n}\n\nvar debug_1;\nvar hasRequiredDebug;\n\nfunction requireDebug () {\n\tif (hasRequiredDebug) return debug_1;\n\thasRequiredDebug = 1;\n\n\tconst debug = (\n\t  typeof process === 'object' &&\n\t  process.env &&\n\t  process.env.NODE_DEBUG &&\n\t  /\\bsemver\\b/i.test(process.env.NODE_DEBUG)\n\t) ? (...args) => console.error('SEMVER', ...args)\n\t  : () => {};\n\n\tdebug_1 = debug;\n\treturn debug_1;\n}\n\nvar hasRequiredRe;\n\nfunction requireRe () {\n\tif (hasRequiredRe) return re.exports;\n\thasRequiredRe = 1;\n\t(function (module, exports) {\n\n\t\tconst {\n\t\t  MAX_SAFE_COMPONENT_LENGTH,\n\t\t  MAX_SAFE_BUILD_LENGTH,\n\t\t  MAX_LENGTH,\n\t\t} = requireConstants$2();\n\t\tconst debug = requireDebug();\n\t\texports = module.exports = {};\n\n\t\t// The actual regexps go on exports.re\n\t\tconst re = exports.re = [];\n\t\tconst safeRe = exports.safeRe = [];\n\t\tconst src = exports.src = [];\n\t\tconst safeSrc = exports.safeSrc = [];\n\t\tconst t = exports.t = {};\n\t\tlet R = 0;\n\n\t\tconst LETTERDASHNUMBER = '[a-zA-Z0-9-]';\n\n\t\t// Replace some greedy regex tokens to prevent regex dos issues. These regex are\n\t\t// used internally via the safeRe object since all inputs in this library get\n\t\t// normalized first to trim and collapse all extra whitespace. The original\n\t\t// regexes are exported for userland consumption and lower level usage. A\n\t\t// future breaking change could export the safer regex only with a note that\n\t\t// all input should have extra whitespace removed.\n\t\tconst safeRegexReplacements = [\n\t\t  ['\\\\s', 1],\n\t\t  ['\\\\d', MAX_LENGTH],\n\t\t  [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH],\n\t\t];\n\n\t\tconst makeSafeRegex = (value) => {\n\t\t  for (const [token, max] of safeRegexReplacements) {\n\t\t    value = value\n\t\t      .split(`${token}*`).join(`${token}{0,${max}}`)\n\t\t      .split(`${token}+`).join(`${token}{1,${max}}`);\n\t\t  }\n\t\t  return value\n\t\t};\n\n\t\tconst createToken = (name, value, isGlobal) => {\n\t\t  const safe = makeSafeRegex(value);\n\t\t  const index = R++;\n\t\t  debug(name, index, value);\n\t\t  t[name] = index;\n\t\t  src[index] = value;\n\t\t  safeSrc[index] = safe;\n\t\t  re[index] = new RegExp(value, isGlobal ? 'g' : undefined);\n\t\t  safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined);\n\t\t};\n\n\t\t// The following Regular Expressions can be used for tokenizing,\n\t\t// validating, and parsing SemVer version strings.\n\n\t\t// ## Numeric Identifier\n\t\t// A single `0`, or a non-zero digit followed by zero or more digits.\n\n\t\tcreateToken('NUMERICIDENTIFIER', '0|[1-9]\\\\d*');\n\t\tcreateToken('NUMERICIDENTIFIERLOOSE', '\\\\d+');\n\n\t\t// ## Non-numeric Identifier\n\t\t// Zero or more digits, followed by a letter or hyphen, and then zero or\n\t\t// more letters, digits, or hyphens.\n\n\t\tcreateToken('NONNUMERICIDENTIFIER', `\\\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`);\n\n\t\t// ## Main Version\n\t\t// Three dot-separated numeric identifiers.\n\n\t\tcreateToken('MAINVERSION', `(${src[t.NUMERICIDENTIFIER]})\\\\.` +\n\t\t                   `(${src[t.NUMERICIDENTIFIER]})\\\\.` +\n\t\t                   `(${src[t.NUMERICIDENTIFIER]})`);\n\n\t\tcreateToken('MAINVERSIONLOOSE', `(${src[t.NUMERICIDENTIFIERLOOSE]})\\\\.` +\n\t\t                        `(${src[t.NUMERICIDENTIFIERLOOSE]})\\\\.` +\n\t\t                        `(${src[t.NUMERICIDENTIFIERLOOSE]})`);\n\n\t\t// ## Pre-release Version Identifier\n\t\t// A numeric identifier, or a non-numeric identifier.\n\t\t// Non-numberic identifiers include numberic identifiers but can be longer.\n\t\t// Therefore non-numberic identifiers must go first.\n\n\t\tcreateToken('PRERELEASEIDENTIFIER', `(?:${src[t.NONNUMERICIDENTIFIER]\n\t\t}|${src[t.NUMERICIDENTIFIER]})`);\n\n\t\tcreateToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NONNUMERICIDENTIFIER]\n\t\t}|${src[t.NUMERICIDENTIFIERLOOSE]})`);\n\n\t\t// ## Pre-release Version\n\t\t// Hyphen, followed by one or more dot-separated pre-release version\n\t\t// identifiers.\n\n\t\tcreateToken('PRERELEASE', `(?:-(${src[t.PRERELEASEIDENTIFIER]\n\t\t}(?:\\\\.${src[t.PRERELEASEIDENTIFIER]})*))`);\n\n\t\tcreateToken('PRERELEASELOOSE', `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]\n\t\t}(?:\\\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`);\n\n\t\t// ## Build Metadata Identifier\n\t\t// Any combination of digits, letters, or hyphens.\n\n\t\tcreateToken('BUILDIDENTIFIER', `${LETTERDASHNUMBER}+`);\n\n\t\t// ## Build Metadata\n\t\t// Plus sign, followed by one or more period-separated build metadata\n\t\t// identifiers.\n\n\t\tcreateToken('BUILD', `(?:\\\\+(${src[t.BUILDIDENTIFIER]\n\t\t}(?:\\\\.${src[t.BUILDIDENTIFIER]})*))`);\n\n\t\t// ## Full Version String\n\t\t// A main version, followed optionally by a pre-release version and\n\t\t// build metadata.\n\n\t\t// Note that the only major, minor, patch, and pre-release sections of\n\t\t// the version string are capturing groups.  The build metadata is not a\n\t\t// capturing group, because it should not ever be used in version\n\t\t// comparison.\n\n\t\tcreateToken('FULLPLAIN', `v?${src[t.MAINVERSION]\n\t\t}${src[t.PRERELEASE]}?${\n\t\t  src[t.BUILD]}?`);\n\n\t\tcreateToken('FULL', `^${src[t.FULLPLAIN]}$`);\n\n\t\t// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n\t\t// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n\t\t// common in the npm registry.\n\t\tcreateToken('LOOSEPLAIN', `[v=\\\\s]*${src[t.MAINVERSIONLOOSE]\n\t\t}${src[t.PRERELEASELOOSE]}?${\n\t\t  src[t.BUILD]}?`);\n\n\t\tcreateToken('LOOSE', `^${src[t.LOOSEPLAIN]}$`);\n\n\t\tcreateToken('GTLT', '((?:<|>)?=?)');\n\n\t\t// Something like \"2.*\" or \"1.2.x\".\n\t\t// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n\t\t// Only the first item is strictly required.\n\t\tcreateToken('XRANGEIDENTIFIERLOOSE', `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\\\*`);\n\t\tcreateToken('XRANGEIDENTIFIER', `${src[t.NUMERICIDENTIFIER]}|x|X|\\\\*`);\n\n\t\tcreateToken('XRANGEPLAIN', `[v=\\\\s]*(${src[t.XRANGEIDENTIFIER]})` +\n\t\t                   `(?:\\\\.(${src[t.XRANGEIDENTIFIER]})` +\n\t\t                   `(?:\\\\.(${src[t.XRANGEIDENTIFIER]})` +\n\t\t                   `(?:${src[t.PRERELEASE]})?${\n\t\t                     src[t.BUILD]}?` +\n\t\t                   `)?)?`);\n\n\t\tcreateToken('XRANGEPLAINLOOSE', `[v=\\\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n\t\t                        `(?:\\\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n\t\t                        `(?:\\\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n\t\t                        `(?:${src[t.PRERELEASELOOSE]})?${\n\t\t                          src[t.BUILD]}?` +\n\t\t                        `)?)?`);\n\n\t\tcreateToken('XRANGE', `^${src[t.GTLT]}\\\\s*${src[t.XRANGEPLAIN]}$`);\n\t\tcreateToken('XRANGELOOSE', `^${src[t.GTLT]}\\\\s*${src[t.XRANGEPLAINLOOSE]}$`);\n\n\t\t// Coercion.\n\t\t// Extract anything that could conceivably be a part of a valid semver\n\t\tcreateToken('COERCEPLAIN', `${'(^|[^\\\\d])' +\n\t\t              '(\\\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` +\n\t\t              `(?:\\\\.(\\\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` +\n\t\t              `(?:\\\\.(\\\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`);\n\t\tcreateToken('COERCE', `${src[t.COERCEPLAIN]}(?:$|[^\\\\d])`);\n\t\tcreateToken('COERCEFULL', src[t.COERCEPLAIN] +\n\t\t              `(?:${src[t.PRERELEASE]})?` +\n\t\t              `(?:${src[t.BUILD]})?` +\n\t\t              `(?:$|[^\\\\d])`);\n\t\tcreateToken('COERCERTL', src[t.COERCE], true);\n\t\tcreateToken('COERCERTLFULL', src[t.COERCEFULL], true);\n\n\t\t// Tilde ranges.\n\t\t// Meaning is \"reasonably at or greater than\"\n\t\tcreateToken('LONETILDE', '(?:~>?)');\n\n\t\tcreateToken('TILDETRIM', `(\\\\s*)${src[t.LONETILDE]}\\\\s+`, true);\n\t\texports.tildeTrimReplace = '$1~';\n\n\t\tcreateToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`);\n\t\tcreateToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`);\n\n\t\t// Caret ranges.\n\t\t// Meaning is \"at least and backwards compatible with\"\n\t\tcreateToken('LONECARET', '(?:\\\\^)');\n\n\t\tcreateToken('CARETTRIM', `(\\\\s*)${src[t.LONECARET]}\\\\s+`, true);\n\t\texports.caretTrimReplace = '$1^';\n\n\t\tcreateToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`);\n\t\tcreateToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`);\n\n\t\t// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\n\t\tcreateToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\\\s*(${src[t.LOOSEPLAIN]})$|^$`);\n\t\tcreateToken('COMPARATOR', `^${src[t.GTLT]}\\\\s*(${src[t.FULLPLAIN]})$|^$`);\n\n\t\t// An expression to strip any whitespace between the gtlt and the thing\n\t\t// it modifies, so that `> 1.2.3` ==> `>1.2.3`\n\t\tcreateToken('COMPARATORTRIM', `(\\\\s*)${src[t.GTLT]\n\t\t}\\\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true);\n\t\texports.comparatorTrimReplace = '$1$2$3';\n\n\t\t// Something like `1.2.3 - 1.2.4`\n\t\t// Note that these all use the loose form, because they'll be\n\t\t// checked against either the strict or loose comparator form\n\t\t// later.\n\t\tcreateToken('HYPHENRANGE', `^\\\\s*(${src[t.XRANGEPLAIN]})` +\n\t\t                   `\\\\s+-\\\\s+` +\n\t\t                   `(${src[t.XRANGEPLAIN]})` +\n\t\t                   `\\\\s*$`);\n\n\t\tcreateToken('HYPHENRANGELOOSE', `^\\\\s*(${src[t.XRANGEPLAINLOOSE]})` +\n\t\t                        `\\\\s+-\\\\s+` +\n\t\t                        `(${src[t.XRANGEPLAINLOOSE]})` +\n\t\t                        `\\\\s*$`);\n\n\t\t// Star ranges basically just allow anything at all.\n\t\tcreateToken('STAR', '(<|>)?=?\\\\s*\\\\*');\n\t\t// >=0.0.0 is like a star\n\t\tcreateToken('GTE0', '^\\\\s*>=\\\\s*0\\\\.0\\\\.0\\\\s*$');\n\t\tcreateToken('GTE0PRE', '^\\\\s*>=\\\\s*0\\\\.0\\\\.0-0\\\\s*$'); \n\t} (re, re.exports));\n\treturn re.exports;\n}\n\nvar parseOptions_1;\nvar hasRequiredParseOptions;\n\nfunction requireParseOptions () {\n\tif (hasRequiredParseOptions) return parseOptions_1;\n\thasRequiredParseOptions = 1;\n\n\t// parse out just the options we care about\n\tconst looseOption = Object.freeze({ loose: true });\n\tconst emptyOpts = Object.freeze({ });\n\tconst parseOptions = options => {\n\t  if (!options) {\n\t    return emptyOpts\n\t  }\n\n\t  if (typeof options !== 'object') {\n\t    return looseOption\n\t  }\n\n\t  return options\n\t};\n\tparseOptions_1 = parseOptions;\n\treturn parseOptions_1;\n}\n\nvar identifiers;\nvar hasRequiredIdentifiers;\n\nfunction requireIdentifiers () {\n\tif (hasRequiredIdentifiers) return identifiers;\n\thasRequiredIdentifiers = 1;\n\n\tconst numeric = /^[0-9]+$/;\n\tconst compareIdentifiers = (a, b) => {\n\t  const anum = numeric.test(a);\n\t  const bnum = numeric.test(b);\n\n\t  if (anum && bnum) {\n\t    a = +a;\n\t    b = +b;\n\t  }\n\n\t  return a === b ? 0\n\t    : (anum && !bnum) ? -1\n\t    : (bnum && !anum) ? 1\n\t    : a < b ? -1\n\t    : 1\n\t};\n\n\tconst rcompareIdentifiers = (a, b) => compareIdentifiers(b, a);\n\n\tidentifiers = {\n\t  compareIdentifiers,\n\t  rcompareIdentifiers,\n\t};\n\treturn identifiers;\n}\n\nvar semver$1;\nvar hasRequiredSemver$1;\n\nfunction requireSemver$1 () {\n\tif (hasRequiredSemver$1) return semver$1;\n\thasRequiredSemver$1 = 1;\n\n\tconst debug = requireDebug();\n\tconst { MAX_LENGTH, MAX_SAFE_INTEGER } = requireConstants$2();\n\tconst { safeRe: re, t } = requireRe();\n\n\tconst parseOptions = requireParseOptions();\n\tconst { compareIdentifiers } = requireIdentifiers();\n\tclass SemVer {\n\t  constructor (version, options) {\n\t    options = parseOptions(options);\n\n\t    if (version instanceof SemVer) {\n\t      if (version.loose === !!options.loose &&\n\t        version.includePrerelease === !!options.includePrerelease) {\n\t        return version\n\t      } else {\n\t        version = version.version;\n\t      }\n\t    } else if (typeof version !== 'string') {\n\t      throw new TypeError(`Invalid version. Must be a string. Got type \"${typeof version}\".`)\n\t    }\n\n\t    if (version.length > MAX_LENGTH) {\n\t      throw new TypeError(\n\t        `version is longer than ${MAX_LENGTH} characters`\n\t      )\n\t    }\n\n\t    debug('SemVer', version, options);\n\t    this.options = options;\n\t    this.loose = !!options.loose;\n\t    // this isn't actually relevant for versions, but keep it so that we\n\t    // don't run into trouble passing this.options around.\n\t    this.includePrerelease = !!options.includePrerelease;\n\n\t    const m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL]);\n\n\t    if (!m) {\n\t      throw new TypeError(`Invalid Version: ${version}`)\n\t    }\n\n\t    this.raw = version;\n\n\t    // these are actually numbers\n\t    this.major = +m[1];\n\t    this.minor = +m[2];\n\t    this.patch = +m[3];\n\n\t    if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n\t      throw new TypeError('Invalid major version')\n\t    }\n\n\t    if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n\t      throw new TypeError('Invalid minor version')\n\t    }\n\n\t    if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n\t      throw new TypeError('Invalid patch version')\n\t    }\n\n\t    // numberify any prerelease numeric ids\n\t    if (!m[4]) {\n\t      this.prerelease = [];\n\t    } else {\n\t      this.prerelease = m[4].split('.').map((id) => {\n\t        if (/^[0-9]+$/.test(id)) {\n\t          const num = +id;\n\t          if (num >= 0 && num < MAX_SAFE_INTEGER) {\n\t            return num\n\t          }\n\t        }\n\t        return id\n\t      });\n\t    }\n\n\t    this.build = m[5] ? m[5].split('.') : [];\n\t    this.format();\n\t  }\n\n\t  format () {\n\t    this.version = `${this.major}.${this.minor}.${this.patch}`;\n\t    if (this.prerelease.length) {\n\t      this.version += `-${this.prerelease.join('.')}`;\n\t    }\n\t    return this.version\n\t  }\n\n\t  toString () {\n\t    return this.version\n\t  }\n\n\t  compare (other) {\n\t    debug('SemVer.compare', this.version, this.options, other);\n\t    if (!(other instanceof SemVer)) {\n\t      if (typeof other === 'string' && other === this.version) {\n\t        return 0\n\t      }\n\t      other = new SemVer(other, this.options);\n\t    }\n\n\t    if (other.version === this.version) {\n\t      return 0\n\t    }\n\n\t    return this.compareMain(other) || this.comparePre(other)\n\t  }\n\n\t  compareMain (other) {\n\t    if (!(other instanceof SemVer)) {\n\t      other = new SemVer(other, this.options);\n\t    }\n\n\t    return (\n\t      compareIdentifiers(this.major, other.major) ||\n\t      compareIdentifiers(this.minor, other.minor) ||\n\t      compareIdentifiers(this.patch, other.patch)\n\t    )\n\t  }\n\n\t  comparePre (other) {\n\t    if (!(other instanceof SemVer)) {\n\t      other = new SemVer(other, this.options);\n\t    }\n\n\t    // NOT having a prerelease is > having one\n\t    if (this.prerelease.length && !other.prerelease.length) {\n\t      return -1\n\t    } else if (!this.prerelease.length && other.prerelease.length) {\n\t      return 1\n\t    } else if (!this.prerelease.length && !other.prerelease.length) {\n\t      return 0\n\t    }\n\n\t    let i = 0;\n\t    do {\n\t      const a = this.prerelease[i];\n\t      const b = other.prerelease[i];\n\t      debug('prerelease compare', i, a, b);\n\t      if (a === undefined && b === undefined) {\n\t        return 0\n\t      } else if (b === undefined) {\n\t        return 1\n\t      } else if (a === undefined) {\n\t        return -1\n\t      } else if (a === b) {\n\t        continue\n\t      } else {\n\t        return compareIdentifiers(a, b)\n\t      }\n\t    } while (++i)\n\t  }\n\n\t  compareBuild (other) {\n\t    if (!(other instanceof SemVer)) {\n\t      other = new SemVer(other, this.options);\n\t    }\n\n\t    let i = 0;\n\t    do {\n\t      const a = this.build[i];\n\t      const b = other.build[i];\n\t      debug('build compare', i, a, b);\n\t      if (a === undefined && b === undefined) {\n\t        return 0\n\t      } else if (b === undefined) {\n\t        return 1\n\t      } else if (a === undefined) {\n\t        return -1\n\t      } else if (a === b) {\n\t        continue\n\t      } else {\n\t        return compareIdentifiers(a, b)\n\t      }\n\t    } while (++i)\n\t  }\n\n\t  // preminor will bump the version up to the next minor release, and immediately\n\t  // down to pre-release. premajor and prepatch work the same way.\n\t  inc (release, identifier, identifierBase) {\n\t    if (release.startsWith('pre')) {\n\t      if (!identifier && identifierBase === false) {\n\t        throw new Error('invalid increment argument: identifier is empty')\n\t      }\n\t      // Avoid an invalid semver results\n\t      if (identifier) {\n\t        const match = `-${identifier}`.match(this.options.loose ? re[t.PRERELEASELOOSE] : re[t.PRERELEASE]);\n\t        if (!match || match[1] !== identifier) {\n\t          throw new Error(`invalid identifier: ${identifier}`)\n\t        }\n\t      }\n\t    }\n\n\t    switch (release) {\n\t      case 'premajor':\n\t        this.prerelease.length = 0;\n\t        this.patch = 0;\n\t        this.minor = 0;\n\t        this.major++;\n\t        this.inc('pre', identifier, identifierBase);\n\t        break\n\t      case 'preminor':\n\t        this.prerelease.length = 0;\n\t        this.patch = 0;\n\t        this.minor++;\n\t        this.inc('pre', identifier, identifierBase);\n\t        break\n\t      case 'prepatch':\n\t        // If this is already a prerelease, it will bump to the next version\n\t        // drop any prereleases that might already exist, since they are not\n\t        // relevant at this point.\n\t        this.prerelease.length = 0;\n\t        this.inc('patch', identifier, identifierBase);\n\t        this.inc('pre', identifier, identifierBase);\n\t        break\n\t      // If the input is a non-prerelease version, this acts the same as\n\t      // prepatch.\n\t      case 'prerelease':\n\t        if (this.prerelease.length === 0) {\n\t          this.inc('patch', identifier, identifierBase);\n\t        }\n\t        this.inc('pre', identifier, identifierBase);\n\t        break\n\t      case 'release':\n\t        if (this.prerelease.length === 0) {\n\t          throw new Error(`version ${this.raw} is not a prerelease`)\n\t        }\n\t        this.prerelease.length = 0;\n\t        break\n\n\t      case 'major':\n\t        // If this is a pre-major version, bump up to the same major version.\n\t        // Otherwise increment major.\n\t        // 1.0.0-5 bumps to 1.0.0\n\t        // 1.1.0 bumps to 2.0.0\n\t        if (\n\t          this.minor !== 0 ||\n\t          this.patch !== 0 ||\n\t          this.prerelease.length === 0\n\t        ) {\n\t          this.major++;\n\t        }\n\t        this.minor = 0;\n\t        this.patch = 0;\n\t        this.prerelease = [];\n\t        break\n\t      case 'minor':\n\t        // If this is a pre-minor version, bump up to the same minor version.\n\t        // Otherwise increment minor.\n\t        // 1.2.0-5 bumps to 1.2.0\n\t        // 1.2.1 bumps to 1.3.0\n\t        if (this.patch !== 0 || this.prerelease.length === 0) {\n\t          this.minor++;\n\t        }\n\t        this.patch = 0;\n\t        this.prerelease = [];\n\t        break\n\t      case 'patch':\n\t        // If this is not a pre-release version, it will increment the patch.\n\t        // If it is a pre-release it will bump up to the same patch version.\n\t        // 1.2.0-5 patches to 1.2.0\n\t        // 1.2.0 patches to 1.2.1\n\t        if (this.prerelease.length === 0) {\n\t          this.patch++;\n\t        }\n\t        this.prerelease = [];\n\t        break\n\t      // This probably shouldn't be used publicly.\n\t      // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.\n\t      case 'pre': {\n\t        const base = Number(identifierBase) ? 1 : 0;\n\n\t        if (this.prerelease.length === 0) {\n\t          this.prerelease = [base];\n\t        } else {\n\t          let i = this.prerelease.length;\n\t          while (--i >= 0) {\n\t            if (typeof this.prerelease[i] === 'number') {\n\t              this.prerelease[i]++;\n\t              i = -2;\n\t            }\n\t          }\n\t          if (i === -1) {\n\t            // didn't increment anything\n\t            if (identifier === this.prerelease.join('.') && identifierBase === false) {\n\t              throw new Error('invalid increment argument: identifier already exists')\n\t            }\n\t            this.prerelease.push(base);\n\t          }\n\t        }\n\t        if (identifier) {\n\t          // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n\t          // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n\t          let prerelease = [identifier, base];\n\t          if (identifierBase === false) {\n\t            prerelease = [identifier];\n\t          }\n\t          if (compareIdentifiers(this.prerelease[0], identifier) === 0) {\n\t            if (isNaN(this.prerelease[1])) {\n\t              this.prerelease = prerelease;\n\t            }\n\t          } else {\n\t            this.prerelease = prerelease;\n\t          }\n\t        }\n\t        break\n\t      }\n\t      default:\n\t        throw new Error(`invalid increment argument: ${release}`)\n\t    }\n\t    this.raw = this.format();\n\t    if (this.build.length) {\n\t      this.raw += `+${this.build.join('.')}`;\n\t    }\n\t    return this\n\t  }\n\t}\n\n\tsemver$1 = SemVer;\n\treturn semver$1;\n}\n\nvar parse_1;\nvar hasRequiredParse;\n\nfunction requireParse () {\n\tif (hasRequiredParse) return parse_1;\n\thasRequiredParse = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst parse = (version, options, throwErrors = false) => {\n\t  if (version instanceof SemVer) {\n\t    return version\n\t  }\n\t  try {\n\t    return new SemVer(version, options)\n\t  } catch (er) {\n\t    if (!throwErrors) {\n\t      return null\n\t    }\n\t    throw er\n\t  }\n\t};\n\n\tparse_1 = parse;\n\treturn parse_1;\n}\n\nvar valid_1;\nvar hasRequiredValid$1;\n\nfunction requireValid$1 () {\n\tif (hasRequiredValid$1) return valid_1;\n\thasRequiredValid$1 = 1;\n\n\tconst parse = requireParse();\n\tconst valid = (version, options) => {\n\t  const v = parse(version, options);\n\t  return v ? v.version : null\n\t};\n\tvalid_1 = valid;\n\treturn valid_1;\n}\n\nvar clean_1;\nvar hasRequiredClean;\n\nfunction requireClean () {\n\tif (hasRequiredClean) return clean_1;\n\thasRequiredClean = 1;\n\n\tconst parse = requireParse();\n\tconst clean = (version, options) => {\n\t  const s = parse(version.trim().replace(/^[=v]+/, ''), options);\n\t  return s ? s.version : null\n\t};\n\tclean_1 = clean;\n\treturn clean_1;\n}\n\nvar inc_1;\nvar hasRequiredInc;\n\nfunction requireInc () {\n\tif (hasRequiredInc) return inc_1;\n\thasRequiredInc = 1;\n\n\tconst SemVer = requireSemver$1();\n\n\tconst inc = (version, release, options, identifier, identifierBase) => {\n\t  if (typeof (options) === 'string') {\n\t    identifierBase = identifier;\n\t    identifier = options;\n\t    options = undefined;\n\t  }\n\n\t  try {\n\t    return new SemVer(\n\t      version instanceof SemVer ? version.version : version,\n\t      options\n\t    ).inc(release, identifier, identifierBase).version\n\t  } catch (er) {\n\t    return null\n\t  }\n\t};\n\tinc_1 = inc;\n\treturn inc_1;\n}\n\nvar diff_1;\nvar hasRequiredDiff;\n\nfunction requireDiff () {\n\tif (hasRequiredDiff) return diff_1;\n\thasRequiredDiff = 1;\n\n\tconst parse = requireParse();\n\n\tconst diff = (version1, version2) => {\n\t  const v1 = parse(version1, null, true);\n\t  const v2 = parse(version2, null, true);\n\t  const comparison = v1.compare(v2);\n\n\t  if (comparison === 0) {\n\t    return null\n\t  }\n\n\t  const v1Higher = comparison > 0;\n\t  const highVersion = v1Higher ? v1 : v2;\n\t  const lowVersion = v1Higher ? v2 : v1;\n\t  const highHasPre = !!highVersion.prerelease.length;\n\t  const lowHasPre = !!lowVersion.prerelease.length;\n\n\t  if (lowHasPre && !highHasPre) {\n\t    // Going from prerelease -> no prerelease requires some special casing\n\n\t    // If the low version has only a major, then it will always be a major\n\t    // Some examples:\n\t    // 1.0.0-1 -> 1.0.0\n\t    // 1.0.0-1 -> 1.1.1\n\t    // 1.0.0-1 -> 2.0.0\n\t    if (!lowVersion.patch && !lowVersion.minor) {\n\t      return 'major'\n\t    }\n\n\t    // If the main part has no difference\n\t    if (lowVersion.compareMain(highVersion) === 0) {\n\t      if (lowVersion.minor && !lowVersion.patch) {\n\t        return 'minor'\n\t      }\n\t      return 'patch'\n\t    }\n\t  }\n\n\t  // add the `pre` prefix if we are going to a prerelease version\n\t  const prefix = highHasPre ? 'pre' : '';\n\n\t  if (v1.major !== v2.major) {\n\t    return prefix + 'major'\n\t  }\n\n\t  if (v1.minor !== v2.minor) {\n\t    return prefix + 'minor'\n\t  }\n\n\t  if (v1.patch !== v2.patch) {\n\t    return prefix + 'patch'\n\t  }\n\n\t  // high and low are preleases\n\t  return 'prerelease'\n\t};\n\n\tdiff_1 = diff;\n\treturn diff_1;\n}\n\nvar major_1;\nvar hasRequiredMajor;\n\nfunction requireMajor () {\n\tif (hasRequiredMajor) return major_1;\n\thasRequiredMajor = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst major = (a, loose) => new SemVer(a, loose).major;\n\tmajor_1 = major;\n\treturn major_1;\n}\n\nvar minor_1;\nvar hasRequiredMinor;\n\nfunction requireMinor () {\n\tif (hasRequiredMinor) return minor_1;\n\thasRequiredMinor = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst minor = (a, loose) => new SemVer(a, loose).minor;\n\tminor_1 = minor;\n\treturn minor_1;\n}\n\nvar patch_1;\nvar hasRequiredPatch;\n\nfunction requirePatch () {\n\tif (hasRequiredPatch) return patch_1;\n\thasRequiredPatch = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst patch = (a, loose) => new SemVer(a, loose).patch;\n\tpatch_1 = patch;\n\treturn patch_1;\n}\n\nvar prerelease_1;\nvar hasRequiredPrerelease;\n\nfunction requirePrerelease () {\n\tif (hasRequiredPrerelease) return prerelease_1;\n\thasRequiredPrerelease = 1;\n\n\tconst parse = requireParse();\n\tconst prerelease = (version, options) => {\n\t  const parsed = parse(version, options);\n\t  return (parsed && parsed.prerelease.length) ? parsed.prerelease : null\n\t};\n\tprerelease_1 = prerelease;\n\treturn prerelease_1;\n}\n\nvar compare_1;\nvar hasRequiredCompare;\n\nfunction requireCompare () {\n\tif (hasRequiredCompare) return compare_1;\n\thasRequiredCompare = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst compare = (a, b, loose) =>\n\t  new SemVer(a, loose).compare(new SemVer(b, loose));\n\n\tcompare_1 = compare;\n\treturn compare_1;\n}\n\nvar rcompare_1;\nvar hasRequiredRcompare;\n\nfunction requireRcompare () {\n\tif (hasRequiredRcompare) return rcompare_1;\n\thasRequiredRcompare = 1;\n\n\tconst compare = requireCompare();\n\tconst rcompare = (a, b, loose) => compare(b, a, loose);\n\trcompare_1 = rcompare;\n\treturn rcompare_1;\n}\n\nvar compareLoose_1;\nvar hasRequiredCompareLoose;\n\nfunction requireCompareLoose () {\n\tif (hasRequiredCompareLoose) return compareLoose_1;\n\thasRequiredCompareLoose = 1;\n\n\tconst compare = requireCompare();\n\tconst compareLoose = (a, b) => compare(a, b, true);\n\tcompareLoose_1 = compareLoose;\n\treturn compareLoose_1;\n}\n\nvar compareBuild_1;\nvar hasRequiredCompareBuild;\n\nfunction requireCompareBuild () {\n\tif (hasRequiredCompareBuild) return compareBuild_1;\n\thasRequiredCompareBuild = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst compareBuild = (a, b, loose) => {\n\t  const versionA = new SemVer(a, loose);\n\t  const versionB = new SemVer(b, loose);\n\t  return versionA.compare(versionB) || versionA.compareBuild(versionB)\n\t};\n\tcompareBuild_1 = compareBuild;\n\treturn compareBuild_1;\n}\n\nvar sort_1;\nvar hasRequiredSort;\n\nfunction requireSort () {\n\tif (hasRequiredSort) return sort_1;\n\thasRequiredSort = 1;\n\n\tconst compareBuild = requireCompareBuild();\n\tconst sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));\n\tsort_1 = sort;\n\treturn sort_1;\n}\n\nvar rsort_1;\nvar hasRequiredRsort;\n\nfunction requireRsort () {\n\tif (hasRequiredRsort) return rsort_1;\n\thasRequiredRsort = 1;\n\n\tconst compareBuild = requireCompareBuild();\n\tconst rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));\n\trsort_1 = rsort;\n\treturn rsort_1;\n}\n\nvar gt_1;\nvar hasRequiredGt;\n\nfunction requireGt () {\n\tif (hasRequiredGt) return gt_1;\n\thasRequiredGt = 1;\n\n\tconst compare = requireCompare();\n\tconst gt = (a, b, loose) => compare(a, b, loose) > 0;\n\tgt_1 = gt;\n\treturn gt_1;\n}\n\nvar lt_1;\nvar hasRequiredLt;\n\nfunction requireLt () {\n\tif (hasRequiredLt) return lt_1;\n\thasRequiredLt = 1;\n\n\tconst compare = requireCompare();\n\tconst lt = (a, b, loose) => compare(a, b, loose) < 0;\n\tlt_1 = lt;\n\treturn lt_1;\n}\n\nvar eq_1$1;\nvar hasRequiredEq$1;\n\nfunction requireEq$1 () {\n\tif (hasRequiredEq$1) return eq_1$1;\n\thasRequiredEq$1 = 1;\n\n\tconst compare = requireCompare();\n\tconst eq = (a, b, loose) => compare(a, b, loose) === 0;\n\teq_1$1 = eq;\n\treturn eq_1$1;\n}\n\nvar neq_1;\nvar hasRequiredNeq;\n\nfunction requireNeq () {\n\tif (hasRequiredNeq) return neq_1;\n\thasRequiredNeq = 1;\n\n\tconst compare = requireCompare();\n\tconst neq = (a, b, loose) => compare(a, b, loose) !== 0;\n\tneq_1 = neq;\n\treturn neq_1;\n}\n\nvar gte_1;\nvar hasRequiredGte;\n\nfunction requireGte () {\n\tif (hasRequiredGte) return gte_1;\n\thasRequiredGte = 1;\n\n\tconst compare = requireCompare();\n\tconst gte = (a, b, loose) => compare(a, b, loose) >= 0;\n\tgte_1 = gte;\n\treturn gte_1;\n}\n\nvar lte_1;\nvar hasRequiredLte;\n\nfunction requireLte () {\n\tif (hasRequiredLte) return lte_1;\n\thasRequiredLte = 1;\n\n\tconst compare = requireCompare();\n\tconst lte = (a, b, loose) => compare(a, b, loose) <= 0;\n\tlte_1 = lte;\n\treturn lte_1;\n}\n\nvar cmp_1;\nvar hasRequiredCmp;\n\nfunction requireCmp () {\n\tif (hasRequiredCmp) return cmp_1;\n\thasRequiredCmp = 1;\n\n\tconst eq = requireEq$1();\n\tconst neq = requireNeq();\n\tconst gt = requireGt();\n\tconst gte = requireGte();\n\tconst lt = requireLt();\n\tconst lte = requireLte();\n\n\tconst cmp = (a, op, b, loose) => {\n\t  switch (op) {\n\t    case '===':\n\t      if (typeof a === 'object') {\n\t        a = a.version;\n\t      }\n\t      if (typeof b === 'object') {\n\t        b = b.version;\n\t      }\n\t      return a === b\n\n\t    case '!==':\n\t      if (typeof a === 'object') {\n\t        a = a.version;\n\t      }\n\t      if (typeof b === 'object') {\n\t        b = b.version;\n\t      }\n\t      return a !== b\n\n\t    case '':\n\t    case '=':\n\t    case '==':\n\t      return eq(a, b, loose)\n\n\t    case '!=':\n\t      return neq(a, b, loose)\n\n\t    case '>':\n\t      return gt(a, b, loose)\n\n\t    case '>=':\n\t      return gte(a, b, loose)\n\n\t    case '<':\n\t      return lt(a, b, loose)\n\n\t    case '<=':\n\t      return lte(a, b, loose)\n\n\t    default:\n\t      throw new TypeError(`Invalid operator: ${op}`)\n\t  }\n\t};\n\tcmp_1 = cmp;\n\treturn cmp_1;\n}\n\nvar coerce_1;\nvar hasRequiredCoerce;\n\nfunction requireCoerce () {\n\tif (hasRequiredCoerce) return coerce_1;\n\thasRequiredCoerce = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst parse = requireParse();\n\tconst { safeRe: re, t } = requireRe();\n\n\tconst coerce = (version, options) => {\n\t  if (version instanceof SemVer) {\n\t    return version\n\t  }\n\n\t  if (typeof version === 'number') {\n\t    version = String(version);\n\t  }\n\n\t  if (typeof version !== 'string') {\n\t    return null\n\t  }\n\n\t  options = options || {};\n\n\t  let match = null;\n\t  if (!options.rtl) {\n\t    match = version.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE]);\n\t  } else {\n\t    // Find the right-most coercible string that does not share\n\t    // a terminus with a more left-ward coercible string.\n\t    // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'\n\t    // With includePrerelease option set, '1.2.3.4-rc' wants to coerce '2.3.4-rc', not '2.3.4'\n\t    //\n\t    // Walk through the string checking with a /g regexp\n\t    // Manually set the index so as to pick up overlapping matches.\n\t    // Stop when we get a match that ends at the string end, since no\n\t    // coercible string can be more right-ward without the same terminus.\n\t    const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL];\n\t    let next;\n\t    while ((next = coerceRtlRegex.exec(version)) &&\n\t        (!match || match.index + match[0].length !== version.length)\n\t    ) {\n\t      if (!match ||\n\t            next.index + next[0].length !== match.index + match[0].length) {\n\t        match = next;\n\t      }\n\t      coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length;\n\t    }\n\t    // leave it in a clean state\n\t    coerceRtlRegex.lastIndex = -1;\n\t  }\n\n\t  if (match === null) {\n\t    return null\n\t  }\n\n\t  const major = match[2];\n\t  const minor = match[3] || '0';\n\t  const patch = match[4] || '0';\n\t  const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : '';\n\t  const build = options.includePrerelease && match[6] ? `+${match[6]}` : '';\n\n\t  return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options)\n\t};\n\tcoerce_1 = coerce;\n\treturn coerce_1;\n}\n\nvar lrucache;\nvar hasRequiredLrucache;\n\nfunction requireLrucache () {\n\tif (hasRequiredLrucache) return lrucache;\n\thasRequiredLrucache = 1;\n\n\tclass LRUCache {\n\t  constructor () {\n\t    this.max = 1000;\n\t    this.map = new Map();\n\t  }\n\n\t  get (key) {\n\t    const value = this.map.get(key);\n\t    if (value === undefined) {\n\t      return undefined\n\t    } else {\n\t      // Remove the key from the map and add it to the end\n\t      this.map.delete(key);\n\t      this.map.set(key, value);\n\t      return value\n\t    }\n\t  }\n\n\t  delete (key) {\n\t    return this.map.delete(key)\n\t  }\n\n\t  set (key, value) {\n\t    const deleted = this.delete(key);\n\n\t    if (!deleted && value !== undefined) {\n\t      // If cache is full, delete the least recently used item\n\t      if (this.map.size >= this.max) {\n\t        const firstKey = this.map.keys().next().value;\n\t        this.delete(firstKey);\n\t      }\n\n\t      this.map.set(key, value);\n\t    }\n\n\t    return this\n\t  }\n\t}\n\n\tlrucache = LRUCache;\n\treturn lrucache;\n}\n\nvar range$1;\nvar hasRequiredRange;\n\nfunction requireRange () {\n\tif (hasRequiredRange) return range$1;\n\thasRequiredRange = 1;\n\n\tconst SPACE_CHARACTERS = /\\s+/g;\n\n\t// hoisted class for cyclic dependency\n\tclass Range {\n\t  constructor (range, options) {\n\t    options = parseOptions(options);\n\n\t    if (range instanceof Range) {\n\t      if (\n\t        range.loose === !!options.loose &&\n\t        range.includePrerelease === !!options.includePrerelease\n\t      ) {\n\t        return range\n\t      } else {\n\t        return new Range(range.raw, options)\n\t      }\n\t    }\n\n\t    if (range instanceof Comparator) {\n\t      // just put it in the set and return\n\t      this.raw = range.value;\n\t      this.set = [[range]];\n\t      this.formatted = undefined;\n\t      return this\n\t    }\n\n\t    this.options = options;\n\t    this.loose = !!options.loose;\n\t    this.includePrerelease = !!options.includePrerelease;\n\n\t    // First reduce all whitespace as much as possible so we do not have to rely\n\t    // on potentially slow regexes like \\s*. This is then stored and used for\n\t    // future error messages as well.\n\t    this.raw = range.trim().replace(SPACE_CHARACTERS, ' ');\n\n\t    // First, split on ||\n\t    this.set = this.raw\n\t      .split('||')\n\t      // map the range to a 2d array of comparators\n\t      .map(r => this.parseRange(r.trim()))\n\t      // throw out any comparator lists that are empty\n\t      // this generally means that it was not a valid range, which is allowed\n\t      // in loose mode, but will still throw if the WHOLE range is invalid.\n\t      .filter(c => c.length);\n\n\t    if (!this.set.length) {\n\t      throw new TypeError(`Invalid SemVer Range: ${this.raw}`)\n\t    }\n\n\t    // if we have any that are not the null set, throw out null sets.\n\t    if (this.set.length > 1) {\n\t      // keep the first one, in case they're all null sets\n\t      const first = this.set[0];\n\t      this.set = this.set.filter(c => !isNullSet(c[0]));\n\t      if (this.set.length === 0) {\n\t        this.set = [first];\n\t      } else if (this.set.length > 1) {\n\t        // if we have any that are *, then the range is just *\n\t        for (const c of this.set) {\n\t          if (c.length === 1 && isAny(c[0])) {\n\t            this.set = [c];\n\t            break\n\t          }\n\t        }\n\t      }\n\t    }\n\n\t    this.formatted = undefined;\n\t  }\n\n\t  get range () {\n\t    if (this.formatted === undefined) {\n\t      this.formatted = '';\n\t      for (let i = 0; i < this.set.length; i++) {\n\t        if (i > 0) {\n\t          this.formatted += '||';\n\t        }\n\t        const comps = this.set[i];\n\t        for (let k = 0; k < comps.length; k++) {\n\t          if (k > 0) {\n\t            this.formatted += ' ';\n\t          }\n\t          this.formatted += comps[k].toString().trim();\n\t        }\n\t      }\n\t    }\n\t    return this.formatted\n\t  }\n\n\t  format () {\n\t    return this.range\n\t  }\n\n\t  toString () {\n\t    return this.range\n\t  }\n\n\t  parseRange (range) {\n\t    // memoize range parsing for performance.\n\t    // this is a very hot path, and fully deterministic.\n\t    const memoOpts =\n\t      (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) |\n\t      (this.options.loose && FLAG_LOOSE);\n\t    const memoKey = memoOpts + ':' + range;\n\t    const cached = cache.get(memoKey);\n\t    if (cached) {\n\t      return cached\n\t    }\n\n\t    const loose = this.options.loose;\n\t    // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`\n\t    const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE];\n\t    range = range.replace(hr, hyphenReplace(this.options.includePrerelease));\n\t    debug('hyphen replace', range);\n\n\t    // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`\n\t    range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace);\n\t    debug('comparator trim', range);\n\n\t    // `~ 1.2.3` => `~1.2.3`\n\t    range = range.replace(re[t.TILDETRIM], tildeTrimReplace);\n\t    debug('tilde trim', range);\n\n\t    // `^ 1.2.3` => `^1.2.3`\n\t    range = range.replace(re[t.CARETTRIM], caretTrimReplace);\n\t    debug('caret trim', range);\n\n\t    // At this point, the range is completely trimmed and\n\t    // ready to be split into comparators.\n\n\t    let rangeList = range\n\t      .split(' ')\n\t      .map(comp => parseComparator(comp, this.options))\n\t      .join(' ')\n\t      .split(/\\s+/)\n\t      // >=0.0.0 is equivalent to *\n\t      .map(comp => replaceGTE0(comp, this.options));\n\n\t    if (loose) {\n\t      // in loose mode, throw out any that are not valid comparators\n\t      rangeList = rangeList.filter(comp => {\n\t        debug('loose invalid filter', comp, this.options);\n\t        return !!comp.match(re[t.COMPARATORLOOSE])\n\t      });\n\t    }\n\t    debug('range list', rangeList);\n\n\t    // if any comparators are the null set, then replace with JUST null set\n\t    // if more than one comparator, remove any * comparators\n\t    // also, don't include the same comparator more than once\n\t    const rangeMap = new Map();\n\t    const comparators = rangeList.map(comp => new Comparator(comp, this.options));\n\t    for (const comp of comparators) {\n\t      if (isNullSet(comp)) {\n\t        return [comp]\n\t      }\n\t      rangeMap.set(comp.value, comp);\n\t    }\n\t    if (rangeMap.size > 1 && rangeMap.has('')) {\n\t      rangeMap.delete('');\n\t    }\n\n\t    const result = [...rangeMap.values()];\n\t    cache.set(memoKey, result);\n\t    return result\n\t  }\n\n\t  intersects (range, options) {\n\t    if (!(range instanceof Range)) {\n\t      throw new TypeError('a Range is required')\n\t    }\n\n\t    return this.set.some((thisComparators) => {\n\t      return (\n\t        isSatisfiable(thisComparators, options) &&\n\t        range.set.some((rangeComparators) => {\n\t          return (\n\t            isSatisfiable(rangeComparators, options) &&\n\t            thisComparators.every((thisComparator) => {\n\t              return rangeComparators.every((rangeComparator) => {\n\t                return thisComparator.intersects(rangeComparator, options)\n\t              })\n\t            })\n\t          )\n\t        })\n\t      )\n\t    })\n\t  }\n\n\t  // if ANY of the sets match ALL of its comparators, then pass\n\t  test (version) {\n\t    if (!version) {\n\t      return false\n\t    }\n\n\t    if (typeof version === 'string') {\n\t      try {\n\t        version = new SemVer(version, this.options);\n\t      } catch (er) {\n\t        return false\n\t      }\n\t    }\n\n\t    for (let i = 0; i < this.set.length; i++) {\n\t      if (testSet(this.set[i], version, this.options)) {\n\t        return true\n\t      }\n\t    }\n\t    return false\n\t  }\n\t}\n\n\trange$1 = Range;\n\n\tconst LRU = requireLrucache();\n\tconst cache = new LRU();\n\n\tconst parseOptions = requireParseOptions();\n\tconst Comparator = requireComparator();\n\tconst debug = requireDebug();\n\tconst SemVer = requireSemver$1();\n\tconst {\n\t  safeRe: re,\n\t  t,\n\t  comparatorTrimReplace,\n\t  tildeTrimReplace,\n\t  caretTrimReplace,\n\t} = requireRe();\n\tconst { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = requireConstants$2();\n\n\tconst isNullSet = c => c.value === '<0.0.0-0';\n\tconst isAny = c => c.value === '';\n\n\t// take a set of comparators and determine whether there\n\t// exists a version which can satisfy it\n\tconst isSatisfiable = (comparators, options) => {\n\t  let result = true;\n\t  const remainingComparators = comparators.slice();\n\t  let testComparator = remainingComparators.pop();\n\n\t  while (result && remainingComparators.length) {\n\t    result = remainingComparators.every((otherComparator) => {\n\t      return testComparator.intersects(otherComparator, options)\n\t    });\n\n\t    testComparator = remainingComparators.pop();\n\t  }\n\n\t  return result\n\t};\n\n\t// comprised of xranges, tildes, stars, and gtlt's at this point.\n\t// already replaced the hyphen ranges\n\t// turn into a set of JUST comparators.\n\tconst parseComparator = (comp, options) => {\n\t  debug('comp', comp, options);\n\t  comp = replaceCarets(comp, options);\n\t  debug('caret', comp);\n\t  comp = replaceTildes(comp, options);\n\t  debug('tildes', comp);\n\t  comp = replaceXRanges(comp, options);\n\t  debug('xrange', comp);\n\t  comp = replaceStars(comp, options);\n\t  debug('stars', comp);\n\t  return comp\n\t};\n\n\tconst isX = id => !id || id.toLowerCase() === 'x' || id === '*';\n\n\t// ~, ~> --> * (any, kinda silly)\n\t// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0-0\n\t// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0-0\n\t// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0-0\n\t// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0-0\n\t// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0-0\n\t// ~0.0.1 --> >=0.0.1 <0.1.0-0\n\tconst replaceTildes = (comp, options) => {\n\t  return comp\n\t    .trim()\n\t    .split(/\\s+/)\n\t    .map((c) => replaceTilde(c, options))\n\t    .join(' ')\n\t};\n\n\tconst replaceTilde = (comp, options) => {\n\t  const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE];\n\t  return comp.replace(r, (_, M, m, p, pr) => {\n\t    debug('tilde', comp, _, M, m, p, pr);\n\t    let ret;\n\n\t    if (isX(M)) {\n\t      ret = '';\n\t    } else if (isX(m)) {\n\t      ret = `>=${M}.0.0 <${+M + 1}.0.0-0`;\n\t    } else if (isX(p)) {\n\t      // ~1.2 == >=1.2.0 <1.3.0-0\n\t      ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`;\n\t    } else if (pr) {\n\t      debug('replaceTilde pr', pr);\n\t      ret = `>=${M}.${m}.${p}-${pr\n\t      } <${M}.${+m + 1}.0-0`;\n\t    } else {\n\t      // ~1.2.3 == >=1.2.3 <1.3.0-0\n\t      ret = `>=${M}.${m}.${p\n\t      } <${M}.${+m + 1}.0-0`;\n\t    }\n\n\t    debug('tilde return', ret);\n\t    return ret\n\t  })\n\t};\n\n\t// ^ --> * (any, kinda silly)\n\t// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0-0\n\t// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0-0\n\t// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0-0\n\t// ^1.2.3 --> >=1.2.3 <2.0.0-0\n\t// ^1.2.0 --> >=1.2.0 <2.0.0-0\n\t// ^0.0.1 --> >=0.0.1 <0.0.2-0\n\t// ^0.1.0 --> >=0.1.0 <0.2.0-0\n\tconst replaceCarets = (comp, options) => {\n\t  return comp\n\t    .trim()\n\t    .split(/\\s+/)\n\t    .map((c) => replaceCaret(c, options))\n\t    .join(' ')\n\t};\n\n\tconst replaceCaret = (comp, options) => {\n\t  debug('caret', comp, options);\n\t  const r = options.loose ? re[t.CARETLOOSE] : re[t.CARET];\n\t  const z = options.includePrerelease ? '-0' : '';\n\t  return comp.replace(r, (_, M, m, p, pr) => {\n\t    debug('caret', comp, _, M, m, p, pr);\n\t    let ret;\n\n\t    if (isX(M)) {\n\t      ret = '';\n\t    } else if (isX(m)) {\n\t      ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0`;\n\t    } else if (isX(p)) {\n\t      if (M === '0') {\n\t        ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0`;\n\t      } else {\n\t        ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0`;\n\t      }\n\t    } else if (pr) {\n\t      debug('replaceCaret pr', pr);\n\t      if (M === '0') {\n\t        if (m === '0') {\n\t          ret = `>=${M}.${m}.${p}-${pr\n\t          } <${M}.${m}.${+p + 1}-0`;\n\t        } else {\n\t          ret = `>=${M}.${m}.${p}-${pr\n\t          } <${M}.${+m + 1}.0-0`;\n\t        }\n\t      } else {\n\t        ret = `>=${M}.${m}.${p}-${pr\n\t        } <${+M + 1}.0.0-0`;\n\t      }\n\t    } else {\n\t      debug('no pr');\n\t      if (M === '0') {\n\t        if (m === '0') {\n\t          ret = `>=${M}.${m}.${p\n\t          }${z} <${M}.${m}.${+p + 1}-0`;\n\t        } else {\n\t          ret = `>=${M}.${m}.${p\n\t          }${z} <${M}.${+m + 1}.0-0`;\n\t        }\n\t      } else {\n\t        ret = `>=${M}.${m}.${p\n\t        } <${+M + 1}.0.0-0`;\n\t      }\n\t    }\n\n\t    debug('caret return', ret);\n\t    return ret\n\t  })\n\t};\n\n\tconst replaceXRanges = (comp, options) => {\n\t  debug('replaceXRanges', comp, options);\n\t  return comp\n\t    .split(/\\s+/)\n\t    .map((c) => replaceXRange(c, options))\n\t    .join(' ')\n\t};\n\n\tconst replaceXRange = (comp, options) => {\n\t  comp = comp.trim();\n\t  const r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE];\n\t  return comp.replace(r, (ret, gtlt, M, m, p, pr) => {\n\t    debug('xRange', comp, ret, gtlt, M, m, p, pr);\n\t    const xM = isX(M);\n\t    const xm = xM || isX(m);\n\t    const xp = xm || isX(p);\n\t    const anyX = xp;\n\n\t    if (gtlt === '=' && anyX) {\n\t      gtlt = '';\n\t    }\n\n\t    // if we're including prereleases in the match, then we need\n\t    // to fix this to -0, the lowest possible prerelease value\n\t    pr = options.includePrerelease ? '-0' : '';\n\n\t    if (xM) {\n\t      if (gtlt === '>' || gtlt === '<') {\n\t        // nothing is allowed\n\t        ret = '<0.0.0-0';\n\t      } else {\n\t        // nothing is forbidden\n\t        ret = '*';\n\t      }\n\t    } else if (gtlt && anyX) {\n\t      // we know patch is an x, because we have any x at all.\n\t      // replace X with 0\n\t      if (xm) {\n\t        m = 0;\n\t      }\n\t      p = 0;\n\n\t      if (gtlt === '>') {\n\t        // >1 => >=2.0.0\n\t        // >1.2 => >=1.3.0\n\t        gtlt = '>=';\n\t        if (xm) {\n\t          M = +M + 1;\n\t          m = 0;\n\t          p = 0;\n\t        } else {\n\t          m = +m + 1;\n\t          p = 0;\n\t        }\n\t      } else if (gtlt === '<=') {\n\t        // <=0.7.x is actually <0.8.0, since any 0.7.x should\n\t        // pass.  Similarly, <=7.x is actually <8.0.0, etc.\n\t        gtlt = '<';\n\t        if (xm) {\n\t          M = +M + 1;\n\t        } else {\n\t          m = +m + 1;\n\t        }\n\t      }\n\n\t      if (gtlt === '<') {\n\t        pr = '-0';\n\t      }\n\n\t      ret = `${gtlt + M}.${m}.${p}${pr}`;\n\t    } else if (xm) {\n\t      ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0`;\n\t    } else if (xp) {\n\t      ret = `>=${M}.${m}.0${pr\n\t      } <${M}.${+m + 1}.0-0`;\n\t    }\n\n\t    debug('xRange return', ret);\n\n\t    return ret\n\t  })\n\t};\n\n\t// Because * is AND-ed with everything else in the comparator,\n\t// and '' means \"any version\", just remove the *s entirely.\n\tconst replaceStars = (comp, options) => {\n\t  debug('replaceStars', comp, options);\n\t  // Looseness is ignored here.  star is always as loose as it gets!\n\t  return comp\n\t    .trim()\n\t    .replace(re[t.STAR], '')\n\t};\n\n\tconst replaceGTE0 = (comp, options) => {\n\t  debug('replaceGTE0', comp, options);\n\t  return comp\n\t    .trim()\n\t    .replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], '')\n\t};\n\n\t// This function is passed to string.replace(re[t.HYPHENRANGE])\n\t// M, m, patch, prerelease, build\n\t// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5\n\t// 1.2.3 - 3.4 => >=1.2.0 <3.5.0-0 Any 3.4.x will do\n\t// 1.2 - 3.4 => >=1.2.0 <3.5.0-0\n\t// TODO build?\n\tconst hyphenReplace = incPr => ($0,\n\t  from, fM, fm, fp, fpr, fb,\n\t  to, tM, tm, tp, tpr) => {\n\t  if (isX(fM)) {\n\t    from = '';\n\t  } else if (isX(fm)) {\n\t    from = `>=${fM}.0.0${incPr ? '-0' : ''}`;\n\t  } else if (isX(fp)) {\n\t    from = `>=${fM}.${fm}.0${incPr ? '-0' : ''}`;\n\t  } else if (fpr) {\n\t    from = `>=${from}`;\n\t  } else {\n\t    from = `>=${from}${incPr ? '-0' : ''}`;\n\t  }\n\n\t  if (isX(tM)) {\n\t    to = '';\n\t  } else if (isX(tm)) {\n\t    to = `<${+tM + 1}.0.0-0`;\n\t  } else if (isX(tp)) {\n\t    to = `<${tM}.${+tm + 1}.0-0`;\n\t  } else if (tpr) {\n\t    to = `<=${tM}.${tm}.${tp}-${tpr}`;\n\t  } else if (incPr) {\n\t    to = `<${tM}.${tm}.${+tp + 1}-0`;\n\t  } else {\n\t    to = `<=${to}`;\n\t  }\n\n\t  return `${from} ${to}`.trim()\n\t};\n\n\tconst testSet = (set, version, options) => {\n\t  for (let i = 0; i < set.length; i++) {\n\t    if (!set[i].test(version)) {\n\t      return false\n\t    }\n\t  }\n\n\t  if (version.prerelease.length && !options.includePrerelease) {\n\t    // Find the set of versions that are allowed to have prereleases\n\t    // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0\n\t    // That should allow `1.2.3-pr.2` to pass.\n\t    // However, `1.2.4-alpha.notready` should NOT be allowed,\n\t    // even though it's within the range set by the comparators.\n\t    for (let i = 0; i < set.length; i++) {\n\t      debug(set[i].semver);\n\t      if (set[i].semver === Comparator.ANY) {\n\t        continue\n\t      }\n\n\t      if (set[i].semver.prerelease.length > 0) {\n\t        const allowed = set[i].semver;\n\t        if (allowed.major === version.major &&\n\t            allowed.minor === version.minor &&\n\t            allowed.patch === version.patch) {\n\t          return true\n\t        }\n\t      }\n\t    }\n\n\t    // Version has a -pre, but it's not one of the ones we like.\n\t    return false\n\t  }\n\n\t  return true\n\t};\n\treturn range$1;\n}\n\nvar comparator;\nvar hasRequiredComparator;\n\nfunction requireComparator () {\n\tif (hasRequiredComparator) return comparator;\n\thasRequiredComparator = 1;\n\n\tconst ANY = Symbol('SemVer ANY');\n\t// hoisted class for cyclic dependency\n\tclass Comparator {\n\t  static get ANY () {\n\t    return ANY\n\t  }\n\n\t  constructor (comp, options) {\n\t    options = parseOptions(options);\n\n\t    if (comp instanceof Comparator) {\n\t      if (comp.loose === !!options.loose) {\n\t        return comp\n\t      } else {\n\t        comp = comp.value;\n\t      }\n\t    }\n\n\t    comp = comp.trim().split(/\\s+/).join(' ');\n\t    debug('comparator', comp, options);\n\t    this.options = options;\n\t    this.loose = !!options.loose;\n\t    this.parse(comp);\n\n\t    if (this.semver === ANY) {\n\t      this.value = '';\n\t    } else {\n\t      this.value = this.operator + this.semver.version;\n\t    }\n\n\t    debug('comp', this);\n\t  }\n\n\t  parse (comp) {\n\t    const r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR];\n\t    const m = comp.match(r);\n\n\t    if (!m) {\n\t      throw new TypeError(`Invalid comparator: ${comp}`)\n\t    }\n\n\t    this.operator = m[1] !== undefined ? m[1] : '';\n\t    if (this.operator === '=') {\n\t      this.operator = '';\n\t    }\n\n\t    // if it literally is just '>' or '' then allow anything.\n\t    if (!m[2]) {\n\t      this.semver = ANY;\n\t    } else {\n\t      this.semver = new SemVer(m[2], this.options.loose);\n\t    }\n\t  }\n\n\t  toString () {\n\t    return this.value\n\t  }\n\n\t  test (version) {\n\t    debug('Comparator.test', version, this.options.loose);\n\n\t    if (this.semver === ANY || version === ANY) {\n\t      return true\n\t    }\n\n\t    if (typeof version === 'string') {\n\t      try {\n\t        version = new SemVer(version, this.options);\n\t      } catch (er) {\n\t        return false\n\t      }\n\t    }\n\n\t    return cmp(version, this.operator, this.semver, this.options)\n\t  }\n\n\t  intersects (comp, options) {\n\t    if (!(comp instanceof Comparator)) {\n\t      throw new TypeError('a Comparator is required')\n\t    }\n\n\t    if (this.operator === '') {\n\t      if (this.value === '') {\n\t        return true\n\t      }\n\t      return new Range(comp.value, options).test(this.value)\n\t    } else if (comp.operator === '') {\n\t      if (comp.value === '') {\n\t        return true\n\t      }\n\t      return new Range(this.value, options).test(comp.semver)\n\t    }\n\n\t    options = parseOptions(options);\n\n\t    // Special cases where nothing can possibly be lower\n\t    if (options.includePrerelease &&\n\t      (this.value === '<0.0.0-0' || comp.value === '<0.0.0-0')) {\n\t      return false\n\t    }\n\t    if (!options.includePrerelease &&\n\t      (this.value.startsWith('<0.0.0') || comp.value.startsWith('<0.0.0'))) {\n\t      return false\n\t    }\n\n\t    // Same direction increasing (> or >=)\n\t    if (this.operator.startsWith('>') && comp.operator.startsWith('>')) {\n\t      return true\n\t    }\n\t    // Same direction decreasing (< or <=)\n\t    if (this.operator.startsWith('<') && comp.operator.startsWith('<')) {\n\t      return true\n\t    }\n\t    // same SemVer and both sides are inclusive (<= or >=)\n\t    if (\n\t      (this.semver.version === comp.semver.version) &&\n\t      this.operator.includes('=') && comp.operator.includes('=')) {\n\t      return true\n\t    }\n\t    // opposite directions less than\n\t    if (cmp(this.semver, '<', comp.semver, options) &&\n\t      this.operator.startsWith('>') && comp.operator.startsWith('<')) {\n\t      return true\n\t    }\n\t    // opposite directions greater than\n\t    if (cmp(this.semver, '>', comp.semver, options) &&\n\t      this.operator.startsWith('<') && comp.operator.startsWith('>')) {\n\t      return true\n\t    }\n\t    return false\n\t  }\n\t}\n\n\tcomparator = Comparator;\n\n\tconst parseOptions = requireParseOptions();\n\tconst { safeRe: re, t } = requireRe();\n\tconst cmp = requireCmp();\n\tconst debug = requireDebug();\n\tconst SemVer = requireSemver$1();\n\tconst Range = requireRange();\n\treturn comparator;\n}\n\nvar satisfies_1;\nvar hasRequiredSatisfies;\n\nfunction requireSatisfies () {\n\tif (hasRequiredSatisfies) return satisfies_1;\n\thasRequiredSatisfies = 1;\n\n\tconst Range = requireRange();\n\tconst satisfies = (version, range, options) => {\n\t  try {\n\t    range = new Range(range, options);\n\t  } catch (er) {\n\t    return false\n\t  }\n\t  return range.test(version)\n\t};\n\tsatisfies_1 = satisfies;\n\treturn satisfies_1;\n}\n\nvar toComparators_1;\nvar hasRequiredToComparators;\n\nfunction requireToComparators () {\n\tif (hasRequiredToComparators) return toComparators_1;\n\thasRequiredToComparators = 1;\n\n\tconst Range = requireRange();\n\n\t// Mostly just for testing and legacy API reasons\n\tconst toComparators = (range, options) =>\n\t  new Range(range, options).set\n\t    .map(comp => comp.map(c => c.value).join(' ').trim().split(' '));\n\n\ttoComparators_1 = toComparators;\n\treturn toComparators_1;\n}\n\nvar maxSatisfying_1;\nvar hasRequiredMaxSatisfying;\n\nfunction requireMaxSatisfying () {\n\tif (hasRequiredMaxSatisfying) return maxSatisfying_1;\n\thasRequiredMaxSatisfying = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst Range = requireRange();\n\n\tconst maxSatisfying = (versions, range, options) => {\n\t  let max = null;\n\t  let maxSV = null;\n\t  let rangeObj = null;\n\t  try {\n\t    rangeObj = new Range(range, options);\n\t  } catch (er) {\n\t    return null\n\t  }\n\t  versions.forEach((v) => {\n\t    if (rangeObj.test(v)) {\n\t      // satisfies(v, range, options)\n\t      if (!max || maxSV.compare(v) === -1) {\n\t        // compare(max, v, true)\n\t        max = v;\n\t        maxSV = new SemVer(max, options);\n\t      }\n\t    }\n\t  });\n\t  return max\n\t};\n\tmaxSatisfying_1 = maxSatisfying;\n\treturn maxSatisfying_1;\n}\n\nvar minSatisfying_1;\nvar hasRequiredMinSatisfying;\n\nfunction requireMinSatisfying () {\n\tif (hasRequiredMinSatisfying) return minSatisfying_1;\n\thasRequiredMinSatisfying = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst Range = requireRange();\n\tconst minSatisfying = (versions, range, options) => {\n\t  let min = null;\n\t  let minSV = null;\n\t  let rangeObj = null;\n\t  try {\n\t    rangeObj = new Range(range, options);\n\t  } catch (er) {\n\t    return null\n\t  }\n\t  versions.forEach((v) => {\n\t    if (rangeObj.test(v)) {\n\t      // satisfies(v, range, options)\n\t      if (!min || minSV.compare(v) === 1) {\n\t        // compare(min, v, true)\n\t        min = v;\n\t        minSV = new SemVer(min, options);\n\t      }\n\t    }\n\t  });\n\t  return min\n\t};\n\tminSatisfying_1 = minSatisfying;\n\treturn minSatisfying_1;\n}\n\nvar minVersion_1;\nvar hasRequiredMinVersion;\n\nfunction requireMinVersion () {\n\tif (hasRequiredMinVersion) return minVersion_1;\n\thasRequiredMinVersion = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst Range = requireRange();\n\tconst gt = requireGt();\n\n\tconst minVersion = (range, loose) => {\n\t  range = new Range(range, loose);\n\n\t  let minver = new SemVer('0.0.0');\n\t  if (range.test(minver)) {\n\t    return minver\n\t  }\n\n\t  minver = new SemVer('0.0.0-0');\n\t  if (range.test(minver)) {\n\t    return minver\n\t  }\n\n\t  minver = null;\n\t  for (let i = 0; i < range.set.length; ++i) {\n\t    const comparators = range.set[i];\n\n\t    let setMin = null;\n\t    comparators.forEach((comparator) => {\n\t      // Clone to avoid manipulating the comparator's semver object.\n\t      const compver = new SemVer(comparator.semver.version);\n\t      switch (comparator.operator) {\n\t        case '>':\n\t          if (compver.prerelease.length === 0) {\n\t            compver.patch++;\n\t          } else {\n\t            compver.prerelease.push(0);\n\t          }\n\t          compver.raw = compver.format();\n\t          /* fallthrough */\n\t        case '':\n\t        case '>=':\n\t          if (!setMin || gt(compver, setMin)) {\n\t            setMin = compver;\n\t          }\n\t          break\n\t        case '<':\n\t        case '<=':\n\t          /* Ignore maximum versions */\n\t          break\n\t        /* istanbul ignore next */\n\t        default:\n\t          throw new Error(`Unexpected operation: ${comparator.operator}`)\n\t      }\n\t    });\n\t    if (setMin && (!minver || gt(minver, setMin))) {\n\t      minver = setMin;\n\t    }\n\t  }\n\n\t  if (minver && range.test(minver)) {\n\t    return minver\n\t  }\n\n\t  return null\n\t};\n\tminVersion_1 = minVersion;\n\treturn minVersion_1;\n}\n\nvar valid;\nvar hasRequiredValid;\n\nfunction requireValid () {\n\tif (hasRequiredValid) return valid;\n\thasRequiredValid = 1;\n\n\tconst Range = requireRange();\n\tconst validRange = (range, options) => {\n\t  try {\n\t    // Return '*' instead of '' so that truthiness works.\n\t    // This will throw if it's invalid anyway\n\t    return new Range(range, options).range || '*'\n\t  } catch (er) {\n\t    return null\n\t  }\n\t};\n\tvalid = validRange;\n\treturn valid;\n}\n\nvar outside_1;\nvar hasRequiredOutside;\n\nfunction requireOutside () {\n\tif (hasRequiredOutside) return outside_1;\n\thasRequiredOutside = 1;\n\n\tconst SemVer = requireSemver$1();\n\tconst Comparator = requireComparator();\n\tconst { ANY } = Comparator;\n\tconst Range = requireRange();\n\tconst satisfies = requireSatisfies();\n\tconst gt = requireGt();\n\tconst lt = requireLt();\n\tconst lte = requireLte();\n\tconst gte = requireGte();\n\n\tconst outside = (version, range, hilo, options) => {\n\t  version = new SemVer(version, options);\n\t  range = new Range(range, options);\n\n\t  let gtfn, ltefn, ltfn, comp, ecomp;\n\t  switch (hilo) {\n\t    case '>':\n\t      gtfn = gt;\n\t      ltefn = lte;\n\t      ltfn = lt;\n\t      comp = '>';\n\t      ecomp = '>=';\n\t      break\n\t    case '<':\n\t      gtfn = lt;\n\t      ltefn = gte;\n\t      ltfn = gt;\n\t      comp = '<';\n\t      ecomp = '<=';\n\t      break\n\t    default:\n\t      throw new TypeError('Must provide a hilo val of \"<\" or \">\"')\n\t  }\n\n\t  // If it satisfies the range it is not outside\n\t  if (satisfies(version, range, options)) {\n\t    return false\n\t  }\n\n\t  // From now on, variable terms are as if we're in \"gtr\" mode.\n\t  // but note that everything is flipped for the \"ltr\" function.\n\n\t  for (let i = 0; i < range.set.length; ++i) {\n\t    const comparators = range.set[i];\n\n\t    let high = null;\n\t    let low = null;\n\n\t    comparators.forEach((comparator) => {\n\t      if (comparator.semver === ANY) {\n\t        comparator = new Comparator('>=0.0.0');\n\t      }\n\t      high = high || comparator;\n\t      low = low || comparator;\n\t      if (gtfn(comparator.semver, high.semver, options)) {\n\t        high = comparator;\n\t      } else if (ltfn(comparator.semver, low.semver, options)) {\n\t        low = comparator;\n\t      }\n\t    });\n\n\t    // If the edge version comparator has a operator then our version\n\t    // isn't outside it\n\t    if (high.operator === comp || high.operator === ecomp) {\n\t      return false\n\t    }\n\n\t    // If the lowest version comparator has an operator and our version\n\t    // is less than it then it isn't higher than the range\n\t    if ((!low.operator || low.operator === comp) &&\n\t        ltefn(version, low.semver)) {\n\t      return false\n\t    } else if (low.operator === ecomp && ltfn(version, low.semver)) {\n\t      return false\n\t    }\n\t  }\n\t  return true\n\t};\n\n\toutside_1 = outside;\n\treturn outside_1;\n}\n\nvar gtr_1;\nvar hasRequiredGtr;\n\nfunction requireGtr () {\n\tif (hasRequiredGtr) return gtr_1;\n\thasRequiredGtr = 1;\n\n\t// Determine if version is greater than all the versions possible in the range.\n\tconst outside = requireOutside();\n\tconst gtr = (version, range, options) => outside(version, range, '>', options);\n\tgtr_1 = gtr;\n\treturn gtr_1;\n}\n\nvar ltr_1;\nvar hasRequiredLtr;\n\nfunction requireLtr () {\n\tif (hasRequiredLtr) return ltr_1;\n\thasRequiredLtr = 1;\n\n\tconst outside = requireOutside();\n\t// Determine if version is less than all the versions possible in the range\n\tconst ltr = (version, range, options) => outside(version, range, '<', options);\n\tltr_1 = ltr;\n\treturn ltr_1;\n}\n\nvar intersects_1;\nvar hasRequiredIntersects;\n\nfunction requireIntersects () {\n\tif (hasRequiredIntersects) return intersects_1;\n\thasRequiredIntersects = 1;\n\n\tconst Range = requireRange();\n\tconst intersects = (r1, r2, options) => {\n\t  r1 = new Range(r1, options);\n\t  r2 = new Range(r2, options);\n\t  return r1.intersects(r2, options)\n\t};\n\tintersects_1 = intersects;\n\treturn intersects_1;\n}\n\nvar simplify;\nvar hasRequiredSimplify;\n\nfunction requireSimplify () {\n\tif (hasRequiredSimplify) return simplify;\n\thasRequiredSimplify = 1;\n\n\t// given a set of versions and a range, create a \"simplified\" range\n\t// that includes the same versions that the original range does\n\t// If the original range is shorter than the simplified one, return that.\n\tconst satisfies = requireSatisfies();\n\tconst compare = requireCompare();\n\tsimplify = (versions, range, options) => {\n\t  const set = [];\n\t  let first = null;\n\t  let prev = null;\n\t  const v = versions.sort((a, b) => compare(a, b, options));\n\t  for (const version of v) {\n\t    const included = satisfies(version, range, options);\n\t    if (included) {\n\t      prev = version;\n\t      if (!first) {\n\t        first = version;\n\t      }\n\t    } else {\n\t      if (prev) {\n\t        set.push([first, prev]);\n\t      }\n\t      prev = null;\n\t      first = null;\n\t    }\n\t  }\n\t  if (first) {\n\t    set.push([first, null]);\n\t  }\n\n\t  const ranges = [];\n\t  for (const [min, max] of set) {\n\t    if (min === max) {\n\t      ranges.push(min);\n\t    } else if (!max && min === v[0]) {\n\t      ranges.push('*');\n\t    } else if (!max) {\n\t      ranges.push(`>=${min}`);\n\t    } else if (min === v[0]) {\n\t      ranges.push(`<=${max}`);\n\t    } else {\n\t      ranges.push(`${min} - ${max}`);\n\t    }\n\t  }\n\t  const simplified = ranges.join(' || ');\n\t  const original = typeof range.raw === 'string' ? range.raw : String(range);\n\t  return simplified.length < original.length ? simplified : range\n\t};\n\treturn simplify;\n}\n\nvar subset_1;\nvar hasRequiredSubset;\n\nfunction requireSubset () {\n\tif (hasRequiredSubset) return subset_1;\n\thasRequiredSubset = 1;\n\n\tconst Range = requireRange();\n\tconst Comparator = requireComparator();\n\tconst { ANY } = Comparator;\n\tconst satisfies = requireSatisfies();\n\tconst compare = requireCompare();\n\n\t// Complex range `r1 || r2 || ...` is a subset of `R1 || R2 || ...` iff:\n\t// - Every simple range `r1, r2, ...` is a null set, OR\n\t// - Every simple range `r1, r2, ...` which is not a null set is a subset of\n\t//   some `R1, R2, ...`\n\t//\n\t// Simple range `c1 c2 ...` is a subset of simple range `C1 C2 ...` iff:\n\t// - If c is only the ANY comparator\n\t//   - If C is only the ANY comparator, return true\n\t//   - Else if in prerelease mode, return false\n\t//   - else replace c with `[>=0.0.0]`\n\t// - If C is only the ANY comparator\n\t//   - if in prerelease mode, return true\n\t//   - else replace C with `[>=0.0.0]`\n\t// - Let EQ be the set of = comparators in c\n\t// - If EQ is more than one, return true (null set)\n\t// - Let GT be the highest > or >= comparator in c\n\t// - Let LT be the lowest < or <= comparator in c\n\t// - If GT and LT, and GT.semver > LT.semver, return true (null set)\n\t// - If any C is a = range, and GT or LT are set, return false\n\t// - If EQ\n\t//   - If GT, and EQ does not satisfy GT, return true (null set)\n\t//   - If LT, and EQ does not satisfy LT, return true (null set)\n\t//   - If EQ satisfies every C, return true\n\t//   - Else return false\n\t// - If GT\n\t//   - If GT.semver is lower than any > or >= comp in C, return false\n\t//   - If GT is >=, and GT.semver does not satisfy every C, return false\n\t//   - If GT.semver has a prerelease, and not in prerelease mode\n\t//     - If no C has a prerelease and the GT.semver tuple, return false\n\t// - If LT\n\t//   - If LT.semver is greater than any < or <= comp in C, return false\n\t//   - If LT is <=, and LT.semver does not satisfy every C, return false\n\t//   - If GT.semver has a prerelease, and not in prerelease mode\n\t//     - If no C has a prerelease and the LT.semver tuple, return false\n\t// - Else return true\n\n\tconst subset = (sub, dom, options = {}) => {\n\t  if (sub === dom) {\n\t    return true\n\t  }\n\n\t  sub = new Range(sub, options);\n\t  dom = new Range(dom, options);\n\t  let sawNonNull = false;\n\n\t  OUTER: for (const simpleSub of sub.set) {\n\t    for (const simpleDom of dom.set) {\n\t      const isSub = simpleSubset(simpleSub, simpleDom, options);\n\t      sawNonNull = sawNonNull || isSub !== null;\n\t      if (isSub) {\n\t        continue OUTER\n\t      }\n\t    }\n\t    // the null set is a subset of everything, but null simple ranges in\n\t    // a complex range should be ignored.  so if we saw a non-null range,\n\t    // then we know this isn't a subset, but if EVERY simple range was null,\n\t    // then it is a subset.\n\t    if (sawNonNull) {\n\t      return false\n\t    }\n\t  }\n\t  return true\n\t};\n\n\tconst minimumVersionWithPreRelease = [new Comparator('>=0.0.0-0')];\n\tconst minimumVersion = [new Comparator('>=0.0.0')];\n\n\tconst simpleSubset = (sub, dom, options) => {\n\t  if (sub === dom) {\n\t    return true\n\t  }\n\n\t  if (sub.length === 1 && sub[0].semver === ANY) {\n\t    if (dom.length === 1 && dom[0].semver === ANY) {\n\t      return true\n\t    } else if (options.includePrerelease) {\n\t      sub = minimumVersionWithPreRelease;\n\t    } else {\n\t      sub = minimumVersion;\n\t    }\n\t  }\n\n\t  if (dom.length === 1 && dom[0].semver === ANY) {\n\t    if (options.includePrerelease) {\n\t      return true\n\t    } else {\n\t      dom = minimumVersion;\n\t    }\n\t  }\n\n\t  const eqSet = new Set();\n\t  let gt, lt;\n\t  for (const c of sub) {\n\t    if (c.operator === '>' || c.operator === '>=') {\n\t      gt = higherGT(gt, c, options);\n\t    } else if (c.operator === '<' || c.operator === '<=') {\n\t      lt = lowerLT(lt, c, options);\n\t    } else {\n\t      eqSet.add(c.semver);\n\t    }\n\t  }\n\n\t  if (eqSet.size > 1) {\n\t    return null\n\t  }\n\n\t  let gtltComp;\n\t  if (gt && lt) {\n\t    gtltComp = compare(gt.semver, lt.semver, options);\n\t    if (gtltComp > 0) {\n\t      return null\n\t    } else if (gtltComp === 0 && (gt.operator !== '>=' || lt.operator !== '<=')) {\n\t      return null\n\t    }\n\t  }\n\n\t  // will iterate one or zero times\n\t  for (const eq of eqSet) {\n\t    if (gt && !satisfies(eq, String(gt), options)) {\n\t      return null\n\t    }\n\n\t    if (lt && !satisfies(eq, String(lt), options)) {\n\t      return null\n\t    }\n\n\t    for (const c of dom) {\n\t      if (!satisfies(eq, String(c), options)) {\n\t        return false\n\t      }\n\t    }\n\n\t    return true\n\t  }\n\n\t  let higher, lower;\n\t  let hasDomLT, hasDomGT;\n\t  // if the subset has a prerelease, we need a comparator in the superset\n\t  // with the same tuple and a prerelease, or it's not a subset\n\t  let needDomLTPre = lt &&\n\t    !options.includePrerelease &&\n\t    lt.semver.prerelease.length ? lt.semver : false;\n\t  let needDomGTPre = gt &&\n\t    !options.includePrerelease &&\n\t    gt.semver.prerelease.length ? gt.semver : false;\n\t  // exception: <1.2.3-0 is the same as <1.2.3\n\t  if (needDomLTPre && needDomLTPre.prerelease.length === 1 &&\n\t      lt.operator === '<' && needDomLTPre.prerelease[0] === 0) {\n\t    needDomLTPre = false;\n\t  }\n\n\t  for (const c of dom) {\n\t    hasDomGT = hasDomGT || c.operator === '>' || c.operator === '>=';\n\t    hasDomLT = hasDomLT || c.operator === '<' || c.operator === '<=';\n\t    if (gt) {\n\t      if (needDomGTPre) {\n\t        if (c.semver.prerelease && c.semver.prerelease.length &&\n\t            c.semver.major === needDomGTPre.major &&\n\t            c.semver.minor === needDomGTPre.minor &&\n\t            c.semver.patch === needDomGTPre.patch) {\n\t          needDomGTPre = false;\n\t        }\n\t      }\n\t      if (c.operator === '>' || c.operator === '>=') {\n\t        higher = higherGT(gt, c, options);\n\t        if (higher === c && higher !== gt) {\n\t          return false\n\t        }\n\t      } else if (gt.operator === '>=' && !satisfies(gt.semver, String(c), options)) {\n\t        return false\n\t      }\n\t    }\n\t    if (lt) {\n\t      if (needDomLTPre) {\n\t        if (c.semver.prerelease && c.semver.prerelease.length &&\n\t            c.semver.major === needDomLTPre.major &&\n\t            c.semver.minor === needDomLTPre.minor &&\n\t            c.semver.patch === needDomLTPre.patch) {\n\t          needDomLTPre = false;\n\t        }\n\t      }\n\t      if (c.operator === '<' || c.operator === '<=') {\n\t        lower = lowerLT(lt, c, options);\n\t        if (lower === c && lower !== lt) {\n\t          return false\n\t        }\n\t      } else if (lt.operator === '<=' && !satisfies(lt.semver, String(c), options)) {\n\t        return false\n\t      }\n\t    }\n\t    if (!c.operator && (lt || gt) && gtltComp !== 0) {\n\t      return false\n\t    }\n\t  }\n\n\t  // if there was a < or >, and nothing in the dom, then must be false\n\t  // UNLESS it was limited by another range in the other direction.\n\t  // Eg, >1.0.0 <1.0.1 is still a subset of <2.0.0\n\t  if (gt && hasDomLT && !lt && gtltComp !== 0) {\n\t    return false\n\t  }\n\n\t  if (lt && hasDomGT && !gt && gtltComp !== 0) {\n\t    return false\n\t  }\n\n\t  // we needed a prerelease range in a specific tuple, but didn't get one\n\t  // then this isn't a subset.  eg >=1.2.3-pre is not a subset of >=1.0.0,\n\t  // because it includes prereleases in the 1.2.3 tuple\n\t  if (needDomGTPre || needDomLTPre) {\n\t    return false\n\t  }\n\n\t  return true\n\t};\n\n\t// >=1.2.3 is lower than >1.2.3\n\tconst higherGT = (a, b, options) => {\n\t  if (!a) {\n\t    return b\n\t  }\n\t  const comp = compare(a.semver, b.semver, options);\n\t  return comp > 0 ? a\n\t    : comp < 0 ? b\n\t    : b.operator === '>' && a.operator === '>=' ? b\n\t    : a\n\t};\n\n\t// <=1.2.3 is higher than <1.2.3\n\tconst lowerLT = (a, b, options) => {\n\t  if (!a) {\n\t    return b\n\t  }\n\t  const comp = compare(a.semver, b.semver, options);\n\t  return comp < 0 ? a\n\t    : comp > 0 ? b\n\t    : b.operator === '<' && a.operator === '<=' ? b\n\t    : a\n\t};\n\n\tsubset_1 = subset;\n\treturn subset_1;\n}\n\nvar semver;\nvar hasRequiredSemver;\n\nfunction requireSemver () {\n\tif (hasRequiredSemver) return semver;\n\thasRequiredSemver = 1;\n\n\t// just pre-load all the stuff that index.js lazily exports\n\tconst internalRe = requireRe();\n\tconst constants = requireConstants$2();\n\tconst SemVer = requireSemver$1();\n\tconst identifiers = requireIdentifiers();\n\tconst parse = requireParse();\n\tconst valid = requireValid$1();\n\tconst clean = requireClean();\n\tconst inc = requireInc();\n\tconst diff = requireDiff();\n\tconst major = requireMajor();\n\tconst minor = requireMinor();\n\tconst patch = requirePatch();\n\tconst prerelease = requirePrerelease();\n\tconst compare = requireCompare();\n\tconst rcompare = requireRcompare();\n\tconst compareLoose = requireCompareLoose();\n\tconst compareBuild = requireCompareBuild();\n\tconst sort = requireSort();\n\tconst rsort = requireRsort();\n\tconst gt = requireGt();\n\tconst lt = requireLt();\n\tconst eq = requireEq$1();\n\tconst neq = requireNeq();\n\tconst gte = requireGte();\n\tconst lte = requireLte();\n\tconst cmp = requireCmp();\n\tconst coerce = requireCoerce();\n\tconst Comparator = requireComparator();\n\tconst Range = requireRange();\n\tconst satisfies = requireSatisfies();\n\tconst toComparators = requireToComparators();\n\tconst maxSatisfying = requireMaxSatisfying();\n\tconst minSatisfying = requireMinSatisfying();\n\tconst minVersion = requireMinVersion();\n\tconst validRange = requireValid();\n\tconst outside = requireOutside();\n\tconst gtr = requireGtr();\n\tconst ltr = requireLtr();\n\tconst intersects = requireIntersects();\n\tconst simplifyRange = requireSimplify();\n\tconst subset = requireSubset();\n\tsemver = {\n\t  parse,\n\t  valid,\n\t  clean,\n\t  inc,\n\t  diff,\n\t  major,\n\t  minor,\n\t  patch,\n\t  prerelease,\n\t  compare,\n\t  rcompare,\n\t  compareLoose,\n\t  compareBuild,\n\t  sort,\n\t  rsort,\n\t  gt,\n\t  lt,\n\t  eq,\n\t  neq,\n\t  gte,\n\t  lte,\n\t  cmp,\n\t  coerce,\n\t  Comparator,\n\t  Range,\n\t  satisfies,\n\t  toComparators,\n\t  maxSatisfying,\n\t  minSatisfying,\n\t  minVersion,\n\t  validRange,\n\t  outside,\n\t  gtr,\n\t  ltr,\n\t  intersects,\n\t  simplifyRange,\n\t  subset,\n\t  SemVer,\n\t  re: internalRe.re,\n\t  src: internalRe.src,\n\t  tokens: internalRe.t,\n\t  SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION,\n\t  RELEASE_TYPES: constants.RELEASE_TYPES,\n\t  compareIdentifiers: identifiers.compareIdentifiers,\n\t  rcompareIdentifiers: identifiers.rcompareIdentifiers,\n\t};\n\treturn semver;\n}\n\nvar semverExports = requireSemver();\n\n// Interface for getting cuda versions and corresponding download URLs\nclass AbstractLinks {\n    cudaVersionToURL = new Map();\n    getAvailableLocalCudaVersions() {\n        return Array.from(this.cudaVersionToURL.keys()).map((s) => new semverExports.SemVer(s));\n    }\n    async getLocalURLFromCudaVersion(version) {\n        const urlString = this.cudaVersionToURL.get(`${version}`);\n        if (urlString === undefined) {\n            throw new Error(`Invalid version: ${version}`);\n        }\n        return new URL(urlString);\n    }\n}\n\n// # Dictionary of known cuda versions and thier download URLS, which do not follow a consistent pattern :(\n// $CUDA_KNOWN_URLS = @{\n//     \"8.0.44\" = \"http://developer.nvidia.com/compute/cuda/8.0/Prod/network_installers/cuda_8.0.44_win10_network-exe\";\n//     \"8.0.61\" = \"http://developer.nvidia.com/compute/cuda/8.0/Prod2/network_installers/cuda_8.0.61_win10_network-exe\";\n//     \"9.0.176\" = \"http://developer.nvidia.com/compute/cuda/9.0/Prod/network_installers/cuda_9.0.176_win10_network-exe\";\n//     \"9.1.85\" = \"http://developer.nvidia.com/compute/cuda/9.1/Prod/network_installers/cuda_9.1.85_win10_network\";\n//     \"9.2.148\" = \"http://developer.nvidia.com/compute/cuda/9.2/Prod2/network_installers2/cuda_9.2.148_win10_network\";\n//     \"10.0.130\" = \"http://developer.nvidia.com/compute/cuda/10.0/Prod/network_installers/cuda_10.0.130_win10_network\";\n//     \"10.1.105\" = \"http://developer.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.105_win10_network.exe\";\n//     \"10.1.168\" = \"http://developer.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.168_win10_network.exe\";\n//     \"10.1.243\" = \"http://developer.download.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.243_win10_network.exe\";\n//     \"10.2.89\" = \"http://developer.download.nvidia.com/compute/cuda/10.2/Prod/network_installers/cuda_10.2.89_win10_network.exe\";\n//     \"11.0.167\" = \"http://developer.download.nvidia.com/compute/cuda/11.0.1/network_installers/cuda_11.0.1_win10_network.exe\"\n// }\n/**\n * Singleton class for windows links.\n */\nclass WindowsLinks extends AbstractLinks {\n    // Singleton instance\n    static _instance;\n    cudaVersionToNetworkUrl = new Map([\n        [\n            '13.2.0',\n            'https://developer.download.nvidia.com/compute/cuda/13.2.0/network_installers/cuda_13.2.0_windows_network.exe'\n        ],\n        [\n            '13.1.1',\n            'https://developer.download.nvidia.com/compute/cuda/13.1.1/network_installers/cuda_13.1.1_windows_network.exe'\n        ],\n        [\n            '13.1.0',\n            'https://developer.download.nvidia.com/compute/cuda/13.1.0/network_installers/cuda_13.1.0_windows_network.exe'\n        ],\n        [\n            '13.0.2',\n            'https://developer.download.nvidia.com/compute/cuda/13.0.2/network_installers/cuda_13.0.2_windows_network.exe'\n        ],\n        [\n            '13.0.1',\n            'https://developer.download.nvidia.com/compute/cuda/13.0.1/network_installers/cuda_13.0.1_windows_network.exe'\n        ],\n        [\n            '13.0.0',\n            'https://developer.download.nvidia.com/compute/cuda/13.0.0/network_installers/cuda_13.0.0_windows_network.exe'\n        ],\n        [\n            '12.9.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.9.1/network_installers/cuda_12.9.1_windows_network.exe'\n        ],\n        [\n            '12.9.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.9.0/network_installers/cuda_12.9.0_windows_network.exe'\n        ],\n        [\n            '12.8.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.8.1/network_installers/cuda_12.8.1_windows_network.exe'\n        ],\n        [\n            '12.8.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.8.0/network_installers/cuda_12.8.0_windows_network.exe'\n        ],\n        [\n            '12.6.3',\n            'https://developer.download.nvidia.com/compute/cuda/12.6.3/network_installers/cuda_12.6.3_windows_network.exe'\n        ],\n        [\n            '12.6.2',\n            'https://developer.download.nvidia.com/compute/cuda/12.6.2/network_installers/cuda_12.6.2_windows_network.exe'\n        ],\n        [\n            '12.6.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.6.1/network_installers/cuda_12.6.1_windows_network.exe'\n        ],\n        [\n            '12.6.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.6.0/network_installers/cuda_12.6.0_windows_network.exe'\n        ],\n        [\n            '12.5.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.5.1/network_installers/cuda_12.5.1_windows_network.exe'\n        ],\n        [\n            '12.5.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.5.0/network_installers/cuda_12.5.0_windows_network.exe'\n        ],\n        [\n            '12.4.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.4.1/network_installers/cuda_12.4.1_windows_network.exe'\n        ],\n        [\n            '12.4.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.4.0/network_installers/cuda_12.4.0_windows_network.exe'\n        ],\n        [\n            '12.3.2',\n            'https://developer.download.nvidia.com/compute/cuda/12.3.2/network_installers/cuda_12.3.2_windows_network.exe'\n        ],\n        [\n            '12.3.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.3.1/network_installers/cuda_12.3.1_windows_network.exe'\n        ],\n        [\n            '12.3.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.3.0/network_installers/cuda_12.3.0_windows_network.exe'\n        ],\n        [\n            '12.2.2',\n            'https://developer.download.nvidia.com/compute/cuda/12.2.2/network_installers/cuda_12.2.2_windows_network.exe'\n        ],\n        [\n            '12.2.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.2.1/network_installers/cuda_12.2.1_windows_network.exe'\n        ],\n        [\n            '12.2.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.2.0/network_installers/cuda_12.2.0_windows_network.exe'\n        ],\n        [\n            '12.1.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.1.1/network_installers/cuda_12.1.1_windows_network.exe'\n        ],\n        [\n            '12.1.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.1.0/network_installers/cuda_12.1.0_windows_network.exe'\n        ],\n        [\n            '12.0.1',\n            'https://developer.download.nvidia.com/compute/cuda/12.0.1/network_installers/cuda_12.0.1_windows_network.exe'\n        ],\n        [\n            '12.0.0',\n            'https://developer.download.nvidia.com/compute/cuda/12.0.0/network_installers/cuda_12.0.0_windows_network.exe'\n        ],\n        [\n            '11.8.0',\n            'https://developer.download.nvidia.com/compute/cuda/11.8.0/network_installers/cuda_11.8.0_windows_network.exe'\n        ],\n        [\n            '11.7.1',\n            'https://developer.download.nvidia.com/compute/cuda/11.7.1/network_installers/cuda_11.7.1_windows_network.exe'\n        ],\n        [\n            '11.7.0',\n            'https://developer.download.nvidia.com/compute/cuda/11.7.0/network_installers/cuda_11.7.0_windows_network.exe'\n        ],\n        [\n            '11.6.2',\n            'https://developer.download.nvidia.com/compute/cuda/11.6.2/network_installers/cuda_11.6.2_windows_network.exe'\n        ],\n        [\n            '11.6.1',\n            'https://developer.download.nvidia.com/compute/cuda/11.6.1/network_installers/cuda_11.6.1_windows_network.exe'\n        ],\n        [\n            '11.6.0',\n            'https://developer.download.nvidia.com/compute/cuda/11.6.0/network_installers/cuda_11.6.0_windows_network.exe'\n        ],\n        [\n            '11.5.2',\n            'https://developer.download.nvidia.com/compute/cuda/11.5.2/network_installers/cuda_11.5.2_windows_network.exe'\n        ],\n        [\n            '11.5.1',\n            'https://developer.download.nvidia.com/compute/cuda/11.5.1/network_installers/cuda_11.5.1_windows_network.exe'\n        ],\n        [\n            '11.5.0',\n            'https://developer.download.nvidia.com/compute/cuda/11.5.0/network_installers/cuda_11.5.0_win10_network.exe'\n        ],\n        [\n            '11.4.4',\n            'https://developer.download.nvidia.com/compute/cuda/11.4.4/network_installers/cuda_11.4.4_windows_network.exe'\n        ],\n        [\n            '11.4.3',\n            'https://developer.download.nvidia.com/compute/cuda/11.4.3/network_installers/cuda_11.4.3_win10_network.exe'\n        ],\n        [\n            '11.4.2',\n            'https://developer.download.nvidia.com/compute/cuda/11.4.2/network_installers/cuda_11.4.2_win10_network.exe'\n        ],\n        [\n            '11.4.1',\n            'https://developer.download.nvidia.com/compute/cuda/11.4.1/network_installers/cuda_11.4.1_win10_network.exe'\n        ],\n        [\n            '11.4.0',\n            'https://developer.download.nvidia.com/compute/cuda/11.4.0/network_installers/cuda_11.4.0_win10_network.exe'\n        ],\n        [\n            '11.3.1',\n            'https://developer.download.nvidia.com/compute/cuda/11.3.1/network_installers/cuda_11.3.1_win10_network.exe'\n        ],\n        [\n            '11.3.0',\n            'https://developer.download.nvidia.com/compute/cuda/11.3.0/network_installers/cuda_11.3.0_win10_network.exe'\n        ],\n        [\n            '11.2.2',\n            'https://developer.download.nvidia.com/compute/cuda/11.2.2/network_installers/cuda_11.2.2_win10_network.exe'\n        ],\n        [\n            '11.2.1',\n            'https://developer.download.nvidia.com/compute/cuda/11.2.1/network_installers/cuda_11.2.1_win10_network.exe'\n        ],\n        [\n            '11.2.0',\n            'https://developer.download.nvidia.com/compute/cuda/11.2.0/network_installers/cuda_11.2.0_win10_network.exe'\n        ],\n        [\n            '11.1.1',\n            'https://developer.download.nvidia.com/compute/cuda/11.1.1/network_installers/cuda_11.1.1_win10_network.exe'\n        ],\n        [\n            '11.0.3',\n            'https://developer.download.nvidia.com/compute/cuda/11.0.3/network_installers/cuda_11.0.3_win10_network.exe'\n        ],\n        [\n            '11.0.2',\n            'https://developer.download.nvidia.com/compute/cuda/11.0.2/network_installers/cuda_11.0.2_win10_network.exe'\n        ],\n        [\n            '11.0.1',\n            'https://developer.download.nvidia.com/compute/cuda/11.0.1/network_installers/cuda_11.0.1_win10_network.exe'\n        ],\n        [\n            '10.2.89',\n            'https://developer.download.nvidia.com/compute/cuda/10.2/Prod/network_installers/cuda_10.2.89_win10_network.exe'\n        ],\n        [\n            '10.1.243',\n            'https://developer.download.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.243_win10_network.exe'\n        ],\n        [\n            '10.0.130',\n            'https://developer.nvidia.com/compute/cuda/10.0/Prod/network_installers/cuda_10.0.130_win10_network'\n        ],\n        [\n            '9.2.148',\n            'https://developer.nvidia.com/compute/cuda/9.2/Prod2/network_installers2/cuda_9.2.148_win10_network'\n        ],\n        [\n            '8.0.61',\n            'https://developer.nvidia.com/compute/cuda/8.0/Prod2/network_installers/cuda_8.0.61_win10_network-exe'\n        ]\n    ]);\n    // Private constructor to prevent instantiation\n    constructor() {\n        super();\n        // Map of cuda SemVer version to download URL\n        this.cudaVersionToURL = new Map([\n            [\n                '13.2.0',\n                'https://developer.download.nvidia.com/compute/cuda/13.2.0/local_installers/cuda_13.2.0_windows.exe'\n            ],\n            [\n                '13.1.1',\n                'https://developer.download.nvidia.com/compute/cuda/13.1.1/local_installers/cuda_13.1.1_windows.exe'\n            ],\n            [\n                '13.1.0',\n                'https://developer.download.nvidia.com/compute/cuda/13.1.0/local_installers/cuda_13.1.0_windows.exe'\n            ],\n            [\n                '13.0.2',\n                'https://developer.download.nvidia.com/compute/cuda/13.0.2/local_installers/cuda_13.0.2_windows.exe'\n            ],\n            [\n                '13.0.1',\n                'https://developer.download.nvidia.com/compute/cuda/13.0.1/local_installers/cuda_13.0.1_windows.exe'\n            ],\n            [\n                '13.0.0',\n                'https://developer.download.nvidia.com/compute/cuda/13.0.0/local_installers/cuda_13.0.0_windows.exe'\n            ],\n            [\n                '12.9.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_576.57_windows.exe'\n            ],\n            [\n                '12.9.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.9.0/local_installers/cuda_12.9.0_576.02_windows.exe'\n            ],\n            [\n                '12.8.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.8.1/local_installers/cuda_12.8.1_572.61_windows.exe'\n            ],\n            [\n                '12.8.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.8.0/local_installers/cuda_12.8.0_571.96_windows.exe'\n            ],\n            [\n                '12.6.3',\n                'https://developer.download.nvidia.com/compute/cuda/12.6.3/local_installers/cuda_12.6.3_561.17_windows.exe'\n            ],\n            [\n                '12.6.2',\n                'https://developer.download.nvidia.com/compute/cuda/12.6.2/local_installers/cuda_12.6.2_560.94_windows.exe'\n            ],\n            [\n                '12.6.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.6.1/local_installers/cuda_12.6.1_560.94_windows.exe'\n            ],\n            [\n                '12.6.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.6.0/local_installers/cuda_12.6.0_560.76_windows.exe'\n            ],\n            [\n                '12.5.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.5.1/local_installers/cuda_12.5.1_555.85_windows.exe'\n            ],\n            [\n                '12.5.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.5.0/local_installers/cuda_12.5.0_555.85_windows.exe'\n            ],\n            [\n                '12.4.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.4.1/local_installers/cuda_12.4.1_551.78_windows.exe'\n            ],\n            [\n                '12.4.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda_12.4.0_551.61_windows.exe'\n            ],\n            [\n                '12.3.2',\n                'https://developer.download.nvidia.com/compute/cuda/12.3.2/local_installers/cuda_12.3.2_546.12_windows.exe'\n            ],\n            [\n                '12.3.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.3.1/local_installers/cuda_12.3.1_546.12_windows.exe'\n            ],\n            [\n                '12.3.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.3.0/local_installers/cuda_12.3.0_545.84_windows.exe'\n            ],\n            [\n                '12.2.2',\n                'https://developer.download.nvidia.com/compute/cuda/12.2.2/local_installers/cuda_12.2.2_537.13_windows.exe'\n            ],\n            [\n                '12.2.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.2.1/local_installers/cuda_12.2.1_536.67_windows.exe'\n            ],\n            [\n                '12.2.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.2.0/local_installers/cuda_12.2.0_536.25_windows.exe'\n            ],\n            [\n                '12.1.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.1.1/local_installers/cuda_12.1.1_531.14_windows.exe'\n            ],\n            [\n                '12.1.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_531.14_windows.exe'\n            ],\n            [\n                '12.0.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.0.1/local_installers/cuda_12.0.1_528.33_windows.exe'\n            ],\n            [\n                '12.0.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.0.0/local_installers/cuda_12.0.0_527.41_windows.exe'\n            ],\n            [\n                '11.8.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_522.06_windows.exe'\n            ],\n            [\n                '11.7.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.7.1/local_installers/cuda_11.7.1_516.94_windows.exe'\n            ],\n            [\n                '11.7.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_516.01_windows.exe'\n            ],\n            [\n                '11.6.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.6.2/local_installers/cuda_11.6.2_511.65_windows.exe'\n            ],\n            [\n                '11.6.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.6.1/local_installers/cuda_11.6.1_511.65_windows.exe'\n            ],\n            [\n                '11.6.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.6.0/local_installers/cuda_11.6.0_511.23_windows.exe'\n            ],\n            [\n                '11.5.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.5.2/local_installers/cuda_11.5.2_496.13_windows.exe'\n            ],\n            [\n                '11.5.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.5.1/local_installers/cuda_11.5.1_496.13_windows.exe'\n            ],\n            [\n                '11.5.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.5.0/local_installers/cuda_11.5.0_496.13_win10.exe'\n            ],\n            [\n                '11.4.4',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.4/local_installers/cuda_11.4.4_472.50_windows.exe'\n            ],\n            [\n                '11.4.3',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.3/local_installers/cuda_11.4.3_472.50_win10.exe'\n            ],\n            [\n                '11.4.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_471.41_win10.exe'\n            ],\n            [\n                '11.4.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.1/local_installers/cuda_11.4.1_471.41_win10.exe'\n            ],\n            [\n                '11.4.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.0/local_installers/cuda_11.4.0_471.11_win10.exe'\n            ],\n            [\n                '11.3.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.89_win10.exe'\n            ],\n            [\n                '11.3.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.3.0/local_installers/cuda_11.3.0_465.89_win10.exe'\n            ],\n            [\n                '11.2.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda_11.2.2_461.33_win10.exe'\n            ],\n            [\n                '11.2.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.2.1/local_installers/cuda_11.2.1_461.09_win10.exe'\n            ],\n            [\n                '11.2.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.2.0/local_installers/cuda_11.2.0_460.89_win10.exe'\n            ],\n            [\n                '11.1.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.1.1/local_installers/cuda_11.1.1_456.81_win10.exe'\n            ],\n            [\n                '11.0.3',\n                'https://developer.download.nvidia.com/compute/cuda/11.0.3/local_installers/cuda_11.0.3_451.82_win10.exe'\n            ],\n            [\n                '11.0.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.0.2/local_installers/cuda_11.0.2_451.48_win10.exe'\n            ],\n            [\n                '11.0.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.0.1/local_installers/cuda_11.0.1_451.22_win10.exe'\n            ],\n            [\n                '10.2.89',\n                'https://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_441.22_win10.exe'\n            ],\n            [\n                '10.1.243',\n                'https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_426.00_win10.exe'\n            ],\n            [\n                '10.0.130',\n                'https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_411.31_win10'\n            ],\n            [\n                '9.2.148',\n                'https://developer.nvidia.com/compute/cuda/9.2/Prod2/local_installers2/cuda_9.2.148_win10'\n            ],\n            [\n                '8.0.61',\n                'https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda_8.0.61_win10-exe'\n            ]\n        ]);\n    }\n    static get Instance() {\n        return this._instance || (this._instance = new this());\n    }\n    getAvailableNetworkCudaVersions() {\n        return Array.from(this.cudaVersionToNetworkUrl.keys()).map((s) => new semverExports.SemVer(s));\n    }\n    getNetworkURLFromCudaVersion(version) {\n        const urlString = this.cudaVersionToNetworkUrl.get(`${version}`);\n        if (urlString === undefined) {\n            throw new Error(`Invalid version: ${version}`);\n        }\n        return new URL(urlString);\n    }\n}\n\n/**\n * Singleton class for windows links.\n */\nclass LinuxLinks extends AbstractLinks {\n    // Singleton instance\n    static _instance;\n    // Private constructor to prevent instantiation\n    constructor() {\n        super();\n        // Map of cuda SemVer version to download URL\n        this.cudaVersionToURL = new Map([\n            [\n                '13.2.0',\n                'https://developer.download.nvidia.com/compute/cuda/13.2.0/local_installers/cuda_13.2.0_595.45.04_linux.run'\n            ],\n            [\n                '13.1.1',\n                'https://developer.download.nvidia.com/compute/cuda/13.1.1/local_installers/cuda_13.1.1_590.48.01_linux.run'\n            ],\n            [\n                '13.1.0',\n                'https://developer.download.nvidia.com/compute/cuda/13.1.0/local_installers/cuda_13.1.0_590.44.01_linux.run'\n            ],\n            [\n                '13.0.2',\n                'https://developer.download.nvidia.com/compute/cuda/13.0.2/local_installers/cuda_13.0.2_580.95.05_linux.run'\n            ],\n            [\n                '13.0.1',\n                'https://developer.download.nvidia.com/compute/cuda/13.0.1/local_installers/cuda_13.0.1_580.82.07_linux.run'\n            ],\n            [\n                '13.0.0',\n                'https://developer.download.nvidia.com/compute/cuda/13.0.0/local_installers/cuda_13.0.0_580.65.06_linux.run'\n            ],\n            [\n                '12.9.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_575.57.08_linux.run'\n            ],\n            [\n                '12.9.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.9.0/local_installers/cuda_12.9.0_575.51.03_linux.run'\n            ],\n            [\n                '12.8.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.8.1/local_installers/cuda_12.8.1_570.124.06_linux.run'\n            ],\n            [\n                '12.8.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.8.0/local_installers/cuda_12.8.0_570.86.10_linux.run'\n            ],\n            [\n                '12.6.3',\n                'https://developer.download.nvidia.com/compute/cuda/12.6.3/local_installers/cuda_12.6.3_560.35.05_linux.run'\n            ],\n            [\n                '12.6.2',\n                'https://developer.download.nvidia.com/compute/cuda/12.6.2/local_installers/cuda_12.6.2_560.35.03_linux.run'\n            ],\n            [\n                '12.6.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.6.1/local_installers/cuda_12.6.1_560.35.03_linux.run'\n            ],\n            [\n                '12.6.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.6.0/local_installers/cuda_12.6.0_560.28.03_linux.run'\n            ],\n            [\n                '12.5.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.5.1/local_installers/cuda_12.5.1_555.42.06_linux.run'\n            ],\n            [\n                '12.5.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.5.0/local_installers/cuda_12.5.0_555.42.02_linux.run'\n            ],\n            [\n                '12.4.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.4.1/local_installers/cuda_12.4.1_550.54.15_linux.run'\n            ],\n            [\n                '12.4.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda_12.4.0_550.54.14_linux.run'\n            ],\n            [\n                '12.3.2',\n                'https://developer.download.nvidia.com/compute/cuda/12.3.2/local_installers/cuda_12.3.2_545.23.08_linux.run'\n            ],\n            [\n                '12.3.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.3.1/local_installers/cuda_12.3.1_545.23.08_linux.run'\n            ],\n            [\n                '12.3.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.3.0/local_installers/cuda_12.3.0_545.23.06_linux.run'\n            ],\n            [\n                '12.2.2',\n                'https://developer.download.nvidia.com/compute/cuda/12.2.2/local_installers/cuda_12.2.2_535.104.05_linux.run'\n            ],\n            [\n                '12.2.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.2.1/local_installers/cuda_12.2.1_535.86.10_linux.run'\n            ],\n            [\n                '12.2.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.2.0/local_installers/cuda_12.2.0_535.54.03_linux.run'\n            ],\n            [\n                '12.1.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.1.1/local_installers/cuda_12.1.1_530.30.02_linux.run'\n            ],\n            [\n                '12.1.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run'\n            ],\n            [\n                '12.0.1',\n                'https://developer.download.nvidia.com/compute/cuda/12.0.1/local_installers/cuda_12.0.1_525.85.12_linux.run'\n            ],\n            [\n                '12.0.0',\n                'https://developer.download.nvidia.com/compute/cuda/12.0.0/local_installers/cuda_12.0.0_525.60.13_linux.run'\n            ],\n            [\n                '11.8.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run'\n            ],\n            [\n                '11.7.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.7.1/local_installers/cuda_11.7.1_515.65.01_linux.run'\n            ],\n            [\n                '11.7.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_515.43.04_linux.run'\n            ],\n            [\n                '11.6.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.6.2/local_installers/cuda_11.6.2_510.47.03_linux.run'\n            ],\n            [\n                '11.6.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.6.1/local_installers/cuda_11.6.1_510.47.03_linux.run'\n            ],\n            [\n                '11.6.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.6.0/local_installers/cuda_11.6.0_510.39.01_linux.run'\n            ],\n            [\n                '11.5.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.5.2/local_installers/cuda_11.5.2_495.29.05_linux.run'\n            ],\n            [\n                '11.5.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.5.1/local_installers/cuda_11.5.1_495.29.05_linux.run'\n            ],\n            [\n                '11.5.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.5.0/local_installers/cuda_11.5.0_495.29.05_linux.run'\n            ],\n            [\n                '11.4.4',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.4/local_installers/cuda_11.4.4_470.82.01_linux.run'\n            ],\n            [\n                '11.4.3',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.3/local_installers/cuda_11.4.3_470.82.01_linux.run'\n            ],\n            [\n                '11.4.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_470.57.02_linux.run'\n            ],\n            [\n                '11.4.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.1/local_installers/cuda_11.4.1_470.57.02_linux.run'\n            ],\n            [\n                '11.4.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.4.0/local_installers/cuda_11.4.0_470.42.01_linux.run'\n            ],\n            [\n                '11.3.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.19.01_linux.run'\n            ],\n            [\n                '11.3.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.3.0/local_installers/cuda_11.3.0_465.19.01_linux.run'\n            ],\n            [\n                '11.2.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda_11.2.2_460.32.03_linux.run'\n            ],\n            [\n                '11.2.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.2.1/local_installers/cuda_11.2.1_460.32.03_linux.run'\n            ],\n            [\n                '11.2.0',\n                'https://developer.download.nvidia.com/compute/cuda/11.2.0/local_installers/cuda_11.2.0_460.27.04_linux.run'\n            ],\n            [\n                '11.1.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.1.1/local_installers/cuda_11.1.1_455.32.00_linux.run'\n            ],\n            [\n                '11.0.3',\n                'https://developer.download.nvidia.com/compute/cuda/11.0.3/local_installers/cuda_11.0.3_450.51.06_linux.run'\n            ],\n            [\n                '11.0.2',\n                'https://developer.download.nvidia.com/compute/cuda/11.0.2/local_installers/cuda_11.0.2_450.51.05_linux.run'\n            ],\n            [\n                '11.0.1',\n                'https://developer.download.nvidia.com/compute/cuda/11.0.1/local_installers/cuda_11.0.1_450.36.06_linux.run'\n            ],\n            [\n                '10.2.89',\n                'https://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux.run'\n            ],\n            [\n                '10.1.243',\n                'https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_418.87.00_linux.run'\n            ],\n            [\n                '10.0.130',\n                'https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_410.48_linux'\n            ],\n            [\n                '9.2.148',\n                'https://developer.nvidia.com/compute/cuda/9.2/Prod2/local_installers/cuda_9.2.148_396.37_linux'\n            ],\n            [\n                '8.0.61',\n                'https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda_8.0.61_375.26_linux-run'\n            ]\n        ]);\n    }\n    async getLocalURLFromCudaVersion(version) {\n        const link = await super.getLocalURLFromCudaVersion(version);\n        const arch = await getArch();\n        if (arch === CPUArch.arm64) {\n            return new URL(link.toString().replace('_linux.run', '_linux_sbsa.run'));\n        }\n        else {\n            return link;\n        }\n    }\n    static get Instance() {\n        return this._instance || (this._instance = new this());\n    }\n}\n\n// Platform independent getter for ILinks interface\nasync function getLinks() {\n    const osType = await getOs();\n    switch (osType) {\n        case OSType.windows:\n            return WindowsLinks.Instance;\n        case OSType.linux:\n            return LinuxLinks.Instance;\n    }\n}\n\nasync function getFilesRecursive(dir) {\n    const results = [];\n    async function walk(current) {\n        const entries = await fs__default.promises.readdir(current, { withFileTypes: true });\n        for (const entry of entries) {\n            const fullPath = require$$1__default.join(current, entry.name);\n            if (entry.isDirectory()) {\n                await walk(fullPath);\n            }\n            else if (entry.isFile()) {\n                results.push(fullPath);\n            }\n        }\n    }\n    try {\n        await walk(dir);\n    }\n    catch (e) {\n        coreExports.debug(`Error reading files from ${dir}: ${e}`);\n        return [];\n    }\n    return results;\n}\nasync function filterReadable(paths) {\n    const readable = [];\n    for (const path of paths) {\n        try {\n            await fs__default.promises.access(path, fs__default.constants.R_OK);\n            readable.push(path);\n        }\n        catch (e) {\n            coreExports.debug(`Path not readable: ${path} - ${e}`);\n        }\n    }\n    return readable;\n}\n\n// Download helper which returns the installer executable and caches it for next runs\nasync function download(version, method, useLocalCache, useGitHubCache) {\n    // First try to find tool with desired version in tool cache (local to machine)\n    const toolName = 'cuda_installer';\n    const osType = await getOs();\n    const cpuArch = await getArch();\n    const osRelease = await getRelease();\n    const toolId = `${toolName}-${osType}-${osRelease}-${cpuArch}`;\n    // Path that contains the executable file\n    let executableDirectory;\n    const cacheKey = `${toolId}-${version}`;\n    const cacheDirectory = cacheKey;\n    if (useLocalCache) {\n        const toolPath = toolCacheExports.find(toolId, `${version}`);\n        if (toolPath) {\n            // Tool is already in cache\n            coreExports.debug(`Found in local machine cache ${toolPath}`);\n            executableDirectory = toolPath;\n        }\n        else {\n            coreExports.debug(`Not found in local cache`);\n        }\n    }\n    if (executableDirectory === undefined && useGitHubCache) {\n        // Second option, get tool from GitHub cache if enabled\n        const cacheResult = await cacheExports.restoreCache([cacheDirectory], cacheKey);\n        if (cacheResult !== undefined) {\n            coreExports.debug(`Found in GitHub cache ${cacheDirectory}`);\n            executableDirectory = cacheDirectory;\n        }\n        else {\n            coreExports.debug(`Not found in GitHub cache`);\n        }\n    }\n    if (executableDirectory === undefined) {\n        // Final option, download tool from NVIDIA servers\n        coreExports.debug(`Not found in local/GitHub cache, downloading...`);\n        // Get download URL\n        const url = await getDownloadURL(method, version);\n        // Get intsaller filename extension depending on OS\n        const fileExtension = getFileExtension(osType);\n        const downloadDirectory = `cuda_download`;\n        const destFileName = `${toolId}_${version}.${fileExtension}`;\n        const destFilePath = `${downloadDirectory}/${destFileName}`;\n        // Check if file already exists\n        if (!(await fileExists(destFilePath))) {\n            coreExports.debug(`File at ${destFilePath} does not exist, downloading`);\n            // Download executable\n            await toolCacheExports.downloadTool(url.toString(), destFilePath);\n        }\n        else {\n            coreExports.debug(`File at ${destFilePath} already exists, skipping download`);\n        }\n        if (useLocalCache) {\n            // Cache download to local machine cache\n            const localCacheDirectory = await toolCacheExports.cacheFile(destFilePath, destFileName, `${toolName}-${osType}-${cpuArch}`, `${version}`);\n            coreExports.debug(`Cached download to local machine cache at ${localCacheDirectory}`);\n            executableDirectory = localCacheDirectory;\n        }\n        if (useGitHubCache && osType !== OSType.windows) {\n            // Move file to GitHub cache directory\n            coreExports.debug(`Copying ${destFilePath} to ${cacheDirectory}`);\n            await ioExports.mkdirP(cacheDirectory);\n            await ioExports.mv(destFilePath, cacheDirectory);\n            // Log full path and files in cache directory\n            const filesInCacheDir = await getFilesRecursive(cacheDirectory);\n            coreExports.debug(`Files in GitHub cache directory ${cacheDirectory}:`);\n            for (const f of filesInCacheDir) {\n                coreExports.debug(f);\n            }\n            // Log absolute path\n            const absoluteCacheDir = await fs__default.promises.realpath(cacheDirectory);\n            coreExports.debug(`Absolute path of cache directory: ${absoluteCacheDir}`);\n            // Save cache directory to GitHub cache\n            const cacheId = await cacheExports.saveCache([cacheDirectory], cacheKey);\n            if (cacheId !== -1) {\n                coreExports.debug(`Cached download to GitHub cache with cache id ${cacheId}`);\n            }\n            else {\n                coreExports.debug(`Did not cache, cache possibly already exists`);\n            }\n            coreExports.debug(`Tool was moved to cache directory ${cacheDirectory}`);\n            executableDirectory = cacheDirectory;\n        }\n        if (executableDirectory === undefined) {\n            executableDirectory = downloadDirectory;\n        }\n    }\n    coreExports.debug(`Executable path ${executableDirectory}`);\n    // String with full executable path\n    let fullExecutablePath;\n    // Get list of files in tool cache using readdir recursive helper\n    const filesInCache = await getFilesRecursive(executableDirectory);\n    coreExports.debug(`Files in tool cache:`);\n    for (const f of filesInCache) {\n        coreExports.debug(f);\n    }\n    if (filesInCache.length > 1) {\n        throw new Error(`Got multiple file in tool cache: ${filesInCache.length}`);\n    }\n    else if (filesInCache.length === 0) {\n        throw new Error(`Got no files in tool cache`);\n    }\n    else {\n        fullExecutablePath = filesInCache[0];\n    }\n    // Make file executable on linux\n    if ((await getOs()) === OSType.linux) {\n        // 0755 octal notation permission is: owner(r,w,x), group(r,w,x), other(r,x) where r=read, w=write, x=execute\n        await fs__default.promises.chmod(fullExecutablePath, '0755');\n    }\n    // Return full executable path\n    return fullExecutablePath;\n}\nfunction getFileExtension(osType) {\n    switch (osType) {\n        case OSType.windows:\n            return 'exe';\n        case OSType.linux:\n            return 'run';\n    }\n}\nasync function fileExists(filePath) {\n    try {\n        const stats = await fs__default.promises.stat(filePath);\n        coreExports.debug(`Got the following stats for ${filePath}: ${stats}`);\n        return !!stats;\n    }\n    catch (e) {\n        coreExports.debug(`Got error while checking if ${filePath} exists: ${e}`);\n        return false;\n    }\n}\nasync function getDownloadURL(method, version) {\n    const links = await getLinks();\n    switch (method) {\n        case 'local':\n            return await links.getLocalURLFromCudaVersion(version);\n        case 'network':\n            if (!(links instanceof WindowsLinks)) {\n                coreExports.debug(`Tried to get windows links but got linux links instance`);\n                throw new Error(`Network mode is not supported by linux, shouldn't even get here`);\n            }\n            return links.getNetworkURLFromCudaVersion(version);\n        default:\n            throw new Error(`Invalid method: expected either 'local' or 'network', got '${method}'`);\n    }\n}\n\n// Helper for converting string to SemVer and verifying it exists in the links\nasync function getVersion(versionString, method) {\n    const version = new semverExports.SemVer(versionString);\n    const links = await getLinks();\n    let versions;\n    switch (method) {\n        case 'local':\n            versions = links.getAvailableLocalCudaVersions();\n            break;\n        case 'network':\n            switch (await getOs()) {\n                case OSType.linux:\n                    // TODO adapt this to actual available network versions for linux\n                    versions = links.getAvailableLocalCudaVersions();\n                    break;\n                case OSType.windows:\n                    versions = links.getAvailableNetworkCudaVersions();\n                    break;\n            }\n    }\n    coreExports.debug(`Available versions: ${versions}`);\n    if (versions.find((v) => v.compare(version) === 0) !== undefined) {\n        coreExports.debug(`Version available: ${version}`);\n        return version;\n    }\n    else {\n        coreExports.debug(`Version not available error!`);\n        throw new Error(`Version not available: ${version}`);\n    }\n}\n\nvar artifact$1 = {};\n\nvar client = {};\n\nvar config = {};\n\nvar hasRequiredConfig;\n\nfunction requireConfig () {\n\tif (hasRequiredConfig) return config;\n\thasRequiredConfig = 1;\n\tvar __importDefault = (config && config.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(config, \"__esModule\", { value: true });\n\tconfig.getUploadChunkTimeout = config.getConcurrency = config.getGitHubWorkspaceDir = config.isGhes = config.getResultsServiceUrl = config.getRuntimeToken = config.getUploadChunkSize = void 0;\n\tconst os_1 = __importDefault(require$$0__default);\n\tconst core_1 = requireCore$1();\n\t// Used for controlling the highWaterMark value of the zip that is being streamed\n\t// The same value is used as the chunk size that is use during upload to blob storage\n\tfunction getUploadChunkSize() {\n\t    return 8 * 1024 * 1024; // 8 MB Chunks\n\t}\n\tconfig.getUploadChunkSize = getUploadChunkSize;\n\tfunction getRuntimeToken() {\n\t    const token = process.env['ACTIONS_RUNTIME_TOKEN'];\n\t    if (!token) {\n\t        throw new Error('Unable to get the ACTIONS_RUNTIME_TOKEN env variable');\n\t    }\n\t    return token;\n\t}\n\tconfig.getRuntimeToken = getRuntimeToken;\n\tfunction getResultsServiceUrl() {\n\t    const resultsUrl = process.env['ACTIONS_RESULTS_URL'];\n\t    if (!resultsUrl) {\n\t        throw new Error('Unable to get the ACTIONS_RESULTS_URL env variable');\n\t    }\n\t    return new URL(resultsUrl).origin;\n\t}\n\tconfig.getResultsServiceUrl = getResultsServiceUrl;\n\tfunction isGhes() {\n\t    const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');\n\t    const hostname = ghUrl.hostname.trimEnd().toUpperCase();\n\t    const isGitHubHost = hostname === 'GITHUB.COM';\n\t    const isGheHost = hostname.endsWith('.GHE.COM');\n\t    const isLocalHost = hostname.endsWith('.LOCALHOST');\n\t    return !isGitHubHost && !isGheHost && !isLocalHost;\n\t}\n\tconfig.isGhes = isGhes;\n\tfunction getGitHubWorkspaceDir() {\n\t    const ghWorkspaceDir = process.env['GITHUB_WORKSPACE'];\n\t    if (!ghWorkspaceDir) {\n\t        throw new Error('Unable to get the GITHUB_WORKSPACE env variable');\n\t    }\n\t    return ghWorkspaceDir;\n\t}\n\tconfig.getGitHubWorkspaceDir = getGitHubWorkspaceDir;\n\t// The maximum value of concurrency is 300.\n\t// This value can be changed with ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY variable.\n\tfunction getConcurrency() {\n\t    const numCPUs = os_1.default.cpus().length;\n\t    let concurrencyCap = 32;\n\t    if (numCPUs > 4) {\n\t        const concurrency = 16 * numCPUs;\n\t        concurrencyCap = concurrency > 300 ? 300 : concurrency;\n\t    }\n\t    const concurrencyOverride = process.env['ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY'];\n\t    if (concurrencyOverride) {\n\t        const concurrency = parseInt(concurrencyOverride);\n\t        if (isNaN(concurrency) || concurrency < 1) {\n\t            throw new Error('Invalid value set for ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY env variable');\n\t        }\n\t        if (concurrency < concurrencyCap) {\n\t            (0, core_1.info)(`Set concurrency based on the value set in ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY.`);\n\t            return concurrency;\n\t        }\n\t        (0, core_1.info)(`ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY is higher than the cap of ${concurrencyCap} based on the number of cpus. Set it to the maximum value allowed.`);\n\t        return concurrencyCap;\n\t    }\n\t    // default concurrency to 5\n\t    return 5;\n\t}\n\tconfig.getConcurrency = getConcurrency;\n\tfunction getUploadChunkTimeout() {\n\t    const timeoutVar = process.env['ACTIONS_ARTIFACT_UPLOAD_TIMEOUT_MS'];\n\t    if (!timeoutVar) {\n\t        return 300000; // 5 minutes\n\t    }\n\t    const timeout = parseInt(timeoutVar);\n\t    if (isNaN(timeout)) {\n\t        throw new Error('Invalid value set for ACTIONS_ARTIFACT_UPLOAD_TIMEOUT_MS env variable');\n\t    }\n\t    return timeout;\n\t}\n\tconfig.getUploadChunkTimeout = getUploadChunkTimeout;\n\t\n\treturn config;\n}\n\nvar uploadArtifact = {};\n\nvar retention = {};\n\nvar generated = {};\n\nvar timestamp = {};\n\nvar hasRequiredTimestamp;\n\nfunction requireTimestamp () {\n\tif (hasRequiredTimestamp) return timestamp;\n\thasRequiredTimestamp = 1;\n\tObject.defineProperty(timestamp, \"__esModule\", { value: true });\n\ttimestamp.Timestamp = void 0;\n\tconst runtime_1 = require$$1$1;\n\tconst runtime_2 = require$$1$1;\n\tconst runtime_3 = require$$1$1;\n\tconst runtime_4 = require$$1$1;\n\tconst runtime_5 = require$$1$1;\n\tconst runtime_6 = require$$1$1;\n\tconst runtime_7 = require$$1$1;\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass Timestamp$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.Timestamp\", [\n\t            { no: 1, name: \"seconds\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ },\n\t            { no: 2, name: \"nanos\", kind: \"scalar\", T: 5 /*ScalarType.INT32*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Creates a new `Timestamp` for the current time.\n\t     */\n\t    now() {\n\t        const msg = this.create();\n\t        const ms = Date.now();\n\t        msg.seconds = runtime_6.PbLong.from(Math.floor(ms / 1000)).toString();\n\t        msg.nanos = (ms % 1000) * 1000000;\n\t        return msg;\n\t    }\n\t    /**\n\t     * Converts a `Timestamp` to a JavaScript Date.\n\t     */\n\t    toDate(message) {\n\t        return new Date(runtime_6.PbLong.from(message.seconds).toNumber() * 1000 + Math.ceil(message.nanos / 1000000));\n\t    }\n\t    /**\n\t     * Converts a JavaScript Date to a `Timestamp`.\n\t     */\n\t    fromDate(date) {\n\t        const msg = this.create();\n\t        const ms = date.getTime();\n\t        msg.seconds = runtime_6.PbLong.from(Math.floor(ms / 1000)).toString();\n\t        msg.nanos = (ms % 1000) * 1000000;\n\t        return msg;\n\t    }\n\t    /**\n\t     * In JSON format, the `Timestamp` type is encoded as a string\n\t     * in the RFC 3339 format.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        let ms = runtime_6.PbLong.from(message.seconds).toNumber() * 1000;\n\t        if (ms < Date.parse(\"0001-01-01T00:00:00Z\") || ms > Date.parse(\"9999-12-31T23:59:59Z\"))\n\t            throw new Error(\"Unable to encode Timestamp to JSON. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.\");\n\t        if (message.nanos < 0)\n\t            throw new Error(\"Unable to encode invalid Timestamp to JSON. Nanos must not be negative.\");\n\t        let z = \"Z\";\n\t        if (message.nanos > 0) {\n\t            let nanosStr = (message.nanos + 1000000000).toString().substring(1);\n\t            if (nanosStr.substring(3) === \"000000\")\n\t                z = \".\" + nanosStr.substring(0, 3) + \"Z\";\n\t            else if (nanosStr.substring(6) === \"000\")\n\t                z = \".\" + nanosStr.substring(0, 6) + \"Z\";\n\t            else\n\t                z = \".\" + nanosStr + \"Z\";\n\t        }\n\t        return new Date(ms).toISOString().replace(\".000Z\", z);\n\t    }\n\t    /**\n\t     * In JSON format, the `Timestamp` type is encoded as a string\n\t     * in the RFC 3339 format.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (typeof json !== \"string\")\n\t            throw new Error(\"Unable to parse Timestamp from JSON \" + (0, runtime_5.typeofJsonValue)(json) + \".\");\n\t        let matches = json.match(/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(?:Z|\\.([0-9]{3,9})Z|([+-][0-9][0-9]:[0-9][0-9]))$/);\n\t        if (!matches)\n\t            throw new Error(\"Unable to parse Timestamp from JSON. Invalid format.\");\n\t        let ms = Date.parse(matches[1] + \"-\" + matches[2] + \"-\" + matches[3] + \"T\" + matches[4] + \":\" + matches[5] + \":\" + matches[6] + (matches[8] ? matches[8] : \"Z\"));\n\t        if (Number.isNaN(ms))\n\t            throw new Error(\"Unable to parse Timestamp from JSON. Invalid value.\");\n\t        if (ms < Date.parse(\"0001-01-01T00:00:00Z\") || ms > Date.parse(\"9999-12-31T23:59:59Z\"))\n\t            throw new globalThis.Error(\"Unable to parse Timestamp from JSON. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.\");\n\t        if (!target)\n\t            target = this.create();\n\t        target.seconds = runtime_6.PbLong.from(ms / 1000).toString();\n\t        target.nanos = 0;\n\t        if (matches[7])\n\t            target.nanos = (parseInt(\"1\" + matches[7] + \"0\".repeat(9 - matches[7].length)) - 1000000000);\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { seconds: \"0\", nanos: 0 };\n\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* int64 seconds */ 1:\n\t                    message.seconds = reader.int64().toString();\n\t                    break;\n\t                case /* int32 nanos */ 2:\n\t                    message.nanos = reader.int32();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* int64 seconds = 1; */\n\t        if (message.seconds !== \"0\")\n\t            writer.tag(1, runtime_1.WireType.Varint).int64(message.seconds);\n\t        /* int32 nanos = 2; */\n\t        if (message.nanos !== 0)\n\t            writer.tag(2, runtime_1.WireType.Varint).int32(message.nanos);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.Timestamp\n\t */\n\ttimestamp.Timestamp = new Timestamp$Type();\n\t\n\treturn timestamp;\n}\n\nvar wrappers$1 = {};\n\nvar hasRequiredWrappers;\n\nfunction requireWrappers () {\n\tif (hasRequiredWrappers) return wrappers$1;\n\thasRequiredWrappers = 1;\n\tObject.defineProperty(wrappers$1, \"__esModule\", { value: true });\n\twrappers$1.BytesValue = wrappers$1.StringValue = wrappers$1.BoolValue = wrappers$1.UInt32Value = wrappers$1.Int32Value = wrappers$1.UInt64Value = wrappers$1.Int64Value = wrappers$1.FloatValue = wrappers$1.DoubleValue = void 0;\n\t// @generated by protobuf-ts 2.9.1 with parameter long_type_string,client_none,generate_dependencies\n\t// @generated from protobuf file \"google/protobuf/wrappers.proto\" (package \"google.protobuf\", syntax proto3)\n\t// tslint:disable\n\t//\n\t// Protocol Buffers - Google's data interchange format\n\t// Copyright 2008 Google Inc.  All rights reserved.\n\t// https://developers.google.com/protocol-buffers/\n\t//\n\t// Redistribution and use in source and binary forms, with or without\n\t// modification, are permitted provided that the following conditions are\n\t// met:\n\t//\n\t//     * Redistributions of source code must retain the above copyright\n\t// notice, this list of conditions and the following disclaimer.\n\t//     * Redistributions in binary form must reproduce the above\n\t// copyright notice, this list of conditions and the following disclaimer\n\t// in the documentation and/or other materials provided with the\n\t// distribution.\n\t//     * Neither the name of Google Inc. nor the names of its\n\t// contributors may be used to endorse or promote products derived from\n\t// this software without specific prior written permission.\n\t//\n\t// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\t// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\t// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\t// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\t// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\t// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\t// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\t// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\t// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\t// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t//\n\t//\n\t// Wrappers for primitive (non-message) types. These types are useful\n\t// for embedding primitives in the `google.protobuf.Any` type and for places\n\t// where we need to distinguish between the absence of a primitive\n\t// typed field and its default value.\n\t//\n\tconst runtime_1 = require$$1$1;\n\tconst runtime_2 = require$$1$1;\n\tconst runtime_3 = require$$1$1;\n\tconst runtime_4 = require$$1$1;\n\tconst runtime_5 = require$$1$1;\n\tconst runtime_6 = require$$1$1;\n\tconst runtime_7 = require$$1$1;\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass DoubleValue$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.DoubleValue\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 1 /*ScalarType.DOUBLE*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `DoubleValue` to JSON number.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return this.refJsonWriter.scalar(2, message.value, \"value\", false, true);\n\t    }\n\t    /**\n\t     * Decode `DoubleValue` from JSON number.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, 1, undefined, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: 0 };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* double value */ 1:\n\t                    message.value = reader.double();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* double value = 1; */\n\t        if (message.value !== 0)\n\t            writer.tag(1, runtime_3.WireType.Bit64).double(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.DoubleValue\n\t */\n\twrappers$1.DoubleValue = new DoubleValue$Type();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass FloatValue$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.FloatValue\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 2 /*ScalarType.FLOAT*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `FloatValue` to JSON number.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return this.refJsonWriter.scalar(1, message.value, \"value\", false, true);\n\t    }\n\t    /**\n\t     * Decode `FloatValue` from JSON number.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, 1, undefined, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: 0 };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* float value */ 1:\n\t                    message.value = reader.float();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* float value = 1; */\n\t        if (message.value !== 0)\n\t            writer.tag(1, runtime_3.WireType.Bit32).float(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.FloatValue\n\t */\n\twrappers$1.FloatValue = new FloatValue$Type();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass Int64Value$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.Int64Value\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `Int64Value` to JSON string.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return this.refJsonWriter.scalar(runtime_1.ScalarType.INT64, message.value, \"value\", false, true);\n\t    }\n\t    /**\n\t     * Decode `Int64Value` from JSON string.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, runtime_1.ScalarType.INT64, runtime_2.LongType.STRING, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: \"0\" };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* int64 value */ 1:\n\t                    message.value = reader.int64().toString();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* int64 value = 1; */\n\t        if (message.value !== \"0\")\n\t            writer.tag(1, runtime_3.WireType.Varint).int64(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.Int64Value\n\t */\n\twrappers$1.Int64Value = new Int64Value$Type();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass UInt64Value$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.UInt64Value\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 4 /*ScalarType.UINT64*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `UInt64Value` to JSON string.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return this.refJsonWriter.scalar(runtime_1.ScalarType.UINT64, message.value, \"value\", false, true);\n\t    }\n\t    /**\n\t     * Decode `UInt64Value` from JSON string.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, runtime_1.ScalarType.UINT64, runtime_2.LongType.STRING, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: \"0\" };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* uint64 value */ 1:\n\t                    message.value = reader.uint64().toString();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* uint64 value = 1; */\n\t        if (message.value !== \"0\")\n\t            writer.tag(1, runtime_3.WireType.Varint).uint64(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.UInt64Value\n\t */\n\twrappers$1.UInt64Value = new UInt64Value$Type();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass Int32Value$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.Int32Value\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 5 /*ScalarType.INT32*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `Int32Value` to JSON string.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return this.refJsonWriter.scalar(5, message.value, \"value\", false, true);\n\t    }\n\t    /**\n\t     * Decode `Int32Value` from JSON string.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, 5, undefined, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: 0 };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* int32 value */ 1:\n\t                    message.value = reader.int32();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* int32 value = 1; */\n\t        if (message.value !== 0)\n\t            writer.tag(1, runtime_3.WireType.Varint).int32(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.Int32Value\n\t */\n\twrappers$1.Int32Value = new Int32Value$Type();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass UInt32Value$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.UInt32Value\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 13 /*ScalarType.UINT32*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `UInt32Value` to JSON string.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return this.refJsonWriter.scalar(13, message.value, \"value\", false, true);\n\t    }\n\t    /**\n\t     * Decode `UInt32Value` from JSON string.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, 13, undefined, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: 0 };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* uint32 value */ 1:\n\t                    message.value = reader.uint32();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* uint32 value = 1; */\n\t        if (message.value !== 0)\n\t            writer.tag(1, runtime_3.WireType.Varint).uint32(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.UInt32Value\n\t */\n\twrappers$1.UInt32Value = new UInt32Value$Type();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass BoolValue$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.BoolValue\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `BoolValue` to JSON bool.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return message.value;\n\t    }\n\t    /**\n\t     * Decode `BoolValue` from JSON bool.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, 8, undefined, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: false };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* bool value */ 1:\n\t                    message.value = reader.bool();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* bool value = 1; */\n\t        if (message.value !== false)\n\t            writer.tag(1, runtime_3.WireType.Varint).bool(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.BoolValue\n\t */\n\twrappers$1.BoolValue = new BoolValue$Type();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass StringValue$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.StringValue\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `StringValue` to JSON string.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return message.value;\n\t    }\n\t    /**\n\t     * Decode `StringValue` from JSON string.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, 9, undefined, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: \"\" };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* string value */ 1:\n\t                    message.value = reader.string();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* string value = 1; */\n\t        if (message.value !== \"\")\n\t            writer.tag(1, runtime_3.WireType.LengthDelimited).string(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.StringValue\n\t */\n\twrappers$1.StringValue = new StringValue$Type();\n\t// @generated message type with reflection information, may provide speed optimized methods\n\tclass BytesValue$Type extends runtime_7.MessageType {\n\t    constructor() {\n\t        super(\"google.protobuf.BytesValue\", [\n\t            { no: 1, name: \"value\", kind: \"scalar\", T: 12 /*ScalarType.BYTES*/ }\n\t        ]);\n\t    }\n\t    /**\n\t     * Encode `BytesValue` to JSON string.\n\t     */\n\t    internalJsonWrite(message, options) {\n\t        return this.refJsonWriter.scalar(12, message.value, \"value\", false, true);\n\t    }\n\t    /**\n\t     * Decode `BytesValue` from JSON string.\n\t     */\n\t    internalJsonRead(json, options, target) {\n\t        if (!target)\n\t            target = this.create();\n\t        target.value = this.refJsonReader.scalar(json, 12, undefined, \"value\");\n\t        return target;\n\t    }\n\t    create(value) {\n\t        const message = { value: new Uint8Array(0) };\n\t        globalThis.Object.defineProperty(message, runtime_6.MESSAGE_TYPE, { enumerable: false, value: this });\n\t        if (value !== undefined)\n\t            (0, runtime_5.reflectionMergePartial)(this, message, value);\n\t        return message;\n\t    }\n\t    internalBinaryRead(reader, length, options, target) {\n\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t        while (reader.pos < end) {\n\t            let [fieldNo, wireType] = reader.tag();\n\t            switch (fieldNo) {\n\t                case /* bytes value */ 1:\n\t                    message.value = reader.bytes();\n\t                    break;\n\t                default:\n\t                    let u = options.readUnknownField;\n\t                    if (u === \"throw\")\n\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t                    let d = reader.skip(wireType);\n\t                    if (u !== false)\n\t                        (u === true ? runtime_4.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t            }\n\t        }\n\t        return message;\n\t    }\n\t    internalBinaryWrite(message, writer, options) {\n\t        /* bytes value = 1; */\n\t        if (message.value.length)\n\t            writer.tag(1, runtime_3.WireType.LengthDelimited).bytes(message.value);\n\t        let u = options.writeUnknownFields;\n\t        if (u !== false)\n\t            (u == true ? runtime_4.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t        return writer;\n\t    }\n\t}\n\t/**\n\t * @generated MessageType for protobuf message google.protobuf.BytesValue\n\t */\n\twrappers$1.BytesValue = new BytesValue$Type();\n\t\n\treturn wrappers$1;\n}\n\nvar artifact = {};\n\nvar hasRequiredArtifact$1;\n\nfunction requireArtifact$1 () {\n\tif (hasRequiredArtifact$1) return artifact;\n\thasRequiredArtifact$1 = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.ArtifactService = exports.DeleteArtifactResponse = exports.DeleteArtifactRequest = exports.GetSignedArtifactURLResponse = exports.GetSignedArtifactURLRequest = exports.ListArtifactsResponse_MonolithArtifact = exports.ListArtifactsResponse = exports.ListArtifactsRequest = exports.FinalizeArtifactResponse = exports.FinalizeArtifactRequest = exports.CreateArtifactResponse = exports.CreateArtifactRequest = exports.FinalizeMigratedArtifactResponse = exports.FinalizeMigratedArtifactRequest = exports.MigrateArtifactResponse = exports.MigrateArtifactRequest = void 0;\n\t\t// @generated by protobuf-ts 2.9.1 with parameter long_type_string,client_none,generate_dependencies\n\t\t// @generated from protobuf file \"results/api/v1/artifact.proto\" (package \"github.actions.results.api.v1\", syntax proto3)\n\t\t// tslint:disable\n\t\tconst runtime_rpc_1 = require$$0$2;\n\t\tconst runtime_1 = require$$1$1;\n\t\tconst runtime_2 = require$$1$1;\n\t\tconst runtime_3 = require$$1$1;\n\t\tconst runtime_4 = require$$1$1;\n\t\tconst runtime_5 = require$$1$1;\n\t\tconst wrappers_1 = requireWrappers();\n\t\tconst wrappers_2 = requireWrappers();\n\t\tconst timestamp_1 = requireTimestamp();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass MigrateArtifactRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.MigrateArtifactRequest\", [\n\t\t            { no: 1, name: \"workflow_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 2, name: \"name\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"expires_at\", kind: \"message\", T: () => timestamp_1.Timestamp }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { workflowRunBackendId: \"\", name: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string workflow_run_backend_id */ 1:\n\t\t                    message.workflowRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string name */ 2:\n\t\t                    message.name = reader.string();\n\t\t                    break;\n\t\t                case /* google.protobuf.Timestamp expires_at */ 3:\n\t\t                    message.expiresAt = timestamp_1.Timestamp.internalBinaryRead(reader, reader.uint32(), options, message.expiresAt);\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string workflow_run_backend_id = 1; */\n\t\t        if (message.workflowRunBackendId !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.workflowRunBackendId);\n\t\t        /* string name = 2; */\n\t\t        if (message.name !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.name);\n\t\t        /* google.protobuf.Timestamp expires_at = 3; */\n\t\t        if (message.expiresAt)\n\t\t            timestamp_1.Timestamp.internalBinaryWrite(message.expiresAt, writer.tag(3, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.MigrateArtifactRequest\n\t\t */\n\t\texports.MigrateArtifactRequest = new MigrateArtifactRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass MigrateArtifactResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.MigrateArtifactResponse\", [\n\t\t            { no: 1, name: \"ok\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ },\n\t\t            { no: 2, name: \"signed_upload_url\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { ok: false, signedUploadUrl: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* bool ok */ 1:\n\t\t                    message.ok = reader.bool();\n\t\t                    break;\n\t\t                case /* string signed_upload_url */ 2:\n\t\t                    message.signedUploadUrl = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* bool ok = 1; */\n\t\t        if (message.ok !== false)\n\t\t            writer.tag(1, runtime_1.WireType.Varint).bool(message.ok);\n\t\t        /* string signed_upload_url = 2; */\n\t\t        if (message.signedUploadUrl !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.signedUploadUrl);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.MigrateArtifactResponse\n\t\t */\n\t\texports.MigrateArtifactResponse = new MigrateArtifactResponse$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass FinalizeMigratedArtifactRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.FinalizeMigratedArtifactRequest\", [\n\t\t            { no: 1, name: \"workflow_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 2, name: \"name\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"size\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { workflowRunBackendId: \"\", name: \"\", size: \"0\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string workflow_run_backend_id */ 1:\n\t\t                    message.workflowRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string name */ 2:\n\t\t                    message.name = reader.string();\n\t\t                    break;\n\t\t                case /* int64 size */ 3:\n\t\t                    message.size = reader.int64().toString();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string workflow_run_backend_id = 1; */\n\t\t        if (message.workflowRunBackendId !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.workflowRunBackendId);\n\t\t        /* string name = 2; */\n\t\t        if (message.name !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.name);\n\t\t        /* int64 size = 3; */\n\t\t        if (message.size !== \"0\")\n\t\t            writer.tag(3, runtime_1.WireType.Varint).int64(message.size);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.FinalizeMigratedArtifactRequest\n\t\t */\n\t\texports.FinalizeMigratedArtifactRequest = new FinalizeMigratedArtifactRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass FinalizeMigratedArtifactResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.FinalizeMigratedArtifactResponse\", [\n\t\t            { no: 1, name: \"ok\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ },\n\t\t            { no: 2, name: \"artifact_id\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { ok: false, artifactId: \"0\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* bool ok */ 1:\n\t\t                    message.ok = reader.bool();\n\t\t                    break;\n\t\t                case /* int64 artifact_id */ 2:\n\t\t                    message.artifactId = reader.int64().toString();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* bool ok = 1; */\n\t\t        if (message.ok !== false)\n\t\t            writer.tag(1, runtime_1.WireType.Varint).bool(message.ok);\n\t\t        /* int64 artifact_id = 2; */\n\t\t        if (message.artifactId !== \"0\")\n\t\t            writer.tag(2, runtime_1.WireType.Varint).int64(message.artifactId);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.FinalizeMigratedArtifactResponse\n\t\t */\n\t\texports.FinalizeMigratedArtifactResponse = new FinalizeMigratedArtifactResponse$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass CreateArtifactRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.CreateArtifactRequest\", [\n\t\t            { no: 1, name: \"workflow_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 2, name: \"workflow_job_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"name\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 4, name: \"expires_at\", kind: \"message\", T: () => timestamp_1.Timestamp },\n\t\t            { no: 5, name: \"version\", kind: \"scalar\", T: 5 /*ScalarType.INT32*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { workflowRunBackendId: \"\", workflowJobRunBackendId: \"\", name: \"\", version: 0 };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string workflow_run_backend_id */ 1:\n\t\t                    message.workflowRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string workflow_job_run_backend_id */ 2:\n\t\t                    message.workflowJobRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string name */ 3:\n\t\t                    message.name = reader.string();\n\t\t                    break;\n\t\t                case /* google.protobuf.Timestamp expires_at */ 4:\n\t\t                    message.expiresAt = timestamp_1.Timestamp.internalBinaryRead(reader, reader.uint32(), options, message.expiresAt);\n\t\t                    break;\n\t\t                case /* int32 version */ 5:\n\t\t                    message.version = reader.int32();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string workflow_run_backend_id = 1; */\n\t\t        if (message.workflowRunBackendId !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.workflowRunBackendId);\n\t\t        /* string workflow_job_run_backend_id = 2; */\n\t\t        if (message.workflowJobRunBackendId !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.workflowJobRunBackendId);\n\t\t        /* string name = 3; */\n\t\t        if (message.name !== \"\")\n\t\t            writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.name);\n\t\t        /* google.protobuf.Timestamp expires_at = 4; */\n\t\t        if (message.expiresAt)\n\t\t            timestamp_1.Timestamp.internalBinaryWrite(message.expiresAt, writer.tag(4, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        /* int32 version = 5; */\n\t\t        if (message.version !== 0)\n\t\t            writer.tag(5, runtime_1.WireType.Varint).int32(message.version);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.CreateArtifactRequest\n\t\t */\n\t\texports.CreateArtifactRequest = new CreateArtifactRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass CreateArtifactResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.CreateArtifactResponse\", [\n\t\t            { no: 1, name: \"ok\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ },\n\t\t            { no: 2, name: \"signed_upload_url\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { ok: false, signedUploadUrl: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* bool ok */ 1:\n\t\t                    message.ok = reader.bool();\n\t\t                    break;\n\t\t                case /* string signed_upload_url */ 2:\n\t\t                    message.signedUploadUrl = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* bool ok = 1; */\n\t\t        if (message.ok !== false)\n\t\t            writer.tag(1, runtime_1.WireType.Varint).bool(message.ok);\n\t\t        /* string signed_upload_url = 2; */\n\t\t        if (message.signedUploadUrl !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.signedUploadUrl);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.CreateArtifactResponse\n\t\t */\n\t\texports.CreateArtifactResponse = new CreateArtifactResponse$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass FinalizeArtifactRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.FinalizeArtifactRequest\", [\n\t\t            { no: 1, name: \"workflow_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 2, name: \"workflow_job_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"name\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 4, name: \"size\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ },\n\t\t            { no: 5, name: \"hash\", kind: \"message\", T: () => wrappers_2.StringValue }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { workflowRunBackendId: \"\", workflowJobRunBackendId: \"\", name: \"\", size: \"0\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string workflow_run_backend_id */ 1:\n\t\t                    message.workflowRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string workflow_job_run_backend_id */ 2:\n\t\t                    message.workflowJobRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string name */ 3:\n\t\t                    message.name = reader.string();\n\t\t                    break;\n\t\t                case /* int64 size */ 4:\n\t\t                    message.size = reader.int64().toString();\n\t\t                    break;\n\t\t                case /* google.protobuf.StringValue hash */ 5:\n\t\t                    message.hash = wrappers_2.StringValue.internalBinaryRead(reader, reader.uint32(), options, message.hash);\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string workflow_run_backend_id = 1; */\n\t\t        if (message.workflowRunBackendId !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.workflowRunBackendId);\n\t\t        /* string workflow_job_run_backend_id = 2; */\n\t\t        if (message.workflowJobRunBackendId !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.workflowJobRunBackendId);\n\t\t        /* string name = 3; */\n\t\t        if (message.name !== \"\")\n\t\t            writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.name);\n\t\t        /* int64 size = 4; */\n\t\t        if (message.size !== \"0\")\n\t\t            writer.tag(4, runtime_1.WireType.Varint).int64(message.size);\n\t\t        /* google.protobuf.StringValue hash = 5; */\n\t\t        if (message.hash)\n\t\t            wrappers_2.StringValue.internalBinaryWrite(message.hash, writer.tag(5, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.FinalizeArtifactRequest\n\t\t */\n\t\texports.FinalizeArtifactRequest = new FinalizeArtifactRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass FinalizeArtifactResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.FinalizeArtifactResponse\", [\n\t\t            { no: 1, name: \"ok\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ },\n\t\t            { no: 2, name: \"artifact_id\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { ok: false, artifactId: \"0\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* bool ok */ 1:\n\t\t                    message.ok = reader.bool();\n\t\t                    break;\n\t\t                case /* int64 artifact_id */ 2:\n\t\t                    message.artifactId = reader.int64().toString();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* bool ok = 1; */\n\t\t        if (message.ok !== false)\n\t\t            writer.tag(1, runtime_1.WireType.Varint).bool(message.ok);\n\t\t        /* int64 artifact_id = 2; */\n\t\t        if (message.artifactId !== \"0\")\n\t\t            writer.tag(2, runtime_1.WireType.Varint).int64(message.artifactId);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.FinalizeArtifactResponse\n\t\t */\n\t\texports.FinalizeArtifactResponse = new FinalizeArtifactResponse$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass ListArtifactsRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.ListArtifactsRequest\", [\n\t\t            { no: 1, name: \"workflow_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 2, name: \"workflow_job_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"name_filter\", kind: \"message\", T: () => wrappers_2.StringValue },\n\t\t            { no: 4, name: \"id_filter\", kind: \"message\", T: () => wrappers_1.Int64Value }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { workflowRunBackendId: \"\", workflowJobRunBackendId: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string workflow_run_backend_id */ 1:\n\t\t                    message.workflowRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string workflow_job_run_backend_id */ 2:\n\t\t                    message.workflowJobRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* google.protobuf.StringValue name_filter */ 3:\n\t\t                    message.nameFilter = wrappers_2.StringValue.internalBinaryRead(reader, reader.uint32(), options, message.nameFilter);\n\t\t                    break;\n\t\t                case /* google.protobuf.Int64Value id_filter */ 4:\n\t\t                    message.idFilter = wrappers_1.Int64Value.internalBinaryRead(reader, reader.uint32(), options, message.idFilter);\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string workflow_run_backend_id = 1; */\n\t\t        if (message.workflowRunBackendId !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.workflowRunBackendId);\n\t\t        /* string workflow_job_run_backend_id = 2; */\n\t\t        if (message.workflowJobRunBackendId !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.workflowJobRunBackendId);\n\t\t        /* google.protobuf.StringValue name_filter = 3; */\n\t\t        if (message.nameFilter)\n\t\t            wrappers_2.StringValue.internalBinaryWrite(message.nameFilter, writer.tag(3, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        /* google.protobuf.Int64Value id_filter = 4; */\n\t\t        if (message.idFilter)\n\t\t            wrappers_1.Int64Value.internalBinaryWrite(message.idFilter, writer.tag(4, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.ListArtifactsRequest\n\t\t */\n\t\texports.ListArtifactsRequest = new ListArtifactsRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass ListArtifactsResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.ListArtifactsResponse\", [\n\t\t            { no: 1, name: \"artifacts\", kind: \"message\", repeat: 1 /*RepeatType.PACKED*/, T: () => exports.ListArtifactsResponse_MonolithArtifact }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { artifacts: [] };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* repeated github.actions.results.api.v1.ListArtifactsResponse.MonolithArtifact artifacts */ 1:\n\t\t                    message.artifacts.push(exports.ListArtifactsResponse_MonolithArtifact.internalBinaryRead(reader, reader.uint32(), options));\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* repeated github.actions.results.api.v1.ListArtifactsResponse.MonolithArtifact artifacts = 1; */\n\t\t        for (let i = 0; i < message.artifacts.length; i++)\n\t\t            exports.ListArtifactsResponse_MonolithArtifact.internalBinaryWrite(message.artifacts[i], writer.tag(1, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.ListArtifactsResponse\n\t\t */\n\t\texports.ListArtifactsResponse = new ListArtifactsResponse$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass ListArtifactsResponse_MonolithArtifact$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.ListArtifactsResponse.MonolithArtifact\", [\n\t\t            { no: 1, name: \"workflow_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 2, name: \"workflow_job_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"database_id\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ },\n\t\t            { no: 4, name: \"name\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 5, name: \"size\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ },\n\t\t            { no: 6, name: \"created_at\", kind: \"message\", T: () => timestamp_1.Timestamp },\n\t\t            { no: 7, name: \"digest\", kind: \"message\", T: () => wrappers_2.StringValue }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { workflowRunBackendId: \"\", workflowJobRunBackendId: \"\", databaseId: \"0\", name: \"\", size: \"0\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string workflow_run_backend_id */ 1:\n\t\t                    message.workflowRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string workflow_job_run_backend_id */ 2:\n\t\t                    message.workflowJobRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* int64 database_id */ 3:\n\t\t                    message.databaseId = reader.int64().toString();\n\t\t                    break;\n\t\t                case /* string name */ 4:\n\t\t                    message.name = reader.string();\n\t\t                    break;\n\t\t                case /* int64 size */ 5:\n\t\t                    message.size = reader.int64().toString();\n\t\t                    break;\n\t\t                case /* google.protobuf.Timestamp created_at */ 6:\n\t\t                    message.createdAt = timestamp_1.Timestamp.internalBinaryRead(reader, reader.uint32(), options, message.createdAt);\n\t\t                    break;\n\t\t                case /* google.protobuf.StringValue digest */ 7:\n\t\t                    message.digest = wrappers_2.StringValue.internalBinaryRead(reader, reader.uint32(), options, message.digest);\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string workflow_run_backend_id = 1; */\n\t\t        if (message.workflowRunBackendId !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.workflowRunBackendId);\n\t\t        /* string workflow_job_run_backend_id = 2; */\n\t\t        if (message.workflowJobRunBackendId !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.workflowJobRunBackendId);\n\t\t        /* int64 database_id = 3; */\n\t\t        if (message.databaseId !== \"0\")\n\t\t            writer.tag(3, runtime_1.WireType.Varint).int64(message.databaseId);\n\t\t        /* string name = 4; */\n\t\t        if (message.name !== \"\")\n\t\t            writer.tag(4, runtime_1.WireType.LengthDelimited).string(message.name);\n\t\t        /* int64 size = 5; */\n\t\t        if (message.size !== \"0\")\n\t\t            writer.tag(5, runtime_1.WireType.Varint).int64(message.size);\n\t\t        /* google.protobuf.Timestamp created_at = 6; */\n\t\t        if (message.createdAt)\n\t\t            timestamp_1.Timestamp.internalBinaryWrite(message.createdAt, writer.tag(6, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        /* google.protobuf.StringValue digest = 7; */\n\t\t        if (message.digest)\n\t\t            wrappers_2.StringValue.internalBinaryWrite(message.digest, writer.tag(7, runtime_1.WireType.LengthDelimited).fork(), options).join();\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.ListArtifactsResponse.MonolithArtifact\n\t\t */\n\t\texports.ListArtifactsResponse_MonolithArtifact = new ListArtifactsResponse_MonolithArtifact$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass GetSignedArtifactURLRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.GetSignedArtifactURLRequest\", [\n\t\t            { no: 1, name: \"workflow_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 2, name: \"workflow_job_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"name\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { workflowRunBackendId: \"\", workflowJobRunBackendId: \"\", name: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string workflow_run_backend_id */ 1:\n\t\t                    message.workflowRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string workflow_job_run_backend_id */ 2:\n\t\t                    message.workflowJobRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string name */ 3:\n\t\t                    message.name = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string workflow_run_backend_id = 1; */\n\t\t        if (message.workflowRunBackendId !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.workflowRunBackendId);\n\t\t        /* string workflow_job_run_backend_id = 2; */\n\t\t        if (message.workflowJobRunBackendId !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.workflowJobRunBackendId);\n\t\t        /* string name = 3; */\n\t\t        if (message.name !== \"\")\n\t\t            writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.name);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.GetSignedArtifactURLRequest\n\t\t */\n\t\texports.GetSignedArtifactURLRequest = new GetSignedArtifactURLRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass GetSignedArtifactURLResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.GetSignedArtifactURLResponse\", [\n\t\t            { no: 1, name: \"signed_url\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { signedUrl: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string signed_url */ 1:\n\t\t                    message.signedUrl = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string signed_url = 1; */\n\t\t        if (message.signedUrl !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.signedUrl);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.GetSignedArtifactURLResponse\n\t\t */\n\t\texports.GetSignedArtifactURLResponse = new GetSignedArtifactURLResponse$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass DeleteArtifactRequest$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.DeleteArtifactRequest\", [\n\t\t            { no: 1, name: \"workflow_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 2, name: \"workflow_job_run_backend_id\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ },\n\t\t            { no: 3, name: \"name\", kind: \"scalar\", T: 9 /*ScalarType.STRING*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { workflowRunBackendId: \"\", workflowJobRunBackendId: \"\", name: \"\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* string workflow_run_backend_id */ 1:\n\t\t                    message.workflowRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string workflow_job_run_backend_id */ 2:\n\t\t                    message.workflowJobRunBackendId = reader.string();\n\t\t                    break;\n\t\t                case /* string name */ 3:\n\t\t                    message.name = reader.string();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* string workflow_run_backend_id = 1; */\n\t\t        if (message.workflowRunBackendId !== \"\")\n\t\t            writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.workflowRunBackendId);\n\t\t        /* string workflow_job_run_backend_id = 2; */\n\t\t        if (message.workflowJobRunBackendId !== \"\")\n\t\t            writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.workflowJobRunBackendId);\n\t\t        /* string name = 3; */\n\t\t        if (message.name !== \"\")\n\t\t            writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.name);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.DeleteArtifactRequest\n\t\t */\n\t\texports.DeleteArtifactRequest = new DeleteArtifactRequest$Type();\n\t\t// @generated message type with reflection information, may provide speed optimized methods\n\t\tclass DeleteArtifactResponse$Type extends runtime_5.MessageType {\n\t\t    constructor() {\n\t\t        super(\"github.actions.results.api.v1.DeleteArtifactResponse\", [\n\t\t            { no: 1, name: \"ok\", kind: \"scalar\", T: 8 /*ScalarType.BOOL*/ },\n\t\t            { no: 2, name: \"artifact_id\", kind: \"scalar\", T: 3 /*ScalarType.INT64*/ }\n\t\t        ]);\n\t\t    }\n\t\t    create(value) {\n\t\t        const message = { ok: false, artifactId: \"0\" };\n\t\t        globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this });\n\t\t        if (value !== undefined)\n\t\t            (0, runtime_3.reflectionMergePartial)(this, message, value);\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryRead(reader, length, options, target) {\n\t\t        let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length;\n\t\t        while (reader.pos < end) {\n\t\t            let [fieldNo, wireType] = reader.tag();\n\t\t            switch (fieldNo) {\n\t\t                case /* bool ok */ 1:\n\t\t                    message.ok = reader.bool();\n\t\t                    break;\n\t\t                case /* int64 artifact_id */ 2:\n\t\t                    message.artifactId = reader.int64().toString();\n\t\t                    break;\n\t\t                default:\n\t\t                    let u = options.readUnknownField;\n\t\t                    if (u === \"throw\")\n\t\t                        throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);\n\t\t                    let d = reader.skip(wireType);\n\t\t                    if (u !== false)\n\t\t                        (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);\n\t\t            }\n\t\t        }\n\t\t        return message;\n\t\t    }\n\t\t    internalBinaryWrite(message, writer, options) {\n\t\t        /* bool ok = 1; */\n\t\t        if (message.ok !== false)\n\t\t            writer.tag(1, runtime_1.WireType.Varint).bool(message.ok);\n\t\t        /* int64 artifact_id = 2; */\n\t\t        if (message.artifactId !== \"0\")\n\t\t            writer.tag(2, runtime_1.WireType.Varint).int64(message.artifactId);\n\t\t        let u = options.writeUnknownFields;\n\t\t        if (u !== false)\n\t\t            (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);\n\t\t        return writer;\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * @generated MessageType for protobuf message github.actions.results.api.v1.DeleteArtifactResponse\n\t\t */\n\t\texports.DeleteArtifactResponse = new DeleteArtifactResponse$Type();\n\t\t/**\n\t\t * @generated ServiceType for protobuf service github.actions.results.api.v1.ArtifactService\n\t\t */\n\t\texports.ArtifactService = new runtime_rpc_1.ServiceType(\"github.actions.results.api.v1.ArtifactService\", [\n\t\t    { name: \"CreateArtifact\", options: {}, I: exports.CreateArtifactRequest, O: exports.CreateArtifactResponse },\n\t\t    { name: \"FinalizeArtifact\", options: {}, I: exports.FinalizeArtifactRequest, O: exports.FinalizeArtifactResponse },\n\t\t    { name: \"ListArtifacts\", options: {}, I: exports.ListArtifactsRequest, O: exports.ListArtifactsResponse },\n\t\t    { name: \"GetSignedArtifactURL\", options: {}, I: exports.GetSignedArtifactURLRequest, O: exports.GetSignedArtifactURLResponse },\n\t\t    { name: \"DeleteArtifact\", options: {}, I: exports.DeleteArtifactRequest, O: exports.DeleteArtifactResponse },\n\t\t    { name: \"MigrateArtifact\", options: {}, I: exports.MigrateArtifactRequest, O: exports.MigrateArtifactResponse },\n\t\t    { name: \"FinalizeMigratedArtifact\", options: {}, I: exports.FinalizeMigratedArtifactRequest, O: exports.FinalizeMigratedArtifactResponse }\n\t\t]);\n\t\t\n\t} (artifact));\n\treturn artifact;\n}\n\nvar artifact_twirpClient = {};\n\nvar hasRequiredArtifact_twirpClient;\n\nfunction requireArtifact_twirpClient () {\n\tif (hasRequiredArtifact_twirpClient) return artifact_twirpClient;\n\thasRequiredArtifact_twirpClient = 1;\n\tObject.defineProperty(artifact_twirpClient, \"__esModule\", { value: true });\n\tartifact_twirpClient.ArtifactServiceClientProtobuf = artifact_twirpClient.ArtifactServiceClientJSON = void 0;\n\tconst artifact_1 = requireArtifact$1();\n\tclass ArtifactServiceClientJSON {\n\t    constructor(rpc) {\n\t        this.rpc = rpc;\n\t        this.CreateArtifact.bind(this);\n\t        this.FinalizeArtifact.bind(this);\n\t        this.ListArtifacts.bind(this);\n\t        this.GetSignedArtifactURL.bind(this);\n\t        this.DeleteArtifact.bind(this);\n\t    }\n\t    CreateArtifact(request) {\n\t        const data = artifact_1.CreateArtifactRequest.toJson(request, {\n\t            useProtoFieldName: true,\n\t            emitDefaultValues: false,\n\t        });\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"CreateArtifact\", \"application/json\", data);\n\t        return promise.then((data) => artifact_1.CreateArtifactResponse.fromJson(data, {\n\t            ignoreUnknownFields: true,\n\t        }));\n\t    }\n\t    FinalizeArtifact(request) {\n\t        const data = artifact_1.FinalizeArtifactRequest.toJson(request, {\n\t            useProtoFieldName: true,\n\t            emitDefaultValues: false,\n\t        });\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"FinalizeArtifact\", \"application/json\", data);\n\t        return promise.then((data) => artifact_1.FinalizeArtifactResponse.fromJson(data, {\n\t            ignoreUnknownFields: true,\n\t        }));\n\t    }\n\t    ListArtifacts(request) {\n\t        const data = artifact_1.ListArtifactsRequest.toJson(request, {\n\t            useProtoFieldName: true,\n\t            emitDefaultValues: false,\n\t        });\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"ListArtifacts\", \"application/json\", data);\n\t        return promise.then((data) => artifact_1.ListArtifactsResponse.fromJson(data, { ignoreUnknownFields: true }));\n\t    }\n\t    GetSignedArtifactURL(request) {\n\t        const data = artifact_1.GetSignedArtifactURLRequest.toJson(request, {\n\t            useProtoFieldName: true,\n\t            emitDefaultValues: false,\n\t        });\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"GetSignedArtifactURL\", \"application/json\", data);\n\t        return promise.then((data) => artifact_1.GetSignedArtifactURLResponse.fromJson(data, {\n\t            ignoreUnknownFields: true,\n\t        }));\n\t    }\n\t    DeleteArtifact(request) {\n\t        const data = artifact_1.DeleteArtifactRequest.toJson(request, {\n\t            useProtoFieldName: true,\n\t            emitDefaultValues: false,\n\t        });\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"DeleteArtifact\", \"application/json\", data);\n\t        return promise.then((data) => artifact_1.DeleteArtifactResponse.fromJson(data, {\n\t            ignoreUnknownFields: true,\n\t        }));\n\t    }\n\t}\n\tartifact_twirpClient.ArtifactServiceClientJSON = ArtifactServiceClientJSON;\n\tclass ArtifactServiceClientProtobuf {\n\t    constructor(rpc) {\n\t        this.rpc = rpc;\n\t        this.CreateArtifact.bind(this);\n\t        this.FinalizeArtifact.bind(this);\n\t        this.ListArtifacts.bind(this);\n\t        this.GetSignedArtifactURL.bind(this);\n\t        this.DeleteArtifact.bind(this);\n\t    }\n\t    CreateArtifact(request) {\n\t        const data = artifact_1.CreateArtifactRequest.toBinary(request);\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"CreateArtifact\", \"application/protobuf\", data);\n\t        return promise.then((data) => artifact_1.CreateArtifactResponse.fromBinary(data));\n\t    }\n\t    FinalizeArtifact(request) {\n\t        const data = artifact_1.FinalizeArtifactRequest.toBinary(request);\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"FinalizeArtifact\", \"application/protobuf\", data);\n\t        return promise.then((data) => artifact_1.FinalizeArtifactResponse.fromBinary(data));\n\t    }\n\t    ListArtifacts(request) {\n\t        const data = artifact_1.ListArtifactsRequest.toBinary(request);\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"ListArtifacts\", \"application/protobuf\", data);\n\t        return promise.then((data) => artifact_1.ListArtifactsResponse.fromBinary(data));\n\t    }\n\t    GetSignedArtifactURL(request) {\n\t        const data = artifact_1.GetSignedArtifactURLRequest.toBinary(request);\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"GetSignedArtifactURL\", \"application/protobuf\", data);\n\t        return promise.then((data) => artifact_1.GetSignedArtifactURLResponse.fromBinary(data));\n\t    }\n\t    DeleteArtifact(request) {\n\t        const data = artifact_1.DeleteArtifactRequest.toBinary(request);\n\t        const promise = this.rpc.request(\"github.actions.results.api.v1.ArtifactService\", \"DeleteArtifact\", \"application/protobuf\", data);\n\t        return promise.then((data) => artifact_1.DeleteArtifactResponse.fromBinary(data));\n\t    }\n\t}\n\tartifact_twirpClient.ArtifactServiceClientProtobuf = ArtifactServiceClientProtobuf;\n\t\n\treturn artifact_twirpClient;\n}\n\nvar hasRequiredGenerated;\n\nfunction requireGenerated () {\n\tif (hasRequiredGenerated) return generated;\n\thasRequiredGenerated = 1;\n\t(function (exports) {\n\t\tvar __createBinding = (generated && generated.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t\t    }\n\t\t    Object.defineProperty(o, k2, desc);\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __exportStar = (generated && generated.__exportStar) || function(m, exports) {\n\t\t    for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\t__exportStar(requireTimestamp(), exports);\n\t\t__exportStar(requireWrappers(), exports);\n\t\t__exportStar(requireArtifact$1(), exports);\n\t\t__exportStar(requireArtifact_twirpClient(), exports);\n\t\t\n\t} (generated));\n\treturn generated;\n}\n\nvar hasRequiredRetention;\n\nfunction requireRetention () {\n\tif (hasRequiredRetention) return retention;\n\thasRequiredRetention = 1;\n\tvar __createBinding = (retention && retention.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (retention && retention.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (retention && retention.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(retention, \"__esModule\", { value: true });\n\tretention.getExpiration = void 0;\n\tconst generated_1 = requireGenerated();\n\tconst core = __importStar(requireCore$1());\n\tfunction getExpiration(retentionDays) {\n\t    if (!retentionDays) {\n\t        return undefined;\n\t    }\n\t    const maxRetentionDays = getRetentionDays();\n\t    if (maxRetentionDays && maxRetentionDays < retentionDays) {\n\t        core.warning(`Retention days cannot be greater than the maximum allowed retention set within the repository. Using ${maxRetentionDays} instead.`);\n\t        retentionDays = maxRetentionDays;\n\t    }\n\t    const expirationDate = new Date();\n\t    expirationDate.setDate(expirationDate.getDate() + retentionDays);\n\t    return generated_1.Timestamp.fromDate(expirationDate);\n\t}\n\tretention.getExpiration = getExpiration;\n\tfunction getRetentionDays() {\n\t    const retentionDays = process.env['GITHUB_RETENTION_DAYS'];\n\t    if (!retentionDays) {\n\t        return undefined;\n\t    }\n\t    const days = parseInt(retentionDays);\n\t    if (isNaN(days)) {\n\t        return undefined;\n\t    }\n\t    return days;\n\t}\n\t\n\treturn retention;\n}\n\nvar pathAndArtifactNameValidation = {};\n\nvar hasRequiredPathAndArtifactNameValidation;\n\nfunction requirePathAndArtifactNameValidation () {\n\tif (hasRequiredPathAndArtifactNameValidation) return pathAndArtifactNameValidation;\n\thasRequiredPathAndArtifactNameValidation = 1;\n\tObject.defineProperty(pathAndArtifactNameValidation, \"__esModule\", { value: true });\n\tpathAndArtifactNameValidation.validateFilePath = pathAndArtifactNameValidation.validateArtifactName = void 0;\n\tconst core_1 = requireCore$1();\n\t/**\n\t * Invalid characters that cannot be in the artifact name or an uploaded file. Will be rejected\n\t * from the server if attempted to be sent over. These characters are not allowed due to limitations with certain\n\t * file systems such as NTFS. To maintain platform-agnostic behavior, all characters that are not supported by an\n\t * individual filesystem/platform will not be supported on all fileSystems/platforms\n\t *\n\t * FilePaths can include characters such as \\ and / which are not permitted in the artifact name alone\n\t */\n\tconst invalidArtifactFilePathCharacters = new Map([\n\t    ['\"', ' Double quote \"'],\n\t    [':', ' Colon :'],\n\t    ['<', ' Less than <'],\n\t    ['>', ' Greater than >'],\n\t    ['|', ' Vertical bar |'],\n\t    ['*', ' Asterisk *'],\n\t    ['?', ' Question mark ?'],\n\t    ['\\r', ' Carriage return \\\\r'],\n\t    ['\\n', ' Line feed \\\\n']\n\t]);\n\tconst invalidArtifactNameCharacters = new Map([\n\t    ...invalidArtifactFilePathCharacters,\n\t    ['\\\\', ' Backslash \\\\'],\n\t    ['/', ' Forward slash /']\n\t]);\n\t/**\n\t * Validates the name of the artifact to check to make sure there are no illegal characters\n\t */\n\tfunction validateArtifactName(name) {\n\t    if (!name) {\n\t        throw new Error(`Provided artifact name input during validation is empty`);\n\t    }\n\t    for (const [invalidCharacterKey, errorMessageForCharacter] of invalidArtifactNameCharacters) {\n\t        if (name.includes(invalidCharacterKey)) {\n\t            throw new Error(`The artifact name is not valid: ${name}. Contains the following character: ${errorMessageForCharacter}\n          \nInvalid characters include: ${Array.from(invalidArtifactNameCharacters.values()).toString()}\n          \nThese characters are not allowed in the artifact name due to limitations with certain file systems such as NTFS. To maintain file system agnostic behavior, these characters are intentionally not allowed to prevent potential problems with downloads on different file systems.`);\n\t        }\n\t    }\n\t    (0, core_1.info)(`Artifact name is valid!`);\n\t}\n\tpathAndArtifactNameValidation.validateArtifactName = validateArtifactName;\n\t/**\n\t * Validates file paths to check for any illegal characters that can cause problems on different file systems\n\t */\n\tfunction validateFilePath(path) {\n\t    if (!path) {\n\t        throw new Error(`Provided file path input during validation is empty`);\n\t    }\n\t    for (const [invalidCharacterKey, errorMessageForCharacter] of invalidArtifactFilePathCharacters) {\n\t        if (path.includes(invalidCharacterKey)) {\n\t            throw new Error(`The path for one of the files in artifact is not valid: ${path}. Contains the following character: ${errorMessageForCharacter}\n          \nInvalid characters include: ${Array.from(invalidArtifactFilePathCharacters.values()).toString()}\n          \nThe following characters are not allowed in files that are uploaded due to limitations with certain file systems such as NTFS. To maintain file system agnostic behavior, these characters are intentionally not allowed to prevent potential problems with downloads on different file systems.\n          `);\n\t        }\n\t    }\n\t}\n\tpathAndArtifactNameValidation.validateFilePath = validateFilePath;\n\t\n\treturn pathAndArtifactNameValidation;\n}\n\nvar artifactTwirpClient = {};\n\nvar userAgent$1 = {};\n\nvar version = \"2.3.2\";\nvar require$$0$1 = {\n\tversion: version};\n\nvar hasRequiredUserAgent;\n\nfunction requireUserAgent () {\n\tif (hasRequiredUserAgent) return userAgent$1;\n\thasRequiredUserAgent = 1;\n\tObject.defineProperty(userAgent$1, \"__esModule\", { value: true });\n\tuserAgent$1.getUserAgentString = void 0;\n\t// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports\n\tconst packageJson = require$$0$1;\n\t/**\n\t * Ensure that this User Agent String is used in all HTTP calls so that we can monitor telemetry between different versions of this package\n\t */\n\tfunction getUserAgentString() {\n\t    return `@actions/artifact-${packageJson.version}`;\n\t}\n\tuserAgent$1.getUserAgentString = getUserAgentString;\n\t\n\treturn userAgent$1;\n}\n\nvar errors$1 = {};\n\nvar hasRequiredErrors$1;\n\nfunction requireErrors$1 () {\n\tif (hasRequiredErrors$1) return errors$1;\n\thasRequiredErrors$1 = 1;\n\tObject.defineProperty(errors$1, \"__esModule\", { value: true });\n\terrors$1.UsageError = errors$1.NetworkError = errors$1.GHESNotSupportedError = errors$1.ArtifactNotFoundError = errors$1.InvalidResponseError = errors$1.FilesNotFoundError = void 0;\n\tclass FilesNotFoundError extends Error {\n\t    constructor(files = []) {\n\t        let message = 'No files were found to upload';\n\t        if (files.length > 0) {\n\t            message += `: ${files.join(', ')}`;\n\t        }\n\t        super(message);\n\t        this.files = files;\n\t        this.name = 'FilesNotFoundError';\n\t    }\n\t}\n\terrors$1.FilesNotFoundError = FilesNotFoundError;\n\tclass InvalidResponseError extends Error {\n\t    constructor(message) {\n\t        super(message);\n\t        this.name = 'InvalidResponseError';\n\t    }\n\t}\n\terrors$1.InvalidResponseError = InvalidResponseError;\n\tclass ArtifactNotFoundError extends Error {\n\t    constructor(message = 'Artifact not found') {\n\t        super(message);\n\t        this.name = 'ArtifactNotFoundError';\n\t    }\n\t}\n\terrors$1.ArtifactNotFoundError = ArtifactNotFoundError;\n\tclass GHESNotSupportedError extends Error {\n\t    constructor(message = '@actions/artifact v2.0.0+, upload-artifact@v4+ and download-artifact@v4+ are not currently supported on GHES.') {\n\t        super(message);\n\t        this.name = 'GHESNotSupportedError';\n\t    }\n\t}\n\terrors$1.GHESNotSupportedError = GHESNotSupportedError;\n\tclass NetworkError extends Error {\n\t    constructor(code) {\n\t        const message = `Unable to make request: ${code}\\nIf you are using self-hosted runners, please make sure your runner has access to all GitHub endpoints: https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#communication-between-self-hosted-runners-and-github`;\n\t        super(message);\n\t        this.code = code;\n\t        this.name = 'NetworkError';\n\t    }\n\t}\n\terrors$1.NetworkError = NetworkError;\n\tNetworkError.isNetworkErrorCode = (code) => {\n\t    if (!code)\n\t        return false;\n\t    return [\n\t        'ECONNRESET',\n\t        'ENOTFOUND',\n\t        'ETIMEDOUT',\n\t        'ECONNREFUSED',\n\t        'EHOSTUNREACH'\n\t    ].includes(code);\n\t};\n\tclass UsageError extends Error {\n\t    constructor() {\n\t        const message = `Artifact storage quota has been hit. Unable to upload any new artifacts. Usage is recalculated every 6-12 hours.\\nMore info on storage limits: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending`;\n\t        super(message);\n\t        this.name = 'UsageError';\n\t    }\n\t}\n\terrors$1.UsageError = UsageError;\n\tUsageError.isUsageErrorMessage = (msg) => {\n\t    if (!msg)\n\t        return false;\n\t    return msg.includes('insufficient usage');\n\t};\n\t\n\treturn errors$1;\n}\n\nvar util$4 = {};\n\nfunction e(e){this.message=e;}e.prototype=new Error,e.prototype.name=\"InvalidCharacterError\";var r=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(r){var t=String(r).replace(/=+$/,\"\");if(t.length%4==1)throw new e(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var n,o,a=0,i=0,c=\"\";o=t.charAt(i++);~o&&(n=a%4?64*n+o:o,a++%4)?c+=String.fromCharCode(255&n>>(-2*a&6)):0)o=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(o);return c};function t(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw \"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(r(e).replace(/(.)/g,(function(e,r){var t=r.charCodeAt(0).toString(16).toUpperCase();return t.length<2&&(t=\"0\"+t),\"%\"+t})))}(t)}catch(e){return r(t)}}function n(e){this.message=e;}function o(e,r){if(\"string\"!=typeof e)throw new n(\"Invalid token specified\");var o=true===(r=r||{}).header?0:1;try{return JSON.parse(t(e.split(\".\")[o]))}catch(e){throw new n(\"Invalid token specified: \"+e.message)}}n.prototype=new Error,n.prototype.name=\"InvalidTokenError\";\n\nvar jwtDecode_esm = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tInvalidTokenError: n,\n\tdefault: o\n});\n\nvar require$$2$2 = /*@__PURE__*/getAugmentedNamespace(jwtDecode_esm);\n\nvar hasRequiredUtil$4;\n\nfunction requireUtil$4 () {\n\tif (hasRequiredUtil$4) return util$4;\n\thasRequiredUtil$4 = 1;\n\tvar __createBinding = (util$4 && util$4.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (util$4 && util$4.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (util$4 && util$4.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __importDefault = (util$4 && util$4.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(util$4, \"__esModule\", { value: true });\n\tutil$4.maskSecretUrls = util$4.maskSigUrl = util$4.getBackendIdsFromToken = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst config_1 = requireConfig();\n\tconst jwt_decode_1 = __importDefault(require$$2$2);\n\tconst core_1 = requireCore$1();\n\tconst InvalidJwtError = new Error('Failed to get backend IDs: The provided JWT token is invalid and/or missing claims');\n\t// uses the JWT token claims to get the\n\t// workflow run and workflow job run backend ids\n\tfunction getBackendIdsFromToken() {\n\t    const token = (0, config_1.getRuntimeToken)();\n\t    const decoded = (0, jwt_decode_1.default)(token);\n\t    if (!decoded.scp) {\n\t        throw InvalidJwtError;\n\t    }\n\t    /*\n\t     * example decoded:\n\t     * {\n\t     *   scp: \"Actions.ExampleScope Actions.Results:ce7f54c7-61c7-4aae-887f-30da475f5f1a:ca395085-040a-526b-2ce8-bdc85f692774\"\n\t     * }\n\t     */\n\t    const scpParts = decoded.scp.split(' ');\n\t    if (scpParts.length === 0) {\n\t        throw InvalidJwtError;\n\t    }\n\t    /*\n\t     * example scpParts:\n\t     * [\"Actions.ExampleScope\", \"Actions.Results:ce7f54c7-61c7-4aae-887f-30da475f5f1a:ca395085-040a-526b-2ce8-bdc85f692774\"]\n\t     */\n\t    for (const scopes of scpParts) {\n\t        const scopeParts = scopes.split(':');\n\t        if ((scopeParts === null || scopeParts === void 0 ? void 0 : scopeParts[0]) !== 'Actions.Results') {\n\t            // not the Actions.Results scope\n\t            continue;\n\t        }\n\t        /*\n\t         * example scopeParts:\n\t         * [\"Actions.Results\", \"ce7f54c7-61c7-4aae-887f-30da475f5f1a\", \"ca395085-040a-526b-2ce8-bdc85f692774\"]\n\t         */\n\t        if (scopeParts.length !== 3) {\n\t            // missing expected number of claims\n\t            throw InvalidJwtError;\n\t        }\n\t        const ids = {\n\t            workflowRunBackendId: scopeParts[1],\n\t            workflowJobRunBackendId: scopeParts[2]\n\t        };\n\t        core.debug(`Workflow Run Backend ID: ${ids.workflowRunBackendId}`);\n\t        core.debug(`Workflow Job Run Backend ID: ${ids.workflowJobRunBackendId}`);\n\t        return ids;\n\t    }\n\t    throw InvalidJwtError;\n\t}\n\tutil$4.getBackendIdsFromToken = getBackendIdsFromToken;\n\t/**\n\t * Masks the `sig` parameter in a URL and sets it as a secret.\n\t *\n\t * @param url - The URL containing the signature parameter to mask\n\t * @remarks\n\t * This function attempts to parse the provided URL and identify the 'sig' query parameter.\n\t * If found, it registers both the raw and URL-encoded signature values as secrets using\n\t * the Actions `setSecret` API, which prevents them from being displayed in logs.\n\t *\n\t * The function handles errors gracefully if URL parsing fails, logging them as debug messages.\n\t *\n\t * @example\n\t * ```typescript\n\t * // Mask a signature in an Azure SAS token URL\n\t * maskSigUrl('https://example.blob.core.windows.net/container/file.txt?sig=abc123&se=2023-01-01');\n\t * ```\n\t */\n\tfunction maskSigUrl(url) {\n\t    if (!url)\n\t        return;\n\t    try {\n\t        const parsedUrl = new URL(url);\n\t        const signature = parsedUrl.searchParams.get('sig');\n\t        if (signature) {\n\t            (0, core_1.setSecret)(signature);\n\t            (0, core_1.setSecret)(encodeURIComponent(signature));\n\t        }\n\t    }\n\t    catch (error) {\n\t        (0, core_1.debug)(`Failed to parse URL: ${url} ${error instanceof Error ? error.message : String(error)}`);\n\t    }\n\t}\n\tutil$4.maskSigUrl = maskSigUrl;\n\t/**\n\t * Masks sensitive information in URLs containing signature parameters.\n\t * Currently supports masking 'sig' parameters in the 'signed_upload_url'\n\t * and 'signed_download_url' properties of the provided object.\n\t *\n\t * @param body - The object should contain a signature\n\t * @remarks\n\t * This function extracts URLs from the object properties and calls maskSigUrl\n\t * on each one to redact sensitive signature information. The function doesn't\n\t * modify the original object; it only marks the signatures as secrets for\n\t * logging purposes.\n\t *\n\t * @example\n\t * ```typescript\n\t * const responseBody = {\n\t *   signed_upload_url: 'https://example.com?sig=abc123',\n\t *   signed_download_url: 'https://example.com?sig=def456'\n\t * };\n\t * maskSecretUrls(responseBody);\n\t * ```\n\t */\n\tfunction maskSecretUrls(body) {\n\t    if (typeof body !== 'object' || body === null) {\n\t        (0, core_1.debug)('body is not an object or is null');\n\t        return;\n\t    }\n\t    if ('signed_upload_url' in body &&\n\t        typeof body.signed_upload_url === 'string') {\n\t        maskSigUrl(body.signed_upload_url);\n\t    }\n\t    if ('signed_url' in body && typeof body.signed_url === 'string') {\n\t        maskSigUrl(body.signed_url);\n\t    }\n\t}\n\tutil$4.maskSecretUrls = maskSecretUrls;\n\t\n\treturn util$4;\n}\n\nvar hasRequiredArtifactTwirpClient;\n\nfunction requireArtifactTwirpClient () {\n\tif (hasRequiredArtifactTwirpClient) return artifactTwirpClient;\n\thasRequiredArtifactTwirpClient = 1;\n\tvar __awaiter = (artifactTwirpClient && artifactTwirpClient.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(artifactTwirpClient, \"__esModule\", { value: true });\n\tartifactTwirpClient.internalArtifactTwirpClient = void 0;\n\tconst http_client_1 = requireLib$2();\n\tconst auth_1 = requireAuth();\n\tconst core_1 = requireCore$1();\n\tconst generated_1 = requireGenerated();\n\tconst config_1 = requireConfig();\n\tconst user_agent_1 = requireUserAgent();\n\tconst errors_1 = requireErrors$1();\n\tconst util_1 = requireUtil$4();\n\tclass ArtifactHttpClient {\n\t    constructor(userAgent, maxAttempts, baseRetryIntervalMilliseconds, retryMultiplier) {\n\t        this.maxAttempts = 5;\n\t        this.baseRetryIntervalMilliseconds = 3000;\n\t        this.retryMultiplier = 1.5;\n\t        const token = (0, config_1.getRuntimeToken)();\n\t        this.baseUrl = (0, config_1.getResultsServiceUrl)();\n\t        if (maxAttempts) {\n\t            this.maxAttempts = maxAttempts;\n\t        }\n\t        if (baseRetryIntervalMilliseconds) {\n\t            this.baseRetryIntervalMilliseconds = baseRetryIntervalMilliseconds;\n\t        }\n\t        if (retryMultiplier) {\n\t            this.retryMultiplier = retryMultiplier;\n\t        }\n\t        this.httpClient = new http_client_1.HttpClient(userAgent, [\n\t            new auth_1.BearerCredentialHandler(token)\n\t        ]);\n\t    }\n\t    // This function satisfies the Rpc interface. It is compatible with the JSON\n\t    // JSON generated client.\n\t    request(service, method, contentType, data) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            const url = new URL(`/twirp/${service}/${method}`, this.baseUrl).href;\n\t            (0, core_1.debug)(`[Request] ${method} ${url}`);\n\t            const headers = {\n\t                'Content-Type': contentType\n\t            };\n\t            try {\n\t                const { body } = yield this.retryableRequest(() => __awaiter(this, void 0, void 0, function* () { return this.httpClient.post(url, JSON.stringify(data), headers); }));\n\t                return body;\n\t            }\n\t            catch (error) {\n\t                throw new Error(`Failed to ${method}: ${error.message}`);\n\t            }\n\t        });\n\t    }\n\t    retryableRequest(operation) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            let attempt = 0;\n\t            let errorMessage = '';\n\t            let rawBody = '';\n\t            while (attempt < this.maxAttempts) {\n\t                let isRetryable = false;\n\t                try {\n\t                    const response = yield operation();\n\t                    const statusCode = response.message.statusCode;\n\t                    rawBody = yield response.readBody();\n\t                    (0, core_1.debug)(`[Response] - ${response.message.statusCode}`);\n\t                    (0, core_1.debug)(`Headers: ${JSON.stringify(response.message.headers, null, 2)}`);\n\t                    const body = JSON.parse(rawBody);\n\t                    (0, util_1.maskSecretUrls)(body);\n\t                    (0, core_1.debug)(`Body: ${JSON.stringify(body, null, 2)}`);\n\t                    if (this.isSuccessStatusCode(statusCode)) {\n\t                        return { response, body };\n\t                    }\n\t                    isRetryable = this.isRetryableHttpStatusCode(statusCode);\n\t                    errorMessage = `Failed request: (${statusCode}) ${response.message.statusMessage}`;\n\t                    if (body.msg) {\n\t                        if (errors_1.UsageError.isUsageErrorMessage(body.msg)) {\n\t                            throw new errors_1.UsageError();\n\t                        }\n\t                        errorMessage = `${errorMessage}: ${body.msg}`;\n\t                    }\n\t                }\n\t                catch (error) {\n\t                    if (error instanceof SyntaxError) {\n\t                        (0, core_1.debug)(`Raw Body: ${rawBody}`);\n\t                    }\n\t                    if (error instanceof errors_1.UsageError) {\n\t                        throw error;\n\t                    }\n\t                    if (errors_1.NetworkError.isNetworkErrorCode(error === null || error === void 0 ? void 0 : error.code)) {\n\t                        throw new errors_1.NetworkError(error === null || error === void 0 ? void 0 : error.code);\n\t                    }\n\t                    isRetryable = true;\n\t                    errorMessage = error.message;\n\t                }\n\t                if (!isRetryable) {\n\t                    throw new Error(`Received non-retryable error: ${errorMessage}`);\n\t                }\n\t                if (attempt + 1 === this.maxAttempts) {\n\t                    throw new Error(`Failed to make request after ${this.maxAttempts} attempts: ${errorMessage}`);\n\t                }\n\t                const retryTimeMilliseconds = this.getExponentialRetryTimeMilliseconds(attempt);\n\t                (0, core_1.info)(`Attempt ${attempt + 1} of ${this.maxAttempts} failed with error: ${errorMessage}. Retrying request in ${retryTimeMilliseconds} ms...`);\n\t                yield this.sleep(retryTimeMilliseconds);\n\t                attempt++;\n\t            }\n\t            throw new Error(`Request failed`);\n\t        });\n\t    }\n\t    isSuccessStatusCode(statusCode) {\n\t        if (!statusCode)\n\t            return false;\n\t        return statusCode >= 200 && statusCode < 300;\n\t    }\n\t    isRetryableHttpStatusCode(statusCode) {\n\t        if (!statusCode)\n\t            return false;\n\t        const retryableStatusCodes = [\n\t            http_client_1.HttpCodes.BadGateway,\n\t            http_client_1.HttpCodes.GatewayTimeout,\n\t            http_client_1.HttpCodes.InternalServerError,\n\t            http_client_1.HttpCodes.ServiceUnavailable,\n\t            http_client_1.HttpCodes.TooManyRequests\n\t        ];\n\t        return retryableStatusCodes.includes(statusCode);\n\t    }\n\t    sleep(milliseconds) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            return new Promise(resolve => setTimeout(resolve, milliseconds));\n\t        });\n\t    }\n\t    getExponentialRetryTimeMilliseconds(attempt) {\n\t        if (attempt < 0) {\n\t            throw new Error('attempt should be a positive integer');\n\t        }\n\t        if (attempt === 0) {\n\t            return this.baseRetryIntervalMilliseconds;\n\t        }\n\t        const minTime = this.baseRetryIntervalMilliseconds * Math.pow(this.retryMultiplier, attempt);\n\t        const maxTime = minTime * this.retryMultiplier;\n\t        // returns a random number between minTime and maxTime (exclusive)\n\t        return Math.trunc(Math.random() * (maxTime - minTime) + minTime);\n\t    }\n\t}\n\tfunction internalArtifactTwirpClient(options) {\n\t    const client = new ArtifactHttpClient((0, user_agent_1.getUserAgentString)(), options === null || options === void 0 ? void 0 : options.maxAttempts, options === null || options === void 0 ? void 0 : options.retryIntervalMs, options === null || options === void 0 ? void 0 : options.retryMultiplier);\n\t    return new generated_1.ArtifactServiceClientJSON(client);\n\t}\n\tartifactTwirpClient.internalArtifactTwirpClient = internalArtifactTwirpClient;\n\t\n\treturn artifactTwirpClient;\n}\n\nvar uploadZipSpecification = {};\n\nvar hasRequiredUploadZipSpecification;\n\nfunction requireUploadZipSpecification () {\n\tif (hasRequiredUploadZipSpecification) return uploadZipSpecification;\n\thasRequiredUploadZipSpecification = 1;\n\tvar __createBinding = (uploadZipSpecification && uploadZipSpecification.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (uploadZipSpecification && uploadZipSpecification.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (uploadZipSpecification && uploadZipSpecification.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(uploadZipSpecification, \"__esModule\", { value: true });\n\tuploadZipSpecification.getUploadZipSpecification = uploadZipSpecification.validateRootDirectory = void 0;\n\tconst fs = __importStar(fs__default);\n\tconst core_1 = requireCore$1();\n\tconst path_1 = require$$1__default;\n\tconst path_and_artifact_name_validation_1 = requirePathAndArtifactNameValidation();\n\t/**\n\t * Checks if a root directory exists and is valid\n\t * @param rootDirectory an absolute root directory path common to all input files that that will be trimmed from the final zip structure\n\t */\n\tfunction validateRootDirectory(rootDirectory) {\n\t    if (!fs.existsSync(rootDirectory)) {\n\t        throw new Error(`The provided rootDirectory ${rootDirectory} does not exist`);\n\t    }\n\t    if (!fs.statSync(rootDirectory).isDirectory()) {\n\t        throw new Error(`The provided rootDirectory ${rootDirectory} is not a valid directory`);\n\t    }\n\t    (0, core_1.info)(`Root directory input is valid!`);\n\t}\n\tuploadZipSpecification.validateRootDirectory = validateRootDirectory;\n\t/**\n\t * Creates a specification that describes how a zip file will be created for a set of input files\n\t * @param filesToZip a list of file that should be included in the zip\n\t * @param rootDirectory an absolute root directory path common to all input files that that will be trimmed from the final zip structure\n\t */\n\tfunction getUploadZipSpecification(filesToZip, rootDirectory) {\n\t    const specification = [];\n\t    // Normalize and resolve, this allows for either absolute or relative paths to be used\n\t    rootDirectory = (0, path_1.normalize)(rootDirectory);\n\t    rootDirectory = (0, path_1.resolve)(rootDirectory);\n\t    /*\n\t       Example\n\t       \n\t       Input:\n\t         rootDirectory: '/home/user/files/plz-upload'\n\t         artifactFiles: [\n\t           '/home/user/files/plz-upload/file1.txt',\n\t           '/home/user/files/plz-upload/file2.txt',\n\t           '/home/user/files/plz-upload/dir/file3.txt'\n\t         ]\n\t       \n\t       Output:\n\t         specifications: [\n\t           ['/home/user/files/plz-upload/file1.txt', '/file1.txt'],\n\t           ['/home/user/files/plz-upload/file1.txt', '/file2.txt'],\n\t           ['/home/user/files/plz-upload/file1.txt', '/dir/file3.txt']\n\t         ]\n\t  \n\t        The final zip that is later uploaded will look like this:\n\t  \n\t        my-artifact.zip\n\t          - file.txt\n\t          - file2.txt\n\t          - dir/\n\t            - file3.txt\n\t    */\n\t    for (let file of filesToZip) {\n\t        const stats = fs.lstatSync(file, { throwIfNoEntry: false });\n\t        if (!stats) {\n\t            throw new Error(`File ${file} does not exist`);\n\t        }\n\t        if (!stats.isDirectory()) {\n\t            // Normalize and resolve, this allows for either absolute or relative paths to be used\n\t            file = (0, path_1.normalize)(file);\n\t            file = (0, path_1.resolve)(file);\n\t            if (!file.startsWith(rootDirectory)) {\n\t                throw new Error(`The rootDirectory: ${rootDirectory} is not a parent directory of the file: ${file}`);\n\t            }\n\t            // Check for forbidden characters in file paths that may cause ambiguous behavior if downloaded on different file systems\n\t            const uploadPath = file.replace(rootDirectory, '');\n\t            (0, path_and_artifact_name_validation_1.validateFilePath)(uploadPath);\n\t            specification.push({\n\t                sourcePath: file,\n\t                destinationPath: uploadPath,\n\t                stats\n\t            });\n\t        }\n\t        else {\n\t            // Empty directory\n\t            const directoryPath = file.replace(rootDirectory, '');\n\t            (0, path_and_artifact_name_validation_1.validateFilePath)(directoryPath);\n\t            specification.push({\n\t                sourcePath: null,\n\t                destinationPath: directoryPath,\n\t                stats\n\t            });\n\t        }\n\t    }\n\t    return specification;\n\t}\n\tuploadZipSpecification.getUploadZipSpecification = getUploadZipSpecification;\n\t\n\treturn uploadZipSpecification;\n}\n\nvar blobUpload = {};\n\nvar hasRequiredBlobUpload;\n\nfunction requireBlobUpload () {\n\tif (hasRequiredBlobUpload) return blobUpload;\n\thasRequiredBlobUpload = 1;\n\tvar __createBinding = (blobUpload && blobUpload.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (blobUpload && blobUpload.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (blobUpload && blobUpload.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (blobUpload && blobUpload.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(blobUpload, \"__esModule\", { value: true });\n\tblobUpload.uploadZipToBlobStorage = void 0;\n\tconst storage_blob_1 = require$$0$4;\n\tconst config_1 = requireConfig();\n\tconst core = __importStar(requireCore$1());\n\tconst crypto = __importStar(require$$0$7);\n\tconst stream = __importStar(require$$0$b);\n\tconst errors_1 = requireErrors$1();\n\tfunction uploadZipToBlobStorage(authenticatedUploadURL, zipUploadStream) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        let uploadByteCount = 0;\n\t        let lastProgressTime = Date.now();\n\t        const abortController = new AbortController();\n\t        const chunkTimer = (interval) => __awaiter(this, void 0, void 0, function* () {\n\t            return new Promise((resolve, reject) => {\n\t                const timer = setInterval(() => {\n\t                    if (Date.now() - lastProgressTime > interval) {\n\t                        reject(new Error('Upload progress stalled.'));\n\t                    }\n\t                }, interval);\n\t                abortController.signal.addEventListener('abort', () => {\n\t                    clearInterval(timer);\n\t                    resolve();\n\t                });\n\t            });\n\t        });\n\t        const maxConcurrency = (0, config_1.getConcurrency)();\n\t        const bufferSize = (0, config_1.getUploadChunkSize)();\n\t        const blobClient = new storage_blob_1.BlobClient(authenticatedUploadURL);\n\t        const blockBlobClient = blobClient.getBlockBlobClient();\n\t        core.debug(`Uploading artifact zip to blob storage with maxConcurrency: ${maxConcurrency}, bufferSize: ${bufferSize}`);\n\t        const uploadCallback = (progress) => {\n\t            core.info(`Uploaded bytes ${progress.loadedBytes}`);\n\t            uploadByteCount = progress.loadedBytes;\n\t            lastProgressTime = Date.now();\n\t        };\n\t        const options = {\n\t            blobHTTPHeaders: { blobContentType: 'zip' },\n\t            onProgress: uploadCallback,\n\t            abortSignal: abortController.signal\n\t        };\n\t        let sha256Hash = undefined;\n\t        const uploadStream = new stream.PassThrough();\n\t        const hashStream = crypto.createHash('sha256');\n\t        zipUploadStream.pipe(uploadStream); // This stream is used for the upload\n\t        zipUploadStream.pipe(hashStream).setEncoding('hex'); // This stream is used to compute a hash of the zip content that gets used. Integrity check\n\t        core.info('Beginning upload of artifact content to blob storage');\n\t        try {\n\t            yield Promise.race([\n\t                blockBlobClient.uploadStream(uploadStream, bufferSize, maxConcurrency, options),\n\t                chunkTimer((0, config_1.getUploadChunkTimeout)())\n\t            ]);\n\t        }\n\t        catch (error) {\n\t            if (errors_1.NetworkError.isNetworkErrorCode(error === null || error === void 0 ? void 0 : error.code)) {\n\t                throw new errors_1.NetworkError(error === null || error === void 0 ? void 0 : error.code);\n\t            }\n\t            throw error;\n\t        }\n\t        finally {\n\t            abortController.abort();\n\t        }\n\t        core.info('Finished uploading artifact content to blob storage!');\n\t        hashStream.end();\n\t        sha256Hash = hashStream.read();\n\t        core.info(`SHA256 digest of uploaded artifact zip is ${sha256Hash}`);\n\t        if (uploadByteCount === 0) {\n\t            core.warning(`No data was uploaded to blob storage. Reported upload byte count is 0.`);\n\t        }\n\t        return {\n\t            uploadSize: uploadByteCount,\n\t            sha256Hash\n\t        };\n\t    });\n\t}\n\tblobUpload.uploadZipToBlobStorage = uploadZipToBlobStorage;\n\t\n\treturn blobUpload;\n}\n\nvar zip$1 = {};\n\nvar path;\nvar hasRequiredPath;\n\nfunction requirePath () {\n\tif (hasRequiredPath) return path;\n\thasRequiredPath = 1;\n\tconst isWindows = typeof process === 'object' &&\n\t  process &&\n\t  process.platform === 'win32';\n\tpath = isWindows ? { sep: '\\\\' } : { sep: '/' };\n\treturn path;\n}\n\nvar braceExpansion$1;\nvar hasRequiredBraceExpansion$1;\n\nfunction requireBraceExpansion$1 () {\n\tif (hasRequiredBraceExpansion$1) return braceExpansion$1;\n\thasRequiredBraceExpansion$1 = 1;\n\tvar balanced = requireBalancedMatch();\n\n\tbraceExpansion$1 = expandTop;\n\n\tvar escSlash = '\\0SLASH'+Math.random()+'\\0';\n\tvar escOpen = '\\0OPEN'+Math.random()+'\\0';\n\tvar escClose = '\\0CLOSE'+Math.random()+'\\0';\n\tvar escComma = '\\0COMMA'+Math.random()+'\\0';\n\tvar escPeriod = '\\0PERIOD'+Math.random()+'\\0';\n\n\tfunction numeric(str) {\n\t  return parseInt(str, 10) == str\n\t    ? parseInt(str, 10)\n\t    : str.charCodeAt(0);\n\t}\n\n\tfunction escapeBraces(str) {\n\t  return str.split('\\\\\\\\').join(escSlash)\n\t            .split('\\\\{').join(escOpen)\n\t            .split('\\\\}').join(escClose)\n\t            .split('\\\\,').join(escComma)\n\t            .split('\\\\.').join(escPeriod);\n\t}\n\n\tfunction unescapeBraces(str) {\n\t  return str.split(escSlash).join('\\\\')\n\t            .split(escOpen).join('{')\n\t            .split(escClose).join('}')\n\t            .split(escComma).join(',')\n\t            .split(escPeriod).join('.');\n\t}\n\n\n\t// Basically just str.split(\",\"), but handling cases\n\t// where we have nested braced sections, which should be\n\t// treated as individual members, like {a,{b,c},d}\n\tfunction parseCommaParts(str) {\n\t  if (!str)\n\t    return [''];\n\n\t  var parts = [];\n\t  var m = balanced('{', '}', str);\n\n\t  if (!m)\n\t    return str.split(',');\n\n\t  var pre = m.pre;\n\t  var body = m.body;\n\t  var post = m.post;\n\t  var p = pre.split(',');\n\n\t  p[p.length-1] += '{' + body + '}';\n\t  var postParts = parseCommaParts(post);\n\t  if (post.length) {\n\t    p[p.length-1] += postParts.shift();\n\t    p.push.apply(p, postParts);\n\t  }\n\n\t  parts.push.apply(parts, p);\n\n\t  return parts;\n\t}\n\n\tfunction expandTop(str) {\n\t  if (!str)\n\t    return [];\n\n\t  // I don't know why Bash 4.3 does this, but it does.\n\t  // Anything starting with {} will have the first two bytes preserved\n\t  // but *only* at the top level, so {},a}b will not expand to anything,\n\t  // but a{},b}c will be expanded to [a}c,abc].\n\t  // One could argue that this is a bug in Bash, but since the goal of\n\t  // this module is to match Bash's rules, we escape a leading {}\n\t  if (str.substr(0, 2) === '{}') {\n\t    str = '\\\\{\\\\}' + str.substr(2);\n\t  }\n\n\t  return expand(escapeBraces(str), true).map(unescapeBraces);\n\t}\n\n\tfunction embrace(str) {\n\t  return '{' + str + '}';\n\t}\n\tfunction isPadded(el) {\n\t  return /^-?0\\d/.test(el);\n\t}\n\n\tfunction lte(i, y) {\n\t  return i <= y;\n\t}\n\tfunction gte(i, y) {\n\t  return i >= y;\n\t}\n\n\tfunction expand(str, isTop) {\n\t  var expansions = [];\n\n\t  var m = balanced('{', '}', str);\n\t  if (!m) return [str];\n\n\t  // no need to expand pre, since it is guaranteed to be free of brace-sets\n\t  var pre = m.pre;\n\t  var post = m.post.length\n\t    ? expand(m.post, false)\n\t    : [''];\n\n\t  if (/\\$$/.test(m.pre)) {    \n\t    for (var k = 0; k < post.length; k++) {\n\t      var expansion = pre+ '{' + m.body + '}' + post[k];\n\t      expansions.push(expansion);\n\t    }\n\t  } else {\n\t    var isNumericSequence = /^-?\\d+\\.\\.-?\\d+(?:\\.\\.-?\\d+)?$/.test(m.body);\n\t    var isAlphaSequence = /^[a-zA-Z]\\.\\.[a-zA-Z](?:\\.\\.-?\\d+)?$/.test(m.body);\n\t    var isSequence = isNumericSequence || isAlphaSequence;\n\t    var isOptions = m.body.indexOf(',') >= 0;\n\t    if (!isSequence && !isOptions) {\n\t      // {a},b}\n\t      if (m.post.match(/,.*\\}/)) {\n\t        str = m.pre + '{' + m.body + escClose + m.post;\n\t        return expand(str);\n\t      }\n\t      return [str];\n\t    }\n\n\t    var n;\n\t    if (isSequence) {\n\t      n = m.body.split(/\\.\\./);\n\t    } else {\n\t      n = parseCommaParts(m.body);\n\t      if (n.length === 1) {\n\t        // x{{a,b}}y ==> x{a}y x{b}y\n\t        n = expand(n[0], false).map(embrace);\n\t        if (n.length === 1) {\n\t          return post.map(function(p) {\n\t            return m.pre + n[0] + p;\n\t          });\n\t        }\n\t      }\n\t    }\n\n\t    // at this point, n is the parts, and we know it's not a comma set\n\t    // with a single entry.\n\t    var N;\n\n\t    if (isSequence) {\n\t      var x = numeric(n[0]);\n\t      var y = numeric(n[1]);\n\t      var width = Math.max(n[0].length, n[1].length);\n\t      var incr = n.length == 3\n\t        ? Math.abs(numeric(n[2]))\n\t        : 1;\n\t      var test = lte;\n\t      var reverse = y < x;\n\t      if (reverse) {\n\t        incr *= -1;\n\t        test = gte;\n\t      }\n\t      var pad = n.some(isPadded);\n\n\t      N = [];\n\n\t      for (var i = x; test(i, y); i += incr) {\n\t        var c;\n\t        if (isAlphaSequence) {\n\t          c = String.fromCharCode(i);\n\t          if (c === '\\\\')\n\t            c = '';\n\t        } else {\n\t          c = String(i);\n\t          if (pad) {\n\t            var need = width - c.length;\n\t            if (need > 0) {\n\t              var z = new Array(need + 1).join('0');\n\t              if (i < 0)\n\t                c = '-' + z + c.slice(1);\n\t              else\n\t                c = z + c;\n\t            }\n\t          }\n\t        }\n\t        N.push(c);\n\t      }\n\t    } else {\n\t      N = [];\n\n\t      for (var j = 0; j < n.length; j++) {\n\t        N.push.apply(N, expand(n[j], false));\n\t      }\n\t    }\n\n\t    for (var j = 0; j < N.length; j++) {\n\t      for (var k = 0; k < post.length; k++) {\n\t        var expansion = pre + N[j] + post[k];\n\t        if (!isTop || isSequence || expansion)\n\t          expansions.push(expansion);\n\t      }\n\t    }\n\t  }\n\n\t  return expansions;\n\t}\n\treturn braceExpansion$1;\n}\n\nvar minimatch_1;\nvar hasRequiredMinimatch;\n\nfunction requireMinimatch () {\n\tif (hasRequiredMinimatch) return minimatch_1;\n\thasRequiredMinimatch = 1;\n\tconst minimatch = minimatch_1 = (p, pattern, options = {}) => {\n\t  assertValidPattern(pattern);\n\n\t  // shortcut: comments match nothing.\n\t  if (!options.nocomment && pattern.charAt(0) === '#') {\n\t    return false\n\t  }\n\n\t  return new Minimatch(pattern, options).match(p)\n\t};\n\n\tminimatch_1 = minimatch;\n\n\tconst path = requirePath();\n\tminimatch.sep = path.sep;\n\n\tconst GLOBSTAR = Symbol('globstar **');\n\tminimatch.GLOBSTAR = GLOBSTAR;\n\tconst expand = requireBraceExpansion$1();\n\n\tconst plTypes = {\n\t  '!': { open: '(?:(?!(?:', close: '))[^/]*?)'},\n\t  '?': { open: '(?:', close: ')?' },\n\t  '+': { open: '(?:', close: ')+' },\n\t  '*': { open: '(?:', close: ')*' },\n\t  '@': { open: '(?:', close: ')' }\n\t};\n\n\t// any single thing other than /\n\t// don't need to escape / when using new RegExp()\n\tconst qmark = '[^/]';\n\n\t// * => any number of characters\n\tconst star = qmark + '*?';\n\n\t// ** when dots are allowed.  Anything goes, except .. and .\n\t// not (^ or / followed by one or two dots followed by $ or /),\n\t// followed by anything, any number of times.\n\tconst twoStarDot = '(?:(?!(?:\\\\\\/|^)(?:\\\\.{1,2})($|\\\\\\/)).)*?';\n\n\t// not a ^ or / followed by a dot,\n\t// followed by anything, any number of times.\n\tconst twoStarNoDot = '(?:(?!(?:\\\\\\/|^)\\\\.).)*?';\n\n\t// \"abc\" -> { a:true, b:true, c:true }\n\tconst charSet = s => s.split('').reduce((set, c) => {\n\t  set[c] = true;\n\t  return set\n\t}, {});\n\n\t// characters that need to be escaped in RegExp.\n\tconst reSpecials = charSet('().*{}+?[]^$\\\\!');\n\n\t// characters that indicate we have to add the pattern start\n\tconst addPatternStartSet = charSet('[.(');\n\n\t// normalizes slashes.\n\tconst slashSplit = /\\/+/;\n\n\tminimatch.filter = (pattern, options = {}) =>\n\t  (p, i, list) => minimatch(p, pattern, options);\n\n\tconst ext = (a, b = {}) => {\n\t  const t = {};\n\t  Object.keys(a).forEach(k => t[k] = a[k]);\n\t  Object.keys(b).forEach(k => t[k] = b[k]);\n\t  return t\n\t};\n\n\tminimatch.defaults = def => {\n\t  if (!def || typeof def !== 'object' || !Object.keys(def).length) {\n\t    return minimatch\n\t  }\n\n\t  const orig = minimatch;\n\n\t  const m = (p, pattern, options) => orig(p, pattern, ext(def, options));\n\t  m.Minimatch = class Minimatch extends orig.Minimatch {\n\t    constructor (pattern, options) {\n\t      super(pattern, ext(def, options));\n\t    }\n\t  };\n\t  m.Minimatch.defaults = options => orig.defaults(ext(def, options)).Minimatch;\n\t  m.filter = (pattern, options) => orig.filter(pattern, ext(def, options));\n\t  m.defaults = options => orig.defaults(ext(def, options));\n\t  m.makeRe = (pattern, options) => orig.makeRe(pattern, ext(def, options));\n\t  m.braceExpand = (pattern, options) => orig.braceExpand(pattern, ext(def, options));\n\t  m.match = (list, pattern, options) => orig.match(list, pattern, ext(def, options));\n\n\t  return m\n\t};\n\n\n\n\n\n\t// Brace expansion:\n\t// a{b,c}d -> abd acd\n\t// a{b,}c -> abc ac\n\t// a{0..3}d -> a0d a1d a2d a3d\n\t// a{b,c{d,e}f}g -> abg acdfg acefg\n\t// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n\t//\n\t// Invalid sets are not expanded.\n\t// a{2..}b -> a{2..}b\n\t// a{b}c -> a{b}c\n\tminimatch.braceExpand = (pattern, options) => braceExpand(pattern, options);\n\n\tconst braceExpand = (pattern, options = {}) => {\n\t  assertValidPattern(pattern);\n\n\t  // Thanks to Yeting Li <https://github.com/yetingli> for\n\t  // improving this regexp to avoid a ReDOS vulnerability.\n\t  if (options.nobrace || !/\\{(?:(?!\\{).)*\\}/.test(pattern)) {\n\t    // shortcut. no need to expand.\n\t    return [pattern]\n\t  }\n\n\t  return expand(pattern)\n\t};\n\n\tconst MAX_PATTERN_LENGTH = 1024 * 64;\n\tconst assertValidPattern = pattern => {\n\t  if (typeof pattern !== 'string') {\n\t    throw new TypeError('invalid pattern')\n\t  }\n\n\t  if (pattern.length > MAX_PATTERN_LENGTH) {\n\t    throw new TypeError('pattern is too long')\n\t  }\n\t};\n\n\t// parse a component of the expanded set.\n\t// At this point, no pattern may contain \"/\" in it\n\t// so we're going to return a 2d array, where each entry is the full\n\t// pattern, split on '/', and then turned into a regular expression.\n\t// A regexp is made at the end which joins each array with an\n\t// escaped /, and another full one which joins each regexp with |.\n\t//\n\t// Following the lead of Bash 4.1, note that \"**\" only has special meaning\n\t// when it is the *only* thing in a path portion.  Otherwise, any series\n\t// of * is equivalent to a single *.  Globstar behavior is enabled by\n\t// default, and can be disabled by setting options.noglobstar.\n\tconst SUBPARSE = Symbol('subparse');\n\n\tminimatch.makeRe = (pattern, options) =>\n\t  new Minimatch(pattern, options || {}).makeRe();\n\n\tminimatch.match = (list, pattern, options = {}) => {\n\t  const mm = new Minimatch(pattern, options);\n\t  list = list.filter(f => mm.match(f));\n\t  if (mm.options.nonull && !list.length) {\n\t    list.push(pattern);\n\t  }\n\t  return list\n\t};\n\n\t// replace stuff like \\* with *\n\tconst globUnescape = s => s.replace(/\\\\(.)/g, '$1');\n\tconst charUnescape = s => s.replace(/\\\\([^-\\]])/g, '$1');\n\tconst regExpEscape = s => s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&');\n\tconst braExpEscape = s => s.replace(/[[\\]\\\\]/g, '\\\\$&');\n\n\tclass Minimatch {\n\t  constructor (pattern, options) {\n\t    assertValidPattern(pattern);\n\n\t    if (!options) options = {};\n\n\t    this.options = options;\n\t    this.set = [];\n\t    this.pattern = pattern;\n\t    this.windowsPathsNoEscape = !!options.windowsPathsNoEscape ||\n\t      options.allowWindowsEscape === false;\n\t    if (this.windowsPathsNoEscape) {\n\t      this.pattern = this.pattern.replace(/\\\\/g, '/');\n\t    }\n\t    this.regexp = null;\n\t    this.negate = false;\n\t    this.comment = false;\n\t    this.empty = false;\n\t    this.partial = !!options.partial;\n\n\t    // make the set of regexps etc.\n\t    this.make();\n\t  }\n\n\t  debug () {}\n\n\t  make () {\n\t    const pattern = this.pattern;\n\t    const options = this.options;\n\n\t    // empty patterns and comments match nothing.\n\t    if (!options.nocomment && pattern.charAt(0) === '#') {\n\t      this.comment = true;\n\t      return\n\t    }\n\t    if (!pattern) {\n\t      this.empty = true;\n\t      return\n\t    }\n\n\t    // step 1: figure out negation, etc.\n\t    this.parseNegate();\n\n\t    // step 2: expand braces\n\t    let set = this.globSet = this.braceExpand();\n\n\t    if (options.debug) this.debug = (...args) => console.error(...args);\n\n\t    this.debug(this.pattern, set);\n\n\t    // step 3: now we have a set, so turn each one into a series of path-portion\n\t    // matching patterns.\n\t    // These will be regexps, except in the case of \"**\", which is\n\t    // set to the GLOBSTAR object for globstar behavior,\n\t    // and will not contain any / characters\n\t    set = this.globParts = set.map(s => s.split(slashSplit));\n\n\t    this.debug(this.pattern, set);\n\n\t    // glob --> regexps\n\t    set = set.map((s, si, set) => s.map(this.parse, this));\n\n\t    this.debug(this.pattern, set);\n\n\t    // filter out everything that didn't compile properly.\n\t    set = set.filter(s => s.indexOf(false) === -1);\n\n\t    this.debug(this.pattern, set);\n\n\t    this.set = set;\n\t  }\n\n\t  parseNegate () {\n\t    if (this.options.nonegate) return\n\n\t    const pattern = this.pattern;\n\t    let negate = false;\n\t    let negateOffset = 0;\n\n\t    for (let i = 0; i < pattern.length && pattern.charAt(i) === '!'; i++) {\n\t      negate = !negate;\n\t      negateOffset++;\n\t    }\n\n\t    if (negateOffset) this.pattern = pattern.slice(negateOffset);\n\t    this.negate = negate;\n\t  }\n\n\t  // set partial to true to test if, for example,\n\t  // \"/a/b\" matches the start of \"/*/b/*/d\"\n\t  // Partial means, if you run out of file before you run\n\t  // out of pattern, then that's fine, as long as all\n\t  // the parts match.\n\t  matchOne (file, pattern, partial) {\n\t    var options = this.options;\n\n\t    this.debug('matchOne',\n\t      { 'this': this, file: file, pattern: pattern });\n\n\t    this.debug('matchOne', file.length, pattern.length);\n\n\t    for (var fi = 0,\n\t        pi = 0,\n\t        fl = file.length,\n\t        pl = pattern.length\n\t        ; (fi < fl) && (pi < pl)\n\t        ; fi++, pi++) {\n\t      this.debug('matchOne loop');\n\t      var p = pattern[pi];\n\t      var f = file[fi];\n\n\t      this.debug(pattern, p, f);\n\n\t      // should be impossible.\n\t      // some invalid regexp stuff in the set.\n\t      /* istanbul ignore if */\n\t      if (p === false) return false\n\n\t      if (p === GLOBSTAR) {\n\t        this.debug('GLOBSTAR', [pattern, p, f]);\n\n\t        // \"**\"\n\t        // a/**/b/**/c would match the following:\n\t        // a/b/x/y/z/c\n\t        // a/x/y/z/b/c\n\t        // a/b/x/b/x/c\n\t        // a/b/c\n\t        // To do this, take the rest of the pattern after\n\t        // the **, and see if it would match the file remainder.\n\t        // If so, return success.\n\t        // If not, the ** \"swallows\" a segment, and try again.\n\t        // This is recursively awful.\n\t        //\n\t        // a/**/b/**/c matching a/b/x/y/z/c\n\t        // - a matches a\n\t        // - doublestar\n\t        //   - matchOne(b/x/y/z/c, b/**/c)\n\t        //     - b matches b\n\t        //     - doublestar\n\t        //       - matchOne(x/y/z/c, c) -> no\n\t        //       - matchOne(y/z/c, c) -> no\n\t        //       - matchOne(z/c, c) -> no\n\t        //       - matchOne(c, c) yes, hit\n\t        var fr = fi;\n\t        var pr = pi + 1;\n\t        if (pr === pl) {\n\t          this.debug('** at the end');\n\t          // a ** at the end will just swallow the rest.\n\t          // We have found a match.\n\t          // however, it will not swallow /.x, unless\n\t          // options.dot is set.\n\t          // . and .. are *never* matched by **, for explosively\n\t          // exponential reasons.\n\t          for (; fi < fl; fi++) {\n\t            if (file[fi] === '.' || file[fi] === '..' ||\n\t              (!options.dot && file[fi].charAt(0) === '.')) return false\n\t          }\n\t          return true\n\t        }\n\n\t        // ok, let's see if we can swallow whatever we can.\n\t        while (fr < fl) {\n\t          var swallowee = file[fr];\n\n\t          this.debug('\\nglobstar while', file, fr, pattern, pr, swallowee);\n\n\t          // XXX remove this slice.  Just pass the start index.\n\t          if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {\n\t            this.debug('globstar found match!', fr, fl, swallowee);\n\t            // found a match.\n\t            return true\n\t          } else {\n\t            // can't swallow \".\" or \"..\" ever.\n\t            // can only swallow \".foo\" when explicitly asked.\n\t            if (swallowee === '.' || swallowee === '..' ||\n\t              (!options.dot && swallowee.charAt(0) === '.')) {\n\t              this.debug('dot detected!', file, fr, pattern, pr);\n\t              break\n\t            }\n\n\t            // ** swallows a segment, and continue.\n\t            this.debug('globstar swallow a segment, and continue');\n\t            fr++;\n\t          }\n\t        }\n\n\t        // no match was found.\n\t        // However, in partial mode, we can't say this is necessarily over.\n\t        // If there's more *pattern* left, then\n\t        /* istanbul ignore if */\n\t        if (partial) {\n\t          // ran out of file\n\t          this.debug('\\n>>> no match, partial?', file, fr, pattern, pr);\n\t          if (fr === fl) return true\n\t        }\n\t        return false\n\t      }\n\n\t      // something other than **\n\t      // non-magic patterns just have to match exactly\n\t      // patterns with magic have been turned into regexps.\n\t      var hit;\n\t      if (typeof p === 'string') {\n\t        hit = f === p;\n\t        this.debug('string match', p, f, hit);\n\t      } else {\n\t        hit = f.match(p);\n\t        this.debug('pattern match', p, f, hit);\n\t      }\n\n\t      if (!hit) return false\n\t    }\n\n\t    // Note: ending in / means that we'll get a final \"\"\n\t    // at the end of the pattern.  This can only match a\n\t    // corresponding \"\" at the end of the file.\n\t    // If the file ends in /, then it can only match a\n\t    // a pattern that ends in /, unless the pattern just\n\t    // doesn't have any more for it. But, a/b/ should *not*\n\t    // match \"a/b/*\", even though \"\" matches against the\n\t    // [^/]*? pattern, except in partial mode, where it might\n\t    // simply not be reached yet.\n\t    // However, a/b/ should still satisfy a/*\n\n\t    // now either we fell off the end of the pattern, or we're done.\n\t    if (fi === fl && pi === pl) {\n\t      // ran out of pattern and filename at the same time.\n\t      // an exact hit!\n\t      return true\n\t    } else if (fi === fl) {\n\t      // ran out of file, but still had pattern left.\n\t      // this is ok if we're doing the match as part of\n\t      // a glob fs traversal.\n\t      return partial\n\t    } else /* istanbul ignore else */ if (pi === pl) {\n\t      // ran out of pattern, still have file left.\n\t      // this is only acceptable if we're on the very last\n\t      // empty segment of a file with a trailing slash.\n\t      // a/* should match a/b/\n\t      return (fi === fl - 1) && (file[fi] === '')\n\t    }\n\n\t    // should be unreachable.\n\t    /* istanbul ignore next */\n\t    throw new Error('wtf?')\n\t  }\n\n\t  braceExpand () {\n\t    return braceExpand(this.pattern, this.options)\n\t  }\n\n\t  parse (pattern, isSub) {\n\t    assertValidPattern(pattern);\n\n\t    const options = this.options;\n\n\t    // shortcuts\n\t    if (pattern === '**') {\n\t      if (!options.noglobstar)\n\t        return GLOBSTAR\n\t      else\n\t        pattern = '*';\n\t    }\n\t    if (pattern === '') return ''\n\n\t    let re = '';\n\t    let hasMagic = false;\n\t    let escaping = false;\n\t    // ? => one single character\n\t    const patternListStack = [];\n\t    const negativeLists = [];\n\t    let stateChar;\n\t    let inClass = false;\n\t    let reClassStart = -1;\n\t    let classStart = -1;\n\t    let cs;\n\t    let pl;\n\t    let sp;\n\t    // . and .. never match anything that doesn't start with .,\n\t    // even when options.dot is set.  However, if the pattern\n\t    // starts with ., then traversal patterns can match.\n\t    let dotTravAllowed = pattern.charAt(0) === '.';\n\t    let dotFileAllowed = options.dot || dotTravAllowed;\n\t    const patternStart = () =>\n\t      dotTravAllowed\n\t        ? ''\n\t        : dotFileAllowed\n\t        ? '(?!(?:^|\\\\/)\\\\.{1,2}(?:$|\\\\/))'\n\t        : '(?!\\\\.)';\n\t    const subPatternStart = (p) =>\n\t      p.charAt(0) === '.'\n\t        ? ''\n\t        : options.dot\n\t        ? '(?!(?:^|\\\\/)\\\\.{1,2}(?:$|\\\\/))'\n\t        : '(?!\\\\.)';\n\n\n\t    const clearStateChar = () => {\n\t      if (stateChar) {\n\t        // we had some state-tracking character\n\t        // that wasn't consumed by this pass.\n\t        switch (stateChar) {\n\t          case '*':\n\t            re += star;\n\t            hasMagic = true;\n\t          break\n\t          case '?':\n\t            re += qmark;\n\t            hasMagic = true;\n\t          break\n\t          default:\n\t            re += '\\\\' + stateChar;\n\t          break\n\t        }\n\t        this.debug('clearStateChar %j %j', stateChar, re);\n\t        stateChar = false;\n\t      }\n\t    };\n\n\t    for (let i = 0, c; (i < pattern.length) && (c = pattern.charAt(i)); i++) {\n\t      this.debug('%s\\t%s %s %j', pattern, i, re, c);\n\n\t      // skip over any that are escaped.\n\t      if (escaping) {\n\t        /* istanbul ignore next - completely not allowed, even escaped. */\n\t        if (c === '/') {\n\t          return false\n\t        }\n\n\t        if (reSpecials[c]) {\n\t          re += '\\\\';\n\t        }\n\t        re += c;\n\t        escaping = false;\n\t        continue\n\t      }\n\n\t      switch (c) {\n\t        /* istanbul ignore next */\n\t        case '/': {\n\t          // Should already be path-split by now.\n\t          return false\n\t        }\n\n\t        case '\\\\':\n\t          if (inClass && pattern.charAt(i + 1) === '-') {\n\t            re += c;\n\t            continue\n\t          }\n\n\t          clearStateChar();\n\t          escaping = true;\n\t        continue\n\n\t        // the various stateChar values\n\t        // for the \"extglob\" stuff.\n\t        case '?':\n\t        case '*':\n\t        case '+':\n\t        case '@':\n\t        case '!':\n\t          this.debug('%s\\t%s %s %j <-- stateChar', pattern, i, re, c);\n\n\t          // all of those are literals inside a class, except that\n\t          // the glob [!a] means [^a] in regexp\n\t          if (inClass) {\n\t            this.debug('  in class');\n\t            if (c === '!' && i === classStart + 1) c = '^';\n\t            re += c;\n\t            continue\n\t          }\n\n\t          // if we already have a stateChar, then it means\n\t          // that there was something like ** or +? in there.\n\t          // Handle the stateChar, then proceed with this one.\n\t          this.debug('call clearStateChar %j', stateChar);\n\t          clearStateChar();\n\t          stateChar = c;\n\t          // if extglob is disabled, then +(asdf|foo) isn't a thing.\n\t          // just clear the statechar *now*, rather than even diving into\n\t          // the patternList stuff.\n\t          if (options.noext) clearStateChar();\n\t        continue\n\n\t        case '(': {\n\t          if (inClass) {\n\t            re += '(';\n\t            continue\n\t          }\n\n\t          if (!stateChar) {\n\t            re += '\\\\(';\n\t            continue\n\t          }\n\n\t          const plEntry = {\n\t            type: stateChar,\n\t            start: i - 1,\n\t            reStart: re.length,\n\t            open: plTypes[stateChar].open,\n\t            close: plTypes[stateChar].close,\n\t          };\n\t          this.debug(this.pattern, '\\t', plEntry);\n\t          patternListStack.push(plEntry);\n\t          // negation is (?:(?!(?:js)(?:<rest>))[^/]*)\n\t          re += plEntry.open;\n\t          // next entry starts with a dot maybe?\n\t          if (plEntry.start === 0 && plEntry.type !== '!') {\n\t            dotTravAllowed = true;\n\t            re += subPatternStart(pattern.slice(i + 1));\n\t          }\n\t          this.debug('plType %j %j', stateChar, re);\n\t          stateChar = false;\n\t          continue\n\t        }\n\n\t        case ')': {\n\t          const plEntry = patternListStack[patternListStack.length - 1];\n\t          if (inClass || !plEntry) {\n\t            re += '\\\\)';\n\t            continue\n\t          }\n\t          patternListStack.pop();\n\n\t          // closing an extglob\n\t          clearStateChar();\n\t          hasMagic = true;\n\t          pl = plEntry;\n\t          // negation is (?:(?!js)[^/]*)\n\t          // The others are (?:<pattern>)<type>\n\t          re += pl.close;\n\t          if (pl.type === '!') {\n\t            negativeLists.push(Object.assign(pl, { reEnd: re.length }));\n\t          }\n\t          continue\n\t        }\n\n\t        case '|': {\n\t          const plEntry = patternListStack[patternListStack.length - 1];\n\t          if (inClass || !plEntry) {\n\t            re += '\\\\|';\n\t            continue\n\t          }\n\n\t          clearStateChar();\n\t          re += '|';\n\t          // next subpattern can start with a dot?\n\t          if (plEntry.start === 0 && plEntry.type !== '!') {\n\t            dotTravAllowed = true;\n\t            re += subPatternStart(pattern.slice(i + 1));\n\t          }\n\t          continue\n\t        }\n\n\t        // these are mostly the same in regexp and glob\n\t        case '[':\n\t          // swallow any state-tracking char before the [\n\t          clearStateChar();\n\n\t          if (inClass) {\n\t            re += '\\\\' + c;\n\t            continue\n\t          }\n\n\t          inClass = true;\n\t          classStart = i;\n\t          reClassStart = re.length;\n\t          re += c;\n\t        continue\n\n\t        case ']':\n\t          //  a right bracket shall lose its special\n\t          //  meaning and represent itself in\n\t          //  a bracket expression if it occurs\n\t          //  first in the list.  -- POSIX.2 2.8.3.2\n\t          if (i === classStart + 1 || !inClass) {\n\t            re += '\\\\' + c;\n\t            continue\n\t          }\n\n\t          // split where the last [ was, make sure we don't have\n\t          // an invalid re. if so, re-walk the contents of the\n\t          // would-be class to re-translate any characters that\n\t          // were passed through as-is\n\t          // TODO: It would probably be faster to determine this\n\t          // without a try/catch and a new RegExp, but it's tricky\n\t          // to do safely.  For now, this is safe and works.\n\t          cs = pattern.substring(classStart + 1, i);\n\t          try {\n\t            RegExp('[' + braExpEscape(charUnescape(cs)) + ']');\n\t            // looks good, finish up the class.\n\t            re += c;\n\t          } catch (er) {\n\t            // out of order ranges in JS are errors, but in glob syntax,\n\t            // they're just a range that matches nothing.\n\t            re = re.substring(0, reClassStart) + '(?:$.)'; // match nothing ever\n\t          }\n\t          hasMagic = true;\n\t          inClass = false;\n\t        continue\n\n\t        default:\n\t          // swallow any state char that wasn't consumed\n\t          clearStateChar();\n\n\t          if (reSpecials[c] && !(c === '^' && inClass)) {\n\t            re += '\\\\';\n\t          }\n\n\t          re += c;\n\t          break\n\n\t      } // switch\n\t    } // for\n\n\t    // handle the case where we left a class open.\n\t    // \"[abc\" is valid, equivalent to \"\\[abc\"\n\t    if (inClass) {\n\t      // split where the last [ was, and escape it\n\t      // this is a huge pita.  We now have to re-walk\n\t      // the contents of the would-be class to re-translate\n\t      // any characters that were passed through as-is\n\t      cs = pattern.slice(classStart + 1);\n\t      sp = this.parse(cs, SUBPARSE);\n\t      re = re.substring(0, reClassStart) + '\\\\[' + sp[0];\n\t      hasMagic = hasMagic || sp[1];\n\t    }\n\n\t    // handle the case where we had a +( thing at the *end*\n\t    // of the pattern.\n\t    // each pattern list stack adds 3 chars, and we need to go through\n\t    // and escape any | chars that were passed through as-is for the regexp.\n\t    // Go through and escape them, taking care not to double-escape any\n\t    // | chars that were already escaped.\n\t    for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {\n\t      let tail;\n\t      tail = re.slice(pl.reStart + pl.open.length);\n\t      this.debug('setting tail', re, pl);\n\t      // maybe some even number of \\, then maybe 1 \\, followed by a |\n\t      tail = tail.replace(/((?:\\\\{2}){0,64})(\\\\?)\\|/g, (_, $1, $2) => {\n\t        /* istanbul ignore else - should already be done */\n\t        if (!$2) {\n\t          // the | isn't already escaped, so escape it.\n\t          $2 = '\\\\';\n\t        }\n\n\t        // need to escape all those slashes *again*, without escaping the\n\t        // one that we need for escaping the | character.  As it works out,\n\t        // escaping an even number of slashes can be done by simply repeating\n\t        // it exactly after itself.  That's why this trick works.\n\t        //\n\t        // I am sorry that you have to see this.\n\t        return $1 + $1 + $2 + '|'\n\t      });\n\n\t      this.debug('tail=%j\\n   %s', tail, tail, pl, re);\n\t      const t = pl.type === '*' ? star\n\t        : pl.type === '?' ? qmark\n\t        : '\\\\' + pl.type;\n\n\t      hasMagic = true;\n\t      re = re.slice(0, pl.reStart) + t + '\\\\(' + tail;\n\t    }\n\n\t    // handle trailing things that only matter at the very end.\n\t    clearStateChar();\n\t    if (escaping) {\n\t      // trailing \\\\\n\t      re += '\\\\\\\\';\n\t    }\n\n\t    // only need to apply the nodot start if the re starts with\n\t    // something that could conceivably capture a dot\n\t    const addPatternStart = addPatternStartSet[re.charAt(0)];\n\n\t    // Hack to work around lack of negative lookbehind in JS\n\t    // A pattern like: *.!(x).!(y|z) needs to ensure that a name\n\t    // like 'a.xyz.yz' doesn't match.  So, the first negative\n\t    // lookahead, has to look ALL the way ahead, to the end of\n\t    // the pattern.\n\t    for (let n = negativeLists.length - 1; n > -1; n--) {\n\t      const nl = negativeLists[n];\n\n\t      const nlBefore = re.slice(0, nl.reStart);\n\t      const nlFirst = re.slice(nl.reStart, nl.reEnd - 8);\n\t      let nlAfter = re.slice(nl.reEnd);\n\t      const nlLast = re.slice(nl.reEnd - 8, nl.reEnd) + nlAfter;\n\n\t      // Handle nested stuff like *(*.js|!(*.json)), where open parens\n\t      // mean that we should *not* include the ) in the bit that is considered\n\t      // \"after\" the negated section.\n\t      const closeParensBefore = nlBefore.split(')').length;\n\t      const openParensBefore = nlBefore.split('(').length - closeParensBefore;\n\t      let cleanAfter = nlAfter;\n\t      for (let i = 0; i < openParensBefore; i++) {\n\t        cleanAfter = cleanAfter.replace(/\\)[+*?]?/, '');\n\t      }\n\t      nlAfter = cleanAfter;\n\n\t      const dollar = nlAfter === '' && isSub !== SUBPARSE ? '(?:$|\\\\/)' : '';\n\n\t      re = nlBefore + nlFirst + nlAfter + dollar + nlLast;\n\t    }\n\n\t    // if the re is not \"\" at this point, then we need to make sure\n\t    // it doesn't match against an empty path part.\n\t    // Otherwise a/* will match a/, which it should not.\n\t    if (re !== '' && hasMagic) {\n\t      re = '(?=.)' + re;\n\t    }\n\n\t    if (addPatternStart) {\n\t      re = patternStart() + re;\n\t    }\n\n\t    // parsing just a piece of a larger pattern.\n\t    if (isSub === SUBPARSE) {\n\t      return [re, hasMagic]\n\t    }\n\n\t    // if it's nocase, and the lcase/uppercase don't match, it's magic\n\t    if (options.nocase && !hasMagic) {\n\t      hasMagic = pattern.toUpperCase() !== pattern.toLowerCase();\n\t    }\n\n\t    // skip the regexp for non-magical patterns\n\t    // unescape anything in it, though, so that it'll be\n\t    // an exact match against a file etc.\n\t    if (!hasMagic) {\n\t      return globUnescape(pattern)\n\t    }\n\n\t    const flags = options.nocase ? 'i' : '';\n\t    try {\n\t      return Object.assign(new RegExp('^' + re + '$', flags), {\n\t        _glob: pattern,\n\t        _src: re,\n\t      })\n\t    } catch (er) /* istanbul ignore next - should be impossible */ {\n\t      // If it was an invalid regular expression, then it can't match\n\t      // anything.  This trick looks for a character after the end of\n\t      // the string, which is of course impossible, except in multi-line\n\t      // mode, but it's not a /m regex.\n\t      return new RegExp('$.')\n\t    }\n\t  }\n\n\t  makeRe () {\n\t    if (this.regexp || this.regexp === false) return this.regexp\n\n\t    // at this point, this.set is a 2d array of partial\n\t    // pattern strings, or \"**\".\n\t    //\n\t    // It's better to use .match().  This function shouldn't\n\t    // be used, really, but it's pretty convenient sometimes,\n\t    // when you just want to work with a regex.\n\t    const set = this.set;\n\n\t    if (!set.length) {\n\t      this.regexp = false;\n\t      return this.regexp\n\t    }\n\t    const options = this.options;\n\n\t    const twoStar = options.noglobstar ? star\n\t      : options.dot ? twoStarDot\n\t      : twoStarNoDot;\n\t    const flags = options.nocase ? 'i' : '';\n\n\t    // coalesce globstars and regexpify non-globstar patterns\n\t    // if it's the only item, then we just do one twoStar\n\t    // if it's the first, and there are more, prepend (\\/|twoStar\\/)? to next\n\t    // if it's the last, append (\\/twoStar|) to previous\n\t    // if it's in the middle, append (\\/|\\/twoStar\\/) to previous\n\t    // then filter out GLOBSTAR symbols\n\t    let re = set.map(pattern => {\n\t      pattern = pattern.map(p =>\n\t        typeof p === 'string' ? regExpEscape(p)\n\t        : p === GLOBSTAR ? GLOBSTAR\n\t        : p._src\n\t      ).reduce((set, p) => {\n\t        if (!(set[set.length - 1] === GLOBSTAR && p === GLOBSTAR)) {\n\t          set.push(p);\n\t        }\n\t        return set\n\t      }, []);\n\t      pattern.forEach((p, i) => {\n\t        if (p !== GLOBSTAR || pattern[i-1] === GLOBSTAR) {\n\t          return\n\t        }\n\t        if (i === 0) {\n\t          if (pattern.length > 1) {\n\t            pattern[i+1] = '(?:\\\\\\/|' + twoStar + '\\\\\\/)?' + pattern[i+1];\n\t          } else {\n\t            pattern[i] = twoStar;\n\t          }\n\t        } else if (i === pattern.length - 1) {\n\t          pattern[i-1] += '(?:\\\\\\/|' + twoStar + ')?';\n\t        } else {\n\t          pattern[i-1] += '(?:\\\\\\/|\\\\\\/' + twoStar + '\\\\\\/)' + pattern[i+1];\n\t          pattern[i+1] = GLOBSTAR;\n\t        }\n\t      });\n\t      return pattern.filter(p => p !== GLOBSTAR).join('/')\n\t    }).join('|');\n\n\t    // must match entire pattern\n\t    // ending in a * or ** will make it less strict.\n\t    re = '^(?:' + re + ')$';\n\n\t    // can match anything, as long as it's not this.\n\t    if (this.negate) re = '^(?!' + re + ').*$';\n\n\t    try {\n\t      this.regexp = new RegExp(re, flags);\n\t    } catch (ex) /* istanbul ignore next - should be impossible */ {\n\t      this.regexp = false;\n\t    }\n\t    return this.regexp\n\t  }\n\n\t  match (f, partial = this.partial) {\n\t    this.debug('match', f, this.pattern);\n\t    // short-circuit in the case of busted things.\n\t    // comments, etc.\n\t    if (this.comment) return false\n\t    if (this.empty) return f === ''\n\n\t    if (f === '/' && partial) return true\n\n\t    const options = this.options;\n\n\t    // windows: need to use /, not \\\n\t    if (path.sep !== '/') {\n\t      f = f.split(path.sep).join('/');\n\t    }\n\n\t    // treat the test path as a set of pathparts.\n\t    f = f.split(slashSplit);\n\t    this.debug(this.pattern, 'split', f);\n\n\t    // just ONE of the pattern sets in this.set needs to match\n\t    // in order for it to be valid.  If negating, then just one\n\t    // match means that we have failed.\n\t    // Either way, return on the first hit.\n\n\t    const set = this.set;\n\t    this.debug(this.pattern, 'set', set);\n\n\t    // Find the basename of the path by looking for the last non-empty segment\n\t    let filename;\n\t    for (let i = f.length - 1; i >= 0; i--) {\n\t      filename = f[i];\n\t      if (filename) break\n\t    }\n\n\t    for (let i = 0; i < set.length; i++) {\n\t      const pattern = set[i];\n\t      let file = f;\n\t      if (options.matchBase && pattern.length === 1) {\n\t        file = [filename];\n\t      }\n\t      const hit = this.matchOne(file, pattern, partial);\n\t      if (hit) {\n\t        if (options.flipNegate) return true\n\t        return !this.negate\n\t      }\n\t    }\n\n\t    // didn't get any hits.  this is success if it's a negative\n\t    // pattern, failure otherwise.\n\t    if (options.flipNegate) return false\n\t    return this.negate\n\t  }\n\n\t  static defaults (def) {\n\t    return minimatch.defaults(def).Minimatch\n\t  }\n\t}\n\n\tminimatch.Minimatch = Minimatch;\n\treturn minimatch_1;\n}\n\nvar readdirGlob_1;\nvar hasRequiredReaddirGlob;\n\nfunction requireReaddirGlob () {\n\tif (hasRequiredReaddirGlob) return readdirGlob_1;\n\thasRequiredReaddirGlob = 1;\n\treaddirGlob_1 = readdirGlob;\n\n\tconst fs = fs__default;\n\tconst { EventEmitter } = require$$1$4;\n\tconst { Minimatch } = requireMinimatch();\n\tconst { resolve } = require$$1__default;\n\n\tfunction readdir(dir, strict) {\n\t  return new Promise((resolve, reject) => {\n\t    fs.readdir(dir, {withFileTypes: true} ,(err, files) => {\n\t      if(err) {\n\t        switch (err.code) {\n\t          case 'ENOTDIR':      // Not a directory\n\t            if(strict) {\n\t              reject(err);\n\t            } else {\n\t              resolve([]);\n\t            }\n\t            break;\n\t          case 'ENOTSUP':      // Operation not supported\n\t          case 'ENOENT':       // No such file or directory\n\t          case 'ENAMETOOLONG': // Filename too long\n\t          case 'UNKNOWN':\n\t            resolve([]);\n\t            break;\n\t          case 'ELOOP':        // Too many levels of symbolic links\n\t          default:\n\t            reject(err);\n\t            break;\n\t        }\n\t      } else {\n\t        resolve(files);\n\t      }\n\t    });\n\t  });\n\t}\n\tfunction stat(file, followSymlinks) {\n\t  return new Promise((resolve, reject) => {\n\t    const statFunc = followSymlinks ? fs.stat : fs.lstat;\n\t    statFunc(file, (err, stats) => {\n\t      if(err) {\n\t        switch (err.code) {\n\t          case 'ENOENT':\n\t            if(followSymlinks) {\n\t              // Fallback to lstat to handle broken links as files\n\t              resolve(stat(file, false)); \n\t            } else {\n\t              resolve(null);\n\t            }\n\t            break;\n\t          default:\n\t            resolve(null);\n\t            break;\n\t        }\n\t      } else {\n\t        resolve(stats);\n\t      }\n\t    });\n\t  });\n\t}\n\n\tasync function* exploreWalkAsync(dir, path, followSymlinks, useStat, shouldSkip, strict) {\n\t  let files = await readdir(path + dir, strict);\n\t  for(const file of files) {\n\t    let name = file.name;\n\t    if(name === undefined) {\n\t      // undefined file.name means the `withFileTypes` options is not supported by node\n\t      // we have to call the stat function to know if file is directory or not.\n\t      name = file;\n\t      useStat = true;\n\t    }\n\t    const filename = dir + '/' + name;\n\t    const relative = filename.slice(1); // Remove the leading /\n\t    const absolute = path + '/' + relative;\n\t    let stats = null;\n\t    if(useStat || followSymlinks) {\n\t      stats = await stat(absolute, followSymlinks);\n\t    }\n\t    if(!stats && file.name !== undefined) {\n\t      stats = file;\n\t    }\n\t    if(stats === null) {\n\t      stats = { isDirectory: () => false };\n\t    }\n\n\t    if(stats.isDirectory()) {\n\t      if(!shouldSkip(relative)) {\n\t        yield {relative, absolute, stats};\n\t        yield* exploreWalkAsync(filename, path, followSymlinks, useStat, shouldSkip, false);\n\t      }\n\t    } else {\n\t      yield {relative, absolute, stats};\n\t    }\n\t  }\n\t}\n\tasync function* explore(path, followSymlinks, useStat, shouldSkip) {\n\t  yield* exploreWalkAsync('', path, followSymlinks, useStat, shouldSkip, true);\n\t}\n\n\n\tfunction readOptions(options) {\n\t  return {\n\t    pattern: options.pattern,\n\t    dot: !!options.dot,\n\t    noglobstar: !!options.noglobstar,\n\t    matchBase: !!options.matchBase,\n\t    nocase: !!options.nocase,\n\t    ignore: options.ignore,\n\t    skip: options.skip,\n\n\t    follow: !!options.follow,\n\t    stat: !!options.stat,\n\t    nodir: !!options.nodir,\n\t    mark: !!options.mark,\n\t    silent: !!options.silent,\n\t    absolute: !!options.absolute\n\t  };\n\t}\n\n\tclass ReaddirGlob extends EventEmitter {\n\t  constructor(cwd, options, cb) {\n\t    super();\n\t    if(typeof options === 'function') {\n\t      cb = options;\n\t      options = null;\n\t    }\n\n\t    this.options = readOptions(options || {});\n\t  \n\t    this.matchers = [];\n\t    if(this.options.pattern) {\n\t      const matchers = Array.isArray(this.options.pattern) ? this.options.pattern : [this.options.pattern];\n\t      this.matchers = matchers.map( m =>\n\t        new Minimatch(m, {\n\t          dot: this.options.dot,\n\t          noglobstar:this.options.noglobstar,\n\t          matchBase:this.options.matchBase,\n\t          nocase:this.options.nocase\n\t        })\n\t      );\n\t    }\n\t  \n\t    this.ignoreMatchers = [];\n\t    if(this.options.ignore) {\n\t      const ignorePatterns = Array.isArray(this.options.ignore) ? this.options.ignore : [this.options.ignore];\n\t      this.ignoreMatchers = ignorePatterns.map( ignore =>\n\t        new Minimatch(ignore, {dot: true})\n\t      );\n\t    }\n\t  \n\t    this.skipMatchers = [];\n\t    if(this.options.skip) {\n\t      const skipPatterns = Array.isArray(this.options.skip) ? this.options.skip : [this.options.skip];\n\t      this.skipMatchers = skipPatterns.map( skip =>\n\t        new Minimatch(skip, {dot: true})\n\t      );\n\t    }\n\n\t    this.iterator = explore(resolve(cwd || '.'), this.options.follow, this.options.stat, this._shouldSkipDirectory.bind(this));\n\t    this.paused = false;\n\t    this.inactive = false;\n\t    this.aborted = false;\n\t  \n\t    if(cb) {\n\t      this._matches = []; \n\t      this.on('match', match => this._matches.push(this.options.absolute ? match.absolute : match.relative));\n\t      this.on('error', err => cb(err));\n\t      this.on('end', () => cb(null, this._matches));\n\t    }\n\n\t    setTimeout( () => this._next(), 0);\n\t  }\n\n\t  _shouldSkipDirectory(relative) {\n\t    //console.log(relative, this.skipMatchers.some(m => m.match(relative)));\n\t    return this.skipMatchers.some(m => m.match(relative));\n\t  }\n\n\t  _fileMatches(relative, isDirectory) {\n\t    const file = relative + (isDirectory ? '/' : '');\n\t    return (this.matchers.length === 0 || this.matchers.some(m => m.match(file)))\n\t      && !this.ignoreMatchers.some(m => m.match(file))\n\t      && (!this.options.nodir || !isDirectory);\n\t  }\n\n\t  _next() {\n\t    if(!this.paused && !this.aborted) {\n\t      this.iterator.next()\n\t      .then((obj)=> {\n\t        if(!obj.done) {\n\t          const isDirectory = obj.value.stats.isDirectory();\n\t          if(this._fileMatches(obj.value.relative, isDirectory )) {\n\t            let relative = obj.value.relative;\n\t            let absolute = obj.value.absolute;\n\t            if(this.options.mark && isDirectory) {\n\t              relative += '/';\n\t              absolute += '/';\n\t            }\n\t            if(this.options.stat) {\n\t              this.emit('match', {relative, absolute, stat:obj.value.stats});\n\t            } else {\n\t              this.emit('match', {relative, absolute});\n\t            }\n\t          }\n\t          this._next(this.iterator);\n\t        } else {\n\t          this.emit('end');\n\t        }\n\t      })\n\t      .catch((err) => {\n\t        this.abort();\n\t        this.emit('error', err);\n\t        if(!err.code && !this.options.silent) {\n\t          console.error(err);\n\t        }\n\t      });\n\t    } else {\n\t      this.inactive = true;\n\t    }\n\t  }\n\n\t  abort() {\n\t    this.aborted = true;\n\t  }\n\n\t  pause() {\n\t    this.paused = true;\n\t  }\n\n\t  resume() {\n\t    this.paused = false;\n\t    if(this.inactive) {\n\t      this.inactive = false;\n\t      this._next();\n\t    }\n\t  }\n\t}\n\n\n\tfunction readdirGlob(pattern, options, cb) {\n\t  return new ReaddirGlob(pattern, options, cb);\n\t}\n\treaddirGlob.ReaddirGlob = ReaddirGlob;\n\treturn readdirGlob_1;\n}\n\n/**\n * Creates a continuation function with some arguments already applied.\n *\n * Useful as a shorthand when combined with other control flow functions. Any\n * arguments passed to the returned function are added to the arguments\n * originally passed to apply.\n *\n * @name apply\n * @static\n * @memberOf module:Utils\n * @method\n * @category Util\n * @param {Function} fn - The function you want to eventually apply all\n * arguments to. Invokes with (arguments...).\n * @param {...*} arguments... - Any number of arguments to automatically apply\n * when the continuation is called.\n * @returns {Function} the partially-applied function\n * @example\n *\n * // using apply\n * async.parallel([\n *     async.apply(fs.writeFile, 'testfile1', 'test1'),\n *     async.apply(fs.writeFile, 'testfile2', 'test2')\n * ]);\n *\n *\n * // the same process without using apply\n * async.parallel([\n *     function(callback) {\n *         fs.writeFile('testfile1', 'test1', callback);\n *     },\n *     function(callback) {\n *         fs.writeFile('testfile2', 'test2', callback);\n *     }\n * ]);\n *\n * // It's possible to pass any number of additional arguments when calling the\n * // continuation:\n *\n * node> var fn = async.apply(sys.puts, 'one');\n * node> fn('two', 'three');\n * one\n * two\n * three\n */\nfunction apply(fn, ...args) {\n    return (...callArgs) => fn(...args,...callArgs);\n}\n\nfunction initialParams (fn) {\n    return function (...args/*, callback*/) {\n        var callback = args.pop();\n        return fn.call(this, args, callback);\n    };\n}\n\n/* istanbul ignore file */\n\nvar hasQueueMicrotask = typeof queueMicrotask === 'function' && queueMicrotask;\nvar hasSetImmediate = typeof setImmediate === 'function' && setImmediate;\nvar hasNextTick = typeof process === 'object' && typeof process.nextTick === 'function';\n\nfunction fallback(fn) {\n    setTimeout(fn, 0);\n}\n\nfunction wrap(defer) {\n    return (fn, ...args) => defer(() => fn(...args));\n}\n\nvar _defer$1;\n\nif (hasQueueMicrotask) {\n    _defer$1 = queueMicrotask;\n} else if (hasSetImmediate) {\n    _defer$1 = setImmediate;\n} else if (hasNextTick) {\n    _defer$1 = process.nextTick;\n} else {\n    _defer$1 = fallback;\n}\n\nvar setImmediate$1 = wrap(_defer$1);\n\n/**\n * Take a sync function and make it async, passing its return value to a\n * callback. This is useful for plugging sync functions into a waterfall,\n * series, or other async functions. Any arguments passed to the generated\n * function will be passed to the wrapped function (except for the final\n * callback argument). Errors thrown will be passed to the callback.\n *\n * If the function passed to `asyncify` returns a Promise, that promises's\n * resolved/rejected state will be used to call the callback, rather than simply\n * the synchronous return value.\n *\n * This also means you can asyncify ES2017 `async` functions.\n *\n * @name asyncify\n * @static\n * @memberOf module:Utils\n * @method\n * @alias wrapSync\n * @category Util\n * @param {Function} func - The synchronous function, or Promise-returning\n * function to convert to an {@link AsyncFunction}.\n * @returns {AsyncFunction} An asynchronous wrapper of the `func`. To be\n * invoked with `(args..., callback)`.\n * @example\n *\n * // passing a regular synchronous function\n * async.waterfall([\n *     async.apply(fs.readFile, filename, \"utf8\"),\n *     async.asyncify(JSON.parse),\n *     function (data, next) {\n *         // data is the result of parsing the text.\n *         // If there was a parsing error, it would have been caught.\n *     }\n * ], callback);\n *\n * // passing a function returning a promise\n * async.waterfall([\n *     async.apply(fs.readFile, filename, \"utf8\"),\n *     async.asyncify(function (contents) {\n *         return db.model.create(contents);\n *     }),\n *     function (model, next) {\n *         // `model` is the instantiated model object.\n *         // If there was an error, this function would be skipped.\n *     }\n * ], callback);\n *\n * // es2017 example, though `asyncify` is not needed if your JS environment\n * // supports async functions out of the box\n * var q = async.queue(async.asyncify(async function(file) {\n *     var intermediateStep = await processFile(file);\n *     return await somePromise(intermediateStep)\n * }));\n *\n * q.push(files);\n */\nfunction asyncify(func) {\n    if (isAsync(func)) {\n        return function (...args/*, callback*/) {\n            const callback = args.pop();\n            const promise = func.apply(this, args);\n            return handlePromise(promise, callback)\n        }\n    }\n\n    return initialParams(function (args, callback) {\n        var result;\n        try {\n            result = func.apply(this, args);\n        } catch (e) {\n            return callback(e);\n        }\n        // if result is Promise object\n        if (result && typeof result.then === 'function') {\n            return handlePromise(result, callback)\n        } else {\n            callback(null, result);\n        }\n    });\n}\n\nfunction handlePromise(promise, callback) {\n    return promise.then(value => {\n        invokeCallback(callback, null, value);\n    }, err => {\n        invokeCallback(callback, err && (err instanceof Error || err.message) ? err : new Error(err));\n    });\n}\n\nfunction invokeCallback(callback, error, value) {\n    try {\n        callback(error, value);\n    } catch (err) {\n        setImmediate$1(e => { throw e }, err);\n    }\n}\n\nfunction isAsync(fn) {\n    return fn[Symbol.toStringTag] === 'AsyncFunction';\n}\n\nfunction isAsyncGenerator(fn) {\n    return fn[Symbol.toStringTag] === 'AsyncGenerator';\n}\n\nfunction isAsyncIterable(obj) {\n    return typeof obj[Symbol.asyncIterator] === 'function';\n}\n\nfunction wrapAsync(asyncFn) {\n    if (typeof asyncFn !== 'function') throw new Error('expected a function')\n    return isAsync(asyncFn) ? asyncify(asyncFn) : asyncFn;\n}\n\n// conditionally promisify a function.\n// only return a promise if a callback is omitted\nfunction awaitify (asyncFn, arity) {\n    if (!arity) arity = asyncFn.length;\n    if (!arity) throw new Error('arity is undefined')\n    function awaitable (...args) {\n        if (typeof args[arity - 1] === 'function') {\n            return asyncFn.apply(this, args)\n        }\n\n        return new Promise((resolve, reject) => {\n            args[arity - 1] = (err, ...cbArgs) => {\n                if (err) return reject(err)\n                resolve(cbArgs.length > 1 ? cbArgs : cbArgs[0]);\n            };\n            asyncFn.apply(this, args);\n        })\n    }\n\n    return awaitable\n}\n\nfunction applyEach$1 (eachfn) {\n    return function applyEach(fns, ...callArgs) {\n        const go = awaitify(function (callback) {\n            var that = this;\n            return eachfn(fns, (fn, cb) => {\n                wrapAsync(fn).apply(that, callArgs.concat(cb));\n            }, callback);\n        });\n        return go;\n    };\n}\n\nfunction _asyncMap(eachfn, arr, iteratee, callback) {\n    arr = arr || [];\n    var results = [];\n    var counter = 0;\n    var _iteratee = wrapAsync(iteratee);\n\n    return eachfn(arr, (value, _, iterCb) => {\n        var index = counter++;\n        _iteratee(value, (err, v) => {\n            results[index] = v;\n            iterCb(err);\n        });\n    }, err => {\n        callback(err, results);\n    });\n}\n\nfunction isArrayLike(value) {\n    return value &&\n        typeof value.length === 'number' &&\n        value.length >= 0 &&\n        value.length % 1 === 0;\n}\n\n// A temporary value used to identify if the loop should be broken.\n// See #1064, #1293\nconst breakLoop = {};\n\nfunction once$2(fn) {\n    function wrapper (...args) {\n        if (fn === null) return;\n        var callFn = fn;\n        fn = null;\n        callFn.apply(this, args);\n    }\n    Object.assign(wrapper, fn);\n    return wrapper\n}\n\nfunction getIterator (coll) {\n    return coll[Symbol.iterator] && coll[Symbol.iterator]();\n}\n\nfunction createArrayIterator(coll) {\n    var i = -1;\n    var len = coll.length;\n    return function next() {\n        return ++i < len ? {value: coll[i], key: i} : null;\n    }\n}\n\nfunction createES2015Iterator(iterator) {\n    var i = -1;\n    return function next() {\n        var item = iterator.next();\n        if (item.done)\n            return null;\n        i++;\n        return {value: item.value, key: i};\n    }\n}\n\nfunction createObjectIterator(obj) {\n    var okeys = obj ? Object.keys(obj) : [];\n    var i = -1;\n    var len = okeys.length;\n    return function next() {\n        var key = okeys[++i];\n        if (key === '__proto__') {\n            return next();\n        }\n        return i < len ? {value: obj[key], key} : null;\n    };\n}\n\nfunction createIterator(coll) {\n    if (isArrayLike(coll)) {\n        return createArrayIterator(coll);\n    }\n\n    var iterator = getIterator(coll);\n    return iterator ? createES2015Iterator(iterator) : createObjectIterator(coll);\n}\n\nfunction onlyOnce(fn) {\n    return function (...args) {\n        if (fn === null) throw new Error(\"Callback was already called.\");\n        var callFn = fn;\n        fn = null;\n        callFn.apply(this, args);\n    };\n}\n\n// for async generators\nfunction asyncEachOfLimit(generator, limit, iteratee, callback) {\n    let done = false;\n    let canceled = false;\n    let awaiting = false;\n    let running = 0;\n    let idx = 0;\n\n    function replenish() {\n        //console.log('replenish')\n        if (running >= limit || awaiting || done) return\n        //console.log('replenish awaiting')\n        awaiting = true;\n        generator.next().then(({value, done: iterDone}) => {\n            //console.log('got value', value)\n            if (canceled || done) return\n            awaiting = false;\n            if (iterDone) {\n                done = true;\n                if (running <= 0) {\n                    //console.log('done nextCb')\n                    callback(null);\n                }\n                return;\n            }\n            running++;\n            iteratee(value, idx, iterateeCallback);\n            idx++;\n            replenish();\n        }).catch(handleError);\n    }\n\n    function iterateeCallback(err, result) {\n        //console.log('iterateeCallback')\n        running -= 1;\n        if (canceled) return\n        if (err) return handleError(err)\n\n        if (err === false) {\n            done = true;\n            canceled = true;\n            return\n        }\n\n        if (result === breakLoop || (done && running <= 0)) {\n            done = true;\n            //console.log('done iterCb')\n            return callback(null);\n        }\n        replenish();\n    }\n\n    function handleError(err) {\n        if (canceled) return\n        awaiting = false;\n        done = true;\n        callback(err);\n    }\n\n    replenish();\n}\n\nvar eachOfLimit$2 = (limit) => {\n    return (obj, iteratee, callback) => {\n        callback = once$2(callback);\n        if (limit <= 0) {\n            throw new RangeError('concurrency limit cannot be less than 1')\n        }\n        if (!obj) {\n            return callback(null);\n        }\n        if (isAsyncGenerator(obj)) {\n            return asyncEachOfLimit(obj, limit, iteratee, callback)\n        }\n        if (isAsyncIterable(obj)) {\n            return asyncEachOfLimit(obj[Symbol.asyncIterator](), limit, iteratee, callback)\n        }\n        var nextElem = createIterator(obj);\n        var done = false;\n        var canceled = false;\n        var running = 0;\n        var looping = false;\n\n        function iterateeCallback(err, value) {\n            if (canceled) return\n            running -= 1;\n            if (err) {\n                done = true;\n                callback(err);\n            }\n            else if (err === false) {\n                done = true;\n                canceled = true;\n            }\n            else if (value === breakLoop || (done && running <= 0)) {\n                done = true;\n                return callback(null);\n            }\n            else if (!looping) {\n                replenish();\n            }\n        }\n\n        function replenish () {\n            looping = true;\n            while (running < limit && !done) {\n                var elem = nextElem();\n                if (elem === null) {\n                    done = true;\n                    if (running <= 0) {\n                        callback(null);\n                    }\n                    return;\n                }\n                running += 1;\n                iteratee(elem.value, elem.key, onlyOnce(iterateeCallback));\n            }\n            looping = false;\n        }\n\n        replenish();\n    };\n};\n\n/**\n * The same as [`eachOf`]{@link module:Collections.eachOf} but runs a maximum of `limit` async operations at a\n * time.\n *\n * @name eachOfLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.eachOf]{@link module:Collections.eachOf}\n * @alias forEachOfLimit\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - An async function to apply to each\n * item in `coll`. The `key` is the item's key, or index in the case of an\n * array.\n * Invoked with (item, key, callback).\n * @param {Function} [callback] - A callback which is called when all\n * `iteratee` functions have finished, or an error occurs. Invoked with (err).\n * @returns {Promise} a promise, if a callback is omitted\n */\nfunction eachOfLimit(coll, limit, iteratee, callback) {\n    return eachOfLimit$2(limit)(coll, wrapAsync(iteratee), callback);\n}\n\nvar eachOfLimit$1 = awaitify(eachOfLimit, 4);\n\n// eachOf implementation optimized for array-likes\nfunction eachOfArrayLike(coll, iteratee, callback) {\n    callback = once$2(callback);\n    var index = 0,\n        completed = 0,\n        {length} = coll,\n        canceled = false;\n    if (length === 0) {\n        callback(null);\n    }\n\n    function iteratorCallback(err, value) {\n        if (err === false) {\n            canceled = true;\n        }\n        if (canceled === true) return\n        if (err) {\n            callback(err);\n        } else if ((++completed === length) || value === breakLoop) {\n            callback(null);\n        }\n    }\n\n    for (; index < length; index++) {\n        iteratee(coll[index], index, onlyOnce(iteratorCallback));\n    }\n}\n\n// a generic version of eachOf which can handle array, object, and iterator cases.\nfunction eachOfGeneric (coll, iteratee, callback) {\n    return eachOfLimit$1(coll, Infinity, iteratee, callback);\n}\n\n/**\n * Like [`each`]{@link module:Collections.each}, except that it passes the key (or index) as the second argument\n * to the iteratee.\n *\n * @name eachOf\n * @static\n * @memberOf module:Collections\n * @method\n * @alias forEachOf\n * @category Collection\n * @see [async.each]{@link module:Collections.each}\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - A function to apply to each\n * item in `coll`.\n * The `key` is the item's key, or index in the case of an array.\n * Invoked with (item, key, callback).\n * @param {Function} [callback] - A callback which is called when all\n * `iteratee` functions have finished, or an error occurs. Invoked with (err).\n * @returns {Promise} a promise, if a callback is omitted\n * @example\n *\n * // dev.json is a file containing a valid json object config for dev environment\n * // dev.json is a file containing a valid json object config for test environment\n * // prod.json is a file containing a valid json object config for prod environment\n * // invalid.json is a file with a malformed json object\n *\n * let configs = {}; //global variable\n * let validConfigFileMap = {dev: 'dev.json', test: 'test.json', prod: 'prod.json'};\n * let invalidConfigFileMap = {dev: 'dev.json', test: 'test.json', invalid: 'invalid.json'};\n *\n * // asynchronous function that reads a json file and parses the contents as json object\n * function parseFile(file, key, callback) {\n *     fs.readFile(file, \"utf8\", function(err, data) {\n *         if (err) return calback(err);\n *         try {\n *             configs[key] = JSON.parse(data);\n *         } catch (e) {\n *             return callback(e);\n *         }\n *         callback();\n *     });\n * }\n *\n * // Using callbacks\n * async.forEachOf(validConfigFileMap, parseFile, function (err) {\n *     if (err) {\n *         console.error(err);\n *     } else {\n *         console.log(configs);\n *         // configs is now a map of JSON data, e.g.\n *         // { dev: //parsed dev.json, test: //parsed test.json, prod: //parsed prod.json}\n *     }\n * });\n *\n * //Error handing\n * async.forEachOf(invalidConfigFileMap, parseFile, function (err) {\n *     if (err) {\n *         console.error(err);\n *         // JSON parse error exception\n *     } else {\n *         console.log(configs);\n *     }\n * });\n *\n * // Using Promises\n * async.forEachOf(validConfigFileMap, parseFile)\n * .then( () => {\n *     console.log(configs);\n *     // configs is now a map of JSON data, e.g.\n *     // { dev: //parsed dev.json, test: //parsed test.json, prod: //parsed prod.json}\n * }).catch( err => {\n *     console.error(err);\n * });\n *\n * //Error handing\n * async.forEachOf(invalidConfigFileMap, parseFile)\n * .then( () => {\n *     console.log(configs);\n * }).catch( err => {\n *     console.error(err);\n *     // JSON parse error exception\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let result = await async.forEachOf(validConfigFileMap, parseFile);\n *         console.log(configs);\n *         // configs is now a map of JSON data, e.g.\n *         // { dev: //parsed dev.json, test: //parsed test.json, prod: //parsed prod.json}\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * //Error handing\n * async () => {\n *     try {\n *         let result = await async.forEachOf(invalidConfigFileMap, parseFile);\n *         console.log(configs);\n *     }\n *     catch (err) {\n *         console.log(err);\n *         // JSON parse error exception\n *     }\n * }\n *\n */\nfunction eachOf(coll, iteratee, callback) {\n    var eachOfImplementation = isArrayLike(coll) ? eachOfArrayLike : eachOfGeneric;\n    return eachOfImplementation(coll, wrapAsync(iteratee), callback);\n}\n\nvar eachOf$1 = awaitify(eachOf, 3);\n\n/**\n * Produces a new collection of values by mapping each value in `coll` through\n * the `iteratee` function. The `iteratee` is called with an item from `coll`\n * and a callback for when it has finished processing. Each of these callbacks\n * takes 2 arguments: an `error`, and the transformed item from `coll`. If\n * `iteratee` passes an error to its callback, the main `callback` (for the\n * `map` function) is immediately called with the error.\n *\n * Note, that since this function applies the `iteratee` to each item in\n * parallel, there is no guarantee that the `iteratee` functions will complete\n * in order. However, the results array will be in the same order as the\n * original `coll`.\n *\n * If `map` is passed an Object, the results will be an Array.  The results\n * will roughly be in the order of the original Objects' keys (but this can\n * vary across JavaScript engines).\n *\n * @name map\n * @static\n * @memberOf module:Collections\n * @method\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * The iteratee should complete with the transformed item.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. Results is an Array of the\n * transformed items from the `coll`. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback is passed\n * @example\n *\n * // file1.txt is a file that is 1000 bytes in size\n * // file2.txt is a file that is 2000 bytes in size\n * // file3.txt is a file that is 3000 bytes in size\n * // file4.txt does not exist\n *\n * const fileList = ['file1.txt','file2.txt','file3.txt'];\n * const withMissingFileList = ['file1.txt','file2.txt','file4.txt'];\n *\n * // asynchronous function that returns the file size in bytes\n * function getFileSizeInBytes(file, callback) {\n *     fs.stat(file, function(err, stat) {\n *         if (err) {\n *             return callback(err);\n *         }\n *         callback(null, stat.size);\n *     });\n * }\n *\n * // Using callbacks\n * async.map(fileList, getFileSizeInBytes, function(err, results) {\n *     if (err) {\n *         console.log(err);\n *     } else {\n *         console.log(results);\n *         // results is now an array of the file size in bytes for each file, e.g.\n *         // [ 1000, 2000, 3000]\n *     }\n * });\n *\n * // Error Handling\n * async.map(withMissingFileList, getFileSizeInBytes, function(err, results) {\n *     if (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *     } else {\n *         console.log(results);\n *     }\n * });\n *\n * // Using Promises\n * async.map(fileList, getFileSizeInBytes)\n * .then( results => {\n *     console.log(results);\n *     // results is now an array of the file size in bytes for each file, e.g.\n *     // [ 1000, 2000, 3000]\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * // Error Handling\n * async.map(withMissingFileList, getFileSizeInBytes)\n * .then( results => {\n *     console.log(results);\n * }).catch( err => {\n *     console.log(err);\n *     // [ Error: ENOENT: no such file or directory ]\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let results = await async.map(fileList, getFileSizeInBytes);\n *         console.log(results);\n *         // results is now an array of the file size in bytes for each file, e.g.\n *         // [ 1000, 2000, 3000]\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * // Error Handling\n * async () => {\n *     try {\n *         let results = await async.map(withMissingFileList, getFileSizeInBytes);\n *         console.log(results);\n *     }\n *     catch (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *     }\n * }\n *\n */\nfunction map (coll, iteratee, callback) {\n    return _asyncMap(eachOf$1, coll, iteratee, callback)\n}\nvar map$1 = awaitify(map, 3);\n\n/**\n * Applies the provided arguments to each function in the array, calling\n * `callback` after all functions have completed. If you only provide the first\n * argument, `fns`, then it will return a function which lets you pass in the\n * arguments as if it were a single function call. If more arguments are\n * provided, `callback` is required while `args` is still optional. The results\n * for each of the applied async functions are passed to the final callback\n * as an array.\n *\n * @name applyEach\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {Array|Iterable|AsyncIterable|Object} fns - A collection of {@link AsyncFunction}s\n * to all call with the same arguments\n * @param {...*} [args] - any number of separate arguments to pass to the\n * function.\n * @param {Function} [callback] - the final argument should be the callback,\n * called when all functions have completed processing.\n * @returns {AsyncFunction} - Returns a function that takes no args other than\n * an optional callback, that is the result of applying the `args` to each\n * of the functions.\n * @example\n *\n * const appliedFn = async.applyEach([enableSearch, updateSchema], 'bucket')\n *\n * appliedFn((err, results) => {\n *     // results[0] is the results for `enableSearch`\n *     // results[1] is the results for `updateSchema`\n * });\n *\n * // partial application example:\n * async.each(\n *     buckets,\n *     async (bucket) => async.applyEach([enableSearch, updateSchema], bucket)(),\n *     callback\n * );\n */\nvar applyEach = applyEach$1(map$1);\n\n/**\n * The same as [`eachOf`]{@link module:Collections.eachOf} but runs only a single async operation at a time.\n *\n * @name eachOfSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.eachOf]{@link module:Collections.eachOf}\n * @alias forEachOfSeries\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * Invoked with (item, key, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. Invoked with (err).\n * @returns {Promise} a promise, if a callback is omitted\n */\nfunction eachOfSeries(coll, iteratee, callback) {\n    return eachOfLimit$1(coll, 1, iteratee, callback)\n}\nvar eachOfSeries$1 = awaitify(eachOfSeries, 3);\n\n/**\n * The same as [`map`]{@link module:Collections.map} but runs only a single async operation at a time.\n *\n * @name mapSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.map]{@link module:Collections.map}\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * The iteratee should complete with the transformed item.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. Results is an array of the\n * transformed items from the `coll`. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction mapSeries (coll, iteratee, callback) {\n    return _asyncMap(eachOfSeries$1, coll, iteratee, callback)\n}\nvar mapSeries$1 = awaitify(mapSeries, 3);\n\n/**\n * The same as [`applyEach`]{@link module:ControlFlow.applyEach} but runs only a single async operation at a time.\n *\n * @name applyEachSeries\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.applyEach]{@link module:ControlFlow.applyEach}\n * @category Control Flow\n * @param {Array|Iterable|AsyncIterable|Object} fns - A collection of {@link AsyncFunction}s to all\n * call with the same arguments\n * @param {...*} [args] - any number of separate arguments to pass to the\n * function.\n * @param {Function} [callback] - the final argument should be the callback,\n * called when all functions have completed processing.\n * @returns {AsyncFunction} - A function, that when called, is the result of\n * appling the `args` to the list of functions.  It takes no args, other than\n * a callback.\n */\nvar applyEachSeries = applyEach$1(mapSeries$1);\n\nconst PROMISE_SYMBOL = Symbol('promiseCallback');\n\nfunction promiseCallback () {\n    let resolve, reject;\n    function callback (err, ...args) {\n        if (err) return reject(err)\n        resolve(args.length > 1 ? args : args[0]);\n    }\n\n    callback[PROMISE_SYMBOL] = new Promise((res, rej) => {\n        resolve = res,\n        reject = rej;\n    });\n\n    return callback\n}\n\n/**\n * Determines the best order for running the {@link AsyncFunction}s in `tasks`, based on\n * their requirements. Each function can optionally depend on other functions\n * being completed first, and each function is run as soon as its requirements\n * are satisfied.\n *\n * If any of the {@link AsyncFunction}s pass an error to their callback, the `auto` sequence\n * will stop. Further tasks will not execute (so any other functions depending\n * on it will not run), and the main `callback` is immediately called with the\n * error.\n *\n * {@link AsyncFunction}s also receive an object containing the results of functions which\n * have completed so far as the first argument, if they have dependencies. If a\n * task function has no dependencies, it will only be passed a callback.\n *\n * @name auto\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {Object} tasks - An object. Each of its properties is either a\n * function or an array of requirements, with the {@link AsyncFunction} itself the last item\n * in the array. The object's key of a property serves as the name of the task\n * defined by that property, i.e. can be used when specifying requirements for\n * other tasks. The function receives one or two arguments:\n * * a `results` object, containing the results of the previously executed\n *   functions, only passed if the task has any dependencies,\n * * a `callback(err, result)` function, which must be called when finished,\n *   passing an `error` (which can be `null`) and the result of the function's\n *   execution.\n * @param {number} [concurrency=Infinity] - An optional `integer` for\n * determining the maximum number of tasks that can be run in parallel. By\n * default, as many as possible.\n * @param {Function} [callback] - An optional callback which is called when all\n * the tasks have been completed. It receives the `err` argument if any `tasks`\n * pass an error to their callback. Results are always returned; however, if an\n * error occurs, no further `tasks` will be performed, and the results object\n * will only contain partial results. Invoked with (err, results).\n * @returns {Promise} a promise, if a callback is not passed\n * @example\n *\n * //Using Callbacks\n * async.auto({\n *     get_data: function(callback) {\n *         // async code to get some data\n *         callback(null, 'data', 'converted to array');\n *     },\n *     make_folder: function(callback) {\n *         // async code to create a directory to store a file in\n *         // this is run at the same time as getting the data\n *         callback(null, 'folder');\n *     },\n *     write_file: ['get_data', 'make_folder', function(results, callback) {\n *         // once there is some data and the directory exists,\n *         // write the data to a file in the directory\n *         callback(null, 'filename');\n *     }],\n *     email_link: ['write_file', function(results, callback) {\n *         // once the file is written let's email a link to it...\n *         callback(null, {'file':results.write_file, 'email':'user@example.com'});\n *     }]\n * }, function(err, results) {\n *     if (err) {\n *         console.log('err = ', err);\n *     }\n *     console.log('results = ', results);\n *     // results = {\n *     //     get_data: ['data', 'converted to array']\n *     //     make_folder; 'folder',\n *     //     write_file: 'filename'\n *     //     email_link: { file: 'filename', email: 'user@example.com' }\n *     // }\n * });\n *\n * //Using Promises\n * async.auto({\n *     get_data: function(callback) {\n *         console.log('in get_data');\n *         // async code to get some data\n *         callback(null, 'data', 'converted to array');\n *     },\n *     make_folder: function(callback) {\n *         console.log('in make_folder');\n *         // async code to create a directory to store a file in\n *         // this is run at the same time as getting the data\n *         callback(null, 'folder');\n *     },\n *     write_file: ['get_data', 'make_folder', function(results, callback) {\n *         // once there is some data and the directory exists,\n *         // write the data to a file in the directory\n *         callback(null, 'filename');\n *     }],\n *     email_link: ['write_file', function(results, callback) {\n *         // once the file is written let's email a link to it...\n *         callback(null, {'file':results.write_file, 'email':'user@example.com'});\n *     }]\n * }).then(results => {\n *     console.log('results = ', results);\n *     // results = {\n *     //     get_data: ['data', 'converted to array']\n *     //     make_folder; 'folder',\n *     //     write_file: 'filename'\n *     //     email_link: { file: 'filename', email: 'user@example.com' }\n *     // }\n * }).catch(err => {\n *     console.log('err = ', err);\n * });\n *\n * //Using async/await\n * async () => {\n *     try {\n *         let results = await async.auto({\n *             get_data: function(callback) {\n *                 // async code to get some data\n *                 callback(null, 'data', 'converted to array');\n *             },\n *             make_folder: function(callback) {\n *                 // async code to create a directory to store a file in\n *                 // this is run at the same time as getting the data\n *                 callback(null, 'folder');\n *             },\n *             write_file: ['get_data', 'make_folder', function(results, callback) {\n *                 // once there is some data and the directory exists,\n *                 // write the data to a file in the directory\n *                 callback(null, 'filename');\n *             }],\n *             email_link: ['write_file', function(results, callback) {\n *                 // once the file is written let's email a link to it...\n *                 callback(null, {'file':results.write_file, 'email':'user@example.com'});\n *             }]\n *         });\n *         console.log('results = ', results);\n *         // results = {\n *         //     get_data: ['data', 'converted to array']\n *         //     make_folder; 'folder',\n *         //     write_file: 'filename'\n *         //     email_link: { file: 'filename', email: 'user@example.com' }\n *         // }\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction auto(tasks, concurrency, callback) {\n    if (typeof concurrency !== 'number') {\n        // concurrency is optional, shift the args.\n        callback = concurrency;\n        concurrency = null;\n    }\n    callback = once$2(callback || promiseCallback());\n    var numTasks = Object.keys(tasks).length;\n    if (!numTasks) {\n        return callback(null);\n    }\n    if (!concurrency) {\n        concurrency = numTasks;\n    }\n\n    var results = {};\n    var runningTasks = 0;\n    var canceled = false;\n    var hasError = false;\n\n    var listeners = Object.create(null);\n\n    var readyTasks = [];\n\n    // for cycle detection:\n    var readyToCheck = []; // tasks that have been identified as reachable\n    // without the possibility of returning to an ancestor task\n    var uncheckedDependencies = {};\n\n    Object.keys(tasks).forEach(key => {\n        var task = tasks[key];\n        if (!Array.isArray(task)) {\n            // no dependencies\n            enqueueTask(key, [task]);\n            readyToCheck.push(key);\n            return;\n        }\n\n        var dependencies = task.slice(0, task.length - 1);\n        var remainingDependencies = dependencies.length;\n        if (remainingDependencies === 0) {\n            enqueueTask(key, task);\n            readyToCheck.push(key);\n            return;\n        }\n        uncheckedDependencies[key] = remainingDependencies;\n\n        dependencies.forEach(dependencyName => {\n            if (!tasks[dependencyName]) {\n                throw new Error('async.auto task `' + key +\n                    '` has a non-existent dependency `' +\n                    dependencyName + '` in ' +\n                    dependencies.join(', '));\n            }\n            addListener(dependencyName, () => {\n                remainingDependencies--;\n                if (remainingDependencies === 0) {\n                    enqueueTask(key, task);\n                }\n            });\n        });\n    });\n\n    checkForDeadlocks();\n    processQueue();\n\n    function enqueueTask(key, task) {\n        readyTasks.push(() => runTask(key, task));\n    }\n\n    function processQueue() {\n        if (canceled) return\n        if (readyTasks.length === 0 && runningTasks === 0) {\n            return callback(null, results);\n        }\n        while(readyTasks.length && runningTasks < concurrency) {\n            var run = readyTasks.shift();\n            run();\n        }\n\n    }\n\n    function addListener(taskName, fn) {\n        var taskListeners = listeners[taskName];\n        if (!taskListeners) {\n            taskListeners = listeners[taskName] = [];\n        }\n\n        taskListeners.push(fn);\n    }\n\n    function taskComplete(taskName) {\n        var taskListeners = listeners[taskName] || [];\n        taskListeners.forEach(fn => fn());\n        processQueue();\n    }\n\n\n    function runTask(key, task) {\n        if (hasError) return;\n\n        var taskCallback = onlyOnce((err, ...result) => {\n            runningTasks--;\n            if (err === false) {\n                canceled = true;\n                return\n            }\n            if (result.length < 2) {\n                [result] = result;\n            }\n            if (err) {\n                var safeResults = {};\n                Object.keys(results).forEach(rkey => {\n                    safeResults[rkey] = results[rkey];\n                });\n                safeResults[key] = result;\n                hasError = true;\n                listeners = Object.create(null);\n                if (canceled) return\n                callback(err, safeResults);\n            } else {\n                results[key] = result;\n                taskComplete(key);\n            }\n        });\n\n        runningTasks++;\n        var taskFn = wrapAsync(task[task.length - 1]);\n        if (task.length > 1) {\n            taskFn(results, taskCallback);\n        } else {\n            taskFn(taskCallback);\n        }\n    }\n\n    function checkForDeadlocks() {\n        // Kahn's algorithm\n        // https://en.wikipedia.org/wiki/Topological_sorting#Kahn.27s_algorithm\n        // http://connalle.blogspot.com/2013/10/topological-sortingkahn-algorithm.html\n        var currentTask;\n        var counter = 0;\n        while (readyToCheck.length) {\n            currentTask = readyToCheck.pop();\n            counter++;\n            getDependents(currentTask).forEach(dependent => {\n                if (--uncheckedDependencies[dependent] === 0) {\n                    readyToCheck.push(dependent);\n                }\n            });\n        }\n\n        if (counter !== numTasks) {\n            throw new Error(\n                'async.auto cannot execute tasks due to a recursive dependency'\n            );\n        }\n    }\n\n    function getDependents(taskName) {\n        var result = [];\n        Object.keys(tasks).forEach(key => {\n            const task = tasks[key];\n            if (Array.isArray(task) && task.indexOf(taskName) >= 0) {\n                result.push(key);\n            }\n        });\n        return result;\n    }\n\n    return callback[PROMISE_SYMBOL]\n}\n\nvar FN_ARGS = /^(?:async\\s)?(?:function)?\\s*(?:\\w+\\s*)?\\(([^)]+)\\)(?:\\s*{)/;\nvar ARROW_FN_ARGS = /^(?:async\\s)?\\s*(?:\\(\\s*)?((?:[^)=\\s]\\s*)*)(?:\\)\\s*)?=>/;\nvar FN_ARG_SPLIT = /,/;\nvar FN_ARG = /(=.+)?(\\s*)$/;\n\nfunction stripComments(string) {\n    let stripped = '';\n    let index = 0;\n    let endBlockComment = string.indexOf('*/');\n    while (index < string.length) {\n        if (string[index] === '/' && string[index+1] === '/') {\n            // inline comment\n            let endIndex = string.indexOf('\\n', index);\n            index = (endIndex === -1) ? string.length : endIndex;\n        } else if ((endBlockComment !== -1) && (string[index] === '/') && (string[index+1] === '*')) {\n            // block comment\n            let endIndex = string.indexOf('*/', index);\n            if (endIndex !== -1) {\n                index = endIndex + 2;\n                endBlockComment = string.indexOf('*/', index);\n            } else {\n                stripped += string[index];\n                index++;\n            }\n        } else {\n            stripped += string[index];\n            index++;\n        }\n    }\n    return stripped;\n}\n\nfunction parseParams(func) {\n    const src = stripComments(func.toString());\n    let match = src.match(FN_ARGS);\n    if (!match) {\n        match = src.match(ARROW_FN_ARGS);\n    }\n    if (!match) throw new Error('could not parse args in autoInject\\nSource:\\n' + src)\n    let [, args] = match;\n    return args\n        .replace(/\\s/g, '')\n        .split(FN_ARG_SPLIT)\n        .map((arg) => arg.replace(FN_ARG, '').trim());\n}\n\n/**\n * A dependency-injected version of the [async.auto]{@link module:ControlFlow.auto} function. Dependent\n * tasks are specified as parameters to the function, after the usual callback\n * parameter, with the parameter names matching the names of the tasks it\n * depends on. This can provide even more readable task graphs which can be\n * easier to maintain.\n *\n * If a final callback is specified, the task results are similarly injected,\n * specified as named parameters after the initial error parameter.\n *\n * The autoInject function is purely syntactic sugar and its semantics are\n * otherwise equivalent to [async.auto]{@link module:ControlFlow.auto}.\n *\n * @name autoInject\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.auto]{@link module:ControlFlow.auto}\n * @category Control Flow\n * @param {Object} tasks - An object, each of whose properties is an {@link AsyncFunction} of\n * the form 'func([dependencies...], callback). The object's key of a property\n * serves as the name of the task defined by that property, i.e. can be used\n * when specifying requirements for other tasks.\n * * The `callback` parameter is a `callback(err, result)` which must be called\n *   when finished, passing an `error` (which can be `null`) and the result of\n *   the function's execution. The remaining parameters name other tasks on\n *   which the task is dependent, and the results from those tasks are the\n *   arguments of those parameters.\n * @param {Function} [callback] - An optional callback which is called when all\n * the tasks have been completed. It receives the `err` argument if any `tasks`\n * pass an error to their callback, and a `results` object with any completed\n * task results, similar to `auto`.\n * @returns {Promise} a promise, if no callback is passed\n * @example\n *\n * //  The example from `auto` can be rewritten as follows:\n * async.autoInject({\n *     get_data: function(callback) {\n *         // async code to get some data\n *         callback(null, 'data', 'converted to array');\n *     },\n *     make_folder: function(callback) {\n *         // async code to create a directory to store a file in\n *         // this is run at the same time as getting the data\n *         callback(null, 'folder');\n *     },\n *     write_file: function(get_data, make_folder, callback) {\n *         // once there is some data and the directory exists,\n *         // write the data to a file in the directory\n *         callback(null, 'filename');\n *     },\n *     email_link: function(write_file, callback) {\n *         // once the file is written let's email a link to it...\n *         // write_file contains the filename returned by write_file.\n *         callback(null, {'file':write_file, 'email':'user@example.com'});\n *     }\n * }, function(err, results) {\n *     console.log('err = ', err);\n *     console.log('email_link = ', results.email_link);\n * });\n *\n * // If you are using a JS minifier that mangles parameter names, `autoInject`\n * // will not work with plain functions, since the parameter names will be\n * // collapsed to a single letter identifier.  To work around this, you can\n * // explicitly specify the names of the parameters your task function needs\n * // in an array, similar to Angular.js dependency injection.\n *\n * // This still has an advantage over plain `auto`, since the results a task\n * // depends on are still spread into arguments.\n * async.autoInject({\n *     //...\n *     write_file: ['get_data', 'make_folder', function(get_data, make_folder, callback) {\n *         callback(null, 'filename');\n *     }],\n *     email_link: ['write_file', function(write_file, callback) {\n *         callback(null, {'file':write_file, 'email':'user@example.com'});\n *     }]\n *     //...\n * }, function(err, results) {\n *     console.log('err = ', err);\n *     console.log('email_link = ', results.email_link);\n * });\n */\nfunction autoInject(tasks, callback) {\n    var newTasks = {};\n\n    Object.keys(tasks).forEach(key => {\n        var taskFn = tasks[key];\n        var params;\n        var fnIsAsync = isAsync(taskFn);\n        var hasNoDeps =\n            (!fnIsAsync && taskFn.length === 1) ||\n            (fnIsAsync && taskFn.length === 0);\n\n        if (Array.isArray(taskFn)) {\n            params = [...taskFn];\n            taskFn = params.pop();\n\n            newTasks[key] = params.concat(params.length > 0 ? newTask : taskFn);\n        } else if (hasNoDeps) {\n            // no dependencies, use the function as-is\n            newTasks[key] = taskFn;\n        } else {\n            params = parseParams(taskFn);\n            if ((taskFn.length === 0 && !fnIsAsync) && params.length === 0) {\n                throw new Error(\"autoInject task functions require explicit parameters.\");\n            }\n\n            // remove callback param\n            if (!fnIsAsync) params.pop();\n\n            newTasks[key] = params.concat(newTask);\n        }\n\n        function newTask(results, taskCb) {\n            var newArgs = params.map(name => results[name]);\n            newArgs.push(taskCb);\n            wrapAsync(taskFn)(...newArgs);\n        }\n    });\n\n    return auto(newTasks, callback);\n}\n\n// Simple doubly linked list (https://en.wikipedia.org/wiki/Doubly_linked_list) implementation\n// used for queues. This implementation assumes that the node provided by the user can be modified\n// to adjust the next and last properties. We implement only the minimal functionality\n// for queue support.\nclass DLL {\n    constructor() {\n        this.head = this.tail = null;\n        this.length = 0;\n    }\n\n    removeLink(node) {\n        if (node.prev) node.prev.next = node.next;\n        else this.head = node.next;\n        if (node.next) node.next.prev = node.prev;\n        else this.tail = node.prev;\n\n        node.prev = node.next = null;\n        this.length -= 1;\n        return node;\n    }\n\n    empty () {\n        while(this.head) this.shift();\n        return this;\n    }\n\n    insertAfter(node, newNode) {\n        newNode.prev = node;\n        newNode.next = node.next;\n        if (node.next) node.next.prev = newNode;\n        else this.tail = newNode;\n        node.next = newNode;\n        this.length += 1;\n    }\n\n    insertBefore(node, newNode) {\n        newNode.prev = node.prev;\n        newNode.next = node;\n        if (node.prev) node.prev.next = newNode;\n        else this.head = newNode;\n        node.prev = newNode;\n        this.length += 1;\n    }\n\n    unshift(node) {\n        if (this.head) this.insertBefore(this.head, node);\n        else setInitial(this, node);\n    }\n\n    push(node) {\n        if (this.tail) this.insertAfter(this.tail, node);\n        else setInitial(this, node);\n    }\n\n    shift() {\n        return this.head && this.removeLink(this.head);\n    }\n\n    pop() {\n        return this.tail && this.removeLink(this.tail);\n    }\n\n    toArray() {\n        return [...this]\n    }\n\n    *[Symbol.iterator] () {\n        var cur = this.head;\n        while (cur) {\n            yield cur.data;\n            cur = cur.next;\n        }\n    }\n\n    remove (testFn) {\n        var curr = this.head;\n        while(curr) {\n            var {next} = curr;\n            if (testFn(curr)) {\n                this.removeLink(curr);\n            }\n            curr = next;\n        }\n        return this;\n    }\n}\n\nfunction setInitial(dll, node) {\n    dll.length = 1;\n    dll.head = dll.tail = node;\n}\n\nfunction queue$1(worker, concurrency, payload) {\n    if (concurrency == null) {\n        concurrency = 1;\n    }\n    else if(concurrency === 0) {\n        throw new RangeError('Concurrency must not be zero');\n    }\n\n    var _worker = wrapAsync(worker);\n    var numRunning = 0;\n    var workersList = [];\n    const events = {\n        error: [],\n        drain: [],\n        saturated: [],\n        unsaturated: [],\n        empty: []\n    };\n\n    function on (event, handler) {\n        events[event].push(handler);\n    }\n\n    function once (event, handler) {\n        const handleAndRemove = (...args) => {\n            off(event, handleAndRemove);\n            handler(...args);\n        };\n        events[event].push(handleAndRemove);\n    }\n\n    function off (event, handler) {\n        if (!event) return Object.keys(events).forEach(ev => events[ev] = [])\n        if (!handler) return events[event] = []\n        events[event] = events[event].filter(ev => ev !== handler);\n    }\n\n    function trigger (event, ...args) {\n        events[event].forEach(handler => handler(...args));\n    }\n\n    var processingScheduled = false;\n    function _insert(data, insertAtFront, rejectOnError, callback) {\n        if (callback != null && typeof callback !== 'function') {\n            throw new Error('task callback must be a function');\n        }\n        q.started = true;\n\n        var res, rej;\n        function promiseCallback (err, ...args) {\n            // we don't care about the error, let the global error handler\n            // deal with it\n            if (err) return rejectOnError ? rej(err) : res()\n            if (args.length <= 1) return res(args[0])\n            res(args);\n        }\n\n        var item = q._createTaskItem(\n            data,\n            rejectOnError ? promiseCallback :\n                (callback || promiseCallback)\n        );\n\n        if (insertAtFront) {\n            q._tasks.unshift(item);\n        } else {\n            q._tasks.push(item);\n        }\n\n        if (!processingScheduled) {\n            processingScheduled = true;\n            setImmediate$1(() => {\n                processingScheduled = false;\n                q.process();\n            });\n        }\n\n        if (rejectOnError || !callback) {\n            return new Promise((resolve, reject) => {\n                res = resolve;\n                rej = reject;\n            })\n        }\n    }\n\n    function _createCB(tasks) {\n        return function (err, ...args) {\n            numRunning -= 1;\n\n            for (var i = 0, l = tasks.length; i < l; i++) {\n                var task = tasks[i];\n\n                var index = workersList.indexOf(task);\n                if (index === 0) {\n                    workersList.shift();\n                } else if (index > 0) {\n                    workersList.splice(index, 1);\n                }\n\n                task.callback(err, ...args);\n\n                if (err != null) {\n                    trigger('error', err, task.data);\n                }\n            }\n\n            if (numRunning <= (q.concurrency - q.buffer) ) {\n                trigger('unsaturated');\n            }\n\n            if (q.idle()) {\n                trigger('drain');\n            }\n            q.process();\n        };\n    }\n\n    function _maybeDrain(data) {\n        if (data.length === 0 && q.idle()) {\n            // call drain immediately if there are no tasks\n            setImmediate$1(() => trigger('drain'));\n            return true\n        }\n        return false\n    }\n\n    const eventMethod = (name) => (handler) => {\n        if (!handler) {\n            return new Promise((resolve, reject) => {\n                once(name, (err, data) => {\n                    if (err) return reject(err)\n                    resolve(data);\n                });\n            })\n        }\n        off(name);\n        on(name, handler);\n\n    };\n\n    var isProcessing = false;\n    var q = {\n        _tasks: new DLL(),\n        _createTaskItem (data, callback) {\n            return {\n                data,\n                callback\n            };\n        },\n        *[Symbol.iterator] () {\n            yield* q._tasks[Symbol.iterator]();\n        },\n        concurrency,\n        payload,\n        buffer: concurrency / 4,\n        started: false,\n        paused: false,\n        push (data, callback) {\n            if (Array.isArray(data)) {\n                if (_maybeDrain(data)) return\n                return data.map(datum => _insert(datum, false, false, callback))\n            }\n            return _insert(data, false, false, callback);\n        },\n        pushAsync (data, callback) {\n            if (Array.isArray(data)) {\n                if (_maybeDrain(data)) return\n                return data.map(datum => _insert(datum, false, true, callback))\n            }\n            return _insert(data, false, true, callback);\n        },\n        kill () {\n            off();\n            q._tasks.empty();\n        },\n        unshift (data, callback) {\n            if (Array.isArray(data)) {\n                if (_maybeDrain(data)) return\n                return data.map(datum => _insert(datum, true, false, callback))\n            }\n            return _insert(data, true, false, callback);\n        },\n        unshiftAsync (data, callback) {\n            if (Array.isArray(data)) {\n                if (_maybeDrain(data)) return\n                return data.map(datum => _insert(datum, true, true, callback))\n            }\n            return _insert(data, true, true, callback);\n        },\n        remove (testFn) {\n            q._tasks.remove(testFn);\n        },\n        process () {\n            // Avoid trying to start too many processing operations. This can occur\n            // when callbacks resolve synchronously (#1267).\n            if (isProcessing) {\n                return;\n            }\n            isProcessing = true;\n            while(!q.paused && numRunning < q.concurrency && q._tasks.length){\n                var tasks = [], data = [];\n                var l = q._tasks.length;\n                if (q.payload) l = Math.min(l, q.payload);\n                for (var i = 0; i < l; i++) {\n                    var node = q._tasks.shift();\n                    tasks.push(node);\n                    workersList.push(node);\n                    data.push(node.data);\n                }\n\n                numRunning += 1;\n\n                if (q._tasks.length === 0) {\n                    trigger('empty');\n                }\n\n                if (numRunning === q.concurrency) {\n                    trigger('saturated');\n                }\n\n                var cb = onlyOnce(_createCB(tasks));\n                _worker(data, cb);\n            }\n            isProcessing = false;\n        },\n        length () {\n            return q._tasks.length;\n        },\n        running () {\n            return numRunning;\n        },\n        workersList () {\n            return workersList;\n        },\n        idle() {\n            return q._tasks.length + numRunning === 0;\n        },\n        pause () {\n            q.paused = true;\n        },\n        resume () {\n            if (q.paused === false) { return; }\n            q.paused = false;\n            setImmediate$1(q.process);\n        }\n    };\n    // define these as fixed properties, so people get useful errors when updating\n    Object.defineProperties(q, {\n        saturated: {\n            writable: false,\n            value: eventMethod('saturated')\n        },\n        unsaturated: {\n            writable: false,\n            value: eventMethod('unsaturated')\n        },\n        empty: {\n            writable: false,\n            value: eventMethod('empty')\n        },\n        drain: {\n            writable: false,\n            value: eventMethod('drain')\n        },\n        error: {\n            writable: false,\n            value: eventMethod('error')\n        },\n    });\n    return q;\n}\n\n/**\n * Creates a `cargo` object with the specified payload. Tasks added to the\n * cargo will be processed altogether (up to the `payload` limit). If the\n * `worker` is in progress, the task is queued until it becomes available. Once\n * the `worker` has completed some tasks, each callback of those tasks is\n * called. Check out [these](https://camo.githubusercontent.com/6bbd36f4cf5b35a0f11a96dcd2e97711ffc2fb37/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130382f62626330636662302d356632392d313165322d393734662d3333393763363464633835382e676966) [animations](https://camo.githubusercontent.com/f4810e00e1c5f5f8addbe3e9f49064fd5d102699/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130312f38346339323036362d356632392d313165322d383134662d3964336430323431336266642e676966)\n * for how `cargo` and `queue` work.\n *\n * While [`queue`]{@link module:ControlFlow.queue} passes only one task to one of a group of workers\n * at a time, cargo passes an array of tasks to a single worker, repeating\n * when the worker is finished.\n *\n * @name cargo\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.queue]{@link module:ControlFlow.queue}\n * @category Control Flow\n * @param {AsyncFunction} worker - An asynchronous function for processing an array\n * of queued tasks. Invoked with `(tasks, callback)`.\n * @param {number} [payload=Infinity] - An optional `integer` for determining\n * how many tasks should be processed per round; if omitted, the default is\n * unlimited.\n * @returns {module:ControlFlow.QueueObject} A cargo object to manage the tasks. Callbacks can\n * attached as certain properties to listen for specific events during the\n * lifecycle of the cargo and inner queue.\n * @example\n *\n * // create a cargo object with payload 2\n * var cargo = async.cargo(function(tasks, callback) {\n *     for (var i=0; i<tasks.length; i++) {\n *         console.log('hello ' + tasks[i].name);\n *     }\n *     callback();\n * }, 2);\n *\n * // add some items\n * cargo.push({name: 'foo'}, function(err) {\n *     console.log('finished processing foo');\n * });\n * cargo.push({name: 'bar'}, function(err) {\n *     console.log('finished processing bar');\n * });\n * await cargo.push({name: 'baz'});\n * console.log('finished processing baz');\n */\nfunction cargo$1(worker, payload) {\n    return queue$1(worker, 1, payload);\n}\n\n/**\n * Creates a `cargoQueue` object with the specified payload. Tasks added to the\n * cargoQueue will be processed together (up to the `payload` limit) in `concurrency` parallel workers.\n * If the all `workers` are in progress, the task is queued until one becomes available. Once\n * a `worker` has completed some tasks, each callback of those tasks is\n * called. Check out [these](https://camo.githubusercontent.com/6bbd36f4cf5b35a0f11a96dcd2e97711ffc2fb37/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130382f62626330636662302d356632392d313165322d393734662d3333393763363464633835382e676966) [animations](https://camo.githubusercontent.com/f4810e00e1c5f5f8addbe3e9f49064fd5d102699/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130312f38346339323036362d356632392d313165322d383134662d3964336430323431336266642e676966)\n * for how `cargo` and `queue` work.\n *\n * While [`queue`]{@link module:ControlFlow.queue} passes only one task to one of a group of workers\n * at a time, and [`cargo`]{@link module:ControlFlow.cargo} passes an array of tasks to a single worker,\n * the cargoQueue passes an array of tasks to multiple parallel workers.\n *\n * @name cargoQueue\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.queue]{@link module:ControlFlow.queue}\n * @see [async.cargo]{@link module:ControlFLow.cargo}\n * @category Control Flow\n * @param {AsyncFunction} worker - An asynchronous function for processing an array\n * of queued tasks. Invoked with `(tasks, callback)`.\n * @param {number} [concurrency=1] - An `integer` for determining how many\n * `worker` functions should be run in parallel.  If omitted, the concurrency\n * defaults to `1`.  If the concurrency is `0`, an error is thrown.\n * @param {number} [payload=Infinity] - An optional `integer` for determining\n * how many tasks should be processed per round; if omitted, the default is\n * unlimited.\n * @returns {module:ControlFlow.QueueObject} A cargoQueue object to manage the tasks. Callbacks can\n * attached as certain properties to listen for specific events during the\n * lifecycle of the cargoQueue and inner queue.\n * @example\n *\n * // create a cargoQueue object with payload 2 and concurrency 2\n * var cargoQueue = async.cargoQueue(function(tasks, callback) {\n *     for (var i=0; i<tasks.length; i++) {\n *         console.log('hello ' + tasks[i].name);\n *     }\n *     callback();\n * }, 2, 2);\n *\n * // add some items\n * cargoQueue.push({name: 'foo'}, function(err) {\n *     console.log('finished processing foo');\n * });\n * cargoQueue.push({name: 'bar'}, function(err) {\n *     console.log('finished processing bar');\n * });\n * cargoQueue.push({name: 'baz'}, function(err) {\n *     console.log('finished processing baz');\n * });\n * cargoQueue.push({name: 'boo'}, function(err) {\n *     console.log('finished processing boo');\n * });\n */\nfunction cargo(worker, concurrency, payload) {\n    return queue$1(worker, concurrency, payload);\n}\n\n/**\n * Reduces `coll` into a single value using an async `iteratee` to return each\n * successive step. `memo` is the initial state of the reduction. This function\n * only operates in series.\n *\n * For performance reasons, it may make sense to split a call to this function\n * into a parallel map, and then use the normal `Array.prototype.reduce` on the\n * results. This function is for situations where each step in the reduction\n * needs to be async; if you can get the data before reducing it, then it's\n * probably a good idea to do so.\n *\n * @name reduce\n * @static\n * @memberOf module:Collections\n * @method\n * @alias inject\n * @alias foldl\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {*} memo - The initial state of the reduction.\n * @param {AsyncFunction} iteratee - A function applied to each item in the\n * array to produce the next step in the reduction.\n * The `iteratee` should complete with the next state of the reduction.\n * If the iteratee completes with an error, the reduction is stopped and the\n * main `callback` is immediately called with the error.\n * Invoked with (memo, item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Result is the reduced value. Invoked with\n * (err, result).\n * @returns {Promise} a promise, if no callback is passed\n * @example\n *\n * // file1.txt is a file that is 1000 bytes in size\n * // file2.txt is a file that is 2000 bytes in size\n * // file3.txt is a file that is 3000 bytes in size\n * // file4.txt does not exist\n *\n * const fileList = ['file1.txt','file2.txt','file3.txt'];\n * const withMissingFileList = ['file1.txt','file2.txt','file3.txt', 'file4.txt'];\n *\n * // asynchronous function that computes the file size in bytes\n * // file size is added to the memoized value, then returned\n * function getFileSizeInBytes(memo, file, callback) {\n *     fs.stat(file, function(err, stat) {\n *         if (err) {\n *             return callback(err);\n *         }\n *         callback(null, memo + stat.size);\n *     });\n * }\n *\n * // Using callbacks\n * async.reduce(fileList, 0, getFileSizeInBytes, function(err, result) {\n *     if (err) {\n *         console.log(err);\n *     } else {\n *         console.log(result);\n *         // 6000\n *         // which is the sum of the file sizes of the three files\n *     }\n * });\n *\n * // Error Handling\n * async.reduce(withMissingFileList, 0, getFileSizeInBytes, function(err, result) {\n *     if (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *     } else {\n *         console.log(result);\n *     }\n * });\n *\n * // Using Promises\n * async.reduce(fileList, 0, getFileSizeInBytes)\n * .then( result => {\n *     console.log(result);\n *     // 6000\n *     // which is the sum of the file sizes of the three files\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * // Error Handling\n * async.reduce(withMissingFileList, 0, getFileSizeInBytes)\n * .then( result => {\n *     console.log(result);\n * }).catch( err => {\n *     console.log(err);\n *     // [ Error: ENOENT: no such file or directory ]\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let result = await async.reduce(fileList, 0, getFileSizeInBytes);\n *         console.log(result);\n *         // 6000\n *         // which is the sum of the file sizes of the three files\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * // Error Handling\n * async () => {\n *     try {\n *         let result = await async.reduce(withMissingFileList, 0, getFileSizeInBytes);\n *         console.log(result);\n *     }\n *     catch (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *     }\n * }\n *\n */\nfunction reduce(coll, memo, iteratee, callback) {\n    callback = once$2(callback);\n    var _iteratee = wrapAsync(iteratee);\n    return eachOfSeries$1(coll, (x, i, iterCb) => {\n        _iteratee(memo, x, (err, v) => {\n            memo = v;\n            iterCb(err);\n        });\n    }, err => callback(err, memo));\n}\nvar reduce$1 = awaitify(reduce, 4);\n\n/**\n * Version of the compose function that is more natural to read. Each function\n * consumes the return value of the previous function. It is the equivalent of\n * [compose]{@link module:ControlFlow.compose} with the arguments reversed.\n *\n * Each function is executed with the `this` binding of the composed function.\n *\n * @name seq\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.compose]{@link module:ControlFlow.compose}\n * @category Control Flow\n * @param {...AsyncFunction} functions - the asynchronous functions to compose\n * @returns {Function} a function that composes the `functions` in order\n * @example\n *\n * // Requires lodash (or underscore), express3 and dresende's orm2.\n * // Part of an app, that fetches cats of the logged user.\n * // This example uses `seq` function to avoid overnesting and error\n * // handling clutter.\n * app.get('/cats', function(request, response) {\n *     var User = request.models.User;\n *     async.seq(\n *         User.get.bind(User),  // 'User.get' has signature (id, callback(err, data))\n *         function(user, fn) {\n *             user.getCats(fn);      // 'getCats' has signature (callback(err, data))\n *         }\n *     )(req.session.user_id, function (err, cats) {\n *         if (err) {\n *             console.error(err);\n *             response.json({ status: 'error', message: err.message });\n *         } else {\n *             response.json({ status: 'ok', message: 'Cats found', data: cats });\n *         }\n *     });\n * });\n */\nfunction seq(...functions) {\n    var _functions = functions.map(wrapAsync);\n    return function (...args) {\n        var that = this;\n\n        var cb = args[args.length - 1];\n        if (typeof cb == 'function') {\n            args.pop();\n        } else {\n            cb = promiseCallback();\n        }\n\n        reduce$1(_functions, args, (newargs, fn, iterCb) => {\n            fn.apply(that, newargs.concat((err, ...nextargs) => {\n                iterCb(err, nextargs);\n            }));\n        },\n        (err, results) => cb(err, ...results));\n\n        return cb[PROMISE_SYMBOL]\n    };\n}\n\n/**\n * Creates a function which is a composition of the passed asynchronous\n * functions. Each function consumes the return value of the function that\n * follows. Composing functions `f()`, `g()`, and `h()` would produce the result\n * of `f(g(h()))`, only this version uses callbacks to obtain the return values.\n *\n * If the last argument to the composed function is not a function, a promise\n * is returned when you call it.\n *\n * Each function is executed with the `this` binding of the composed function.\n *\n * @name compose\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {...AsyncFunction} functions - the asynchronous functions to compose\n * @returns {Function} an asynchronous function that is the composed\n * asynchronous `functions`\n * @example\n *\n * function add1(n, callback) {\n *     setTimeout(function () {\n *         callback(null, n + 1);\n *     }, 10);\n * }\n *\n * function mul3(n, callback) {\n *     setTimeout(function () {\n *         callback(null, n * 3);\n *     }, 10);\n * }\n *\n * var add1mul3 = async.compose(mul3, add1);\n * add1mul3(4, function (err, result) {\n *     // result now equals 15\n * });\n */\nfunction compose$1(...args) {\n    return seq(...args.reverse());\n}\n\n/**\n * The same as [`map`]{@link module:Collections.map} but runs a maximum of `limit` async operations at a time.\n *\n * @name mapLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.map]{@link module:Collections.map}\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * The iteratee should complete with the transformed item.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. Results is an array of the\n * transformed items from the `coll`. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction mapLimit (coll, limit, iteratee, callback) {\n    return _asyncMap(eachOfLimit$2(limit), coll, iteratee, callback)\n}\nvar mapLimit$1 = awaitify(mapLimit, 4);\n\n/**\n * The same as [`concat`]{@link module:Collections.concat} but runs a maximum of `limit` async operations at a time.\n *\n * @name concatLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.concat]{@link module:Collections.concat}\n * @category Collection\n * @alias flatMapLimit\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - A function to apply to each item in `coll`,\n * which should use an array as its result. Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished, or an error occurs. Results is an array\n * containing the concatenated results of the `iteratee` function. Invoked with\n * (err, results).\n * @returns A Promise, if no callback is passed\n */\nfunction concatLimit(coll, limit, iteratee, callback) {\n    var _iteratee = wrapAsync(iteratee);\n    return mapLimit$1(coll, limit, (val, iterCb) => {\n        _iteratee(val, (err, ...args) => {\n            if (err) return iterCb(err);\n            return iterCb(err, args);\n        });\n    }, (err, mapResults) => {\n        var result = [];\n        for (var i = 0; i < mapResults.length; i++) {\n            if (mapResults[i]) {\n                result = result.concat(...mapResults[i]);\n            }\n        }\n\n        return callback(err, result);\n    });\n}\nvar concatLimit$1 = awaitify(concatLimit, 4);\n\n/**\n * Applies `iteratee` to each item in `coll`, concatenating the results. Returns\n * the concatenated list. The `iteratee`s are called in parallel, and the\n * results are concatenated as they return. The results array will be returned in\n * the original order of `coll` passed to the `iteratee` function.\n *\n * @name concat\n * @static\n * @memberOf module:Collections\n * @method\n * @category Collection\n * @alias flatMap\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - A function to apply to each item in `coll`,\n * which should use an array as its result. Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished, or an error occurs. Results is an array\n * containing the concatenated results of the `iteratee` function. Invoked with\n * (err, results).\n * @returns A Promise, if no callback is passed\n * @example\n *\n * // dir1 is a directory that contains file1.txt, file2.txt\n * // dir2 is a directory that contains file3.txt, file4.txt\n * // dir3 is a directory that contains file5.txt\n * // dir4 does not exist\n *\n * let directoryList = ['dir1','dir2','dir3'];\n * let withMissingDirectoryList = ['dir1','dir2','dir3', 'dir4'];\n *\n * // Using callbacks\n * async.concat(directoryList, fs.readdir, function(err, results) {\n *    if (err) {\n *        console.log(err);\n *    } else {\n *        console.log(results);\n *        // [ 'file1.txt', 'file2.txt', 'file3.txt', 'file4.txt', file5.txt ]\n *    }\n * });\n *\n * // Error Handling\n * async.concat(withMissingDirectoryList, fs.readdir, function(err, results) {\n *    if (err) {\n *        console.log(err);\n *        // [ Error: ENOENT: no such file or directory ]\n *        // since dir4 does not exist\n *    } else {\n *        console.log(results);\n *    }\n * });\n *\n * // Using Promises\n * async.concat(directoryList, fs.readdir)\n * .then(results => {\n *     console.log(results);\n *     // [ 'file1.txt', 'file2.txt', 'file3.txt', 'file4.txt', file5.txt ]\n * }).catch(err => {\n *      console.log(err);\n * });\n *\n * // Error Handling\n * async.concat(withMissingDirectoryList, fs.readdir)\n * .then(results => {\n *     console.log(results);\n * }).catch(err => {\n *     console.log(err);\n *     // [ Error: ENOENT: no such file or directory ]\n *     // since dir4 does not exist\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let results = await async.concat(directoryList, fs.readdir);\n *         console.log(results);\n *         // [ 'file1.txt', 'file2.txt', 'file3.txt', 'file4.txt', file5.txt ]\n *     } catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * // Error Handling\n * async () => {\n *     try {\n *         let results = await async.concat(withMissingDirectoryList, fs.readdir);\n *         console.log(results);\n *     } catch (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *         // since dir4 does not exist\n *     }\n * }\n *\n */\nfunction concat(coll, iteratee, callback) {\n    return concatLimit$1(coll, Infinity, iteratee, callback)\n}\nvar concat$1 = awaitify(concat, 3);\n\n/**\n * The same as [`concat`]{@link module:Collections.concat} but runs only a single async operation at a time.\n *\n * @name concatSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.concat]{@link module:Collections.concat}\n * @category Collection\n * @alias flatMapSeries\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - A function to apply to each item in `coll`.\n * The iteratee should complete with an array an array of results.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished, or an error occurs. Results is an array\n * containing the concatenated results of the `iteratee` function. Invoked with\n * (err, results).\n * @returns A Promise, if no callback is passed\n */\nfunction concatSeries(coll, iteratee, callback) {\n    return concatLimit$1(coll, 1, iteratee, callback)\n}\nvar concatSeries$1 = awaitify(concatSeries, 3);\n\n/**\n * Returns a function that when called, calls-back with the values provided.\n * Useful as the first function in a [`waterfall`]{@link module:ControlFlow.waterfall}, or for plugging values in to\n * [`auto`]{@link module:ControlFlow.auto}.\n *\n * @name constant\n * @static\n * @memberOf module:Utils\n * @method\n * @category Util\n * @param {...*} arguments... - Any number of arguments to automatically invoke\n * callback with.\n * @returns {AsyncFunction} Returns a function that when invoked, automatically\n * invokes the callback with the previous given arguments.\n * @example\n *\n * async.waterfall([\n *     async.constant(42),\n *     function (value, next) {\n *         // value === 42\n *     },\n *     //...\n * ], callback);\n *\n * async.waterfall([\n *     async.constant(filename, \"utf8\"),\n *     fs.readFile,\n *     function (fileData, next) {\n *         //...\n *     }\n *     //...\n * ], callback);\n *\n * async.auto({\n *     hostname: async.constant(\"https://server.net/\"),\n *     port: findFreePort,\n *     launchServer: [\"hostname\", \"port\", function (options, cb) {\n *         startServer(options, cb);\n *     }],\n *     //...\n * }, callback);\n */\nfunction constant$1(...args) {\n    return function (...ignoredArgs/*, callback*/) {\n        var callback = ignoredArgs.pop();\n        return callback(null, ...args);\n    };\n}\n\nfunction _createTester(check, getResult) {\n    return (eachfn, arr, _iteratee, cb) => {\n        var testPassed = false;\n        var testResult;\n        const iteratee = wrapAsync(_iteratee);\n        eachfn(arr, (value, _, callback) => {\n            iteratee(value, (err, result) => {\n                if (err || err === false) return callback(err);\n\n                if (check(result) && !testResult) {\n                    testPassed = true;\n                    testResult = getResult(true, value);\n                    return callback(null, breakLoop);\n                }\n                callback();\n            });\n        }, err => {\n            if (err) return cb(err);\n            cb(null, testPassed ? testResult : getResult(false));\n        });\n    };\n}\n\n/**\n * Returns the first value in `coll` that passes an async truth test. The\n * `iteratee` is applied in parallel, meaning the first iteratee to return\n * `true` will fire the detect `callback` with that result. That means the\n * result might not be the first item in the original `coll` (in terms of order)\n * that passes the test.\n\n * If order within the original `coll` is important, then look at\n * [`detectSeries`]{@link module:Collections.detectSeries}.\n *\n * @name detect\n * @static\n * @memberOf module:Collections\n * @method\n * @alias find\n * @category Collections\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.\n * The iteratee must complete with a boolean value as its result.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called as soon as any\n * iteratee returns `true`, or after all the `iteratee` functions have finished.\n * Result will be the first item in the array that passes the truth test\n * (iteratee) or the value `undefined` if none passed. Invoked with\n * (err, result).\n * @returns {Promise} a promise, if a callback is omitted\n * @example\n *\n * // dir1 is a directory that contains file1.txt, file2.txt\n * // dir2 is a directory that contains file3.txt, file4.txt\n * // dir3 is a directory that contains file5.txt\n *\n * // asynchronous function that checks if a file exists\n * function fileExists(file, callback) {\n *    fs.access(file, fs.constants.F_OK, (err) => {\n *        callback(null, !err);\n *    });\n * }\n *\n * async.detect(['file3.txt','file2.txt','dir1/file1.txt'], fileExists,\n *    function(err, result) {\n *        console.log(result);\n *        // dir1/file1.txt\n *        // result now equals the first file in the list that exists\n *    }\n *);\n *\n * // Using Promises\n * async.detect(['file3.txt','file2.txt','dir1/file1.txt'], fileExists)\n * .then(result => {\n *     console.log(result);\n *     // dir1/file1.txt\n *     // result now equals the first file in the list that exists\n * }).catch(err => {\n *     console.log(err);\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let result = await async.detect(['file3.txt','file2.txt','dir1/file1.txt'], fileExists);\n *         console.log(result);\n *         // dir1/file1.txt\n *         // result now equals the file in the list that exists\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction detect(coll, iteratee, callback) {\n    return _createTester(bool => bool, (res, item) => item)(eachOf$1, coll, iteratee, callback)\n}\nvar detect$1 = awaitify(detect, 3);\n\n/**\n * The same as [`detect`]{@link module:Collections.detect} but runs a maximum of `limit` async operations at a\n * time.\n *\n * @name detectLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.detect]{@link module:Collections.detect}\n * @alias findLimit\n * @category Collections\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.\n * The iteratee must complete with a boolean value as its result.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called as soon as any\n * iteratee returns `true`, or after all the `iteratee` functions have finished.\n * Result will be the first item in the array that passes the truth test\n * (iteratee) or the value `undefined` if none passed. Invoked with\n * (err, result).\n * @returns {Promise} a promise, if a callback is omitted\n */\nfunction detectLimit(coll, limit, iteratee, callback) {\n    return _createTester(bool => bool, (res, item) => item)(eachOfLimit$2(limit), coll, iteratee, callback)\n}\nvar detectLimit$1 = awaitify(detectLimit, 4);\n\n/**\n * The same as [`detect`]{@link module:Collections.detect} but runs only a single async operation at a time.\n *\n * @name detectSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.detect]{@link module:Collections.detect}\n * @alias findSeries\n * @category Collections\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.\n * The iteratee must complete with a boolean value as its result.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called as soon as any\n * iteratee returns `true`, or after all the `iteratee` functions have finished.\n * Result will be the first item in the array that passes the truth test\n * (iteratee) or the value `undefined` if none passed. Invoked with\n * (err, result).\n * @returns {Promise} a promise, if a callback is omitted\n */\nfunction detectSeries(coll, iteratee, callback) {\n    return _createTester(bool => bool, (res, item) => item)(eachOfLimit$2(1), coll, iteratee, callback)\n}\n\nvar detectSeries$1 = awaitify(detectSeries, 3);\n\nfunction consoleFunc(name) {\n    return (fn, ...args) => wrapAsync(fn)(...args, (err, ...resultArgs) => {\n        /* istanbul ignore else */\n        if (typeof console === 'object') {\n            /* istanbul ignore else */\n            if (err) {\n                /* istanbul ignore else */\n                if (console.error) {\n                    console.error(err);\n                }\n            } else if (console[name]) { /* istanbul ignore else */\n                resultArgs.forEach(x => console[name](x));\n            }\n        }\n    })\n}\n\n/**\n * Logs the result of an [`async` function]{@link AsyncFunction} to the\n * `console` using `console.dir` to display the properties of the resulting object.\n * Only works in Node.js or in browsers that support `console.dir` and\n * `console.error` (such as FF and Chrome).\n * If multiple arguments are returned from the async function,\n * `console.dir` is called on each argument in order.\n *\n * @name dir\n * @static\n * @memberOf module:Utils\n * @method\n * @category Util\n * @param {AsyncFunction} function - The function you want to eventually apply\n * all arguments to.\n * @param {...*} arguments... - Any number of arguments to apply to the function.\n * @example\n *\n * // in a module\n * var hello = function(name, callback) {\n *     setTimeout(function() {\n *         callback(null, {hello: name});\n *     }, 1000);\n * };\n *\n * // in the node repl\n * node> async.dir(hello, 'world');\n * {hello: 'world'}\n */\nvar dir = consoleFunc('dir');\n\n/**\n * The post-check version of [`whilst`]{@link module:ControlFlow.whilst}. To reflect the difference in\n * the order of operations, the arguments `test` and `iteratee` are switched.\n *\n * `doWhilst` is to `whilst` as `do while` is to `while` in plain JavaScript.\n *\n * @name doWhilst\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.whilst]{@link module:ControlFlow.whilst}\n * @category Control Flow\n * @param {AsyncFunction} iteratee - A function which is called each time `test`\n * passes. Invoked with (callback).\n * @param {AsyncFunction} test - asynchronous truth test to perform after each\n * execution of `iteratee`. Invoked with (...args, callback), where `...args` are the\n * non-error args from the previous callback of `iteratee`.\n * @param {Function} [callback] - A callback which is called after the test\n * function has failed and repeated execution of `iteratee` has stopped.\n * `callback` will be passed an error and any arguments passed to the final\n * `iteratee`'s callback. Invoked with (err, [results]);\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction doWhilst(iteratee, test, callback) {\n    callback = onlyOnce(callback);\n    var _fn = wrapAsync(iteratee);\n    var _test = wrapAsync(test);\n    var results;\n\n    function next(err, ...args) {\n        if (err) return callback(err);\n        if (err === false) return;\n        results = args;\n        _test(...args, check);\n    }\n\n    function check(err, truth) {\n        if (err) return callback(err);\n        if (err === false) return;\n        if (!truth) return callback(null, ...results);\n        _fn(next);\n    }\n\n    return check(null, true);\n}\n\nvar doWhilst$1 = awaitify(doWhilst, 3);\n\n/**\n * Like ['doWhilst']{@link module:ControlFlow.doWhilst}, except the `test` is inverted. Note the\n * argument ordering differs from `until`.\n *\n * @name doUntil\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.doWhilst]{@link module:ControlFlow.doWhilst}\n * @category Control Flow\n * @param {AsyncFunction} iteratee - An async function which is called each time\n * `test` fails. Invoked with (callback).\n * @param {AsyncFunction} test - asynchronous truth test to perform after each\n * execution of `iteratee`. Invoked with (...args, callback), where `...args` are the\n * non-error args from the previous callback of `iteratee`\n * @param {Function} [callback] - A callback which is called after the test\n * function has passed and repeated execution of `iteratee` has stopped. `callback`\n * will be passed an error and any arguments passed to the final `iteratee`'s\n * callback. Invoked with (err, [results]);\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction doUntil(iteratee, test, callback) {\n    const _test = wrapAsync(test);\n    return doWhilst$1(iteratee, (...args) => {\n        const cb = args.pop();\n        _test(...args, (err, truth) => cb (err, !truth));\n    }, callback);\n}\n\nfunction _withoutIndex(iteratee) {\n    return (value, index, callback) => iteratee(value, callback);\n}\n\n/**\n * Applies the function `iteratee` to each item in `coll`, in parallel.\n * The `iteratee` is called with an item from the list, and a callback for when\n * it has finished. If the `iteratee` passes an error to its `callback`, the\n * main `callback` (for the `each` function) is immediately called with the\n * error.\n *\n * Note, that since this function applies `iteratee` to each item in parallel,\n * there is no guarantee that the iteratee functions will complete in order.\n *\n * @name each\n * @static\n * @memberOf module:Collections\n * @method\n * @alias forEach\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async function to apply to\n * each item in `coll`. Invoked with (item, callback).\n * The array index is not passed to the iteratee.\n * If you need the index, use `eachOf`.\n * @param {Function} [callback] - A callback which is called when all\n * `iteratee` functions have finished, or an error occurs. Invoked with (err).\n * @returns {Promise} a promise, if a callback is omitted\n * @example\n *\n * // dir1 is a directory that contains file1.txt, file2.txt\n * // dir2 is a directory that contains file3.txt, file4.txt\n * // dir3 is a directory that contains file5.txt\n * // dir4 does not exist\n *\n * const fileList = [ 'dir1/file2.txt', 'dir2/file3.txt', 'dir/file5.txt'];\n * const withMissingFileList = ['dir1/file1.txt', 'dir4/file2.txt'];\n *\n * // asynchronous function that deletes a file\n * const deleteFile = function(file, callback) {\n *     fs.unlink(file, callback);\n * };\n *\n * // Using callbacks\n * async.each(fileList, deleteFile, function(err) {\n *     if( err ) {\n *         console.log(err);\n *     } else {\n *         console.log('All files have been deleted successfully');\n *     }\n * });\n *\n * // Error Handling\n * async.each(withMissingFileList, deleteFile, function(err){\n *     console.log(err);\n *     // [ Error: ENOENT: no such file or directory ]\n *     // since dir4/file2.txt does not exist\n *     // dir1/file1.txt could have been deleted\n * });\n *\n * // Using Promises\n * async.each(fileList, deleteFile)\n * .then( () => {\n *     console.log('All files have been deleted successfully');\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * // Error Handling\n * async.each(fileList, deleteFile)\n * .then( () => {\n *     console.log('All files have been deleted successfully');\n * }).catch( err => {\n *     console.log(err);\n *     // [ Error: ENOENT: no such file or directory ]\n *     // since dir4/file2.txt does not exist\n *     // dir1/file1.txt could have been deleted\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         await async.each(files, deleteFile);\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * // Error Handling\n * async () => {\n *     try {\n *         await async.each(withMissingFileList, deleteFile);\n *     }\n *     catch (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *         // since dir4/file2.txt does not exist\n *         // dir1/file1.txt could have been deleted\n *     }\n * }\n *\n */\nfunction eachLimit$2(coll, iteratee, callback) {\n    return eachOf$1(coll, _withoutIndex(wrapAsync(iteratee)), callback);\n}\n\nvar each = awaitify(eachLimit$2, 3);\n\n/**\n * The same as [`each`]{@link module:Collections.each} but runs a maximum of `limit` async operations at a time.\n *\n * @name eachLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.each]{@link module:Collections.each}\n * @alias forEachLimit\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * The array index is not passed to the iteratee.\n * If you need the index, use `eachOfLimit`.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called when all\n * `iteratee` functions have finished, or an error occurs. Invoked with (err).\n * @returns {Promise} a promise, if a callback is omitted\n */\nfunction eachLimit(coll, limit, iteratee, callback) {\n    return eachOfLimit$2(limit)(coll, _withoutIndex(wrapAsync(iteratee)), callback);\n}\nvar eachLimit$1 = awaitify(eachLimit, 4);\n\n/**\n * The same as [`each`]{@link module:Collections.each} but runs only a single async operation at a time.\n *\n * Note, that unlike [`each`]{@link module:Collections.each}, this function applies iteratee to each item\n * in series and therefore the iteratee functions will complete in order.\n\n * @name eachSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.each]{@link module:Collections.each}\n * @alias forEachSeries\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async function to apply to each\n * item in `coll`.\n * The array index is not passed to the iteratee.\n * If you need the index, use `eachOfSeries`.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called when all\n * `iteratee` functions have finished, or an error occurs. Invoked with (err).\n * @returns {Promise} a promise, if a callback is omitted\n */\nfunction eachSeries(coll, iteratee, callback) {\n    return eachLimit$1(coll, 1, iteratee, callback)\n}\nvar eachSeries$1 = awaitify(eachSeries, 3);\n\n/**\n * Wrap an async function and ensure it calls its callback on a later tick of\n * the event loop.  If the function already calls its callback on a next tick,\n * no extra deferral is added. This is useful for preventing stack overflows\n * (`RangeError: Maximum call stack size exceeded`) and generally keeping\n * [Zalgo](http://blog.izs.me/post/59142742143/designing-apis-for-asynchrony)\n * contained. ES2017 `async` functions are returned as-is -- they are immune\n * to Zalgo's corrupting influences, as they always resolve on a later tick.\n *\n * @name ensureAsync\n * @static\n * @memberOf module:Utils\n * @method\n * @category Util\n * @param {AsyncFunction} fn - an async function, one that expects a node-style\n * callback as its last argument.\n * @returns {AsyncFunction} Returns a wrapped function with the exact same call\n * signature as the function passed in.\n * @example\n *\n * function sometimesAsync(arg, callback) {\n *     if (cache[arg]) {\n *         return callback(null, cache[arg]); // this would be synchronous!!\n *     } else {\n *         doSomeIO(arg, callback); // this IO would be asynchronous\n *     }\n * }\n *\n * // this has a risk of stack overflows if many results are cached in a row\n * async.mapSeries(args, sometimesAsync, done);\n *\n * // this will defer sometimesAsync's callback if necessary,\n * // preventing stack overflows\n * async.mapSeries(args, async.ensureAsync(sometimesAsync), done);\n */\nfunction ensureAsync(fn) {\n    if (isAsync(fn)) return fn;\n    return function (...args/*, callback*/) {\n        var callback = args.pop();\n        var sync = true;\n        args.push((...innerArgs) => {\n            if (sync) {\n                setImmediate$1(() => callback(...innerArgs));\n            } else {\n                callback(...innerArgs);\n            }\n        });\n        fn.apply(this, args);\n        sync = false;\n    };\n}\n\n/**\n * Returns `true` if every element in `coll` satisfies an async test. If any\n * iteratee call returns `false`, the main `callback` is immediately called.\n *\n * @name every\n * @static\n * @memberOf module:Collections\n * @method\n * @alias all\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async truth test to apply to each item\n * in the collection in parallel.\n * The iteratee must complete with a boolean result value.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Result will be either `true` or `false`\n * depending on the values of the async tests. Invoked with (err, result).\n * @returns {Promise} a promise, if no callback provided\n * @example\n *\n * // dir1 is a directory that contains file1.txt, file2.txt\n * // dir2 is a directory that contains file3.txt, file4.txt\n * // dir3 is a directory that contains file5.txt\n * // dir4 does not exist\n *\n * const fileList = ['dir1/file1.txt','dir2/file3.txt','dir3/file5.txt'];\n * const withMissingFileList = ['file1.txt','file2.txt','file4.txt'];\n *\n * // asynchronous function that checks if a file exists\n * function fileExists(file, callback) {\n *    fs.access(file, fs.constants.F_OK, (err) => {\n *        callback(null, !err);\n *    });\n * }\n *\n * // Using callbacks\n * async.every(fileList, fileExists, function(err, result) {\n *     console.log(result);\n *     // true\n *     // result is true since every file exists\n * });\n *\n * async.every(withMissingFileList, fileExists, function(err, result) {\n *     console.log(result);\n *     // false\n *     // result is false since NOT every file exists\n * });\n *\n * // Using Promises\n * async.every(fileList, fileExists)\n * .then( result => {\n *     console.log(result);\n *     // true\n *     // result is true since every file exists\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * async.every(withMissingFileList, fileExists)\n * .then( result => {\n *     console.log(result);\n *     // false\n *     // result is false since NOT every file exists\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let result = await async.every(fileList, fileExists);\n *         console.log(result);\n *         // true\n *         // result is true since every file exists\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * async () => {\n *     try {\n *         let result = await async.every(withMissingFileList, fileExists);\n *         console.log(result);\n *         // false\n *         // result is false since NOT every file exists\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction every(coll, iteratee, callback) {\n    return _createTester(bool => !bool, res => !res)(eachOf$1, coll, iteratee, callback)\n}\nvar every$1 = awaitify(every, 3);\n\n/**\n * The same as [`every`]{@link module:Collections.every} but runs a maximum of `limit` async operations at a time.\n *\n * @name everyLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.every]{@link module:Collections.every}\n * @alias allLimit\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - An async truth test to apply to each item\n * in the collection in parallel.\n * The iteratee must complete with a boolean result value.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Result will be either `true` or `false`\n * depending on the values of the async tests. Invoked with (err, result).\n * @returns {Promise} a promise, if no callback provided\n */\nfunction everyLimit(coll, limit, iteratee, callback) {\n    return _createTester(bool => !bool, res => !res)(eachOfLimit$2(limit), coll, iteratee, callback)\n}\nvar everyLimit$1 = awaitify(everyLimit, 4);\n\n/**\n * The same as [`every`]{@link module:Collections.every} but runs only a single async operation at a time.\n *\n * @name everySeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.every]{@link module:Collections.every}\n * @alias allSeries\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async truth test to apply to each item\n * in the collection in series.\n * The iteratee must complete with a boolean result value.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Result will be either `true` or `false`\n * depending on the values of the async tests. Invoked with (err, result).\n * @returns {Promise} a promise, if no callback provided\n */\nfunction everySeries(coll, iteratee, callback) {\n    return _createTester(bool => !bool, res => !res)(eachOfSeries$1, coll, iteratee, callback)\n}\nvar everySeries$1 = awaitify(everySeries, 3);\n\nfunction filterArray(eachfn, arr, iteratee, callback) {\n    var truthValues = new Array(arr.length);\n    eachfn(arr, (x, index, iterCb) => {\n        iteratee(x, (err, v) => {\n            truthValues[index] = !!v;\n            iterCb(err);\n        });\n    }, err => {\n        if (err) return callback(err);\n        var results = [];\n        for (var i = 0; i < arr.length; i++) {\n            if (truthValues[i]) results.push(arr[i]);\n        }\n        callback(null, results);\n    });\n}\n\nfunction filterGeneric(eachfn, coll, iteratee, callback) {\n    var results = [];\n    eachfn(coll, (x, index, iterCb) => {\n        iteratee(x, (err, v) => {\n            if (err) return iterCb(err);\n            if (v) {\n                results.push({index, value: x});\n            }\n            iterCb(err);\n        });\n    }, err => {\n        if (err) return callback(err);\n        callback(null, results\n            .sort((a, b) => a.index - b.index)\n            .map(v => v.value));\n    });\n}\n\nfunction _filter(eachfn, coll, iteratee, callback) {\n    var filter = isArrayLike(coll) ? filterArray : filterGeneric;\n    return filter(eachfn, coll, wrapAsync(iteratee), callback);\n}\n\n/**\n * Returns a new array of all the values in `coll` which pass an async truth\n * test. This operation is performed in parallel, but the results array will be\n * in the same order as the original.\n *\n * @name filter\n * @static\n * @memberOf module:Collections\n * @method\n * @alias select\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {Function} iteratee - A truth test to apply to each item in `coll`.\n * The `iteratee` is passed a `callback(err, truthValue)`, which must be called\n * with a boolean argument once it has completed. Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback provided\n * @example\n *\n * // dir1 is a directory that contains file1.txt, file2.txt\n * // dir2 is a directory that contains file3.txt, file4.txt\n * // dir3 is a directory that contains file5.txt\n *\n * const files = ['dir1/file1.txt','dir2/file3.txt','dir3/file6.txt'];\n *\n * // asynchronous function that checks if a file exists\n * function fileExists(file, callback) {\n *    fs.access(file, fs.constants.F_OK, (err) => {\n *        callback(null, !err);\n *    });\n * }\n *\n * // Using callbacks\n * async.filter(files, fileExists, function(err, results) {\n *    if(err) {\n *        console.log(err);\n *    } else {\n *        console.log(results);\n *        // [ 'dir1/file1.txt', 'dir2/file3.txt' ]\n *        // results is now an array of the existing files\n *    }\n * });\n *\n * // Using Promises\n * async.filter(files, fileExists)\n * .then(results => {\n *     console.log(results);\n *     // [ 'dir1/file1.txt', 'dir2/file3.txt' ]\n *     // results is now an array of the existing files\n * }).catch(err => {\n *     console.log(err);\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let results = await async.filter(files, fileExists);\n *         console.log(results);\n *         // [ 'dir1/file1.txt', 'dir2/file3.txt' ]\n *         // results is now an array of the existing files\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction filter (coll, iteratee, callback) {\n    return _filter(eachOf$1, coll, iteratee, callback)\n}\nvar filter$1 = awaitify(filter, 3);\n\n/**\n * The same as [`filter`]{@link module:Collections.filter} but runs a maximum of `limit` async operations at a\n * time.\n *\n * @name filterLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.filter]{@link module:Collections.filter}\n * @alias selectLimit\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {Function} iteratee - A truth test to apply to each item in `coll`.\n * The `iteratee` is passed a `callback(err, truthValue)`, which must be called\n * with a boolean argument once it has completed. Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback provided\n */\nfunction filterLimit (coll, limit, iteratee, callback) {\n    return _filter(eachOfLimit$2(limit), coll, iteratee, callback)\n}\nvar filterLimit$1 = awaitify(filterLimit, 4);\n\n/**\n * The same as [`filter`]{@link module:Collections.filter} but runs only a single async operation at a time.\n *\n * @name filterSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.filter]{@link module:Collections.filter}\n * @alias selectSeries\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {Function} iteratee - A truth test to apply to each item in `coll`.\n * The `iteratee` is passed a `callback(err, truthValue)`, which must be called\n * with a boolean argument once it has completed. Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Invoked with (err, results)\n * @returns {Promise} a promise, if no callback provided\n */\nfunction filterSeries (coll, iteratee, callback) {\n    return _filter(eachOfSeries$1, coll, iteratee, callback)\n}\nvar filterSeries$1 = awaitify(filterSeries, 3);\n\n/**\n * Calls the asynchronous function `fn` with a callback parameter that allows it\n * to call itself again, in series, indefinitely.\n\n * If an error is passed to the callback then `errback` is called with the\n * error, and execution stops, otherwise it will never be called.\n *\n * @name forever\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {AsyncFunction} fn - an async function to call repeatedly.\n * Invoked with (next).\n * @param {Function} [errback] - when `fn` passes an error to it's callback,\n * this function will be called, and execution stops. Invoked with (err).\n * @returns {Promise} a promise that rejects if an error occurs and an errback\n * is not passed\n * @example\n *\n * async.forever(\n *     function(next) {\n *         // next is suitable for passing to things that need a callback(err [, whatever]);\n *         // it will result in this function being called again.\n *     },\n *     function(err) {\n *         // if next is called with a value in its first parameter, it will appear\n *         // in here as 'err', and execution will stop.\n *     }\n * );\n */\nfunction forever(fn, errback) {\n    var done = onlyOnce(errback);\n    var task = wrapAsync(ensureAsync(fn));\n\n    function next(err) {\n        if (err) return done(err);\n        if (err === false) return;\n        task(next);\n    }\n    return next();\n}\nvar forever$1 = awaitify(forever, 2);\n\n/**\n * The same as [`groupBy`]{@link module:Collections.groupBy} but runs a maximum of `limit` async operations at a time.\n *\n * @name groupByLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.groupBy]{@link module:Collections.groupBy}\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * The iteratee should complete with a `key` to group the value under.\n * Invoked with (value, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. Result is an `Object` whoses\n * properties are arrays of values which returned the corresponding key.\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction groupByLimit(coll, limit, iteratee, callback) {\n    var _iteratee = wrapAsync(iteratee);\n    return mapLimit$1(coll, limit, (val, iterCb) => {\n        _iteratee(val, (err, key) => {\n            if (err) return iterCb(err);\n            return iterCb(err, {key, val});\n        });\n    }, (err, mapResults) => {\n        var result = {};\n        // from MDN, handle object having an `hasOwnProperty` prop\n        var {hasOwnProperty} = Object.prototype;\n\n        for (var i = 0; i < mapResults.length; i++) {\n            if (mapResults[i]) {\n                var {key} = mapResults[i];\n                var {val} = mapResults[i];\n\n                if (hasOwnProperty.call(result, key)) {\n                    result[key].push(val);\n                } else {\n                    result[key] = [val];\n                }\n            }\n        }\n\n        return callback(err, result);\n    });\n}\n\nvar groupByLimit$1 = awaitify(groupByLimit, 4);\n\n/**\n * Returns a new object, where each value corresponds to an array of items, from\n * `coll`, that returned the corresponding key. That is, the keys of the object\n * correspond to the values passed to the `iteratee` callback.\n *\n * Note: Since this function applies the `iteratee` to each item in parallel,\n * there is no guarantee that the `iteratee` functions will complete in order.\n * However, the values for each key in the `result` will be in the same order as\n * the original `coll`. For Objects, the values will roughly be in the order of\n * the original Objects' keys (but this can vary across JavaScript engines).\n *\n * @name groupBy\n * @static\n * @memberOf module:Collections\n * @method\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * The iteratee should complete with a `key` to group the value under.\n * Invoked with (value, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. Result is an `Object` whoses\n * properties are arrays of values which returned the corresponding key.\n * @returns {Promise} a promise, if no callback is passed\n * @example\n *\n * // dir1 is a directory that contains file1.txt, file2.txt\n * // dir2 is a directory that contains file3.txt, file4.txt\n * // dir3 is a directory that contains file5.txt\n * // dir4 does not exist\n *\n * const files = ['dir1/file1.txt','dir2','dir4']\n *\n * // asynchronous function that detects file type as none, file, or directory\n * function detectFile(file, callback) {\n *     fs.stat(file, function(err, stat) {\n *         if (err) {\n *             return callback(null, 'none');\n *         }\n *         callback(null, stat.isDirectory() ? 'directory' : 'file');\n *     });\n * }\n *\n * //Using callbacks\n * async.groupBy(files, detectFile, function(err, result) {\n *     if(err) {\n *         console.log(err);\n *     } else {\n *\t       console.log(result);\n *         // {\n *         //     file: [ 'dir1/file1.txt' ],\n *         //     none: [ 'dir4' ],\n *         //     directory: [ 'dir2']\n *         // }\n *         // result is object containing the files grouped by type\n *     }\n * });\n *\n * // Using Promises\n * async.groupBy(files, detectFile)\n * .then( result => {\n *     console.log(result);\n *     // {\n *     //     file: [ 'dir1/file1.txt' ],\n *     //     none: [ 'dir4' ],\n *     //     directory: [ 'dir2']\n *     // }\n *     // result is object containing the files grouped by type\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let result = await async.groupBy(files, detectFile);\n *         console.log(result);\n *         // {\n *         //     file: [ 'dir1/file1.txt' ],\n *         //     none: [ 'dir4' ],\n *         //     directory: [ 'dir2']\n *         // }\n *         // result is object containing the files grouped by type\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction groupBy (coll, iteratee, callback) {\n    return groupByLimit$1(coll, Infinity, iteratee, callback)\n}\n\n/**\n * The same as [`groupBy`]{@link module:Collections.groupBy} but runs only a single async operation at a time.\n *\n * @name groupBySeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.groupBy]{@link module:Collections.groupBy}\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * The iteratee should complete with a `key` to group the value under.\n * Invoked with (value, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. Result is an `Object` whose\n * properties are arrays of values which returned the corresponding key.\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction groupBySeries (coll, iteratee, callback) {\n    return groupByLimit$1(coll, 1, iteratee, callback)\n}\n\n/**\n * Logs the result of an `async` function to the `console`. Only works in\n * Node.js or in browsers that support `console.log` and `console.error` (such\n * as FF and Chrome). If multiple arguments are returned from the async\n * function, `console.log` is called on each argument in order.\n *\n * @name log\n * @static\n * @memberOf module:Utils\n * @method\n * @category Util\n * @param {AsyncFunction} function - The function you want to eventually apply\n * all arguments to.\n * @param {...*} arguments... - Any number of arguments to apply to the function.\n * @example\n *\n * // in a module\n * var hello = function(name, callback) {\n *     setTimeout(function() {\n *         callback(null, 'hello ' + name);\n *     }, 1000);\n * };\n *\n * // in the node repl\n * node> async.log(hello, 'world');\n * 'hello world'\n */\nvar log = consoleFunc('log');\n\n/**\n * The same as [`mapValues`]{@link module:Collections.mapValues} but runs a maximum of `limit` async operations at a\n * time.\n *\n * @name mapValuesLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.mapValues]{@link module:Collections.mapValues}\n * @category Collection\n * @param {Object} obj - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - A function to apply to each value and key\n * in `coll`.\n * The iteratee should complete with the transformed value as its result.\n * Invoked with (value, key, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. `result` is a new object consisting\n * of each key from `obj`, with each transformed value on the right-hand side.\n * Invoked with (err, result).\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction mapValuesLimit(obj, limit, iteratee, callback) {\n    callback = once$2(callback);\n    var newObj = {};\n    var _iteratee = wrapAsync(iteratee);\n    return eachOfLimit$2(limit)(obj, (val, key, next) => {\n        _iteratee(val, key, (err, result) => {\n            if (err) return next(err);\n            newObj[key] = result;\n            next(err);\n        });\n    }, err => callback(err, newObj));\n}\n\nvar mapValuesLimit$1 = awaitify(mapValuesLimit, 4);\n\n/**\n * A relative of [`map`]{@link module:Collections.map}, designed for use with objects.\n *\n * Produces a new Object by mapping each value of `obj` through the `iteratee`\n * function. The `iteratee` is called each `value` and `key` from `obj` and a\n * callback for when it has finished processing. Each of these callbacks takes\n * two arguments: an `error`, and the transformed item from `obj`. If `iteratee`\n * passes an error to its callback, the main `callback` (for the `mapValues`\n * function) is immediately called with the error.\n *\n * Note, the order of the keys in the result is not guaranteed.  The keys will\n * be roughly in the order they complete, (but this is very engine-specific)\n *\n * @name mapValues\n * @static\n * @memberOf module:Collections\n * @method\n * @category Collection\n * @param {Object} obj - A collection to iterate over.\n * @param {AsyncFunction} iteratee - A function to apply to each value and key\n * in `coll`.\n * The iteratee should complete with the transformed value as its result.\n * Invoked with (value, key, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. `result` is a new object consisting\n * of each key from `obj`, with each transformed value on the right-hand side.\n * Invoked with (err, result).\n * @returns {Promise} a promise, if no callback is passed\n * @example\n *\n * // file1.txt is a file that is 1000 bytes in size\n * // file2.txt is a file that is 2000 bytes in size\n * // file3.txt is a file that is 3000 bytes in size\n * // file4.txt does not exist\n *\n * const fileMap = {\n *     f1: 'file1.txt',\n *     f2: 'file2.txt',\n *     f3: 'file3.txt'\n * };\n *\n * const withMissingFileMap = {\n *     f1: 'file1.txt',\n *     f2: 'file2.txt',\n *     f3: 'file4.txt'\n * };\n *\n * // asynchronous function that returns the file size in bytes\n * function getFileSizeInBytes(file, key, callback) {\n *     fs.stat(file, function(err, stat) {\n *         if (err) {\n *             return callback(err);\n *         }\n *         callback(null, stat.size);\n *     });\n * }\n *\n * // Using callbacks\n * async.mapValues(fileMap, getFileSizeInBytes, function(err, result) {\n *     if (err) {\n *         console.log(err);\n *     } else {\n *         console.log(result);\n *         // result is now a map of file size in bytes for each file, e.g.\n *         // {\n *         //     f1: 1000,\n *         //     f2: 2000,\n *         //     f3: 3000\n *         // }\n *     }\n * });\n *\n * // Error handling\n * async.mapValues(withMissingFileMap, getFileSizeInBytes, function(err, result) {\n *     if (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *     } else {\n *         console.log(result);\n *     }\n * });\n *\n * // Using Promises\n * async.mapValues(fileMap, getFileSizeInBytes)\n * .then( result => {\n *     console.log(result);\n *     // result is now a map of file size in bytes for each file, e.g.\n *     // {\n *     //     f1: 1000,\n *     //     f2: 2000,\n *     //     f3: 3000\n *     // }\n * }).catch (err => {\n *     console.log(err);\n * });\n *\n * // Error Handling\n * async.mapValues(withMissingFileMap, getFileSizeInBytes)\n * .then( result => {\n *     console.log(result);\n * }).catch (err => {\n *     console.log(err);\n *     // [ Error: ENOENT: no such file or directory ]\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let result = await async.mapValues(fileMap, getFileSizeInBytes);\n *         console.log(result);\n *         // result is now a map of file size in bytes for each file, e.g.\n *         // {\n *         //     f1: 1000,\n *         //     f2: 2000,\n *         //     f3: 3000\n *         // }\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * // Error Handling\n * async () => {\n *     try {\n *         let result = await async.mapValues(withMissingFileMap, getFileSizeInBytes);\n *         console.log(result);\n *     }\n *     catch (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *     }\n * }\n *\n */\nfunction mapValues(obj, iteratee, callback) {\n    return mapValuesLimit$1(obj, Infinity, iteratee, callback)\n}\n\n/**\n * The same as [`mapValues`]{@link module:Collections.mapValues} but runs only a single async operation at a time.\n *\n * @name mapValuesSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.mapValues]{@link module:Collections.mapValues}\n * @category Collection\n * @param {Object} obj - A collection to iterate over.\n * @param {AsyncFunction} iteratee - A function to apply to each value and key\n * in `coll`.\n * The iteratee should complete with the transformed value as its result.\n * Invoked with (value, key, callback).\n * @param {Function} [callback] - A callback which is called when all `iteratee`\n * functions have finished, or an error occurs. `result` is a new object consisting\n * of each key from `obj`, with each transformed value on the right-hand side.\n * Invoked with (err, result).\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction mapValuesSeries(obj, iteratee, callback) {\n    return mapValuesLimit$1(obj, 1, iteratee, callback)\n}\n\n/**\n * Caches the results of an async function. When creating a hash to store\n * function results against, the callback is omitted from the hash and an\n * optional hash function can be used.\n *\n * **Note: if the async function errs, the result will not be cached and\n * subsequent calls will call the wrapped function.**\n *\n * If no hash function is specified, the first argument is used as a hash key,\n * which may work reasonably if it is a string or a data type that converts to a\n * distinct string. Note that objects and arrays will not behave reasonably.\n * Neither will cases where the other arguments are significant. In such cases,\n * specify your own hash function.\n *\n * The cache of results is exposed as the `memo` property of the function\n * returned by `memoize`.\n *\n * @name memoize\n * @static\n * @memberOf module:Utils\n * @method\n * @category Util\n * @param {AsyncFunction} fn - The async function to proxy and cache results from.\n * @param {Function} hasher - An optional function for generating a custom hash\n * for storing results. It has all the arguments applied to it apart from the\n * callback, and must be synchronous.\n * @returns {AsyncFunction} a memoized version of `fn`\n * @example\n *\n * var slow_fn = function(name, callback) {\n *     // do something\n *     callback(null, result);\n * };\n * var fn = async.memoize(slow_fn);\n *\n * // fn can now be used as if it were slow_fn\n * fn('some name', function() {\n *     // callback\n * });\n */\nfunction memoize(fn, hasher = v => v) {\n    var memo = Object.create(null);\n    var queues = Object.create(null);\n    var _fn = wrapAsync(fn);\n    var memoized = initialParams((args, callback) => {\n        var key = hasher(...args);\n        if (key in memo) {\n            setImmediate$1(() => callback(null, ...memo[key]));\n        } else if (key in queues) {\n            queues[key].push(callback);\n        } else {\n            queues[key] = [callback];\n            _fn(...args, (err, ...resultArgs) => {\n                // #1465 don't memoize if an error occurred\n                if (!err) {\n                    memo[key] = resultArgs;\n                }\n                var q = queues[key];\n                delete queues[key];\n                for (var i = 0, l = q.length; i < l; i++) {\n                    q[i](err, ...resultArgs);\n                }\n            });\n        }\n    });\n    memoized.memo = memo;\n    memoized.unmemoized = fn;\n    return memoized;\n}\n\n/* istanbul ignore file */\n\n/**\n * Calls `callback` on a later loop around the event loop. In Node.js this just\n * calls `process.nextTick`.  In the browser it will use `setImmediate` if\n * available, otherwise `setTimeout(callback, 0)`, which means other higher\n * priority events may precede the execution of `callback`.\n *\n * This is used internally for browser-compatibility purposes.\n *\n * @name nextTick\n * @static\n * @memberOf module:Utils\n * @method\n * @see [async.setImmediate]{@link module:Utils.setImmediate}\n * @category Util\n * @param {Function} callback - The function to call on a later loop around\n * the event loop. Invoked with (args...).\n * @param {...*} args... - any number of additional arguments to pass to the\n * callback on the next tick.\n * @example\n *\n * var call_order = [];\n * async.nextTick(function() {\n *     call_order.push('two');\n *     // call_order now equals ['one','two']\n * });\n * call_order.push('one');\n *\n * async.setImmediate(function (a, b, c) {\n *     // a, b, and c equal 1, 2, and 3\n * }, 1, 2, 3);\n */\nvar _defer;\n\nif (hasNextTick) {\n    _defer = process.nextTick;\n} else if (hasSetImmediate) {\n    _defer = setImmediate;\n} else {\n    _defer = fallback;\n}\n\nvar nextTick = wrap(_defer);\n\nvar _parallel = awaitify((eachfn, tasks, callback) => {\n    var results = isArrayLike(tasks) ? [] : {};\n\n    eachfn(tasks, (task, key, taskCb) => {\n        wrapAsync(task)((err, ...result) => {\n            if (result.length < 2) {\n                [result] = result;\n            }\n            results[key] = result;\n            taskCb(err);\n        });\n    }, err => callback(err, results));\n}, 3);\n\n/**\n * Run the `tasks` collection of functions in parallel, without waiting until\n * the previous function has completed. If any of the functions pass an error to\n * its callback, the main `callback` is immediately called with the value of the\n * error. Once the `tasks` have completed, the results are passed to the final\n * `callback` as an array.\n *\n * **Note:** `parallel` is about kicking-off I/O tasks in parallel, not about\n * parallel execution of code.  If your tasks do not use any timers or perform\n * any I/O, they will actually be executed in series.  Any synchronous setup\n * sections for each task will happen one after the other.  JavaScript remains\n * single-threaded.\n *\n * **Hint:** Use [`reflect`]{@link module:Utils.reflect} to continue the\n * execution of other tasks when a task fails.\n *\n * It is also possible to use an object instead of an array. Each property will\n * be run as a function and the results will be passed to the final `callback`\n * as an object instead of an array. This can be a more readable way of handling\n * results from {@link async.parallel}.\n *\n * @name parallel\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {Array|Iterable|AsyncIterable|Object} tasks - A collection of\n * [async functions]{@link AsyncFunction} to run.\n * Each async function can complete with any number of optional `result` values.\n * @param {Function} [callback] - An optional callback to run once all the\n * functions have completed successfully. This function gets a results array\n * (or object) containing all the result arguments passed to the task callbacks.\n * Invoked with (err, results).\n * @returns {Promise} a promise, if a callback is not passed\n *\n * @example\n *\n * //Using Callbacks\n * async.parallel([\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'one');\n *         }, 200);\n *     },\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'two');\n *         }, 100);\n *     }\n * ], function(err, results) {\n *     console.log(results);\n *     // results is equal to ['one','two'] even though\n *     // the second function had a shorter timeout.\n * });\n *\n * // an example using an object instead of an array\n * async.parallel({\n *     one: function(callback) {\n *         setTimeout(function() {\n *             callback(null, 1);\n *         }, 200);\n *     },\n *     two: function(callback) {\n *         setTimeout(function() {\n *             callback(null, 2);\n *         }, 100);\n *     }\n * }, function(err, results) {\n *     console.log(results);\n *     // results is equal to: { one: 1, two: 2 }\n * });\n *\n * //Using Promises\n * async.parallel([\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'one');\n *         }, 200);\n *     },\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'two');\n *         }, 100);\n *     }\n * ]).then(results => {\n *     console.log(results);\n *     // results is equal to ['one','two'] even though\n *     // the second function had a shorter timeout.\n * }).catch(err => {\n *     console.log(err);\n * });\n *\n * // an example using an object instead of an array\n * async.parallel({\n *     one: function(callback) {\n *         setTimeout(function() {\n *             callback(null, 1);\n *         }, 200);\n *     },\n *     two: function(callback) {\n *         setTimeout(function() {\n *             callback(null, 2);\n *         }, 100);\n *     }\n * }).then(results => {\n *     console.log(results);\n *     // results is equal to: { one: 1, two: 2 }\n * }).catch(err => {\n *     console.log(err);\n * });\n *\n * //Using async/await\n * async () => {\n *     try {\n *         let results = await async.parallel([\n *             function(callback) {\n *                 setTimeout(function() {\n *                     callback(null, 'one');\n *                 }, 200);\n *             },\n *             function(callback) {\n *                 setTimeout(function() {\n *                     callback(null, 'two');\n *                 }, 100);\n *             }\n *         ]);\n *         console.log(results);\n *         // results is equal to ['one','two'] even though\n *         // the second function had a shorter timeout.\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * // an example using an object instead of an array\n * async () => {\n *     try {\n *         let results = await async.parallel({\n *             one: function(callback) {\n *                 setTimeout(function() {\n *                     callback(null, 1);\n *                 }, 200);\n *             },\n *            two: function(callback) {\n *                 setTimeout(function() {\n *                     callback(null, 2);\n *                 }, 100);\n *            }\n *         });\n *         console.log(results);\n *         // results is equal to: { one: 1, two: 2 }\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction parallel(tasks, callback) {\n    return _parallel(eachOf$1, tasks, callback);\n}\n\n/**\n * The same as [`parallel`]{@link module:ControlFlow.parallel} but runs a maximum of `limit` async operations at a\n * time.\n *\n * @name parallelLimit\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.parallel]{@link module:ControlFlow.parallel}\n * @category Control Flow\n * @param {Array|Iterable|AsyncIterable|Object} tasks - A collection of\n * [async functions]{@link AsyncFunction} to run.\n * Each async function can complete with any number of optional `result` values.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {Function} [callback] - An optional callback to run once all the\n * functions have completed successfully. This function gets a results array\n * (or object) containing all the result arguments passed to the task callbacks.\n * Invoked with (err, results).\n * @returns {Promise} a promise, if a callback is not passed\n */\nfunction parallelLimit(tasks, limit, callback) {\n    return _parallel(eachOfLimit$2(limit), tasks, callback);\n}\n\n/**\n * A queue of tasks for the worker function to complete.\n * @typedef {Iterable} QueueObject\n * @memberOf module:ControlFlow\n * @property {Function} length - a function returning the number of items\n * waiting to be processed. Invoke with `queue.length()`.\n * @property {boolean} started - a boolean indicating whether or not any\n * items have been pushed and processed by the queue.\n * @property {Function} running - a function returning the number of items\n * currently being processed. Invoke with `queue.running()`.\n * @property {Function} workersList - a function returning the array of items\n * currently being processed. Invoke with `queue.workersList()`.\n * @property {Function} idle - a function returning false if there are items\n * waiting or being processed, or true if not. Invoke with `queue.idle()`.\n * @property {number} concurrency - an integer for determining how many `worker`\n * functions should be run in parallel. This property can be changed after a\n * `queue` is created to alter the concurrency on-the-fly.\n * @property {number} payload - an integer that specifies how many items are\n * passed to the worker function at a time. only applies if this is a\n * [cargo]{@link module:ControlFlow.cargo} object\n * @property {AsyncFunction} push - add a new task to the `queue`. Calls `callback`\n * once the `worker` has finished processing the task. Instead of a single task,\n * a `tasks` array can be submitted. The respective callback is used for every\n * task in the list. Invoke with `queue.push(task, [callback])`,\n * @property {AsyncFunction} unshift - add a new task to the front of the `queue`.\n * Invoke with `queue.unshift(task, [callback])`.\n * @property {AsyncFunction} pushAsync - the same as `q.push`, except this returns\n * a promise that rejects if an error occurs.\n * @property {AsyncFunction} unshiftAsync - the same as `q.unshift`, except this returns\n * a promise that rejects if an error occurs.\n * @property {Function} remove - remove items from the queue that match a test\n * function.  The test function will be passed an object with a `data` property,\n * and a `priority` property, if this is a\n * [priorityQueue]{@link module:ControlFlow.priorityQueue} object.\n * Invoked with `queue.remove(testFn)`, where `testFn` is of the form\n * `function ({data, priority}) {}` and returns a Boolean.\n * @property {Function} saturated - a function that sets a callback that is\n * called when the number of running workers hits the `concurrency` limit, and\n * further tasks will be queued.  If the callback is omitted, `q.saturated()`\n * returns a promise for the next occurrence.\n * @property {Function} unsaturated - a function that sets a callback that is\n * called when the number of running workers is less than the `concurrency` &\n * `buffer` limits, and further tasks will not be queued. If the callback is\n * omitted, `q.unsaturated()` returns a promise for the next occurrence.\n * @property {number} buffer - A minimum threshold buffer in order to say that\n * the `queue` is `unsaturated`.\n * @property {Function} empty - a function that sets a callback that is called\n * when the last item from the `queue` is given to a `worker`. If the callback\n * is omitted, `q.empty()` returns a promise for the next occurrence.\n * @property {Function} drain - a function that sets a callback that is called\n * when the last item from the `queue` has returned from the `worker`. If the\n * callback is omitted, `q.drain()` returns a promise for the next occurrence.\n * @property {Function} error - a function that sets a callback that is called\n * when a task errors. Has the signature `function(error, task)`. If the\n * callback is omitted, `error()` returns a promise that rejects on the next\n * error.\n * @property {boolean} paused - a boolean for determining whether the queue is\n * in a paused state.\n * @property {Function} pause - a function that pauses the processing of tasks\n * until `resume()` is called. Invoke with `queue.pause()`.\n * @property {Function} resume - a function that resumes the processing of\n * queued tasks when the queue is paused. Invoke with `queue.resume()`.\n * @property {Function} kill - a function that removes the `drain` callback and\n * empties remaining tasks from the queue forcing it to go idle. No more tasks\n * should be pushed to the queue after calling this function. Invoke with `queue.kill()`.\n *\n * @example\n * const q = async.queue(worker, 2)\n * q.push(item1)\n * q.push(item2)\n * q.push(item3)\n * // queues are iterable, spread into an array to inspect\n * const items = [...q] // [item1, item2, item3]\n * // or use for of\n * for (let item of q) {\n *     console.log(item)\n * }\n *\n * q.drain(() => {\n *     console.log('all done')\n * })\n * // or\n * await q.drain()\n */\n\n/**\n * Creates a `queue` object with the specified `concurrency`. Tasks added to the\n * `queue` are processed in parallel (up to the `concurrency` limit). If all\n * `worker`s are in progress, the task is queued until one becomes available.\n * Once a `worker` completes a `task`, that `task`'s callback is called.\n *\n * @name queue\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {AsyncFunction} worker - An async function for processing a queued task.\n * If you want to handle errors from an individual task, pass a callback to\n * `q.push()`. Invoked with (task, callback).\n * @param {number} [concurrency=1] - An `integer` for determining how many\n * `worker` functions should be run in parallel.  If omitted, the concurrency\n * defaults to `1`.  If the concurrency is `0`, an error is thrown.\n * @returns {module:ControlFlow.QueueObject} A queue object to manage the tasks. Callbacks can be\n * attached as certain properties to listen for specific events during the\n * lifecycle of the queue.\n * @example\n *\n * // create a queue object with concurrency 2\n * var q = async.queue(function(task, callback) {\n *     console.log('hello ' + task.name);\n *     callback();\n * }, 2);\n *\n * // assign a callback\n * q.drain(function() {\n *     console.log('all items have been processed');\n * });\n * // or await the end\n * await q.drain()\n *\n * // assign an error callback\n * q.error(function(err, task) {\n *     console.error('task experienced an error');\n * });\n *\n * // add some items to the queue\n * q.push({name: 'foo'}, function(err) {\n *     console.log('finished processing foo');\n * });\n * // callback is optional\n * q.push({name: 'bar'});\n *\n * // add some items to the queue (batch-wise)\n * q.push([{name: 'baz'},{name: 'bay'},{name: 'bax'}], function(err) {\n *     console.log('finished processing item');\n * });\n *\n * // add some items to the front of the queue\n * q.unshift({name: 'bar'}, function (err) {\n *     console.log('finished processing bar');\n * });\n */\nfunction queue (worker, concurrency) {\n    var _worker = wrapAsync(worker);\n    return queue$1((items, cb) => {\n        _worker(items[0], cb);\n    }, concurrency, 1);\n}\n\n// Binary min-heap implementation used for priority queue.\n// Implementation is stable, i.e. push time is considered for equal priorities\nclass Heap {\n    constructor() {\n        this.heap = [];\n        this.pushCount = Number.MIN_SAFE_INTEGER;\n    }\n\n    get length() {\n        return this.heap.length;\n    }\n\n    empty () {\n        this.heap = [];\n        return this;\n    }\n\n    percUp(index) {\n        let p;\n\n        while (index > 0 && smaller(this.heap[index], this.heap[p=parent(index)])) {\n            let t = this.heap[index];\n            this.heap[index] = this.heap[p];\n            this.heap[p] = t;\n\n            index = p;\n        }\n    }\n\n    percDown(index) {\n        let l;\n\n        while ((l=leftChi(index)) < this.heap.length) {\n            if (l+1 < this.heap.length && smaller(this.heap[l+1], this.heap[l])) {\n                l = l+1;\n            }\n\n            if (smaller(this.heap[index], this.heap[l])) {\n                break;\n            }\n\n            let t = this.heap[index];\n            this.heap[index] = this.heap[l];\n            this.heap[l] = t;\n\n            index = l;\n        }\n    }\n\n    push(node) {\n        node.pushCount = ++this.pushCount;\n        this.heap.push(node);\n        this.percUp(this.heap.length-1);\n    }\n\n    unshift(node) {\n        return this.heap.push(node);\n    }\n\n    shift() {\n        let [top] = this.heap;\n\n        this.heap[0] = this.heap[this.heap.length-1];\n        this.heap.pop();\n        this.percDown(0);\n\n        return top;\n    }\n\n    toArray() {\n        return [...this];\n    }\n\n    *[Symbol.iterator] () {\n        for (let i = 0; i < this.heap.length; i++) {\n            yield this.heap[i].data;\n        }\n    }\n\n    remove (testFn) {\n        let j = 0;\n        for (let i = 0; i < this.heap.length; i++) {\n            if (!testFn(this.heap[i])) {\n                this.heap[j] = this.heap[i];\n                j++;\n            }\n        }\n\n        this.heap.splice(j);\n\n        for (let i = parent(this.heap.length-1); i >= 0; i--) {\n            this.percDown(i);\n        }\n\n        return this;\n    }\n}\n\nfunction leftChi(i) {\n    return (i<<1)+1;\n}\n\nfunction parent(i) {\n    return ((i+1)>>1)-1;\n}\n\nfunction smaller(x, y) {\n    if (x.priority !== y.priority) {\n        return x.priority < y.priority;\n    }\n    else {\n        return x.pushCount < y.pushCount;\n    }\n}\n\n/**\n * The same as [async.queue]{@link module:ControlFlow.queue} only tasks are assigned a priority and\n * completed in ascending priority order.\n *\n * @name priorityQueue\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.queue]{@link module:ControlFlow.queue}\n * @category Control Flow\n * @param {AsyncFunction} worker - An async function for processing a queued task.\n * If you want to handle errors from an individual task, pass a callback to\n * `q.push()`.\n * Invoked with (task, callback).\n * @param {number} concurrency - An `integer` for determining how many `worker`\n * functions should be run in parallel.  If omitted, the concurrency defaults to\n * `1`.  If the concurrency is `0`, an error is thrown.\n * @returns {module:ControlFlow.QueueObject} A priorityQueue object to manage the tasks. There are three\n * differences between `queue` and `priorityQueue` objects:\n * * `push(task, priority, [callback])` - `priority` should be a number. If an\n *   array of `tasks` is given, all tasks will be assigned the same priority.\n * * `pushAsync(task, priority, [callback])` - the same as `priorityQueue.push`,\n *   except this returns a promise that rejects if an error occurs.\n * * The `unshift` and `unshiftAsync` methods were removed.\n */\nfunction priorityQueue(worker, concurrency) {\n    // Start with a normal queue\n    var q = queue(worker, concurrency);\n\n    var {\n        push,\n        pushAsync\n    } = q;\n\n    q._tasks = new Heap();\n    q._createTaskItem = ({data, priority}, callback) => {\n        return {\n            data,\n            priority,\n            callback\n        };\n    };\n\n    function createDataItems(tasks, priority) {\n        if (!Array.isArray(tasks)) {\n            return {data: tasks, priority};\n        }\n        return tasks.map(data => { return {data, priority}; });\n    }\n\n    // Override push to accept second parameter representing priority\n    q.push = function(data, priority = 0, callback) {\n        return push(createDataItems(data, priority), callback);\n    };\n\n    q.pushAsync = function(data, priority = 0, callback) {\n        return pushAsync(createDataItems(data, priority), callback);\n    };\n\n    // Remove unshift functions\n    delete q.unshift;\n    delete q.unshiftAsync;\n\n    return q;\n}\n\n/**\n * Runs the `tasks` array of functions in parallel, without waiting until the\n * previous function has completed. Once any of the `tasks` complete or pass an\n * error to its callback, the main `callback` is immediately called. It's\n * equivalent to `Promise.race()`.\n *\n * @name race\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {Array} tasks - An array containing [async functions]{@link AsyncFunction}\n * to run. Each function can complete with an optional `result` value.\n * @param {Function} callback - A callback to run once any of the functions have\n * completed. This function gets an error or result from the first function that\n * completed. Invoked with (err, result).\n * @returns {Promise} a promise, if a callback is omitted\n * @example\n *\n * async.race([\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'one');\n *         }, 200);\n *     },\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'two');\n *         }, 100);\n *     }\n * ],\n * // main callback\n * function(err, result) {\n *     // the result will be equal to 'two' as it finishes earlier\n * });\n */\nfunction race(tasks, callback) {\n    callback = once$2(callback);\n    if (!Array.isArray(tasks)) return callback(new TypeError('First argument to race must be an array of functions'));\n    if (!tasks.length) return callback();\n    for (var i = 0, l = tasks.length; i < l; i++) {\n        wrapAsync(tasks[i])(callback);\n    }\n}\n\nvar race$1 = awaitify(race, 2);\n\n/**\n * Same as [`reduce`]{@link module:Collections.reduce}, only operates on `array` in reverse order.\n *\n * @name reduceRight\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.reduce]{@link module:Collections.reduce}\n * @alias foldr\n * @category Collection\n * @param {Array} array - A collection to iterate over.\n * @param {*} memo - The initial state of the reduction.\n * @param {AsyncFunction} iteratee - A function applied to each item in the\n * array to produce the next step in the reduction.\n * The `iteratee` should complete with the next state of the reduction.\n * If the iteratee completes with an error, the reduction is stopped and the\n * main `callback` is immediately called with the error.\n * Invoked with (memo, item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Result is the reduced value. Invoked with\n * (err, result).\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction reduceRight (array, memo, iteratee, callback) {\n    var reversed = [...array].reverse();\n    return reduce$1(reversed, memo, iteratee, callback);\n}\n\n/**\n * Wraps the async function in another function that always completes with a\n * result object, even when it errors.\n *\n * The result object has either the property `error` or `value`.\n *\n * @name reflect\n * @static\n * @memberOf module:Utils\n * @method\n * @category Util\n * @param {AsyncFunction} fn - The async function you want to wrap\n * @returns {Function} - A function that always passes null to it's callback as\n * the error. The second argument to the callback will be an `object` with\n * either an `error` or a `value` property.\n * @example\n *\n * async.parallel([\n *     async.reflect(function(callback) {\n *         // do some stuff ...\n *         callback(null, 'one');\n *     }),\n *     async.reflect(function(callback) {\n *         // do some more stuff but error ...\n *         callback('bad stuff happened');\n *     }),\n *     async.reflect(function(callback) {\n *         // do some more stuff ...\n *         callback(null, 'two');\n *     })\n * ],\n * // optional callback\n * function(err, results) {\n *     // values\n *     // results[0].value = 'one'\n *     // results[1].error = 'bad stuff happened'\n *     // results[2].value = 'two'\n * });\n */\nfunction reflect(fn) {\n    var _fn = wrapAsync(fn);\n    return initialParams(function reflectOn(args, reflectCallback) {\n        args.push((error, ...cbArgs) => {\n            let retVal = {};\n            if (error) {\n                retVal.error = error;\n            }\n            if (cbArgs.length > 0){\n                var value = cbArgs;\n                if (cbArgs.length <= 1) {\n                    [value] = cbArgs;\n                }\n                retVal.value = value;\n            }\n            reflectCallback(null, retVal);\n        });\n\n        return _fn.apply(this, args);\n    });\n}\n\n/**\n * A helper function that wraps an array or an object of functions with `reflect`.\n *\n * @name reflectAll\n * @static\n * @memberOf module:Utils\n * @method\n * @see [async.reflect]{@link module:Utils.reflect}\n * @category Util\n * @param {Array|Object|Iterable} tasks - The collection of\n * [async functions]{@link AsyncFunction} to wrap in `async.reflect`.\n * @returns {Array} Returns an array of async functions, each wrapped in\n * `async.reflect`\n * @example\n *\n * let tasks = [\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'one');\n *         }, 200);\n *     },\n *     function(callback) {\n *         // do some more stuff but error ...\n *         callback(new Error('bad stuff happened'));\n *     },\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'two');\n *         }, 100);\n *     }\n * ];\n *\n * async.parallel(async.reflectAll(tasks),\n * // optional callback\n * function(err, results) {\n *     // values\n *     // results[0].value = 'one'\n *     // results[1].error = Error('bad stuff happened')\n *     // results[2].value = 'two'\n * });\n *\n * // an example using an object instead of an array\n * let tasks = {\n *     one: function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'one');\n *         }, 200);\n *     },\n *     two: function(callback) {\n *         callback('two');\n *     },\n *     three: function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'three');\n *         }, 100);\n *     }\n * };\n *\n * async.parallel(async.reflectAll(tasks),\n * // optional callback\n * function(err, results) {\n *     // values\n *     // results.one.value = 'one'\n *     // results.two.error = 'two'\n *     // results.three.value = 'three'\n * });\n */\nfunction reflectAll(tasks) {\n    var results;\n    if (Array.isArray(tasks)) {\n        results = tasks.map(reflect);\n    } else {\n        results = {};\n        Object.keys(tasks).forEach(key => {\n            results[key] = reflect.call(this, tasks[key]);\n        });\n    }\n    return results;\n}\n\nfunction reject$2(eachfn, arr, _iteratee, callback) {\n    const iteratee = wrapAsync(_iteratee);\n    return _filter(eachfn, arr, (value, cb) => {\n        iteratee(value, (err, v) => {\n            cb(err, !v);\n        });\n    }, callback);\n}\n\n/**\n * The opposite of [`filter`]{@link module:Collections.filter}. Removes values that pass an `async` truth test.\n *\n * @name reject\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.filter]{@link module:Collections.filter}\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {Function} iteratee - An async truth test to apply to each item in\n * `coll`.\n * The should complete with a boolean value as its `result`.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback is passed\n * @example\n *\n * // dir1 is a directory that contains file1.txt, file2.txt\n * // dir2 is a directory that contains file3.txt, file4.txt\n * // dir3 is a directory that contains file5.txt\n *\n * const fileList = ['dir1/file1.txt','dir2/file3.txt','dir3/file6.txt'];\n *\n * // asynchronous function that checks if a file exists\n * function fileExists(file, callback) {\n *    fs.access(file, fs.constants.F_OK, (err) => {\n *        callback(null, !err);\n *    });\n * }\n *\n * // Using callbacks\n * async.reject(fileList, fileExists, function(err, results) {\n *    // [ 'dir3/file6.txt' ]\n *    // results now equals an array of the non-existing files\n * });\n *\n * // Using Promises\n * async.reject(fileList, fileExists)\n * .then( results => {\n *     console.log(results);\n *     // [ 'dir3/file6.txt' ]\n *     // results now equals an array of the non-existing files\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let results = await async.reject(fileList, fileExists);\n *         console.log(results);\n *         // [ 'dir3/file6.txt' ]\n *         // results now equals an array of the non-existing files\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction reject (coll, iteratee, callback) {\n    return reject$2(eachOf$1, coll, iteratee, callback)\n}\nvar reject$1 = awaitify(reject, 3);\n\n/**\n * The same as [`reject`]{@link module:Collections.reject} but runs a maximum of `limit` async operations at a\n * time.\n *\n * @name rejectLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.reject]{@link module:Collections.reject}\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {Function} iteratee - An async truth test to apply to each item in\n * `coll`.\n * The should complete with a boolean value as its `result`.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction rejectLimit (coll, limit, iteratee, callback) {\n    return reject$2(eachOfLimit$2(limit), coll, iteratee, callback)\n}\nvar rejectLimit$1 = awaitify(rejectLimit, 4);\n\n/**\n * The same as [`reject`]{@link module:Collections.reject} but runs only a single async operation at a time.\n *\n * @name rejectSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.reject]{@link module:Collections.reject}\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {Function} iteratee - An async truth test to apply to each item in\n * `coll`.\n * The should complete with a boolean value as its `result`.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback is passed\n */\nfunction rejectSeries (coll, iteratee, callback) {\n    return reject$2(eachOfSeries$1, coll, iteratee, callback)\n}\nvar rejectSeries$1 = awaitify(rejectSeries, 3);\n\nfunction constant(value) {\n    return function () {\n        return value;\n    }\n}\n\n/**\n * Attempts to get a successful response from `task` no more than `times` times\n * before returning an error. If the task is successful, the `callback` will be\n * passed the result of the successful task. If all attempts fail, the callback\n * will be passed the error and result (if any) of the final attempt.\n *\n * @name retry\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @see [async.retryable]{@link module:ControlFlow.retryable}\n * @param {Object|number} [opts = {times: 5, interval: 0}| 5] - Can be either an\n * object with `times` and `interval` or a number.\n * * `times` - The number of attempts to make before giving up.  The default\n *   is `5`.\n * * `interval` - The time to wait between retries, in milliseconds.  The\n *   default is `0`. The interval may also be specified as a function of the\n *   retry count (see example).\n * * `errorFilter` - An optional synchronous function that is invoked on\n *   erroneous result. If it returns `true` the retry attempts will continue;\n *   if the function returns `false` the retry flow is aborted with the current\n *   attempt's error and result being returned to the final callback.\n *   Invoked with (err).\n * * If `opts` is a number, the number specifies the number of times to retry,\n *   with the default interval of `0`.\n * @param {AsyncFunction} task - An async function to retry.\n * Invoked with (callback).\n * @param {Function} [callback] - An optional callback which is called when the\n * task has succeeded, or after the final failed attempt. It receives the `err`\n * and `result` arguments of the last attempt at completing the `task`. Invoked\n * with (err, results).\n * @returns {Promise} a promise if no callback provided\n *\n * @example\n *\n * // The `retry` function can be used as a stand-alone control flow by passing\n * // a callback, as shown below:\n *\n * // try calling apiMethod 3 times\n * async.retry(3, apiMethod, function(err, result) {\n *     // do something with the result\n * });\n *\n * // try calling apiMethod 3 times, waiting 200 ms between each retry\n * async.retry({times: 3, interval: 200}, apiMethod, function(err, result) {\n *     // do something with the result\n * });\n *\n * // try calling apiMethod 10 times with exponential backoff\n * // (i.e. intervals of 100, 200, 400, 800, 1600, ... milliseconds)\n * async.retry({\n *   times: 10,\n *   interval: function(retryCount) {\n *     return 50 * Math.pow(2, retryCount);\n *   }\n * }, apiMethod, function(err, result) {\n *     // do something with the result\n * });\n *\n * // try calling apiMethod the default 5 times no delay between each retry\n * async.retry(apiMethod, function(err, result) {\n *     // do something with the result\n * });\n *\n * // try calling apiMethod only when error condition satisfies, all other\n * // errors will abort the retry control flow and return to final callback\n * async.retry({\n *   errorFilter: function(err) {\n *     return err.message === 'Temporary error'; // only retry on a specific error\n *   }\n * }, apiMethod, function(err, result) {\n *     // do something with the result\n * });\n *\n * // to retry individual methods that are not as reliable within other\n * // control flow functions, use the `retryable` wrapper:\n * async.auto({\n *     users: api.getUsers.bind(api),\n *     payments: async.retryable(3, api.getPayments.bind(api))\n * }, function(err, results) {\n *     // do something with the results\n * });\n *\n */\nconst DEFAULT_TIMES = 5;\nconst DEFAULT_INTERVAL = 0;\n\nfunction retry$1(opts, task, callback) {\n    var options = {\n        times: DEFAULT_TIMES,\n        intervalFunc: constant(DEFAULT_INTERVAL)\n    };\n\n    if (arguments.length < 3 && typeof opts === 'function') {\n        callback = task || promiseCallback();\n        task = opts;\n    } else {\n        parseTimes(options, opts);\n        callback = callback || promiseCallback();\n    }\n\n    if (typeof task !== 'function') {\n        throw new Error(\"Invalid arguments for async.retry\");\n    }\n\n    var _task = wrapAsync(task);\n\n    var attempt = 1;\n    function retryAttempt() {\n        _task((err, ...args) => {\n            if (err === false) return\n            if (err && attempt++ < options.times &&\n                (typeof options.errorFilter != 'function' ||\n                    options.errorFilter(err))) {\n                setTimeout(retryAttempt, options.intervalFunc(attempt - 1));\n            } else {\n                callback(err, ...args);\n            }\n        });\n    }\n\n    retryAttempt();\n    return callback[PROMISE_SYMBOL]\n}\n\nfunction parseTimes(acc, t) {\n    if (typeof t === 'object') {\n        acc.times = +t.times || DEFAULT_TIMES;\n\n        acc.intervalFunc = typeof t.interval === 'function' ?\n            t.interval :\n            constant(+t.interval || DEFAULT_INTERVAL);\n\n        acc.errorFilter = t.errorFilter;\n    } else if (typeof t === 'number' || typeof t === 'string') {\n        acc.times = +t || DEFAULT_TIMES;\n    } else {\n        throw new Error(\"Invalid arguments for async.retry\");\n    }\n}\n\n/**\n * A close relative of [`retry`]{@link module:ControlFlow.retry}.  This method\n * wraps a task and makes it retryable, rather than immediately calling it\n * with retries.\n *\n * @name retryable\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.retry]{@link module:ControlFlow.retry}\n * @category Control Flow\n * @param {Object|number} [opts = {times: 5, interval: 0}| 5] - optional\n * options, exactly the same as from `retry`, except for a `opts.arity` that\n * is the arity of the `task` function, defaulting to `task.length`\n * @param {AsyncFunction} task - the asynchronous function to wrap.\n * This function will be passed any arguments passed to the returned wrapper.\n * Invoked with (...args, callback).\n * @returns {AsyncFunction} The wrapped function, which when invoked, will\n * retry on an error, based on the parameters specified in `opts`.\n * This function will accept the same parameters as `task`.\n * @example\n *\n * async.auto({\n *     dep1: async.retryable(3, getFromFlakyService),\n *     process: [\"dep1\", async.retryable(3, function (results, cb) {\n *         maybeProcessData(results.dep1, cb);\n *     })]\n * }, callback);\n */\nfunction retryable (opts, task) {\n    if (!task) {\n        task = opts;\n        opts = null;\n    }\n    let arity = (opts && opts.arity) || task.length;\n    if (isAsync(task)) {\n        arity += 1;\n    }\n    var _task = wrapAsync(task);\n    return initialParams((args, callback) => {\n        if (args.length < arity - 1 || callback == null) {\n            args.push(callback);\n            callback = promiseCallback();\n        }\n        function taskFn(cb) {\n            _task(...args, cb);\n        }\n\n        if (opts) retry$1(opts, taskFn, callback);\n        else retry$1(taskFn, callback);\n\n        return callback[PROMISE_SYMBOL]\n    });\n}\n\n/**\n * Run the functions in the `tasks` collection in series, each one running once\n * the previous function has completed. If any functions in the series pass an\n * error to its callback, no more functions are run, and `callback` is\n * immediately called with the value of the error. Otherwise, `callback`\n * receives an array of results when `tasks` have completed.\n *\n * It is also possible to use an object instead of an array. Each property will\n * be run as a function, and the results will be passed to the final `callback`\n * as an object instead of an array. This can be a more readable way of handling\n *  results from {@link async.series}.\n *\n * **Note** that while many implementations preserve the order of object\n * properties, the [ECMAScript Language Specification](http://www.ecma-international.org/ecma-262/5.1/#sec-8.6)\n * explicitly states that\n *\n * > The mechanics and order of enumerating the properties is not specified.\n *\n * So if you rely on the order in which your series of functions are executed,\n * and want this to work on all platforms, consider using an array.\n *\n * @name series\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {Array|Iterable|AsyncIterable|Object} tasks - A collection containing\n * [async functions]{@link AsyncFunction} to run in series.\n * Each function can complete with any number of optional `result` values.\n * @param {Function} [callback] - An optional callback to run once all the\n * functions have completed. This function gets a results array (or object)\n * containing all the result arguments passed to the `task` callbacks. Invoked\n * with (err, result).\n * @return {Promise} a promise, if no callback is passed\n * @example\n *\n * //Using Callbacks\n * async.series([\n *     function(callback) {\n *         setTimeout(function() {\n *             // do some async task\n *             callback(null, 'one');\n *         }, 200);\n *     },\n *     function(callback) {\n *         setTimeout(function() {\n *             // then do another async task\n *             callback(null, 'two');\n *         }, 100);\n *     }\n * ], function(err, results) {\n *     console.log(results);\n *     // results is equal to ['one','two']\n * });\n *\n * // an example using objects instead of arrays\n * async.series({\n *     one: function(callback) {\n *         setTimeout(function() {\n *             // do some async task\n *             callback(null, 1);\n *         }, 200);\n *     },\n *     two: function(callback) {\n *         setTimeout(function() {\n *             // then do another async task\n *             callback(null, 2);\n *         }, 100);\n *     }\n * }, function(err, results) {\n *     console.log(results);\n *     // results is equal to: { one: 1, two: 2 }\n * });\n *\n * //Using Promises\n * async.series([\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'one');\n *         }, 200);\n *     },\n *     function(callback) {\n *         setTimeout(function() {\n *             callback(null, 'two');\n *         }, 100);\n *     }\n * ]).then(results => {\n *     console.log(results);\n *     // results is equal to ['one','two']\n * }).catch(err => {\n *     console.log(err);\n * });\n *\n * // an example using an object instead of an array\n * async.series({\n *     one: function(callback) {\n *         setTimeout(function() {\n *             // do some async task\n *             callback(null, 1);\n *         }, 200);\n *     },\n *     two: function(callback) {\n *         setTimeout(function() {\n *             // then do another async task\n *             callback(null, 2);\n *         }, 100);\n *     }\n * }).then(results => {\n *     console.log(results);\n *     // results is equal to: { one: 1, two: 2 }\n * }).catch(err => {\n *     console.log(err);\n * });\n *\n * //Using async/await\n * async () => {\n *     try {\n *         let results = await async.series([\n *             function(callback) {\n *                 setTimeout(function() {\n *                     // do some async task\n *                     callback(null, 'one');\n *                 }, 200);\n *             },\n *             function(callback) {\n *                 setTimeout(function() {\n *                     // then do another async task\n *                     callback(null, 'two');\n *                 }, 100);\n *             }\n *         ]);\n *         console.log(results);\n *         // results is equal to ['one','two']\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * // an example using an object instead of an array\n * async () => {\n *     try {\n *         let results = await async.parallel({\n *             one: function(callback) {\n *                 setTimeout(function() {\n *                     // do some async task\n *                     callback(null, 1);\n *                 }, 200);\n *             },\n *            two: function(callback) {\n *                 setTimeout(function() {\n *                     // then do another async task\n *                     callback(null, 2);\n *                 }, 100);\n *            }\n *         });\n *         console.log(results);\n *         // results is equal to: { one: 1, two: 2 }\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction series(tasks, callback) {\n    return _parallel(eachOfSeries$1, tasks, callback);\n}\n\n/**\n * Returns `true` if at least one element in the `coll` satisfies an async test.\n * If any iteratee call returns `true`, the main `callback` is immediately\n * called.\n *\n * @name some\n * @static\n * @memberOf module:Collections\n * @method\n * @alias any\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async truth test to apply to each item\n * in the collections in parallel.\n * The iteratee should complete with a boolean `result` value.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called as soon as any\n * iteratee returns `true`, or after all the iteratee functions have finished.\n * Result will be either `true` or `false` depending on the values of the async\n * tests. Invoked with (err, result).\n * @returns {Promise} a promise, if no callback provided\n * @example\n *\n * // dir1 is a directory that contains file1.txt, file2.txt\n * // dir2 is a directory that contains file3.txt, file4.txt\n * // dir3 is a directory that contains file5.txt\n * // dir4 does not exist\n *\n * // asynchronous function that checks if a file exists\n * function fileExists(file, callback) {\n *    fs.access(file, fs.constants.F_OK, (err) => {\n *        callback(null, !err);\n *    });\n * }\n *\n * // Using callbacks\n * async.some(['dir1/missing.txt','dir2/missing.txt','dir3/file5.txt'], fileExists,\n *    function(err, result) {\n *        console.log(result);\n *        // true\n *        // result is true since some file in the list exists\n *    }\n *);\n *\n * async.some(['dir1/missing.txt','dir2/missing.txt','dir4/missing.txt'], fileExists,\n *    function(err, result) {\n *        console.log(result);\n *        // false\n *        // result is false since none of the files exists\n *    }\n *);\n *\n * // Using Promises\n * async.some(['dir1/missing.txt','dir2/missing.txt','dir3/file5.txt'], fileExists)\n * .then( result => {\n *     console.log(result);\n *     // true\n *     // result is true since some file in the list exists\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * async.some(['dir1/missing.txt','dir2/missing.txt','dir4/missing.txt'], fileExists)\n * .then( result => {\n *     console.log(result);\n *     // false\n *     // result is false since none of the files exists\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let result = await async.some(['dir1/missing.txt','dir2/missing.txt','dir3/file5.txt'], fileExists);\n *         console.log(result);\n *         // true\n *         // result is true since some file in the list exists\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n * async () => {\n *     try {\n *         let result = await async.some(['dir1/missing.txt','dir2/missing.txt','dir4/missing.txt'], fileExists);\n *         console.log(result);\n *         // false\n *         // result is false since none of the files exists\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction some(coll, iteratee, callback) {\n    return _createTester(Boolean, res => res)(eachOf$1, coll, iteratee, callback)\n}\nvar some$1 = awaitify(some, 3);\n\n/**\n * The same as [`some`]{@link module:Collections.some} but runs a maximum of `limit` async operations at a time.\n *\n * @name someLimit\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.some]{@link module:Collections.some}\n * @alias anyLimit\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - An async truth test to apply to each item\n * in the collections in parallel.\n * The iteratee should complete with a boolean `result` value.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called as soon as any\n * iteratee returns `true`, or after all the iteratee functions have finished.\n * Result will be either `true` or `false` depending on the values of the async\n * tests. Invoked with (err, result).\n * @returns {Promise} a promise, if no callback provided\n */\nfunction someLimit(coll, limit, iteratee, callback) {\n    return _createTester(Boolean, res => res)(eachOfLimit$2(limit), coll, iteratee, callback)\n}\nvar someLimit$1 = awaitify(someLimit, 4);\n\n/**\n * The same as [`some`]{@link module:Collections.some} but runs only a single async operation at a time.\n *\n * @name someSeries\n * @static\n * @memberOf module:Collections\n * @method\n * @see [async.some]{@link module:Collections.some}\n * @alias anySeries\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async truth test to apply to each item\n * in the collections in series.\n * The iteratee should complete with a boolean `result` value.\n * Invoked with (item, callback).\n * @param {Function} [callback] - A callback which is called as soon as any\n * iteratee returns `true`, or after all the iteratee functions have finished.\n * Result will be either `true` or `false` depending on the values of the async\n * tests. Invoked with (err, result).\n * @returns {Promise} a promise, if no callback provided\n */\nfunction someSeries(coll, iteratee, callback) {\n    return _createTester(Boolean, res => res)(eachOfSeries$1, coll, iteratee, callback)\n}\nvar someSeries$1 = awaitify(someSeries, 3);\n\n/**\n * Sorts a list by the results of running each `coll` value through an async\n * `iteratee`.\n *\n * @name sortBy\n * @static\n * @memberOf module:Collections\n * @method\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {AsyncFunction} iteratee - An async function to apply to each item in\n * `coll`.\n * The iteratee should complete with a value to use as the sort criteria as\n * its `result`.\n * Invoked with (item, callback).\n * @param {Function} callback - A callback which is called after all the\n * `iteratee` functions have finished, or an error occurs. Results is the items\n * from the original `coll` sorted by the values returned by the `iteratee`\n * calls. Invoked with (err, results).\n * @returns {Promise} a promise, if no callback passed\n * @example\n *\n * // bigfile.txt is a file that is 251100 bytes in size\n * // mediumfile.txt is a file that is 11000 bytes in size\n * // smallfile.txt is a file that is 121 bytes in size\n *\n * // asynchronous function that returns the file size in bytes\n * function getFileSizeInBytes(file, callback) {\n *     fs.stat(file, function(err, stat) {\n *         if (err) {\n *             return callback(err);\n *         }\n *         callback(null, stat.size);\n *     });\n * }\n *\n * // Using callbacks\n * async.sortBy(['mediumfile.txt','smallfile.txt','bigfile.txt'], getFileSizeInBytes,\n *     function(err, results) {\n *         if (err) {\n *             console.log(err);\n *         } else {\n *             console.log(results);\n *             // results is now the original array of files sorted by\n *             // file size (ascending by default), e.g.\n *             // [ 'smallfile.txt', 'mediumfile.txt', 'bigfile.txt']\n *         }\n *     }\n * );\n *\n * // By modifying the callback parameter the\n * // sorting order can be influenced:\n *\n * // ascending order\n * async.sortBy(['mediumfile.txt','smallfile.txt','bigfile.txt'], function(file, callback) {\n *     getFileSizeInBytes(file, function(getFileSizeErr, fileSize) {\n *         if (getFileSizeErr) return callback(getFileSizeErr);\n *         callback(null, fileSize);\n *     });\n * }, function(err, results) {\n *         if (err) {\n *             console.log(err);\n *         } else {\n *             console.log(results);\n *             // results is now the original array of files sorted by\n *             // file size (ascending by default), e.g.\n *             // [ 'smallfile.txt', 'mediumfile.txt', 'bigfile.txt']\n *         }\n *     }\n * );\n *\n * // descending order\n * async.sortBy(['bigfile.txt','mediumfile.txt','smallfile.txt'], function(file, callback) {\n *     getFileSizeInBytes(file, function(getFileSizeErr, fileSize) {\n *         if (getFileSizeErr) {\n *             return callback(getFileSizeErr);\n *         }\n *         callback(null, fileSize * -1);\n *     });\n * }, function(err, results) {\n *         if (err) {\n *             console.log(err);\n *         } else {\n *             console.log(results);\n *             // results is now the original array of files sorted by\n *             // file size (ascending by default), e.g.\n *             // [ 'bigfile.txt', 'mediumfile.txt', 'smallfile.txt']\n *         }\n *     }\n * );\n *\n * // Error handling\n * async.sortBy(['mediumfile.txt','smallfile.txt','missingfile.txt'], getFileSizeInBytes,\n *     function(err, results) {\n *         if (err) {\n *             console.log(err);\n *             // [ Error: ENOENT: no such file or directory ]\n *         } else {\n *             console.log(results);\n *         }\n *     }\n * );\n *\n * // Using Promises\n * async.sortBy(['mediumfile.txt','smallfile.txt','bigfile.txt'], getFileSizeInBytes)\n * .then( results => {\n *     console.log(results);\n *     // results is now the original array of files sorted by\n *     // file size (ascending by default), e.g.\n *     // [ 'smallfile.txt', 'mediumfile.txt', 'bigfile.txt']\n * }).catch( err => {\n *     console.log(err);\n * });\n *\n * // Error handling\n * async.sortBy(['mediumfile.txt','smallfile.txt','missingfile.txt'], getFileSizeInBytes)\n * .then( results => {\n *     console.log(results);\n * }).catch( err => {\n *     console.log(err);\n *     // [ Error: ENOENT: no such file or directory ]\n * });\n *\n * // Using async/await\n * (async () => {\n *     try {\n *         let results = await async.sortBy(['bigfile.txt','mediumfile.txt','smallfile.txt'], getFileSizeInBytes);\n *         console.log(results);\n *         // results is now the original array of files sorted by\n *         // file size (ascending by default), e.g.\n *         // [ 'smallfile.txt', 'mediumfile.txt', 'bigfile.txt']\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * })();\n *\n * // Error handling\n * async () => {\n *     try {\n *         let results = await async.sortBy(['missingfile.txt','mediumfile.txt','smallfile.txt'], getFileSizeInBytes);\n *         console.log(results);\n *     }\n *     catch (err) {\n *         console.log(err);\n *         // [ Error: ENOENT: no such file or directory ]\n *     }\n * }\n *\n */\nfunction sortBy (coll, iteratee, callback) {\n    var _iteratee = wrapAsync(iteratee);\n    return map$1(coll, (x, iterCb) => {\n        _iteratee(x, (err, criteria) => {\n            if (err) return iterCb(err);\n            iterCb(err, {value: x, criteria});\n        });\n    }, (err, results) => {\n        if (err) return callback(err);\n        callback(null, results.sort(comparator).map(v => v.value));\n    });\n\n    function comparator(left, right) {\n        var a = left.criteria, b = right.criteria;\n        return a < b ? -1 : a > b ? 1 : 0;\n    }\n}\nvar sortBy$1 = awaitify(sortBy, 3);\n\n/**\n * Sets a time limit on an asynchronous function. If the function does not call\n * its callback within the specified milliseconds, it will be called with a\n * timeout error. The code property for the error object will be `'ETIMEDOUT'`.\n *\n * @name timeout\n * @static\n * @memberOf module:Utils\n * @method\n * @category Util\n * @param {AsyncFunction} asyncFn - The async function to limit in time.\n * @param {number} milliseconds - The specified time limit.\n * @param {*} [info] - Any variable you want attached (`string`, `object`, etc)\n * to timeout Error for more information..\n * @returns {AsyncFunction} Returns a wrapped function that can be used with any\n * of the control flow functions.\n * Invoke this function with the same parameters as you would `asyncFunc`.\n * @example\n *\n * function myFunction(foo, callback) {\n *     doAsyncTask(foo, function(err, data) {\n *         // handle errors\n *         if (err) return callback(err);\n *\n *         // do some stuff ...\n *\n *         // return processed data\n *         return callback(null, data);\n *     });\n * }\n *\n * var wrapped = async.timeout(myFunction, 1000);\n *\n * // call `wrapped` as you would `myFunction`\n * wrapped({ bar: 'bar' }, function(err, data) {\n *     // if `myFunction` takes < 1000 ms to execute, `err`\n *     // and `data` will have their expected values\n *\n *     // else `err` will be an Error with the code 'ETIMEDOUT'\n * });\n */\nfunction timeout(asyncFn, milliseconds, info) {\n    var fn = wrapAsync(asyncFn);\n\n    return initialParams((args, callback) => {\n        var timedOut = false;\n        var timer;\n\n        function timeoutCallback() {\n            var name = asyncFn.name || 'anonymous';\n            var error  = new Error('Callback function \"' + name + '\" timed out.');\n            error.code = 'ETIMEDOUT';\n            if (info) {\n                error.info = info;\n            }\n            timedOut = true;\n            callback(error);\n        }\n\n        args.push((...cbArgs) => {\n            if (!timedOut) {\n                callback(...cbArgs);\n                clearTimeout(timer);\n            }\n        });\n\n        // setup timer and call original function\n        timer = setTimeout(timeoutCallback, milliseconds);\n        fn(...args);\n    });\n}\n\nfunction range(size) {\n    var result = Array(size);\n    while (size--) {\n        result[size] = size;\n    }\n    return result;\n}\n\n/**\n * The same as [times]{@link module:ControlFlow.times} but runs a maximum of `limit` async operations at a\n * time.\n *\n * @name timesLimit\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.times]{@link module:ControlFlow.times}\n * @category Control Flow\n * @param {number} count - The number of times to run the function.\n * @param {number} limit - The maximum number of async operations at a time.\n * @param {AsyncFunction} iteratee - The async function to call `n` times.\n * Invoked with the iteration index and a callback: (n, next).\n * @param {Function} callback - see [async.map]{@link module:Collections.map}.\n * @returns {Promise} a promise, if no callback is provided\n */\nfunction timesLimit(count, limit, iteratee, callback) {\n    var _iteratee = wrapAsync(iteratee);\n    return mapLimit$1(range(count), limit, _iteratee, callback);\n}\n\n/**\n * Calls the `iteratee` function `n` times, and accumulates results in the same\n * manner you would use with [map]{@link module:Collections.map}.\n *\n * @name times\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.map]{@link module:Collections.map}\n * @category Control Flow\n * @param {number} n - The number of times to run the function.\n * @param {AsyncFunction} iteratee - The async function to call `n` times.\n * Invoked with the iteration index and a callback: (n, next).\n * @param {Function} callback - see {@link module:Collections.map}.\n * @returns {Promise} a promise, if no callback is provided\n * @example\n *\n * // Pretend this is some complicated async factory\n * var createUser = function(id, callback) {\n *     callback(null, {\n *         id: 'user' + id\n *     });\n * };\n *\n * // generate 5 users\n * async.times(5, function(n, next) {\n *     createUser(n, function(err, user) {\n *         next(err, user);\n *     });\n * }, function(err, users) {\n *     // we should now have 5 users\n * });\n */\nfunction times (n, iteratee, callback) {\n    return timesLimit(n, Infinity, iteratee, callback)\n}\n\n/**\n * The same as [times]{@link module:ControlFlow.times} but runs only a single async operation at a time.\n *\n * @name timesSeries\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.times]{@link module:ControlFlow.times}\n * @category Control Flow\n * @param {number} n - The number of times to run the function.\n * @param {AsyncFunction} iteratee - The async function to call `n` times.\n * Invoked with the iteration index and a callback: (n, next).\n * @param {Function} callback - see {@link module:Collections.map}.\n * @returns {Promise} a promise, if no callback is provided\n */\nfunction timesSeries (n, iteratee, callback) {\n    return timesLimit(n, 1, iteratee, callback)\n}\n\n/**\n * A relative of `reduce`.  Takes an Object or Array, and iterates over each\n * element in parallel, each step potentially mutating an `accumulator` value.\n * The type of the accumulator defaults to the type of collection passed in.\n *\n * @name transform\n * @static\n * @memberOf module:Collections\n * @method\n * @category Collection\n * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.\n * @param {*} [accumulator] - The initial state of the transform.  If omitted,\n * it will default to an empty Object or Array, depending on the type of `coll`\n * @param {AsyncFunction} iteratee - A function applied to each item in the\n * collection that potentially modifies the accumulator.\n * Invoked with (accumulator, item, key, callback).\n * @param {Function} [callback] - A callback which is called after all the\n * `iteratee` functions have finished. Result is the transformed accumulator.\n * Invoked with (err, result).\n * @returns {Promise} a promise, if no callback provided\n * @example\n *\n * // file1.txt is a file that is 1000 bytes in size\n * // file2.txt is a file that is 2000 bytes in size\n * // file3.txt is a file that is 3000 bytes in size\n *\n * // helper function that returns human-readable size format from bytes\n * function formatBytes(bytes, decimals = 2) {\n *   // implementation not included for brevity\n *   return humanReadbleFilesize;\n * }\n *\n * const fileList = ['file1.txt','file2.txt','file3.txt'];\n *\n * // asynchronous function that returns the file size, transformed to human-readable format\n * // e.g. 1024 bytes = 1KB, 1234 bytes = 1.21 KB, 1048576 bytes = 1MB, etc.\n * function transformFileSize(acc, value, key, callback) {\n *     fs.stat(value, function(err, stat) {\n *         if (err) {\n *             return callback(err);\n *         }\n *         acc[key] = formatBytes(stat.size);\n *         callback(null);\n *     });\n * }\n *\n * // Using callbacks\n * async.transform(fileList, transformFileSize, function(err, result) {\n *     if(err) {\n *         console.log(err);\n *     } else {\n *         console.log(result);\n *         // [ '1000 Bytes', '1.95 KB', '2.93 KB' ]\n *     }\n * });\n *\n * // Using Promises\n * async.transform(fileList, transformFileSize)\n * .then(result => {\n *     console.log(result);\n *     // [ '1000 Bytes', '1.95 KB', '2.93 KB' ]\n * }).catch(err => {\n *     console.log(err);\n * });\n *\n * // Using async/await\n * (async () => {\n *     try {\n *         let result = await async.transform(fileList, transformFileSize);\n *         console.log(result);\n *         // [ '1000 Bytes', '1.95 KB', '2.93 KB' ]\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * })();\n *\n * @example\n *\n * // file1.txt is a file that is 1000 bytes in size\n * // file2.txt is a file that is 2000 bytes in size\n * // file3.txt is a file that is 3000 bytes in size\n *\n * // helper function that returns human-readable size format from bytes\n * function formatBytes(bytes, decimals = 2) {\n *   // implementation not included for brevity\n *   return humanReadbleFilesize;\n * }\n *\n * const fileMap = { f1: 'file1.txt', f2: 'file2.txt', f3: 'file3.txt' };\n *\n * // asynchronous function that returns the file size, transformed to human-readable format\n * // e.g. 1024 bytes = 1KB, 1234 bytes = 1.21 KB, 1048576 bytes = 1MB, etc.\n * function transformFileSize(acc, value, key, callback) {\n *     fs.stat(value, function(err, stat) {\n *         if (err) {\n *             return callback(err);\n *         }\n *         acc[key] = formatBytes(stat.size);\n *         callback(null);\n *     });\n * }\n *\n * // Using callbacks\n * async.transform(fileMap, transformFileSize, function(err, result) {\n *     if(err) {\n *         console.log(err);\n *     } else {\n *         console.log(result);\n *         // { f1: '1000 Bytes', f2: '1.95 KB', f3: '2.93 KB' }\n *     }\n * });\n *\n * // Using Promises\n * async.transform(fileMap, transformFileSize)\n * .then(result => {\n *     console.log(result);\n *     // { f1: '1000 Bytes', f2: '1.95 KB', f3: '2.93 KB' }\n * }).catch(err => {\n *     console.log(err);\n * });\n *\n * // Using async/await\n * async () => {\n *     try {\n *         let result = await async.transform(fileMap, transformFileSize);\n *         console.log(result);\n *         // { f1: '1000 Bytes', f2: '1.95 KB', f3: '2.93 KB' }\n *     }\n *     catch (err) {\n *         console.log(err);\n *     }\n * }\n *\n */\nfunction transform$1 (coll, accumulator, iteratee, callback) {\n    if (arguments.length <= 3 && typeof accumulator === 'function') {\n        callback = iteratee;\n        iteratee = accumulator;\n        accumulator = Array.isArray(coll) ? [] : {};\n    }\n    callback = once$2(callback || promiseCallback());\n    var _iteratee = wrapAsync(iteratee);\n\n    eachOf$1(coll, (v, k, cb) => {\n        _iteratee(accumulator, v, k, cb);\n    }, err => callback(err, accumulator));\n    return callback[PROMISE_SYMBOL]\n}\n\n/**\n * It runs each task in series but stops whenever any of the functions were\n * successful. If one of the tasks were successful, the `callback` will be\n * passed the result of the successful task. If all tasks fail, the callback\n * will be passed the error and result (if any) of the final attempt.\n *\n * @name tryEach\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {Array|Iterable|AsyncIterable|Object} tasks - A collection containing functions to\n * run, each function is passed a `callback(err, result)` it must call on\n * completion with an error `err` (which can be `null`) and an optional `result`\n * value.\n * @param {Function} [callback] - An optional callback which is called when one\n * of the tasks has succeeded, or all have failed. It receives the `err` and\n * `result` arguments of the last attempt at completing the `task`. Invoked with\n * (err, results).\n * @returns {Promise} a promise, if no callback is passed\n * @example\n * async.tryEach([\n *     function getDataFromFirstWebsite(callback) {\n *         // Try getting the data from the first website\n *         callback(err, data);\n *     },\n *     function getDataFromSecondWebsite(callback) {\n *         // First website failed,\n *         // Try getting the data from the backup website\n *         callback(err, data);\n *     }\n * ],\n * // optional callback\n * function(err, results) {\n *     Now do something with the data.\n * });\n *\n */\nfunction tryEach(tasks, callback) {\n    var error = null;\n    var result;\n    return eachSeries$1(tasks, (task, taskCb) => {\n        wrapAsync(task)((err, ...args) => {\n            if (err === false) return taskCb(err);\n\n            if (args.length < 2) {\n                [result] = args;\n            } else {\n                result = args;\n            }\n            error = err;\n            taskCb(err ? null : {});\n        });\n    }, () => callback(error, result));\n}\n\nvar tryEach$1 = awaitify(tryEach);\n\n/**\n * Undoes a [memoize]{@link module:Utils.memoize}d function, reverting it to the original,\n * unmemoized form. Handy for testing.\n *\n * @name unmemoize\n * @static\n * @memberOf module:Utils\n * @method\n * @see [async.memoize]{@link module:Utils.memoize}\n * @category Util\n * @param {AsyncFunction} fn - the memoized function\n * @returns {AsyncFunction} a function that calls the original unmemoized function\n */\nfunction unmemoize(fn) {\n    return (...args) => {\n        return (fn.unmemoized || fn)(...args);\n    };\n}\n\n/**\n * Repeatedly call `iteratee`, while `test` returns `true`. Calls `callback` when\n * stopped, or an error occurs.\n *\n * @name whilst\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {AsyncFunction} test - asynchronous truth test to perform before each\n * execution of `iteratee`. Invoked with (callback).\n * @param {AsyncFunction} iteratee - An async function which is called each time\n * `test` passes. Invoked with (callback).\n * @param {Function} [callback] - A callback which is called after the test\n * function has failed and repeated execution of `iteratee` has stopped. `callback`\n * will be passed an error and any arguments passed to the final `iteratee`'s\n * callback. Invoked with (err, [results]);\n * @returns {Promise} a promise, if no callback is passed\n * @example\n *\n * var count = 0;\n * async.whilst(\n *     function test(cb) { cb(null, count < 5); },\n *     function iter(callback) {\n *         count++;\n *         setTimeout(function() {\n *             callback(null, count);\n *         }, 1000);\n *     },\n *     function (err, n) {\n *         // 5 seconds have passed, n = 5\n *     }\n * );\n */\nfunction whilst(test, iteratee, callback) {\n    callback = onlyOnce(callback);\n    var _fn = wrapAsync(iteratee);\n    var _test = wrapAsync(test);\n    var results = [];\n\n    function next(err, ...rest) {\n        if (err) return callback(err);\n        results = rest;\n        if (err === false) return;\n        _test(check);\n    }\n\n    function check(err, truth) {\n        if (err) return callback(err);\n        if (err === false) return;\n        if (!truth) return callback(null, ...results);\n        _fn(next);\n    }\n\n    return _test(check);\n}\nvar whilst$1 = awaitify(whilst, 3);\n\n/**\n * Repeatedly call `iteratee` until `test` returns `true`. Calls `callback` when\n * stopped, or an error occurs. `callback` will be passed an error and any\n * arguments passed to the final `iteratee`'s callback.\n *\n * The inverse of [whilst]{@link module:ControlFlow.whilst}.\n *\n * @name until\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @see [async.whilst]{@link module:ControlFlow.whilst}\n * @category Control Flow\n * @param {AsyncFunction} test - asynchronous truth test to perform before each\n * execution of `iteratee`. Invoked with (callback).\n * @param {AsyncFunction} iteratee - An async function which is called each time\n * `test` fails. Invoked with (callback).\n * @param {Function} [callback] - A callback which is called after the test\n * function has passed and repeated execution of `iteratee` has stopped. `callback`\n * will be passed an error and any arguments passed to the final `iteratee`'s\n * callback. Invoked with (err, [results]);\n * @returns {Promise} a promise, if a callback is not passed\n *\n * @example\n * const results = []\n * let finished = false\n * async.until(function test(cb) {\n *     cb(null, finished)\n * }, function iter(next) {\n *     fetchPage(url, (err, body) => {\n *         if (err) return next(err)\n *         results = results.concat(body.objects)\n *         finished = !!body.next\n *         next(err)\n *     })\n * }, function done (err) {\n *     // all pages have been fetched\n * })\n */\nfunction until(test, iteratee, callback) {\n    const _test = wrapAsync(test);\n    return whilst$1((cb) => _test((err, truth) => cb (err, !truth)), iteratee, callback);\n}\n\n/**\n * Runs the `tasks` array of functions in series, each passing their results to\n * the next in the array. However, if any of the `tasks` pass an error to their\n * own callback, the next function is not executed, and the main `callback` is\n * immediately called with the error.\n *\n * @name waterfall\n * @static\n * @memberOf module:ControlFlow\n * @method\n * @category Control Flow\n * @param {Array} tasks - An array of [async functions]{@link AsyncFunction}\n * to run.\n * Each function should complete with any number of `result` values.\n * The `result` values will be passed as arguments, in order, to the next task.\n * @param {Function} [callback] - An optional callback to run once all the\n * functions have completed. This will be passed the results of the last task's\n * callback. Invoked with (err, [results]).\n * @returns {Promise} a promise, if a callback is omitted\n * @example\n *\n * async.waterfall([\n *     function(callback) {\n *         callback(null, 'one', 'two');\n *     },\n *     function(arg1, arg2, callback) {\n *         // arg1 now equals 'one' and arg2 now equals 'two'\n *         callback(null, 'three');\n *     },\n *     function(arg1, callback) {\n *         // arg1 now equals 'three'\n *         callback(null, 'done');\n *     }\n * ], function (err, result) {\n *     // result now equals 'done'\n * });\n *\n * // Or, with named functions:\n * async.waterfall([\n *     myFirstFunction,\n *     mySecondFunction,\n *     myLastFunction,\n * ], function (err, result) {\n *     // result now equals 'done'\n * });\n * function myFirstFunction(callback) {\n *     callback(null, 'one', 'two');\n * }\n * function mySecondFunction(arg1, arg2, callback) {\n *     // arg1 now equals 'one' and arg2 now equals 'two'\n *     callback(null, 'three');\n * }\n * function myLastFunction(arg1, callback) {\n *     // arg1 now equals 'three'\n *     callback(null, 'done');\n * }\n */\nfunction waterfall (tasks, callback) {\n    callback = once$2(callback);\n    if (!Array.isArray(tasks)) return callback(new Error('First argument to waterfall must be an array of functions'));\n    if (!tasks.length) return callback();\n    var taskIndex = 0;\n\n    function nextTask(args) {\n        var task = wrapAsync(tasks[taskIndex++]);\n        task(...args, onlyOnce(next));\n    }\n\n    function next(err, ...args) {\n        if (err === false) return\n        if (err || taskIndex === tasks.length) {\n            return callback(err, ...args);\n        }\n        nextTask(args);\n    }\n\n    nextTask([]);\n}\n\nvar waterfall$1 = awaitify(waterfall);\n\n/**\n * An \"async function\" in the context of Async is an asynchronous function with\n * a variable number of parameters, with the final parameter being a callback.\n * (`function (arg1, arg2, ..., callback) {}`)\n * The final callback is of the form `callback(err, results...)`, which must be\n * called once the function is completed.  The callback should be called with a\n * Error as its first argument to signal that an error occurred.\n * Otherwise, if no error occurred, it should be called with `null` as the first\n * argument, and any additional `result` arguments that may apply, to signal\n * successful completion.\n * The callback must be called exactly once, ideally on a later tick of the\n * JavaScript event loop.\n *\n * This type of function is also referred to as a \"Node-style async function\",\n * or a \"continuation passing-style function\" (CPS). Most of the methods of this\n * library are themselves CPS/Node-style async functions, or functions that\n * return CPS/Node-style async functions.\n *\n * Wherever we accept a Node-style async function, we also directly accept an\n * [ES2017 `async` function]{@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function}.\n * In this case, the `async` function will not be passed a final callback\n * argument, and any thrown error will be used as the `err` argument of the\n * implicit callback, and the return value will be used as the `result` value.\n * (i.e. a `rejected` of the returned Promise becomes the `err` callback\n * argument, and a `resolved` value becomes the `result`.)\n *\n * Note, due to JavaScript limitations, we can only detect native `async`\n * functions and not transpilied implementations.\n * Your environment must have `async`/`await` support for this to work.\n * (e.g. Node > v7.6, or a recent version of a modern browser).\n * If you are using `async` functions through a transpiler (e.g. Babel), you\n * must still wrap the function with [asyncify]{@link module:Utils.asyncify},\n * because the `async function` will be compiled to an ordinary function that\n * returns a promise.\n *\n * @typedef {Function} AsyncFunction\n * @static\n */\n\n\nvar index = {\n    apply,\n    applyEach,\n    applyEachSeries,\n    asyncify,\n    auto,\n    autoInject,\n    cargo: cargo$1,\n    cargoQueue: cargo,\n    compose: compose$1,\n    concat: concat$1,\n    concatLimit: concatLimit$1,\n    concatSeries: concatSeries$1,\n    constant: constant$1,\n    detect: detect$1,\n    detectLimit: detectLimit$1,\n    detectSeries: detectSeries$1,\n    dir,\n    doUntil,\n    doWhilst: doWhilst$1,\n    each,\n    eachLimit: eachLimit$1,\n    eachOf: eachOf$1,\n    eachOfLimit: eachOfLimit$1,\n    eachOfSeries: eachOfSeries$1,\n    eachSeries: eachSeries$1,\n    ensureAsync,\n    every: every$1,\n    everyLimit: everyLimit$1,\n    everySeries: everySeries$1,\n    filter: filter$1,\n    filterLimit: filterLimit$1,\n    filterSeries: filterSeries$1,\n    forever: forever$1,\n    groupBy,\n    groupByLimit: groupByLimit$1,\n    groupBySeries,\n    log,\n    map: map$1,\n    mapLimit: mapLimit$1,\n    mapSeries: mapSeries$1,\n    mapValues,\n    mapValuesLimit: mapValuesLimit$1,\n    mapValuesSeries,\n    memoize,\n    nextTick,\n    parallel,\n    parallelLimit,\n    priorityQueue,\n    queue,\n    race: race$1,\n    reduce: reduce$1,\n    reduceRight,\n    reflect,\n    reflectAll,\n    reject: reject$1,\n    rejectLimit: rejectLimit$1,\n    rejectSeries: rejectSeries$1,\n    retry: retry$1,\n    retryable,\n    seq,\n    series,\n    setImmediate: setImmediate$1,\n    some: some$1,\n    someLimit: someLimit$1,\n    someSeries: someSeries$1,\n    sortBy: sortBy$1,\n    timeout,\n    times,\n    timesLimit,\n    timesSeries,\n    transform: transform$1,\n    tryEach: tryEach$1,\n    unmemoize,\n    until,\n    waterfall: waterfall$1,\n    whilst: whilst$1,\n\n    // aliases\n    all: every$1,\n    allLimit: everyLimit$1,\n    allSeries: everySeries$1,\n    any: some$1,\n    anyLimit: someLimit$1,\n    anySeries: someSeries$1,\n    find: detect$1,\n    findLimit: detectLimit$1,\n    findSeries: detectSeries$1,\n    flatMap: concat$1,\n    flatMapLimit: concatLimit$1,\n    flatMapSeries: concatSeries$1,\n    forEach: each,\n    forEachSeries: eachSeries$1,\n    forEachLimit: eachLimit$1,\n    forEachOf: eachOf$1,\n    forEachOfSeries: eachOfSeries$1,\n    forEachOfLimit: eachOfLimit$1,\n    inject: reduce$1,\n    foldl: reduce$1,\n    foldr: reduceRight,\n    select: filter$1,\n    selectLimit: filterLimit$1,\n    selectSeries: filterSeries$1,\n    wrapSync: asyncify,\n    during: whilst$1,\n    doDuring: doWhilst$1\n};\n\nvar async = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tall: every$1,\n\tallLimit: everyLimit$1,\n\tallSeries: everySeries$1,\n\tany: some$1,\n\tanyLimit: someLimit$1,\n\tanySeries: someSeries$1,\n\tapply: apply,\n\tapplyEach: applyEach,\n\tapplyEachSeries: applyEachSeries,\n\tasyncify: asyncify,\n\tauto: auto,\n\tautoInject: autoInject,\n\tcargo: cargo$1,\n\tcargoQueue: cargo,\n\tcompose: compose$1,\n\tconcat: concat$1,\n\tconcatLimit: concatLimit$1,\n\tconcatSeries: concatSeries$1,\n\tconstant: constant$1,\n\tdefault: index,\n\tdetect: detect$1,\n\tdetectLimit: detectLimit$1,\n\tdetectSeries: detectSeries$1,\n\tdir: dir,\n\tdoDuring: doWhilst$1,\n\tdoUntil: doUntil,\n\tdoWhilst: doWhilst$1,\n\tduring: whilst$1,\n\teach: each,\n\teachLimit: eachLimit$1,\n\teachOf: eachOf$1,\n\teachOfLimit: eachOfLimit$1,\n\teachOfSeries: eachOfSeries$1,\n\teachSeries: eachSeries$1,\n\tensureAsync: ensureAsync,\n\tevery: every$1,\n\teveryLimit: everyLimit$1,\n\teverySeries: everySeries$1,\n\tfilter: filter$1,\n\tfilterLimit: filterLimit$1,\n\tfilterSeries: filterSeries$1,\n\tfind: detect$1,\n\tfindLimit: detectLimit$1,\n\tfindSeries: detectSeries$1,\n\tflatMap: concat$1,\n\tflatMapLimit: concatLimit$1,\n\tflatMapSeries: concatSeries$1,\n\tfoldl: reduce$1,\n\tfoldr: reduceRight,\n\tforEach: each,\n\tforEachLimit: eachLimit$1,\n\tforEachOf: eachOf$1,\n\tforEachOfLimit: eachOfLimit$1,\n\tforEachOfSeries: eachOfSeries$1,\n\tforEachSeries: eachSeries$1,\n\tforever: forever$1,\n\tgroupBy: groupBy,\n\tgroupByLimit: groupByLimit$1,\n\tgroupBySeries: groupBySeries,\n\tinject: reduce$1,\n\tlog: log,\n\tmap: map$1,\n\tmapLimit: mapLimit$1,\n\tmapSeries: mapSeries$1,\n\tmapValues: mapValues,\n\tmapValuesLimit: mapValuesLimit$1,\n\tmapValuesSeries: mapValuesSeries,\n\tmemoize: memoize,\n\tnextTick: nextTick,\n\tparallel: parallel,\n\tparallelLimit: parallelLimit,\n\tpriorityQueue: priorityQueue,\n\tqueue: queue,\n\trace: race$1,\n\treduce: reduce$1,\n\treduceRight: reduceRight,\n\treflect: reflect,\n\treflectAll: reflectAll,\n\treject: reject$1,\n\trejectLimit: rejectLimit$1,\n\trejectSeries: rejectSeries$1,\n\tretry: retry$1,\n\tretryable: retryable,\n\tselect: filter$1,\n\tselectLimit: filterLimit$1,\n\tselectSeries: filterSeries$1,\n\tseq: seq,\n\tseries: series,\n\tsetImmediate: setImmediate$1,\n\tsome: some$1,\n\tsomeLimit: someLimit$1,\n\tsomeSeries: someSeries$1,\n\tsortBy: sortBy$1,\n\ttimeout: timeout,\n\ttimes: times,\n\ttimesLimit: timesLimit,\n\ttimesSeries: timesSeries,\n\ttransform: transform$1,\n\ttryEach: tryEach$1,\n\tunmemoize: unmemoize,\n\tuntil: until,\n\twaterfall: waterfall$1,\n\twhilst: whilst$1,\n\twrapSync: asyncify\n});\n\nvar require$$2$1 = /*@__PURE__*/getAugmentedNamespace(async);\n\nvar archiverUtils = {exports: {}};\n\nvar polyfills;\nvar hasRequiredPolyfills;\n\nfunction requirePolyfills () {\n\tif (hasRequiredPolyfills) return polyfills;\n\thasRequiredPolyfills = 1;\n\tvar constants = require$$0$g;\n\n\tvar origCwd = process.cwd;\n\tvar cwd = null;\n\n\tvar platform = process.env.GRACEFUL_FS_PLATFORM || process.platform;\n\n\tprocess.cwd = function() {\n\t  if (!cwd)\n\t    cwd = origCwd.call(process);\n\t  return cwd\n\t};\n\ttry {\n\t  process.cwd();\n\t} catch (er) {}\n\n\t// This check is needed until node.js 12 is required\n\tif (typeof process.chdir === 'function') {\n\t  var chdir = process.chdir;\n\t  process.chdir = function (d) {\n\t    cwd = null;\n\t    chdir.call(process, d);\n\t  };\n\t  if (Object.setPrototypeOf) Object.setPrototypeOf(process.chdir, chdir);\n\t}\n\n\tpolyfills = patch;\n\n\tfunction patch (fs) {\n\t  // (re-)implement some things that are known busted or missing.\n\n\t  // lchmod, broken prior to 0.6.2\n\t  // back-port the fix here.\n\t  if (constants.hasOwnProperty('O_SYMLINK') &&\n\t      process.version.match(/^v0\\.6\\.[0-2]|^v0\\.5\\./)) {\n\t    patchLchmod(fs);\n\t  }\n\n\t  // lutimes implementation, or no-op\n\t  if (!fs.lutimes) {\n\t    patchLutimes(fs);\n\t  }\n\n\t  // https://github.com/isaacs/node-graceful-fs/issues/4\n\t  // Chown should not fail on einval or eperm if non-root.\n\t  // It should not fail on enosys ever, as this just indicates\n\t  // that a fs doesn't support the intended operation.\n\n\t  fs.chown = chownFix(fs.chown);\n\t  fs.fchown = chownFix(fs.fchown);\n\t  fs.lchown = chownFix(fs.lchown);\n\n\t  fs.chmod = chmodFix(fs.chmod);\n\t  fs.fchmod = chmodFix(fs.fchmod);\n\t  fs.lchmod = chmodFix(fs.lchmod);\n\n\t  fs.chownSync = chownFixSync(fs.chownSync);\n\t  fs.fchownSync = chownFixSync(fs.fchownSync);\n\t  fs.lchownSync = chownFixSync(fs.lchownSync);\n\n\t  fs.chmodSync = chmodFixSync(fs.chmodSync);\n\t  fs.fchmodSync = chmodFixSync(fs.fchmodSync);\n\t  fs.lchmodSync = chmodFixSync(fs.lchmodSync);\n\n\t  fs.stat = statFix(fs.stat);\n\t  fs.fstat = statFix(fs.fstat);\n\t  fs.lstat = statFix(fs.lstat);\n\n\t  fs.statSync = statFixSync(fs.statSync);\n\t  fs.fstatSync = statFixSync(fs.fstatSync);\n\t  fs.lstatSync = statFixSync(fs.lstatSync);\n\n\t  // if lchmod/lchown do not exist, then make them no-ops\n\t  if (fs.chmod && !fs.lchmod) {\n\t    fs.lchmod = function (path, mode, cb) {\n\t      if (cb) process.nextTick(cb);\n\t    };\n\t    fs.lchmodSync = function () {};\n\t  }\n\t  if (fs.chown && !fs.lchown) {\n\t    fs.lchown = function (path, uid, gid, cb) {\n\t      if (cb) process.nextTick(cb);\n\t    };\n\t    fs.lchownSync = function () {};\n\t  }\n\n\t  // on Windows, A/V software can lock the directory, causing this\n\t  // to fail with an EACCES or EPERM if the directory contains newly\n\t  // created files.  Try again on failure, for up to 60 seconds.\n\n\t  // Set the timeout this long because some Windows Anti-Virus, such as Parity\n\t  // bit9, may lock files for up to a minute, causing npm package install\n\t  // failures. Also, take care to yield the scheduler. Windows scheduling gives\n\t  // CPU to a busy looping process, which can cause the program causing the lock\n\t  // contention to be starved of CPU by node, so the contention doesn't resolve.\n\t  if (platform === \"win32\") {\n\t    fs.rename = typeof fs.rename !== 'function' ? fs.rename\n\t    : (function (fs$rename) {\n\t      function rename (from, to, cb) {\n\t        var start = Date.now();\n\t        var backoff = 0;\n\t        fs$rename(from, to, function CB (er) {\n\t          if (er\n\t              && (er.code === \"EACCES\" || er.code === \"EPERM\" || er.code === \"EBUSY\")\n\t              && Date.now() - start < 60000) {\n\t            setTimeout(function() {\n\t              fs.stat(to, function (stater, st) {\n\t                if (stater && stater.code === \"ENOENT\")\n\t                  fs$rename(from, to, CB);\n\t                else\n\t                  cb(er);\n\t              });\n\t            }, backoff);\n\t            if (backoff < 100)\n\t              backoff += 10;\n\t            return;\n\t          }\n\t          if (cb) cb(er);\n\t        });\n\t      }\n\t      if (Object.setPrototypeOf) Object.setPrototypeOf(rename, fs$rename);\n\t      return rename\n\t    })(fs.rename);\n\t  }\n\n\t  // if read() returns EAGAIN, then just try it again.\n\t  fs.read = typeof fs.read !== 'function' ? fs.read\n\t  : (function (fs$read) {\n\t    function read (fd, buffer, offset, length, position, callback_) {\n\t      var callback;\n\t      if (callback_ && typeof callback_ === 'function') {\n\t        var eagCounter = 0;\n\t        callback = function (er, _, __) {\n\t          if (er && er.code === 'EAGAIN' && eagCounter < 10) {\n\t            eagCounter ++;\n\t            return fs$read.call(fs, fd, buffer, offset, length, position, callback)\n\t          }\n\t          callback_.apply(this, arguments);\n\t        };\n\t      }\n\t      return fs$read.call(fs, fd, buffer, offset, length, position, callback)\n\t    }\n\n\t    // This ensures `util.promisify` works as it does for native `fs.read`.\n\t    if (Object.setPrototypeOf) Object.setPrototypeOf(read, fs$read);\n\t    return read\n\t  })(fs.read);\n\n\t  fs.readSync = typeof fs.readSync !== 'function' ? fs.readSync\n\t  : (function (fs$readSync) { return function (fd, buffer, offset, length, position) {\n\t    var eagCounter = 0;\n\t    while (true) {\n\t      try {\n\t        return fs$readSync.call(fs, fd, buffer, offset, length, position)\n\t      } catch (er) {\n\t        if (er.code === 'EAGAIN' && eagCounter < 10) {\n\t          eagCounter ++;\n\t          continue\n\t        }\n\t        throw er\n\t      }\n\t    }\n\t  }})(fs.readSync);\n\n\t  function patchLchmod (fs) {\n\t    fs.lchmod = function (path, mode, callback) {\n\t      fs.open( path\n\t             , constants.O_WRONLY | constants.O_SYMLINK\n\t             , mode\n\t             , function (err, fd) {\n\t        if (err) {\n\t          if (callback) callback(err);\n\t          return\n\t        }\n\t        // prefer to return the chmod error, if one occurs,\n\t        // but still try to close, and report closing errors if they occur.\n\t        fs.fchmod(fd, mode, function (err) {\n\t          fs.close(fd, function(err2) {\n\t            if (callback) callback(err || err2);\n\t          });\n\t        });\n\t      });\n\t    };\n\n\t    fs.lchmodSync = function (path, mode) {\n\t      var fd = fs.openSync(path, constants.O_WRONLY | constants.O_SYMLINK, mode);\n\n\t      // prefer to return the chmod error, if one occurs,\n\t      // but still try to close, and report closing errors if they occur.\n\t      var threw = true;\n\t      var ret;\n\t      try {\n\t        ret = fs.fchmodSync(fd, mode);\n\t        threw = false;\n\t      } finally {\n\t        if (threw) {\n\t          try {\n\t            fs.closeSync(fd);\n\t          } catch (er) {}\n\t        } else {\n\t          fs.closeSync(fd);\n\t        }\n\t      }\n\t      return ret\n\t    };\n\t  }\n\n\t  function patchLutimes (fs) {\n\t    if (constants.hasOwnProperty(\"O_SYMLINK\") && fs.futimes) {\n\t      fs.lutimes = function (path, at, mt, cb) {\n\t        fs.open(path, constants.O_SYMLINK, function (er, fd) {\n\t          if (er) {\n\t            if (cb) cb(er);\n\t            return\n\t          }\n\t          fs.futimes(fd, at, mt, function (er) {\n\t            fs.close(fd, function (er2) {\n\t              if (cb) cb(er || er2);\n\t            });\n\t          });\n\t        });\n\t      };\n\n\t      fs.lutimesSync = function (path, at, mt) {\n\t        var fd = fs.openSync(path, constants.O_SYMLINK);\n\t        var ret;\n\t        var threw = true;\n\t        try {\n\t          ret = fs.futimesSync(fd, at, mt);\n\t          threw = false;\n\t        } finally {\n\t          if (threw) {\n\t            try {\n\t              fs.closeSync(fd);\n\t            } catch (er) {}\n\t          } else {\n\t            fs.closeSync(fd);\n\t          }\n\t        }\n\t        return ret\n\t      };\n\n\t    } else if (fs.futimes) {\n\t      fs.lutimes = function (_a, _b, _c, cb) { if (cb) process.nextTick(cb); };\n\t      fs.lutimesSync = function () {};\n\t    }\n\t  }\n\n\t  function chmodFix (orig) {\n\t    if (!orig) return orig\n\t    return function (target, mode, cb) {\n\t      return orig.call(fs, target, mode, function (er) {\n\t        if (chownErOk(er)) er = null;\n\t        if (cb) cb.apply(this, arguments);\n\t      })\n\t    }\n\t  }\n\n\t  function chmodFixSync (orig) {\n\t    if (!orig) return orig\n\t    return function (target, mode) {\n\t      try {\n\t        return orig.call(fs, target, mode)\n\t      } catch (er) {\n\t        if (!chownErOk(er)) throw er\n\t      }\n\t    }\n\t  }\n\n\n\t  function chownFix (orig) {\n\t    if (!orig) return orig\n\t    return function (target, uid, gid, cb) {\n\t      return orig.call(fs, target, uid, gid, function (er) {\n\t        if (chownErOk(er)) er = null;\n\t        if (cb) cb.apply(this, arguments);\n\t      })\n\t    }\n\t  }\n\n\t  function chownFixSync (orig) {\n\t    if (!orig) return orig\n\t    return function (target, uid, gid) {\n\t      try {\n\t        return orig.call(fs, target, uid, gid)\n\t      } catch (er) {\n\t        if (!chownErOk(er)) throw er\n\t      }\n\t    }\n\t  }\n\n\t  function statFix (orig) {\n\t    if (!orig) return orig\n\t    // Older versions of Node erroneously returned signed integers for\n\t    // uid + gid.\n\t    return function (target, options, cb) {\n\t      if (typeof options === 'function') {\n\t        cb = options;\n\t        options = null;\n\t      }\n\t      function callback (er, stats) {\n\t        if (stats) {\n\t          if (stats.uid < 0) stats.uid += 0x100000000;\n\t          if (stats.gid < 0) stats.gid += 0x100000000;\n\t        }\n\t        if (cb) cb.apply(this, arguments);\n\t      }\n\t      return options ? orig.call(fs, target, options, callback)\n\t        : orig.call(fs, target, callback)\n\t    }\n\t  }\n\n\t  function statFixSync (orig) {\n\t    if (!orig) return orig\n\t    // Older versions of Node erroneously returned signed integers for\n\t    // uid + gid.\n\t    return function (target, options) {\n\t      var stats = options ? orig.call(fs, target, options)\n\t        : orig.call(fs, target);\n\t      if (stats) {\n\t        if (stats.uid < 0) stats.uid += 0x100000000;\n\t        if (stats.gid < 0) stats.gid += 0x100000000;\n\t      }\n\t      return stats;\n\t    }\n\t  }\n\n\t  // ENOSYS means that the fs doesn't support the op. Just ignore\n\t  // that, because it doesn't matter.\n\t  //\n\t  // if there's no getuid, or if getuid() is something other\n\t  // than 0, and the error is EINVAL or EPERM, then just ignore\n\t  // it.\n\t  //\n\t  // This specific case is a silent failure in cp, install, tar,\n\t  // and most other unix tools that manage permissions.\n\t  //\n\t  // When running as root, or if other types of errors are\n\t  // encountered, then it's strict.\n\t  function chownErOk (er) {\n\t    if (!er)\n\t      return true\n\n\t    if (er.code === \"ENOSYS\")\n\t      return true\n\n\t    var nonroot = !process.getuid || process.getuid() !== 0;\n\t    if (nonroot) {\n\t      if (er.code === \"EINVAL\" || er.code === \"EPERM\")\n\t        return true\n\t    }\n\n\t    return false\n\t  }\n\t}\n\treturn polyfills;\n}\n\nvar legacyStreams;\nvar hasRequiredLegacyStreams;\n\nfunction requireLegacyStreams () {\n\tif (hasRequiredLegacyStreams) return legacyStreams;\n\thasRequiredLegacyStreams = 1;\n\tvar Stream = require$$0$b.Stream;\n\n\tlegacyStreams = legacy;\n\n\tfunction legacy (fs) {\n\t  return {\n\t    ReadStream: ReadStream,\n\t    WriteStream: WriteStream\n\t  }\n\n\t  function ReadStream (path, options) {\n\t    if (!(this instanceof ReadStream)) return new ReadStream(path, options);\n\n\t    Stream.call(this);\n\n\t    var self = this;\n\n\t    this.path = path;\n\t    this.fd = null;\n\t    this.readable = true;\n\t    this.paused = false;\n\n\t    this.flags = 'r';\n\t    this.mode = 438; /*=0666*/\n\t    this.bufferSize = 64 * 1024;\n\n\t    options = options || {};\n\n\t    // Mixin options into this\n\t    var keys = Object.keys(options);\n\t    for (var index = 0, length = keys.length; index < length; index++) {\n\t      var key = keys[index];\n\t      this[key] = options[key];\n\t    }\n\n\t    if (this.encoding) this.setEncoding(this.encoding);\n\n\t    if (this.start !== undefined) {\n\t      if ('number' !== typeof this.start) {\n\t        throw TypeError('start must be a Number');\n\t      }\n\t      if (this.end === undefined) {\n\t        this.end = Infinity;\n\t      } else if ('number' !== typeof this.end) {\n\t        throw TypeError('end must be a Number');\n\t      }\n\n\t      if (this.start > this.end) {\n\t        throw new Error('start must be <= end');\n\t      }\n\n\t      this.pos = this.start;\n\t    }\n\n\t    if (this.fd !== null) {\n\t      process.nextTick(function() {\n\t        self._read();\n\t      });\n\t      return;\n\t    }\n\n\t    fs.open(this.path, this.flags, this.mode, function (err, fd) {\n\t      if (err) {\n\t        self.emit('error', err);\n\t        self.readable = false;\n\t        return;\n\t      }\n\n\t      self.fd = fd;\n\t      self.emit('open', fd);\n\t      self._read();\n\t    });\n\t  }\n\n\t  function WriteStream (path, options) {\n\t    if (!(this instanceof WriteStream)) return new WriteStream(path, options);\n\n\t    Stream.call(this);\n\n\t    this.path = path;\n\t    this.fd = null;\n\t    this.writable = true;\n\n\t    this.flags = 'w';\n\t    this.encoding = 'binary';\n\t    this.mode = 438; /*=0666*/\n\t    this.bytesWritten = 0;\n\n\t    options = options || {};\n\n\t    // Mixin options into this\n\t    var keys = Object.keys(options);\n\t    for (var index = 0, length = keys.length; index < length; index++) {\n\t      var key = keys[index];\n\t      this[key] = options[key];\n\t    }\n\n\t    if (this.start !== undefined) {\n\t      if ('number' !== typeof this.start) {\n\t        throw TypeError('start must be a Number');\n\t      }\n\t      if (this.start < 0) {\n\t        throw new Error('start must be >= zero');\n\t      }\n\n\t      this.pos = this.start;\n\t    }\n\n\t    this.busy = false;\n\t    this._queue = [];\n\n\t    if (this.fd === null) {\n\t      this._open = fs.open;\n\t      this._queue.push([this._open, this.path, this.flags, this.mode, undefined]);\n\t      this.flush();\n\t    }\n\t  }\n\t}\n\treturn legacyStreams;\n}\n\nvar clone_1;\nvar hasRequiredClone;\n\nfunction requireClone () {\n\tif (hasRequiredClone) return clone_1;\n\thasRequiredClone = 1;\n\n\tclone_1 = clone;\n\n\tvar getPrototypeOf = Object.getPrototypeOf || function (obj) {\n\t  return obj.__proto__\n\t};\n\n\tfunction clone (obj) {\n\t  if (obj === null || typeof obj !== 'object')\n\t    return obj\n\n\t  if (obj instanceof Object)\n\t    var copy = { __proto__: getPrototypeOf(obj) };\n\t  else\n\t    var copy = Object.create(null);\n\n\t  Object.getOwnPropertyNames(obj).forEach(function (key) {\n\t    Object.defineProperty(copy, key, Object.getOwnPropertyDescriptor(obj, key));\n\t  });\n\n\t  return copy\n\t}\n\treturn clone_1;\n}\n\nvar gracefulFs;\nvar hasRequiredGracefulFs;\n\nfunction requireGracefulFs () {\n\tif (hasRequiredGracefulFs) return gracefulFs;\n\thasRequiredGracefulFs = 1;\n\tvar fs = fs__default;\n\tvar polyfills = requirePolyfills();\n\tvar legacy = requireLegacyStreams();\n\tvar clone = requireClone();\n\n\tvar util = require$$0__default$1;\n\n\t/* istanbul ignore next - node 0.x polyfill */\n\tvar gracefulQueue;\n\tvar previousSymbol;\n\n\t/* istanbul ignore else - node 0.x polyfill */\n\tif (typeof Symbol === 'function' && typeof Symbol.for === 'function') {\n\t  gracefulQueue = Symbol.for('graceful-fs.queue');\n\t  // This is used in testing by future versions\n\t  previousSymbol = Symbol.for('graceful-fs.previous');\n\t} else {\n\t  gracefulQueue = '___graceful-fs.queue';\n\t  previousSymbol = '___graceful-fs.previous';\n\t}\n\n\tfunction noop () {}\n\n\tfunction publishQueue(context, queue) {\n\t  Object.defineProperty(context, gracefulQueue, {\n\t    get: function() {\n\t      return queue\n\t    }\n\t  });\n\t}\n\n\tvar debug = noop;\n\tif (util.debuglog)\n\t  debug = util.debuglog('gfs4');\n\telse if (/\\bgfs4\\b/i.test(process.env.NODE_DEBUG || ''))\n\t  debug = function() {\n\t    var m = util.format.apply(util, arguments);\n\t    m = 'GFS4: ' + m.split(/\\n/).join('\\nGFS4: ');\n\t    console.error(m);\n\t  };\n\n\t// Once time initialization\n\tif (!fs[gracefulQueue]) {\n\t  // This queue can be shared by multiple loaded instances\n\t  var queue = commonjsGlobal[gracefulQueue] || [];\n\t  publishQueue(fs, queue);\n\n\t  // Patch fs.close/closeSync to shared queue version, because we need\n\t  // to retry() whenever a close happens *anywhere* in the program.\n\t  // This is essential when multiple graceful-fs instances are\n\t  // in play at the same time.\n\t  fs.close = (function (fs$close) {\n\t    function close (fd, cb) {\n\t      return fs$close.call(fs, fd, function (err) {\n\t        // This function uses the graceful-fs shared queue\n\t        if (!err) {\n\t          resetQueue();\n\t        }\n\n\t        if (typeof cb === 'function')\n\t          cb.apply(this, arguments);\n\t      })\n\t    }\n\n\t    Object.defineProperty(close, previousSymbol, {\n\t      value: fs$close\n\t    });\n\t    return close\n\t  })(fs.close);\n\n\t  fs.closeSync = (function (fs$closeSync) {\n\t    function closeSync (fd) {\n\t      // This function uses the graceful-fs shared queue\n\t      fs$closeSync.apply(fs, arguments);\n\t      resetQueue();\n\t    }\n\n\t    Object.defineProperty(closeSync, previousSymbol, {\n\t      value: fs$closeSync\n\t    });\n\t    return closeSync\n\t  })(fs.closeSync);\n\n\t  if (/\\bgfs4\\b/i.test(process.env.NODE_DEBUG || '')) {\n\t    process.on('exit', function() {\n\t      debug(fs[gracefulQueue]);\n\t      require$$0$9.equal(fs[gracefulQueue].length, 0);\n\t    });\n\t  }\n\t}\n\n\tif (!commonjsGlobal[gracefulQueue]) {\n\t  publishQueue(commonjsGlobal, fs[gracefulQueue]);\n\t}\n\n\tgracefulFs = patch(clone(fs));\n\tif (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !fs.__patched) {\n\t    gracefulFs = patch(fs);\n\t    fs.__patched = true;\n\t}\n\n\tfunction patch (fs) {\n\t  // Everything that references the open() function needs to be in here\n\t  polyfills(fs);\n\t  fs.gracefulify = patch;\n\n\t  fs.createReadStream = createReadStream;\n\t  fs.createWriteStream = createWriteStream;\n\t  var fs$readFile = fs.readFile;\n\t  fs.readFile = readFile;\n\t  function readFile (path, options, cb) {\n\t    if (typeof options === 'function')\n\t      cb = options, options = null;\n\n\t    return go$readFile(path, options, cb)\n\n\t    function go$readFile (path, options, cb, startTime) {\n\t      return fs$readFile(path, options, function (err) {\n\t        if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))\n\t          enqueue([go$readFile, [path, options, cb], err, startTime || Date.now(), Date.now()]);\n\t        else {\n\t          if (typeof cb === 'function')\n\t            cb.apply(this, arguments);\n\t        }\n\t      })\n\t    }\n\t  }\n\n\t  var fs$writeFile = fs.writeFile;\n\t  fs.writeFile = writeFile;\n\t  function writeFile (path, data, options, cb) {\n\t    if (typeof options === 'function')\n\t      cb = options, options = null;\n\n\t    return go$writeFile(path, data, options, cb)\n\n\t    function go$writeFile (path, data, options, cb, startTime) {\n\t      return fs$writeFile(path, data, options, function (err) {\n\t        if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))\n\t          enqueue([go$writeFile, [path, data, options, cb], err, startTime || Date.now(), Date.now()]);\n\t        else {\n\t          if (typeof cb === 'function')\n\t            cb.apply(this, arguments);\n\t        }\n\t      })\n\t    }\n\t  }\n\n\t  var fs$appendFile = fs.appendFile;\n\t  if (fs$appendFile)\n\t    fs.appendFile = appendFile;\n\t  function appendFile (path, data, options, cb) {\n\t    if (typeof options === 'function')\n\t      cb = options, options = null;\n\n\t    return go$appendFile(path, data, options, cb)\n\n\t    function go$appendFile (path, data, options, cb, startTime) {\n\t      return fs$appendFile(path, data, options, function (err) {\n\t        if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))\n\t          enqueue([go$appendFile, [path, data, options, cb], err, startTime || Date.now(), Date.now()]);\n\t        else {\n\t          if (typeof cb === 'function')\n\t            cb.apply(this, arguments);\n\t        }\n\t      })\n\t    }\n\t  }\n\n\t  var fs$copyFile = fs.copyFile;\n\t  if (fs$copyFile)\n\t    fs.copyFile = copyFile;\n\t  function copyFile (src, dest, flags, cb) {\n\t    if (typeof flags === 'function') {\n\t      cb = flags;\n\t      flags = 0;\n\t    }\n\t    return go$copyFile(src, dest, flags, cb)\n\n\t    function go$copyFile (src, dest, flags, cb, startTime) {\n\t      return fs$copyFile(src, dest, flags, function (err) {\n\t        if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))\n\t          enqueue([go$copyFile, [src, dest, flags, cb], err, startTime || Date.now(), Date.now()]);\n\t        else {\n\t          if (typeof cb === 'function')\n\t            cb.apply(this, arguments);\n\t        }\n\t      })\n\t    }\n\t  }\n\n\t  var fs$readdir = fs.readdir;\n\t  fs.readdir = readdir;\n\t  var noReaddirOptionVersions = /^v[0-5]\\./;\n\t  function readdir (path, options, cb) {\n\t    if (typeof options === 'function')\n\t      cb = options, options = null;\n\n\t    var go$readdir = noReaddirOptionVersions.test(process.version)\n\t      ? function go$readdir (path, options, cb, startTime) {\n\t        return fs$readdir(path, fs$readdirCallback(\n\t          path, options, cb, startTime\n\t        ))\n\t      }\n\t      : function go$readdir (path, options, cb, startTime) {\n\t        return fs$readdir(path, options, fs$readdirCallback(\n\t          path, options, cb, startTime\n\t        ))\n\t      };\n\n\t    return go$readdir(path, options, cb)\n\n\t    function fs$readdirCallback (path, options, cb, startTime) {\n\t      return function (err, files) {\n\t        if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))\n\t          enqueue([\n\t            go$readdir,\n\t            [path, options, cb],\n\t            err,\n\t            startTime || Date.now(),\n\t            Date.now()\n\t          ]);\n\t        else {\n\t          if (files && files.sort)\n\t            files.sort();\n\n\t          if (typeof cb === 'function')\n\t            cb.call(this, err, files);\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  if (process.version.substr(0, 4) === 'v0.8') {\n\t    var legStreams = legacy(fs);\n\t    ReadStream = legStreams.ReadStream;\n\t    WriteStream = legStreams.WriteStream;\n\t  }\n\n\t  var fs$ReadStream = fs.ReadStream;\n\t  if (fs$ReadStream) {\n\t    ReadStream.prototype = Object.create(fs$ReadStream.prototype);\n\t    ReadStream.prototype.open = ReadStream$open;\n\t  }\n\n\t  var fs$WriteStream = fs.WriteStream;\n\t  if (fs$WriteStream) {\n\t    WriteStream.prototype = Object.create(fs$WriteStream.prototype);\n\t    WriteStream.prototype.open = WriteStream$open;\n\t  }\n\n\t  Object.defineProperty(fs, 'ReadStream', {\n\t    get: function () {\n\t      return ReadStream\n\t    },\n\t    set: function (val) {\n\t      ReadStream = val;\n\t    },\n\t    enumerable: true,\n\t    configurable: true\n\t  });\n\t  Object.defineProperty(fs, 'WriteStream', {\n\t    get: function () {\n\t      return WriteStream\n\t    },\n\t    set: function (val) {\n\t      WriteStream = val;\n\t    },\n\t    enumerable: true,\n\t    configurable: true\n\t  });\n\n\t  // legacy names\n\t  var FileReadStream = ReadStream;\n\t  Object.defineProperty(fs, 'FileReadStream', {\n\t    get: function () {\n\t      return FileReadStream\n\t    },\n\t    set: function (val) {\n\t      FileReadStream = val;\n\t    },\n\t    enumerable: true,\n\t    configurable: true\n\t  });\n\t  var FileWriteStream = WriteStream;\n\t  Object.defineProperty(fs, 'FileWriteStream', {\n\t    get: function () {\n\t      return FileWriteStream\n\t    },\n\t    set: function (val) {\n\t      FileWriteStream = val;\n\t    },\n\t    enumerable: true,\n\t    configurable: true\n\t  });\n\n\t  function ReadStream (path, options) {\n\t    if (this instanceof ReadStream)\n\t      return fs$ReadStream.apply(this, arguments), this\n\t    else\n\t      return ReadStream.apply(Object.create(ReadStream.prototype), arguments)\n\t  }\n\n\t  function ReadStream$open () {\n\t    var that = this;\n\t    open(that.path, that.flags, that.mode, function (err, fd) {\n\t      if (err) {\n\t        if (that.autoClose)\n\t          that.destroy();\n\n\t        that.emit('error', err);\n\t      } else {\n\t        that.fd = fd;\n\t        that.emit('open', fd);\n\t        that.read();\n\t      }\n\t    });\n\t  }\n\n\t  function WriteStream (path, options) {\n\t    if (this instanceof WriteStream)\n\t      return fs$WriteStream.apply(this, arguments), this\n\t    else\n\t      return WriteStream.apply(Object.create(WriteStream.prototype), arguments)\n\t  }\n\n\t  function WriteStream$open () {\n\t    var that = this;\n\t    open(that.path, that.flags, that.mode, function (err, fd) {\n\t      if (err) {\n\t        that.destroy();\n\t        that.emit('error', err);\n\t      } else {\n\t        that.fd = fd;\n\t        that.emit('open', fd);\n\t      }\n\t    });\n\t  }\n\n\t  function createReadStream (path, options) {\n\t    return new fs.ReadStream(path, options)\n\t  }\n\n\t  function createWriteStream (path, options) {\n\t    return new fs.WriteStream(path, options)\n\t  }\n\n\t  var fs$open = fs.open;\n\t  fs.open = open;\n\t  function open (path, flags, mode, cb) {\n\t    if (typeof mode === 'function')\n\t      cb = mode, mode = null;\n\n\t    return go$open(path, flags, mode, cb)\n\n\t    function go$open (path, flags, mode, cb, startTime) {\n\t      return fs$open(path, flags, mode, function (err, fd) {\n\t        if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))\n\t          enqueue([go$open, [path, flags, mode, cb], err, startTime || Date.now(), Date.now()]);\n\t        else {\n\t          if (typeof cb === 'function')\n\t            cb.apply(this, arguments);\n\t        }\n\t      })\n\t    }\n\t  }\n\n\t  return fs\n\t}\n\n\tfunction enqueue (elem) {\n\t  debug('ENQUEUE', elem[0].name, elem[1]);\n\t  fs[gracefulQueue].push(elem);\n\t  retry();\n\t}\n\n\t// keep track of the timeout between retry() calls\n\tvar retryTimer;\n\n\t// reset the startTime and lastTime to now\n\t// this resets the start of the 60 second overall timeout as well as the\n\t// delay between attempts so that we'll retry these jobs sooner\n\tfunction resetQueue () {\n\t  var now = Date.now();\n\t  for (var i = 0; i < fs[gracefulQueue].length; ++i) {\n\t    // entries that are only a length of 2 are from an older version, don't\n\t    // bother modifying those since they'll be retried anyway.\n\t    if (fs[gracefulQueue][i].length > 2) {\n\t      fs[gracefulQueue][i][3] = now; // startTime\n\t      fs[gracefulQueue][i][4] = now; // lastTime\n\t    }\n\t  }\n\t  // call retry to make sure we're actively processing the queue\n\t  retry();\n\t}\n\n\tfunction retry () {\n\t  // clear the timer and remove it to help prevent unintended concurrency\n\t  clearTimeout(retryTimer);\n\t  retryTimer = undefined;\n\n\t  if (fs[gracefulQueue].length === 0)\n\t    return\n\n\t  var elem = fs[gracefulQueue].shift();\n\t  var fn = elem[0];\n\t  var args = elem[1];\n\t  // these items may be unset if they were added by an older graceful-fs\n\t  var err = elem[2];\n\t  var startTime = elem[3];\n\t  var lastTime = elem[4];\n\n\t  // if we don't have a startTime we have no way of knowing if we've waited\n\t  // long enough, so go ahead and retry this item now\n\t  if (startTime === undefined) {\n\t    debug('RETRY', fn.name, args);\n\t    fn.apply(null, args);\n\t  } else if (Date.now() - startTime >= 60000) {\n\t    // it's been more than 60 seconds total, bail now\n\t    debug('TIMEOUT', fn.name, args);\n\t    var cb = args.pop();\n\t    if (typeof cb === 'function')\n\t      cb.call(null, err);\n\t  } else {\n\t    // the amount of time between the last attempt and right now\n\t    var sinceAttempt = Date.now() - lastTime;\n\t    // the amount of time between when we first tried, and when we last tried\n\t    // rounded up to at least 1\n\t    var sinceStart = Math.max(lastTime - startTime, 1);\n\t    // backoff. wait longer than the total time we've been retrying, but only\n\t    // up to a maximum of 100ms\n\t    var desiredDelay = Math.min(sinceStart * 1.2, 100);\n\t    // it's been long enough since the last retry, do it again\n\t    if (sinceAttempt >= desiredDelay) {\n\t      debug('RETRY', fn.name, args);\n\t      fn.apply(null, args.concat([startTime]));\n\t    } else {\n\t      // if we can't do this job yet, push it to the end of the queue\n\t      // and let the next iteration check again\n\t      fs[gracefulQueue].push(elem);\n\t    }\n\t  }\n\n\t  // schedule our next run if one isn't already scheduled\n\t  if (retryTimer === undefined) {\n\t    retryTimer = setTimeout(retry, 0);\n\t  }\n\t}\n\treturn gracefulFs;\n}\n\nvar isStream_1;\nvar hasRequiredIsStream;\n\nfunction requireIsStream () {\n\tif (hasRequiredIsStream) return isStream_1;\n\thasRequiredIsStream = 1;\n\n\tconst isStream = stream =>\n\t\tstream !== null &&\n\t\ttypeof stream === 'object' &&\n\t\ttypeof stream.pipe === 'function';\n\n\tisStream.writable = stream =>\n\t\tisStream(stream) &&\n\t\tstream.writable !== false &&\n\t\ttypeof stream._write === 'function' &&\n\t\ttypeof stream._writableState === 'object';\n\n\tisStream.readable = stream =>\n\t\tisStream(stream) &&\n\t\tstream.readable !== false &&\n\t\ttypeof stream._read === 'function' &&\n\t\ttypeof stream._readableState === 'object';\n\n\tisStream.duplex = stream =>\n\t\tisStream.writable(stream) &&\n\t\tisStream.readable(stream);\n\n\tisStream.transform = stream =>\n\t\tisStream.duplex(stream) &&\n\t\ttypeof stream._transform === 'function';\n\n\tisStream_1 = isStream;\n\treturn isStream_1;\n}\n\nvar readable$1 = {exports: {}};\n\nvar processNextickArgs = {exports: {}};\n\nvar hasRequiredProcessNextickArgs;\n\nfunction requireProcessNextickArgs () {\n\tif (hasRequiredProcessNextickArgs) return processNextickArgs.exports;\n\thasRequiredProcessNextickArgs = 1;\n\n\tif (typeof process === 'undefined' ||\n\t    !process.version ||\n\t    process.version.indexOf('v0.') === 0 ||\n\t    process.version.indexOf('v1.') === 0 && process.version.indexOf('v1.8.') !== 0) {\n\t  processNextickArgs.exports = { nextTick: nextTick };\n\t} else {\n\t  processNextickArgs.exports = process;\n\t}\n\n\tfunction nextTick(fn, arg1, arg2, arg3) {\n\t  if (typeof fn !== 'function') {\n\t    throw new TypeError('\"callback\" argument must be a function');\n\t  }\n\t  var len = arguments.length;\n\t  var args, i;\n\t  switch (len) {\n\t  case 0:\n\t  case 1:\n\t    return process.nextTick(fn);\n\t  case 2:\n\t    return process.nextTick(function afterTickOne() {\n\t      fn.call(null, arg1);\n\t    });\n\t  case 3:\n\t    return process.nextTick(function afterTickTwo() {\n\t      fn.call(null, arg1, arg2);\n\t    });\n\t  case 4:\n\t    return process.nextTick(function afterTickThree() {\n\t      fn.call(null, arg1, arg2, arg3);\n\t    });\n\t  default:\n\t    args = new Array(len - 1);\n\t    i = 0;\n\t    while (i < args.length) {\n\t      args[i++] = arguments[i];\n\t    }\n\t    return process.nextTick(function afterTick() {\n\t      fn.apply(null, args);\n\t    });\n\t  }\n\t}\n\treturn processNextickArgs.exports;\n}\n\nvar isarray;\nvar hasRequiredIsarray;\n\nfunction requireIsarray () {\n\tif (hasRequiredIsarray) return isarray;\n\thasRequiredIsarray = 1;\n\tvar toString = {}.toString;\n\n\tisarray = Array.isArray || function (arr) {\n\t  return toString.call(arr) == '[object Array]';\n\t};\n\treturn isarray;\n}\n\nvar stream$1;\nvar hasRequiredStream$1;\n\nfunction requireStream$1 () {\n\tif (hasRequiredStream$1) return stream$1;\n\thasRequiredStream$1 = 1;\n\tstream$1 = require$$0$b;\n\treturn stream$1;\n}\n\nvar safeBuffer$1 = {exports: {}};\n\n/* eslint-disable node/no-deprecated-api */\n\nvar hasRequiredSafeBuffer$1;\n\nfunction requireSafeBuffer$1 () {\n\tif (hasRequiredSafeBuffer$1) return safeBuffer$1.exports;\n\thasRequiredSafeBuffer$1 = 1;\n\t(function (module, exports) {\n\t\tvar buffer = require$$0$8;\n\t\tvar Buffer = buffer.Buffer;\n\n\t\t// alternative to using Object.keys for old browsers\n\t\tfunction copyProps (src, dst) {\n\t\t  for (var key in src) {\n\t\t    dst[key] = src[key];\n\t\t  }\n\t\t}\n\t\tif (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {\n\t\t  module.exports = buffer;\n\t\t} else {\n\t\t  // Copy properties from require('buffer')\n\t\t  copyProps(buffer, exports);\n\t\t  exports.Buffer = SafeBuffer;\n\t\t}\n\n\t\tfunction SafeBuffer (arg, encodingOrOffset, length) {\n\t\t  return Buffer(arg, encodingOrOffset, length)\n\t\t}\n\n\t\t// Copy static methods from Buffer\n\t\tcopyProps(Buffer, SafeBuffer);\n\n\t\tSafeBuffer.from = function (arg, encodingOrOffset, length) {\n\t\t  if (typeof arg === 'number') {\n\t\t    throw new TypeError('Argument must not be a number')\n\t\t  }\n\t\t  return Buffer(arg, encodingOrOffset, length)\n\t\t};\n\n\t\tSafeBuffer.alloc = function (size, fill, encoding) {\n\t\t  if (typeof size !== 'number') {\n\t\t    throw new TypeError('Argument must be a number')\n\t\t  }\n\t\t  var buf = Buffer(size);\n\t\t  if (fill !== undefined) {\n\t\t    if (typeof encoding === 'string') {\n\t\t      buf.fill(fill, encoding);\n\t\t    } else {\n\t\t      buf.fill(fill);\n\t\t    }\n\t\t  } else {\n\t\t    buf.fill(0);\n\t\t  }\n\t\t  return buf\n\t\t};\n\n\t\tSafeBuffer.allocUnsafe = function (size) {\n\t\t  if (typeof size !== 'number') {\n\t\t    throw new TypeError('Argument must be a number')\n\t\t  }\n\t\t  return Buffer(size)\n\t\t};\n\n\t\tSafeBuffer.allocUnsafeSlow = function (size) {\n\t\t  if (typeof size !== 'number') {\n\t\t    throw new TypeError('Argument must be a number')\n\t\t  }\n\t\t  return buffer.SlowBuffer(size)\n\t\t}; \n\t} (safeBuffer$1, safeBuffer$1.exports));\n\treturn safeBuffer$1.exports;\n}\n\nvar util$3 = {};\n\nvar hasRequiredUtil$3;\n\nfunction requireUtil$3 () {\n\tif (hasRequiredUtil$3) return util$3;\n\thasRequiredUtil$3 = 1;\n\t// Copyright Joyent, Inc. and other Node contributors.\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a\n\t// copy of this software and associated documentation files (the\n\t// \"Software\"), to deal in the Software without restriction, including\n\t// without limitation the rights to use, copy, modify, merge, publish,\n\t// distribute, sublicense, and/or sell copies of the Software, and to permit\n\t// persons to whom the Software is furnished to do so, subject to the\n\t// following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included\n\t// in all copies or substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n\t// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\t// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n\t// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n\t// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n\t// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n\t// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\t// NOTE: These type checking functions intentionally don't use `instanceof`\n\t// because it is fragile and can be easily faked with `Object.create()`.\n\n\tfunction isArray(arg) {\n\t  if (Array.isArray) {\n\t    return Array.isArray(arg);\n\t  }\n\t  return objectToString(arg) === '[object Array]';\n\t}\n\tutil$3.isArray = isArray;\n\n\tfunction isBoolean(arg) {\n\t  return typeof arg === 'boolean';\n\t}\n\tutil$3.isBoolean = isBoolean;\n\n\tfunction isNull(arg) {\n\t  return arg === null;\n\t}\n\tutil$3.isNull = isNull;\n\n\tfunction isNullOrUndefined(arg) {\n\t  return arg == null;\n\t}\n\tutil$3.isNullOrUndefined = isNullOrUndefined;\n\n\tfunction isNumber(arg) {\n\t  return typeof arg === 'number';\n\t}\n\tutil$3.isNumber = isNumber;\n\n\tfunction isString(arg) {\n\t  return typeof arg === 'string';\n\t}\n\tutil$3.isString = isString;\n\n\tfunction isSymbol(arg) {\n\t  return typeof arg === 'symbol';\n\t}\n\tutil$3.isSymbol = isSymbol;\n\n\tfunction isUndefined(arg) {\n\t  return arg === void 0;\n\t}\n\tutil$3.isUndefined = isUndefined;\n\n\tfunction isRegExp(re) {\n\t  return objectToString(re) === '[object RegExp]';\n\t}\n\tutil$3.isRegExp = isRegExp;\n\n\tfunction isObject(arg) {\n\t  return typeof arg === 'object' && arg !== null;\n\t}\n\tutil$3.isObject = isObject;\n\n\tfunction isDate(d) {\n\t  return objectToString(d) === '[object Date]';\n\t}\n\tutil$3.isDate = isDate;\n\n\tfunction isError(e) {\n\t  return (objectToString(e) === '[object Error]' || e instanceof Error);\n\t}\n\tutil$3.isError = isError;\n\n\tfunction isFunction(arg) {\n\t  return typeof arg === 'function';\n\t}\n\tutil$3.isFunction = isFunction;\n\n\tfunction isPrimitive(arg) {\n\t  return arg === null ||\n\t         typeof arg === 'boolean' ||\n\t         typeof arg === 'number' ||\n\t         typeof arg === 'string' ||\n\t         typeof arg === 'symbol' ||  // ES6 symbol\n\t         typeof arg === 'undefined';\n\t}\n\tutil$3.isPrimitive = isPrimitive;\n\n\tutil$3.isBuffer = require$$0$8.Buffer.isBuffer;\n\n\tfunction objectToString(o) {\n\t  return Object.prototype.toString.call(o);\n\t}\n\treturn util$3;\n}\n\nvar inherits = {exports: {}};\n\nvar inherits_browser = {exports: {}};\n\nvar hasRequiredInherits_browser;\n\nfunction requireInherits_browser () {\n\tif (hasRequiredInherits_browser) return inherits_browser.exports;\n\thasRequiredInherits_browser = 1;\n\tif (typeof Object.create === 'function') {\n\t  // implementation from standard node.js 'util' module\n\t  inherits_browser.exports = function inherits(ctor, superCtor) {\n\t    if (superCtor) {\n\t      ctor.super_ = superCtor;\n\t      ctor.prototype = Object.create(superCtor.prototype, {\n\t        constructor: {\n\t          value: ctor,\n\t          enumerable: false,\n\t          writable: true,\n\t          configurable: true\n\t        }\n\t      });\n\t    }\n\t  };\n\t} else {\n\t  // old school shim for old browsers\n\t  inherits_browser.exports = function inherits(ctor, superCtor) {\n\t    if (superCtor) {\n\t      ctor.super_ = superCtor;\n\t      var TempCtor = function () {};\n\t      TempCtor.prototype = superCtor.prototype;\n\t      ctor.prototype = new TempCtor();\n\t      ctor.prototype.constructor = ctor;\n\t    }\n\t  };\n\t}\n\treturn inherits_browser.exports;\n}\n\nvar hasRequiredInherits;\n\nfunction requireInherits () {\n\tif (hasRequiredInherits) return inherits.exports;\n\thasRequiredInherits = 1;\n\ttry {\n\t  var util = require('util');\n\t  /* istanbul ignore next */\n\t  if (typeof util.inherits !== 'function') throw '';\n\t  inherits.exports = util.inherits;\n\t} catch (e) {\n\t  /* istanbul ignore next */\n\t  inherits.exports = requireInherits_browser();\n\t}\n\treturn inherits.exports;\n}\n\nvar BufferList = {exports: {}};\n\nvar hasRequiredBufferList;\n\nfunction requireBufferList () {\n\tif (hasRequiredBufferList) return BufferList.exports;\n\thasRequiredBufferList = 1;\n\t(function (module) {\n\n\t\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\t\tvar Buffer = requireSafeBuffer$1().Buffer;\n\t\tvar util = require$$0__default$1;\n\n\t\tfunction copyBuffer(src, target, offset) {\n\t\t  src.copy(target, offset);\n\t\t}\n\n\t\tmodule.exports = function () {\n\t\t  function BufferList() {\n\t\t    _classCallCheck(this, BufferList);\n\n\t\t    this.head = null;\n\t\t    this.tail = null;\n\t\t    this.length = 0;\n\t\t  }\n\n\t\t  BufferList.prototype.push = function push(v) {\n\t\t    var entry = { data: v, next: null };\n\t\t    if (this.length > 0) this.tail.next = entry;else this.head = entry;\n\t\t    this.tail = entry;\n\t\t    ++this.length;\n\t\t  };\n\n\t\t  BufferList.prototype.unshift = function unshift(v) {\n\t\t    var entry = { data: v, next: this.head };\n\t\t    if (this.length === 0) this.tail = entry;\n\t\t    this.head = entry;\n\t\t    ++this.length;\n\t\t  };\n\n\t\t  BufferList.prototype.shift = function shift() {\n\t\t    if (this.length === 0) return;\n\t\t    var ret = this.head.data;\n\t\t    if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;\n\t\t    --this.length;\n\t\t    return ret;\n\t\t  };\n\n\t\t  BufferList.prototype.clear = function clear() {\n\t\t    this.head = this.tail = null;\n\t\t    this.length = 0;\n\t\t  };\n\n\t\t  BufferList.prototype.join = function join(s) {\n\t\t    if (this.length === 0) return '';\n\t\t    var p = this.head;\n\t\t    var ret = '' + p.data;\n\t\t    while (p = p.next) {\n\t\t      ret += s + p.data;\n\t\t    }return ret;\n\t\t  };\n\n\t\t  BufferList.prototype.concat = function concat(n) {\n\t\t    if (this.length === 0) return Buffer.alloc(0);\n\t\t    var ret = Buffer.allocUnsafe(n >>> 0);\n\t\t    var p = this.head;\n\t\t    var i = 0;\n\t\t    while (p) {\n\t\t      copyBuffer(p.data, ret, i);\n\t\t      i += p.data.length;\n\t\t      p = p.next;\n\t\t    }\n\t\t    return ret;\n\t\t  };\n\n\t\t  return BufferList;\n\t\t}();\n\n\t\tif (util && util.inspect && util.inspect.custom) {\n\t\t  module.exports.prototype[util.inspect.custom] = function () {\n\t\t    var obj = util.inspect({ length: this.length });\n\t\t    return this.constructor.name + ' ' + obj;\n\t\t  };\n\t\t} \n\t} (BufferList));\n\treturn BufferList.exports;\n}\n\nvar destroy_1$1;\nvar hasRequiredDestroy$1;\n\nfunction requireDestroy$1 () {\n\tif (hasRequiredDestroy$1) return destroy_1$1;\n\thasRequiredDestroy$1 = 1;\n\n\t/*<replacement>*/\n\n\tvar pna = requireProcessNextickArgs();\n\t/*</replacement>*/\n\n\t// undocumented cb() API, needed for core, not for public API\n\tfunction destroy(err, cb) {\n\t  var _this = this;\n\n\t  var readableDestroyed = this._readableState && this._readableState.destroyed;\n\t  var writableDestroyed = this._writableState && this._writableState.destroyed;\n\n\t  if (readableDestroyed || writableDestroyed) {\n\t    if (cb) {\n\t      cb(err);\n\t    } else if (err) {\n\t      if (!this._writableState) {\n\t        pna.nextTick(emitErrorNT, this, err);\n\t      } else if (!this._writableState.errorEmitted) {\n\t        this._writableState.errorEmitted = true;\n\t        pna.nextTick(emitErrorNT, this, err);\n\t      }\n\t    }\n\n\t    return this;\n\t  }\n\n\t  // we set destroyed to true before firing error callbacks in order\n\t  // to make it re-entrance safe in case destroy() is called within callbacks\n\n\t  if (this._readableState) {\n\t    this._readableState.destroyed = true;\n\t  }\n\n\t  // if this is a duplex stream mark the writable part as destroyed as well\n\t  if (this._writableState) {\n\t    this._writableState.destroyed = true;\n\t  }\n\n\t  this._destroy(err || null, function (err) {\n\t    if (!cb && err) {\n\t      if (!_this._writableState) {\n\t        pna.nextTick(emitErrorNT, _this, err);\n\t      } else if (!_this._writableState.errorEmitted) {\n\t        _this._writableState.errorEmitted = true;\n\t        pna.nextTick(emitErrorNT, _this, err);\n\t      }\n\t    } else if (cb) {\n\t      cb(err);\n\t    }\n\t  });\n\n\t  return this;\n\t}\n\n\tfunction undestroy() {\n\t  if (this._readableState) {\n\t    this._readableState.destroyed = false;\n\t    this._readableState.reading = false;\n\t    this._readableState.ended = false;\n\t    this._readableState.endEmitted = false;\n\t  }\n\n\t  if (this._writableState) {\n\t    this._writableState.destroyed = false;\n\t    this._writableState.ended = false;\n\t    this._writableState.ending = false;\n\t    this._writableState.finalCalled = false;\n\t    this._writableState.prefinished = false;\n\t    this._writableState.finished = false;\n\t    this._writableState.errorEmitted = false;\n\t  }\n\t}\n\n\tfunction emitErrorNT(self, err) {\n\t  self.emit('error', err);\n\t}\n\n\tdestroy_1$1 = {\n\t  destroy: destroy,\n\t  undestroy: undestroy\n\t};\n\treturn destroy_1$1;\n}\n\nvar node;\nvar hasRequiredNode;\n\nfunction requireNode () {\n\tif (hasRequiredNode) return node;\n\thasRequiredNode = 1;\n\t/**\n\t * For Node.js, simply re-export the core `util.deprecate` function.\n\t */\n\n\tnode = require$$0__default$1.deprecate;\n\treturn node;\n}\n\nvar _stream_writable;\nvar hasRequired_stream_writable;\n\nfunction require_stream_writable () {\n\tif (hasRequired_stream_writable) return _stream_writable;\n\thasRequired_stream_writable = 1;\n\n\t/*<replacement>*/\n\n\tvar pna = requireProcessNextickArgs();\n\t/*</replacement>*/\n\n\t_stream_writable = Writable;\n\n\t// It seems a linked list but it is not\n\t// there will be only 2 of these for each stream\n\tfunction CorkedRequest(state) {\n\t  var _this = this;\n\n\t  this.next = null;\n\t  this.entry = null;\n\t  this.finish = function () {\n\t    onCorkedFinish(_this, state);\n\t  };\n\t}\n\t/* </replacement> */\n\n\t/*<replacement>*/\n\tvar asyncWrite = !process.browser && ['v0.10', 'v0.9.'].indexOf(process.version.slice(0, 5)) > -1 ? setImmediate : pna.nextTick;\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\tvar Duplex;\n\t/*</replacement>*/\n\n\tWritable.WritableState = WritableState;\n\n\t/*<replacement>*/\n\tvar util = Object.create(requireUtil$3());\n\tutil.inherits = requireInherits();\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\tvar internalUtil = {\n\t  deprecate: requireNode()\n\t};\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\tvar Stream = requireStream$1();\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\n\tvar Buffer = requireSafeBuffer$1().Buffer;\n\tvar OurUint8Array = (typeof commonjsGlobal !== 'undefined' ? commonjsGlobal : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};\n\tfunction _uint8ArrayToBuffer(chunk) {\n\t  return Buffer.from(chunk);\n\t}\n\tfunction _isUint8Array(obj) {\n\t  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;\n\t}\n\n\t/*</replacement>*/\n\n\tvar destroyImpl = requireDestroy$1();\n\n\tutil.inherits(Writable, Stream);\n\n\tfunction nop() {}\n\n\tfunction WritableState(options, stream) {\n\t  Duplex = Duplex || require_stream_duplex();\n\n\t  options = options || {};\n\n\t  // Duplex streams are both readable and writable, but share\n\t  // the same options object.\n\t  // However, some cases require setting options to different\n\t  // values for the readable and the writable sides of the duplex stream.\n\t  // These options can be provided separately as readableXXX and writableXXX.\n\t  var isDuplex = stream instanceof Duplex;\n\n\t  // object stream flag to indicate whether or not this stream\n\t  // contains buffers or objects.\n\t  this.objectMode = !!options.objectMode;\n\n\t  if (isDuplex) this.objectMode = this.objectMode || !!options.writableObjectMode;\n\n\t  // the point at which write() starts returning false\n\t  // Note: 0 is a valid value, means that we always return false if\n\t  // the entire buffer is not flushed immediately on write()\n\t  var hwm = options.highWaterMark;\n\t  var writableHwm = options.writableHighWaterMark;\n\t  var defaultHwm = this.objectMode ? 16 : 16 * 1024;\n\n\t  if (hwm || hwm === 0) this.highWaterMark = hwm;else if (isDuplex && (writableHwm || writableHwm === 0)) this.highWaterMark = writableHwm;else this.highWaterMark = defaultHwm;\n\n\t  // cast to ints.\n\t  this.highWaterMark = Math.floor(this.highWaterMark);\n\n\t  // if _final has been called\n\t  this.finalCalled = false;\n\n\t  // drain event flag.\n\t  this.needDrain = false;\n\t  // at the start of calling end()\n\t  this.ending = false;\n\t  // when end() has been called, and returned\n\t  this.ended = false;\n\t  // when 'finish' is emitted\n\t  this.finished = false;\n\n\t  // has it been destroyed\n\t  this.destroyed = false;\n\n\t  // should we decode strings into buffers before passing to _write?\n\t  // this is here so that some node-core streams can optimize string\n\t  // handling at a lower level.\n\t  var noDecode = options.decodeStrings === false;\n\t  this.decodeStrings = !noDecode;\n\n\t  // Crypto is kind of old and crusty.  Historically, its default string\n\t  // encoding is 'binary' so we have to make this configurable.\n\t  // Everything else in the universe uses 'utf8', though.\n\t  this.defaultEncoding = options.defaultEncoding || 'utf8';\n\n\t  // not an actual buffer we keep track of, but a measurement\n\t  // of how much we're waiting to get pushed to some underlying\n\t  // socket or file.\n\t  this.length = 0;\n\n\t  // a flag to see when we're in the middle of a write.\n\t  this.writing = false;\n\n\t  // when true all writes will be buffered until .uncork() call\n\t  this.corked = 0;\n\n\t  // a flag to be able to tell if the onwrite cb is called immediately,\n\t  // or on a later tick.  We set this to true at first, because any\n\t  // actions that shouldn't happen until \"later\" should generally also\n\t  // not happen before the first write call.\n\t  this.sync = true;\n\n\t  // a flag to know if we're processing previously buffered items, which\n\t  // may call the _write() callback in the same tick, so that we don't\n\t  // end up in an overlapped onwrite situation.\n\t  this.bufferProcessing = false;\n\n\t  // the callback that's passed to _write(chunk,cb)\n\t  this.onwrite = function (er) {\n\t    onwrite(stream, er);\n\t  };\n\n\t  // the callback that the user supplies to write(chunk,encoding,cb)\n\t  this.writecb = null;\n\n\t  // the amount that is being written when _write is called.\n\t  this.writelen = 0;\n\n\t  this.bufferedRequest = null;\n\t  this.lastBufferedRequest = null;\n\n\t  // number of pending user-supplied write callbacks\n\t  // this must be 0 before 'finish' can be emitted\n\t  this.pendingcb = 0;\n\n\t  // emit prefinish if the only thing we're waiting for is _write cbs\n\t  // This is relevant for synchronous Transform streams\n\t  this.prefinished = false;\n\n\t  // True if the error was already emitted and should not be thrown again\n\t  this.errorEmitted = false;\n\n\t  // count buffered requests\n\t  this.bufferedRequestCount = 0;\n\n\t  // allocate the first CorkedRequest, there is always\n\t  // one allocated and free to use, and we maintain at most two\n\t  this.corkedRequestsFree = new CorkedRequest(this);\n\t}\n\n\tWritableState.prototype.getBuffer = function getBuffer() {\n\t  var current = this.bufferedRequest;\n\t  var out = [];\n\t  while (current) {\n\t    out.push(current);\n\t    current = current.next;\n\t  }\n\t  return out;\n\t};\n\n\t(function () {\n\t  try {\n\t    Object.defineProperty(WritableState.prototype, 'buffer', {\n\t      get: internalUtil.deprecate(function () {\n\t        return this.getBuffer();\n\t      }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003')\n\t    });\n\t  } catch (_) {}\n\t})();\n\n\t// Test _writableState for inheritance to account for Duplex streams,\n\t// whose prototype chain only points to Readable.\n\tvar realHasInstance;\n\tif (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === 'function') {\n\t  realHasInstance = Function.prototype[Symbol.hasInstance];\n\t  Object.defineProperty(Writable, Symbol.hasInstance, {\n\t    value: function (object) {\n\t      if (realHasInstance.call(this, object)) return true;\n\t      if (this !== Writable) return false;\n\n\t      return object && object._writableState instanceof WritableState;\n\t    }\n\t  });\n\t} else {\n\t  realHasInstance = function (object) {\n\t    return object instanceof this;\n\t  };\n\t}\n\n\tfunction Writable(options) {\n\t  Duplex = Duplex || require_stream_duplex();\n\n\t  // Writable ctor is applied to Duplexes, too.\n\t  // `realHasInstance` is necessary because using plain `instanceof`\n\t  // would return false, as no `_writableState` property is attached.\n\n\t  // Trying to use the custom `instanceof` for Writable here will also break the\n\t  // Node.js LazyTransform implementation, which has a non-trivial getter for\n\t  // `_writableState` that would lead to infinite recursion.\n\t  if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {\n\t    return new Writable(options);\n\t  }\n\n\t  this._writableState = new WritableState(options, this);\n\n\t  // legacy.\n\t  this.writable = true;\n\n\t  if (options) {\n\t    if (typeof options.write === 'function') this._write = options.write;\n\n\t    if (typeof options.writev === 'function') this._writev = options.writev;\n\n\t    if (typeof options.destroy === 'function') this._destroy = options.destroy;\n\n\t    if (typeof options.final === 'function') this._final = options.final;\n\t  }\n\n\t  Stream.call(this);\n\t}\n\n\t// Otherwise people can pipe Writable streams, which is just wrong.\n\tWritable.prototype.pipe = function () {\n\t  this.emit('error', new Error('Cannot pipe, not readable'));\n\t};\n\n\tfunction writeAfterEnd(stream, cb) {\n\t  var er = new Error('write after end');\n\t  // TODO: defer error events consistently everywhere, not just the cb\n\t  stream.emit('error', er);\n\t  pna.nextTick(cb, er);\n\t}\n\n\t// Checks that a user-supplied chunk is valid, especially for the particular\n\t// mode the stream is in. Currently this means that `null` is never accepted\n\t// and undefined/non-string values are only allowed in object mode.\n\tfunction validChunk(stream, state, chunk, cb) {\n\t  var valid = true;\n\t  var er = false;\n\n\t  if (chunk === null) {\n\t    er = new TypeError('May not write null values to stream');\n\t  } else if (typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) {\n\t    er = new TypeError('Invalid non-string/buffer chunk');\n\t  }\n\t  if (er) {\n\t    stream.emit('error', er);\n\t    pna.nextTick(cb, er);\n\t    valid = false;\n\t  }\n\t  return valid;\n\t}\n\n\tWritable.prototype.write = function (chunk, encoding, cb) {\n\t  var state = this._writableState;\n\t  var ret = false;\n\t  var isBuf = !state.objectMode && _isUint8Array(chunk);\n\n\t  if (isBuf && !Buffer.isBuffer(chunk)) {\n\t    chunk = _uint8ArrayToBuffer(chunk);\n\t  }\n\n\t  if (typeof encoding === 'function') {\n\t    cb = encoding;\n\t    encoding = null;\n\t  }\n\n\t  if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding;\n\n\t  if (typeof cb !== 'function') cb = nop;\n\n\t  if (state.ended) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) {\n\t    state.pendingcb++;\n\t    ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb);\n\t  }\n\n\t  return ret;\n\t};\n\n\tWritable.prototype.cork = function () {\n\t  var state = this._writableState;\n\n\t  state.corked++;\n\t};\n\n\tWritable.prototype.uncork = function () {\n\t  var state = this._writableState;\n\n\t  if (state.corked) {\n\t    state.corked--;\n\n\t    if (!state.writing && !state.corked && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state);\n\t  }\n\t};\n\n\tWritable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {\n\t  // node::ParseEncoding() requires lower case.\n\t  if (typeof encoding === 'string') encoding = encoding.toLowerCase();\n\t  if (!(['hex', 'utf8', 'utf-8', 'ascii', 'binary', 'base64', 'ucs2', 'ucs-2', 'utf16le', 'utf-16le', 'raw'].indexOf((encoding + '').toLowerCase()) > -1)) throw new TypeError('Unknown encoding: ' + encoding);\n\t  this._writableState.defaultEncoding = encoding;\n\t  return this;\n\t};\n\n\tfunction decodeChunk(state, chunk, encoding) {\n\t  if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') {\n\t    chunk = Buffer.from(chunk, encoding);\n\t  }\n\t  return chunk;\n\t}\n\n\tObject.defineProperty(Writable.prototype, 'writableHighWaterMark', {\n\t  // making it explicit this property is not enumerable\n\t  // because otherwise some prototype manipulation in\n\t  // userland will fail\n\t  enumerable: false,\n\t  get: function () {\n\t    return this._writableState.highWaterMark;\n\t  }\n\t});\n\n\t// if we're already writing something, then just put this\n\t// in the queue, and wait our turn.  Otherwise, call _write\n\t// If we return false, then we need a drain event, so set that flag.\n\tfunction writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) {\n\t  if (!isBuf) {\n\t    var newChunk = decodeChunk(state, chunk, encoding);\n\t    if (chunk !== newChunk) {\n\t      isBuf = true;\n\t      encoding = 'buffer';\n\t      chunk = newChunk;\n\t    }\n\t  }\n\t  var len = state.objectMode ? 1 : chunk.length;\n\n\t  state.length += len;\n\n\t  var ret = state.length < state.highWaterMark;\n\t  // we must ensure that previous needDrain will not be reset to false.\n\t  if (!ret) state.needDrain = true;\n\n\t  if (state.writing || state.corked) {\n\t    var last = state.lastBufferedRequest;\n\t    state.lastBufferedRequest = {\n\t      chunk: chunk,\n\t      encoding: encoding,\n\t      isBuf: isBuf,\n\t      callback: cb,\n\t      next: null\n\t    };\n\t    if (last) {\n\t      last.next = state.lastBufferedRequest;\n\t    } else {\n\t      state.bufferedRequest = state.lastBufferedRequest;\n\t    }\n\t    state.bufferedRequestCount += 1;\n\t  } else {\n\t    doWrite(stream, state, false, len, chunk, encoding, cb);\n\t  }\n\n\t  return ret;\n\t}\n\n\tfunction doWrite(stream, state, writev, len, chunk, encoding, cb) {\n\t  state.writelen = len;\n\t  state.writecb = cb;\n\t  state.writing = true;\n\t  state.sync = true;\n\t  if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite);\n\t  state.sync = false;\n\t}\n\n\tfunction onwriteError(stream, state, sync, er, cb) {\n\t  --state.pendingcb;\n\n\t  if (sync) {\n\t    // defer the callback if we are being called synchronously\n\t    // to avoid piling up things on the stack\n\t    pna.nextTick(cb, er);\n\t    // this can emit finish, and it will always happen\n\t    // after error\n\t    pna.nextTick(finishMaybe, stream, state);\n\t    stream._writableState.errorEmitted = true;\n\t    stream.emit('error', er);\n\t  } else {\n\t    // the caller expect this to happen before if\n\t    // it is async\n\t    cb(er);\n\t    stream._writableState.errorEmitted = true;\n\t    stream.emit('error', er);\n\t    // this can emit finish, but finish must\n\t    // always follow error\n\t    finishMaybe(stream, state);\n\t  }\n\t}\n\n\tfunction onwriteStateUpdate(state) {\n\t  state.writing = false;\n\t  state.writecb = null;\n\t  state.length -= state.writelen;\n\t  state.writelen = 0;\n\t}\n\n\tfunction onwrite(stream, er) {\n\t  var state = stream._writableState;\n\t  var sync = state.sync;\n\t  var cb = state.writecb;\n\n\t  onwriteStateUpdate(state);\n\n\t  if (er) onwriteError(stream, state, sync, er, cb);else {\n\t    // Check if we're actually ready to finish, but don't emit yet\n\t    var finished = needFinish(state);\n\n\t    if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) {\n\t      clearBuffer(stream, state);\n\t    }\n\n\t    if (sync) {\n\t      /*<replacement>*/\n\t      asyncWrite(afterWrite, stream, state, finished, cb);\n\t      /*</replacement>*/\n\t    } else {\n\t      afterWrite(stream, state, finished, cb);\n\t    }\n\t  }\n\t}\n\n\tfunction afterWrite(stream, state, finished, cb) {\n\t  if (!finished) onwriteDrain(stream, state);\n\t  state.pendingcb--;\n\t  cb();\n\t  finishMaybe(stream, state);\n\t}\n\n\t// Must force callback to be called on nextTick, so that we don't\n\t// emit 'drain' before the write() consumer gets the 'false' return\n\t// value, and has a chance to attach a 'drain' listener.\n\tfunction onwriteDrain(stream, state) {\n\t  if (state.length === 0 && state.needDrain) {\n\t    state.needDrain = false;\n\t    stream.emit('drain');\n\t  }\n\t}\n\n\t// if there's something in the buffer waiting, then process it\n\tfunction clearBuffer(stream, state) {\n\t  state.bufferProcessing = true;\n\t  var entry = state.bufferedRequest;\n\n\t  if (stream._writev && entry && entry.next) {\n\t    // Fast case, write everything using _writev()\n\t    var l = state.bufferedRequestCount;\n\t    var buffer = new Array(l);\n\t    var holder = state.corkedRequestsFree;\n\t    holder.entry = entry;\n\n\t    var count = 0;\n\t    var allBuffers = true;\n\t    while (entry) {\n\t      buffer[count] = entry;\n\t      if (!entry.isBuf) allBuffers = false;\n\t      entry = entry.next;\n\t      count += 1;\n\t    }\n\t    buffer.allBuffers = allBuffers;\n\n\t    doWrite(stream, state, true, state.length, buffer, '', holder.finish);\n\n\t    // doWrite is almost always async, defer these to save a bit of time\n\t    // as the hot path ends with doWrite\n\t    state.pendingcb++;\n\t    state.lastBufferedRequest = null;\n\t    if (holder.next) {\n\t      state.corkedRequestsFree = holder.next;\n\t      holder.next = null;\n\t    } else {\n\t      state.corkedRequestsFree = new CorkedRequest(state);\n\t    }\n\t    state.bufferedRequestCount = 0;\n\t  } else {\n\t    // Slow case, write chunks one-by-one\n\t    while (entry) {\n\t      var chunk = entry.chunk;\n\t      var encoding = entry.encoding;\n\t      var cb = entry.callback;\n\t      var len = state.objectMode ? 1 : chunk.length;\n\n\t      doWrite(stream, state, false, len, chunk, encoding, cb);\n\t      entry = entry.next;\n\t      state.bufferedRequestCount--;\n\t      // if we didn't call the onwrite immediately, then\n\t      // it means that we need to wait until it does.\n\t      // also, that means that the chunk and cb are currently\n\t      // being processed, so move the buffer counter past them.\n\t      if (state.writing) {\n\t        break;\n\t      }\n\t    }\n\n\t    if (entry === null) state.lastBufferedRequest = null;\n\t  }\n\n\t  state.bufferedRequest = entry;\n\t  state.bufferProcessing = false;\n\t}\n\n\tWritable.prototype._write = function (chunk, encoding, cb) {\n\t  cb(new Error('_write() is not implemented'));\n\t};\n\n\tWritable.prototype._writev = null;\n\n\tWritable.prototype.end = function (chunk, encoding, cb) {\n\t  var state = this._writableState;\n\n\t  if (typeof chunk === 'function') {\n\t    cb = chunk;\n\t    chunk = null;\n\t    encoding = null;\n\t  } else if (typeof encoding === 'function') {\n\t    cb = encoding;\n\t    encoding = null;\n\t  }\n\n\t  if (chunk !== null && chunk !== undefined) this.write(chunk, encoding);\n\n\t  // .end() fully uncorks\n\t  if (state.corked) {\n\t    state.corked = 1;\n\t    this.uncork();\n\t  }\n\n\t  // ignore unnecessary end() calls.\n\t  if (!state.ending) endWritable(this, state, cb);\n\t};\n\n\tfunction needFinish(state) {\n\t  return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing;\n\t}\n\tfunction callFinal(stream, state) {\n\t  stream._final(function (err) {\n\t    state.pendingcb--;\n\t    if (err) {\n\t      stream.emit('error', err);\n\t    }\n\t    state.prefinished = true;\n\t    stream.emit('prefinish');\n\t    finishMaybe(stream, state);\n\t  });\n\t}\n\tfunction prefinish(stream, state) {\n\t  if (!state.prefinished && !state.finalCalled) {\n\t    if (typeof stream._final === 'function') {\n\t      state.pendingcb++;\n\t      state.finalCalled = true;\n\t      pna.nextTick(callFinal, stream, state);\n\t    } else {\n\t      state.prefinished = true;\n\t      stream.emit('prefinish');\n\t    }\n\t  }\n\t}\n\n\tfunction finishMaybe(stream, state) {\n\t  var need = needFinish(state);\n\t  if (need) {\n\t    prefinish(stream, state);\n\t    if (state.pendingcb === 0) {\n\t      state.finished = true;\n\t      stream.emit('finish');\n\t    }\n\t  }\n\t  return need;\n\t}\n\n\tfunction endWritable(stream, state, cb) {\n\t  state.ending = true;\n\t  finishMaybe(stream, state);\n\t  if (cb) {\n\t    if (state.finished) pna.nextTick(cb);else stream.once('finish', cb);\n\t  }\n\t  state.ended = true;\n\t  stream.writable = false;\n\t}\n\n\tfunction onCorkedFinish(corkReq, state, err) {\n\t  var entry = corkReq.entry;\n\t  corkReq.entry = null;\n\t  while (entry) {\n\t    var cb = entry.callback;\n\t    state.pendingcb--;\n\t    cb(err);\n\t    entry = entry.next;\n\t  }\n\n\t  // reuse the free corkReq.\n\t  state.corkedRequestsFree.next = corkReq;\n\t}\n\n\tObject.defineProperty(Writable.prototype, 'destroyed', {\n\t  get: function () {\n\t    if (this._writableState === undefined) {\n\t      return false;\n\t    }\n\t    return this._writableState.destroyed;\n\t  },\n\t  set: function (value) {\n\t    // we ignore the value if the stream\n\t    // has not been initialized yet\n\t    if (!this._writableState) {\n\t      return;\n\t    }\n\n\t    // backward compatibility, the user is explicitly\n\t    // managing destroyed\n\t    this._writableState.destroyed = value;\n\t  }\n\t});\n\n\tWritable.prototype.destroy = destroyImpl.destroy;\n\tWritable.prototype._undestroy = destroyImpl.undestroy;\n\tWritable.prototype._destroy = function (err, cb) {\n\t  this.end();\n\t  cb(err);\n\t};\n\treturn _stream_writable;\n}\n\nvar _stream_duplex;\nvar hasRequired_stream_duplex;\n\nfunction require_stream_duplex () {\n\tif (hasRequired_stream_duplex) return _stream_duplex;\n\thasRequired_stream_duplex = 1;\n\n\t/*<replacement>*/\n\n\tvar pna = requireProcessNextickArgs();\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\tvar objectKeys = Object.keys || function (obj) {\n\t  var keys = [];\n\t  for (var key in obj) {\n\t    keys.push(key);\n\t  }return keys;\n\t};\n\t/*</replacement>*/\n\n\t_stream_duplex = Duplex;\n\n\t/*<replacement>*/\n\tvar util = Object.create(requireUtil$3());\n\tutil.inherits = requireInherits();\n\t/*</replacement>*/\n\n\tvar Readable = require_stream_readable();\n\tvar Writable = require_stream_writable();\n\n\tutil.inherits(Duplex, Readable);\n\n\t{\n\t  // avoid scope creep, the keys array can then be collected\n\t  var keys = objectKeys(Writable.prototype);\n\t  for (var v = 0; v < keys.length; v++) {\n\t    var method = keys[v];\n\t    if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];\n\t  }\n\t}\n\n\tfunction Duplex(options) {\n\t  if (!(this instanceof Duplex)) return new Duplex(options);\n\n\t  Readable.call(this, options);\n\t  Writable.call(this, options);\n\n\t  if (options && options.readable === false) this.readable = false;\n\n\t  if (options && options.writable === false) this.writable = false;\n\n\t  this.allowHalfOpen = true;\n\t  if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;\n\n\t  this.once('end', onend);\n\t}\n\n\tObject.defineProperty(Duplex.prototype, 'writableHighWaterMark', {\n\t  // making it explicit this property is not enumerable\n\t  // because otherwise some prototype manipulation in\n\t  // userland will fail\n\t  enumerable: false,\n\t  get: function () {\n\t    return this._writableState.highWaterMark;\n\t  }\n\t});\n\n\t// the no-half-open enforcer\n\tfunction onend() {\n\t  // if we allow half-open state, or if the writable side ended,\n\t  // then we're ok.\n\t  if (this.allowHalfOpen || this._writableState.ended) return;\n\n\t  // no more data can be written.\n\t  // But allow more writes to happen in this tick.\n\t  pna.nextTick(onEndNT, this);\n\t}\n\n\tfunction onEndNT(self) {\n\t  self.end();\n\t}\n\n\tObject.defineProperty(Duplex.prototype, 'destroyed', {\n\t  get: function () {\n\t    if (this._readableState === undefined || this._writableState === undefined) {\n\t      return false;\n\t    }\n\t    return this._readableState.destroyed && this._writableState.destroyed;\n\t  },\n\t  set: function (value) {\n\t    // we ignore the value if the stream\n\t    // has not been initialized yet\n\t    if (this._readableState === undefined || this._writableState === undefined) {\n\t      return;\n\t    }\n\n\t    // backward compatibility, the user is explicitly\n\t    // managing destroyed\n\t    this._readableState.destroyed = value;\n\t    this._writableState.destroyed = value;\n\t  }\n\t});\n\n\tDuplex.prototype._destroy = function (err, cb) {\n\t  this.push(null);\n\t  this.end();\n\n\t  pna.nextTick(cb, err);\n\t};\n\treturn _stream_duplex;\n}\n\nvar string_decoder$1 = {};\n\nvar hasRequiredString_decoder$1;\n\nfunction requireString_decoder$1 () {\n\tif (hasRequiredString_decoder$1) return string_decoder$1;\n\thasRequiredString_decoder$1 = 1;\n\n\t/*<replacement>*/\n\n\tvar Buffer = requireSafeBuffer$1().Buffer;\n\t/*</replacement>*/\n\n\tvar isEncoding = Buffer.isEncoding || function (encoding) {\n\t  encoding = '' + encoding;\n\t  switch (encoding && encoding.toLowerCase()) {\n\t    case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw':\n\t      return true;\n\t    default:\n\t      return false;\n\t  }\n\t};\n\n\tfunction _normalizeEncoding(enc) {\n\t  if (!enc) return 'utf8';\n\t  var retried;\n\t  while (true) {\n\t    switch (enc) {\n\t      case 'utf8':\n\t      case 'utf-8':\n\t        return 'utf8';\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t        return 'utf16le';\n\t      case 'latin1':\n\t      case 'binary':\n\t        return 'latin1';\n\t      case 'base64':\n\t      case 'ascii':\n\t      case 'hex':\n\t        return enc;\n\t      default:\n\t        if (retried) return; // undefined\n\t        enc = ('' + enc).toLowerCase();\n\t        retried = true;\n\t    }\n\t  }\n\t}\n\t// Do not cache `Buffer.isEncoding` when checking encoding names as some\n\t// modules monkey-patch it to support additional encodings\n\tfunction normalizeEncoding(enc) {\n\t  var nenc = _normalizeEncoding(enc);\n\t  if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc);\n\t  return nenc || enc;\n\t}\n\n\t// StringDecoder provides an interface for efficiently splitting a series of\n\t// buffers into a series of JS strings without breaking apart multi-byte\n\t// characters.\n\tstring_decoder$1.StringDecoder = StringDecoder;\n\tfunction StringDecoder(encoding) {\n\t  this.encoding = normalizeEncoding(encoding);\n\t  var nb;\n\t  switch (this.encoding) {\n\t    case 'utf16le':\n\t      this.text = utf16Text;\n\t      this.end = utf16End;\n\t      nb = 4;\n\t      break;\n\t    case 'utf8':\n\t      this.fillLast = utf8FillLast;\n\t      nb = 4;\n\t      break;\n\t    case 'base64':\n\t      this.text = base64Text;\n\t      this.end = base64End;\n\t      nb = 3;\n\t      break;\n\t    default:\n\t      this.write = simpleWrite;\n\t      this.end = simpleEnd;\n\t      return;\n\t  }\n\t  this.lastNeed = 0;\n\t  this.lastTotal = 0;\n\t  this.lastChar = Buffer.allocUnsafe(nb);\n\t}\n\n\tStringDecoder.prototype.write = function (buf) {\n\t  if (buf.length === 0) return '';\n\t  var r;\n\t  var i;\n\t  if (this.lastNeed) {\n\t    r = this.fillLast(buf);\n\t    if (r === undefined) return '';\n\t    i = this.lastNeed;\n\t    this.lastNeed = 0;\n\t  } else {\n\t    i = 0;\n\t  }\n\t  if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);\n\t  return r || '';\n\t};\n\n\tStringDecoder.prototype.end = utf8End;\n\n\t// Returns only complete characters in a Buffer\n\tStringDecoder.prototype.text = utf8Text;\n\n\t// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer\n\tStringDecoder.prototype.fillLast = function (buf) {\n\t  if (this.lastNeed <= buf.length) {\n\t    buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);\n\t    return this.lastChar.toString(this.encoding, 0, this.lastTotal);\n\t  }\n\t  buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);\n\t  this.lastNeed -= buf.length;\n\t};\n\n\t// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a\n\t// continuation byte. If an invalid byte is detected, -2 is returned.\n\tfunction utf8CheckByte(byte) {\n\t  if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4;\n\t  return byte >> 6 === 0x02 ? -1 : -2;\n\t}\n\n\t// Checks at most 3 bytes at the end of a Buffer in order to detect an\n\t// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4)\n\t// needed to complete the UTF-8 character (if applicable) are returned.\n\tfunction utf8CheckIncomplete(self, buf, i) {\n\t  var j = buf.length - 1;\n\t  if (j < i) return 0;\n\t  var nb = utf8CheckByte(buf[j]);\n\t  if (nb >= 0) {\n\t    if (nb > 0) self.lastNeed = nb - 1;\n\t    return nb;\n\t  }\n\t  if (--j < i || nb === -2) return 0;\n\t  nb = utf8CheckByte(buf[j]);\n\t  if (nb >= 0) {\n\t    if (nb > 0) self.lastNeed = nb - 2;\n\t    return nb;\n\t  }\n\t  if (--j < i || nb === -2) return 0;\n\t  nb = utf8CheckByte(buf[j]);\n\t  if (nb >= 0) {\n\t    if (nb > 0) {\n\t      if (nb === 2) nb = 0;else self.lastNeed = nb - 3;\n\t    }\n\t    return nb;\n\t  }\n\t  return 0;\n\t}\n\n\t// Validates as many continuation bytes for a multi-byte UTF-8 character as\n\t// needed or are available. If we see a non-continuation byte where we expect\n\t// one, we \"replace\" the validated continuation bytes we've seen so far with\n\t// a single UTF-8 replacement character ('\\ufffd'), to match v8's UTF-8 decoding\n\t// behavior. The continuation byte check is included three times in the case\n\t// where all of the continuation bytes for a character exist in the same buffer.\n\t// It is also done this way as a slight performance increase instead of using a\n\t// loop.\n\tfunction utf8CheckExtraBytes(self, buf, p) {\n\t  if ((buf[0] & 0xC0) !== 0x80) {\n\t    self.lastNeed = 0;\n\t    return '\\ufffd';\n\t  }\n\t  if (self.lastNeed > 1 && buf.length > 1) {\n\t    if ((buf[1] & 0xC0) !== 0x80) {\n\t      self.lastNeed = 1;\n\t      return '\\ufffd';\n\t    }\n\t    if (self.lastNeed > 2 && buf.length > 2) {\n\t      if ((buf[2] & 0xC0) !== 0x80) {\n\t        self.lastNeed = 2;\n\t        return '\\ufffd';\n\t      }\n\t    }\n\t  }\n\t}\n\n\t// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer.\n\tfunction utf8FillLast(buf) {\n\t  var p = this.lastTotal - this.lastNeed;\n\t  var r = utf8CheckExtraBytes(this, buf);\n\t  if (r !== undefined) return r;\n\t  if (this.lastNeed <= buf.length) {\n\t    buf.copy(this.lastChar, p, 0, this.lastNeed);\n\t    return this.lastChar.toString(this.encoding, 0, this.lastTotal);\n\t  }\n\t  buf.copy(this.lastChar, p, 0, buf.length);\n\t  this.lastNeed -= buf.length;\n\t}\n\n\t// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a\n\t// partial character, the character's bytes are buffered until the required\n\t// number of bytes are available.\n\tfunction utf8Text(buf, i) {\n\t  var total = utf8CheckIncomplete(this, buf, i);\n\t  if (!this.lastNeed) return buf.toString('utf8', i);\n\t  this.lastTotal = total;\n\t  var end = buf.length - (total - this.lastNeed);\n\t  buf.copy(this.lastChar, 0, end);\n\t  return buf.toString('utf8', i, end);\n\t}\n\n\t// For UTF-8, a replacement character is added when ending on a partial\n\t// character.\n\tfunction utf8End(buf) {\n\t  var r = buf && buf.length ? this.write(buf) : '';\n\t  if (this.lastNeed) return r + '\\ufffd';\n\t  return r;\n\t}\n\n\t// UTF-16LE typically needs two bytes per character, but even if we have an even\n\t// number of bytes available, we need to check if we end on a leading/high\n\t// surrogate. In that case, we need to wait for the next two bytes in order to\n\t// decode the last character properly.\n\tfunction utf16Text(buf, i) {\n\t  if ((buf.length - i) % 2 === 0) {\n\t    var r = buf.toString('utf16le', i);\n\t    if (r) {\n\t      var c = r.charCodeAt(r.length - 1);\n\t      if (c >= 0xD800 && c <= 0xDBFF) {\n\t        this.lastNeed = 2;\n\t        this.lastTotal = 4;\n\t        this.lastChar[0] = buf[buf.length - 2];\n\t        this.lastChar[1] = buf[buf.length - 1];\n\t        return r.slice(0, -1);\n\t      }\n\t    }\n\t    return r;\n\t  }\n\t  this.lastNeed = 1;\n\t  this.lastTotal = 2;\n\t  this.lastChar[0] = buf[buf.length - 1];\n\t  return buf.toString('utf16le', i, buf.length - 1);\n\t}\n\n\t// For UTF-16LE we do not explicitly append special replacement characters if we\n\t// end on a partial character, we simply let v8 handle that.\n\tfunction utf16End(buf) {\n\t  var r = buf && buf.length ? this.write(buf) : '';\n\t  if (this.lastNeed) {\n\t    var end = this.lastTotal - this.lastNeed;\n\t    return r + this.lastChar.toString('utf16le', 0, end);\n\t  }\n\t  return r;\n\t}\n\n\tfunction base64Text(buf, i) {\n\t  var n = (buf.length - i) % 3;\n\t  if (n === 0) return buf.toString('base64', i);\n\t  this.lastNeed = 3 - n;\n\t  this.lastTotal = 3;\n\t  if (n === 1) {\n\t    this.lastChar[0] = buf[buf.length - 1];\n\t  } else {\n\t    this.lastChar[0] = buf[buf.length - 2];\n\t    this.lastChar[1] = buf[buf.length - 1];\n\t  }\n\t  return buf.toString('base64', i, buf.length - n);\n\t}\n\n\tfunction base64End(buf) {\n\t  var r = buf && buf.length ? this.write(buf) : '';\n\t  if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed);\n\t  return r;\n\t}\n\n\t// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex)\n\tfunction simpleWrite(buf) {\n\t  return buf.toString(this.encoding);\n\t}\n\n\tfunction simpleEnd(buf) {\n\t  return buf && buf.length ? this.write(buf) : '';\n\t}\n\treturn string_decoder$1;\n}\n\nvar _stream_readable;\nvar hasRequired_stream_readable;\n\nfunction require_stream_readable () {\n\tif (hasRequired_stream_readable) return _stream_readable;\n\thasRequired_stream_readable = 1;\n\n\t/*<replacement>*/\n\n\tvar pna = requireProcessNextickArgs();\n\t/*</replacement>*/\n\n\t_stream_readable = Readable;\n\n\t/*<replacement>*/\n\tvar isArray = requireIsarray();\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\tvar Duplex;\n\t/*</replacement>*/\n\n\tReadable.ReadableState = ReadableState;\n\n\t/*<replacement>*/\n\trequire$$1$4.EventEmitter;\n\n\tvar EElistenerCount = function (emitter, type) {\n\t  return emitter.listeners(type).length;\n\t};\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\tvar Stream = requireStream$1();\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\n\tvar Buffer = requireSafeBuffer$1().Buffer;\n\tvar OurUint8Array = (typeof commonjsGlobal !== 'undefined' ? commonjsGlobal : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};\n\tfunction _uint8ArrayToBuffer(chunk) {\n\t  return Buffer.from(chunk);\n\t}\n\tfunction _isUint8Array(obj) {\n\t  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;\n\t}\n\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\tvar util = Object.create(requireUtil$3());\n\tutil.inherits = requireInherits();\n\t/*</replacement>*/\n\n\t/*<replacement>*/\n\tvar debugUtil = require$$0__default$1;\n\tvar debug = void 0;\n\tif (debugUtil && debugUtil.debuglog) {\n\t  debug = debugUtil.debuglog('stream');\n\t} else {\n\t  debug = function () {};\n\t}\n\t/*</replacement>*/\n\n\tvar BufferList = requireBufferList();\n\tvar destroyImpl = requireDestroy$1();\n\tvar StringDecoder;\n\n\tutil.inherits(Readable, Stream);\n\n\tvar kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];\n\n\tfunction prependListener(emitter, event, fn) {\n\t  // Sadly this is not cacheable as some libraries bundle their own\n\t  // event emitter implementation with them.\n\t  if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn);\n\n\t  // This is a hack to make sure that our error handler is attached before any\n\t  // userland ones.  NEVER DO THIS. This is here only because this code needs\n\t  // to continue to work with older versions of Node.js that do not include\n\t  // the prependListener() method. The goal is to eventually remove this hack.\n\t  if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);else if (isArray(emitter._events[event])) emitter._events[event].unshift(fn);else emitter._events[event] = [fn, emitter._events[event]];\n\t}\n\n\tfunction ReadableState(options, stream) {\n\t  Duplex = Duplex || require_stream_duplex();\n\n\t  options = options || {};\n\n\t  // Duplex streams are both readable and writable, but share\n\t  // the same options object.\n\t  // However, some cases require setting options to different\n\t  // values for the readable and the writable sides of the duplex stream.\n\t  // These options can be provided separately as readableXXX and writableXXX.\n\t  var isDuplex = stream instanceof Duplex;\n\n\t  // object stream flag. Used to make read(n) ignore n and to\n\t  // make all the buffer merging and length checks go away\n\t  this.objectMode = !!options.objectMode;\n\n\t  if (isDuplex) this.objectMode = this.objectMode || !!options.readableObjectMode;\n\n\t  // the point at which it stops calling _read() to fill the buffer\n\t  // Note: 0 is a valid value, means \"don't call _read preemptively ever\"\n\t  var hwm = options.highWaterMark;\n\t  var readableHwm = options.readableHighWaterMark;\n\t  var defaultHwm = this.objectMode ? 16 : 16 * 1024;\n\n\t  if (hwm || hwm === 0) this.highWaterMark = hwm;else if (isDuplex && (readableHwm || readableHwm === 0)) this.highWaterMark = readableHwm;else this.highWaterMark = defaultHwm;\n\n\t  // cast to ints.\n\t  this.highWaterMark = Math.floor(this.highWaterMark);\n\n\t  // A linked list is used to store data chunks instead of an array because the\n\t  // linked list can remove elements from the beginning faster than\n\t  // array.shift()\n\t  this.buffer = new BufferList();\n\t  this.length = 0;\n\t  this.pipes = null;\n\t  this.pipesCount = 0;\n\t  this.flowing = null;\n\t  this.ended = false;\n\t  this.endEmitted = false;\n\t  this.reading = false;\n\n\t  // a flag to be able to tell if the event 'readable'/'data' is emitted\n\t  // immediately, or on a later tick.  We set this to true at first, because\n\t  // any actions that shouldn't happen until \"later\" should generally also\n\t  // not happen before the first read call.\n\t  this.sync = true;\n\n\t  // whenever we return null, then we set a flag to say\n\t  // that we're awaiting a 'readable' event emission.\n\t  this.needReadable = false;\n\t  this.emittedReadable = false;\n\t  this.readableListening = false;\n\t  this.resumeScheduled = false;\n\n\t  // has it been destroyed\n\t  this.destroyed = false;\n\n\t  // Crypto is kind of old and crusty.  Historically, its default string\n\t  // encoding is 'binary' so we have to make this configurable.\n\t  // Everything else in the universe uses 'utf8', though.\n\t  this.defaultEncoding = options.defaultEncoding || 'utf8';\n\n\t  // the number of writers that are awaiting a drain event in .pipe()s\n\t  this.awaitDrain = 0;\n\n\t  // if true, a maybeReadMore has been scheduled\n\t  this.readingMore = false;\n\n\t  this.decoder = null;\n\t  this.encoding = null;\n\t  if (options.encoding) {\n\t    if (!StringDecoder) StringDecoder = requireString_decoder$1().StringDecoder;\n\t    this.decoder = new StringDecoder(options.encoding);\n\t    this.encoding = options.encoding;\n\t  }\n\t}\n\n\tfunction Readable(options) {\n\t  Duplex = Duplex || require_stream_duplex();\n\n\t  if (!(this instanceof Readable)) return new Readable(options);\n\n\t  this._readableState = new ReadableState(options, this);\n\n\t  // legacy\n\t  this.readable = true;\n\n\t  if (options) {\n\t    if (typeof options.read === 'function') this._read = options.read;\n\n\t    if (typeof options.destroy === 'function') this._destroy = options.destroy;\n\t  }\n\n\t  Stream.call(this);\n\t}\n\n\tObject.defineProperty(Readable.prototype, 'destroyed', {\n\t  get: function () {\n\t    if (this._readableState === undefined) {\n\t      return false;\n\t    }\n\t    return this._readableState.destroyed;\n\t  },\n\t  set: function (value) {\n\t    // we ignore the value if the stream\n\t    // has not been initialized yet\n\t    if (!this._readableState) {\n\t      return;\n\t    }\n\n\t    // backward compatibility, the user is explicitly\n\t    // managing destroyed\n\t    this._readableState.destroyed = value;\n\t  }\n\t});\n\n\tReadable.prototype.destroy = destroyImpl.destroy;\n\tReadable.prototype._undestroy = destroyImpl.undestroy;\n\tReadable.prototype._destroy = function (err, cb) {\n\t  this.push(null);\n\t  cb(err);\n\t};\n\n\t// Manually shove something into the read() buffer.\n\t// This returns true if the highWaterMark has not been hit yet,\n\t// similar to how Writable.write() returns true if you should\n\t// write() some more.\n\tReadable.prototype.push = function (chunk, encoding) {\n\t  var state = this._readableState;\n\t  var skipChunkCheck;\n\n\t  if (!state.objectMode) {\n\t    if (typeof chunk === 'string') {\n\t      encoding = encoding || state.defaultEncoding;\n\t      if (encoding !== state.encoding) {\n\t        chunk = Buffer.from(chunk, encoding);\n\t        encoding = '';\n\t      }\n\t      skipChunkCheck = true;\n\t    }\n\t  } else {\n\t    skipChunkCheck = true;\n\t  }\n\n\t  return readableAddChunk(this, chunk, encoding, false, skipChunkCheck);\n\t};\n\n\t// Unshift should *always* be something directly out of read()\n\tReadable.prototype.unshift = function (chunk) {\n\t  return readableAddChunk(this, chunk, null, true, false);\n\t};\n\n\tfunction readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) {\n\t  var state = stream._readableState;\n\t  if (chunk === null) {\n\t    state.reading = false;\n\t    onEofChunk(stream, state);\n\t  } else {\n\t    var er;\n\t    if (!skipChunkCheck) er = chunkInvalid(state, chunk);\n\t    if (er) {\n\t      stream.emit('error', er);\n\t    } else if (state.objectMode || chunk && chunk.length > 0) {\n\t      if (typeof chunk !== 'string' && !state.objectMode && Object.getPrototypeOf(chunk) !== Buffer.prototype) {\n\t        chunk = _uint8ArrayToBuffer(chunk);\n\t      }\n\n\t      if (addToFront) {\n\t        if (state.endEmitted) stream.emit('error', new Error('stream.unshift() after end event'));else addChunk(stream, state, chunk, true);\n\t      } else if (state.ended) {\n\t        stream.emit('error', new Error('stream.push() after EOF'));\n\t      } else {\n\t        state.reading = false;\n\t        if (state.decoder && !encoding) {\n\t          chunk = state.decoder.write(chunk);\n\t          if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);else maybeReadMore(stream, state);\n\t        } else {\n\t          addChunk(stream, state, chunk, false);\n\t        }\n\t      }\n\t    } else if (!addToFront) {\n\t      state.reading = false;\n\t    }\n\t  }\n\n\t  return needMoreData(state);\n\t}\n\n\tfunction addChunk(stream, state, chunk, addToFront) {\n\t  if (state.flowing && state.length === 0 && !state.sync) {\n\t    stream.emit('data', chunk);\n\t    stream.read(0);\n\t  } else {\n\t    // update the buffer info.\n\t    state.length += state.objectMode ? 1 : chunk.length;\n\t    if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk);\n\n\t    if (state.needReadable) emitReadable(stream);\n\t  }\n\t  maybeReadMore(stream, state);\n\t}\n\n\tfunction chunkInvalid(state, chunk) {\n\t  var er;\n\t  if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) {\n\t    er = new TypeError('Invalid non-string/buffer chunk');\n\t  }\n\t  return er;\n\t}\n\n\t// if it's past the high water mark, we can push in some more.\n\t// Also, if we have no data yet, we can stand some\n\t// more bytes.  This is to work around cases where hwm=0,\n\t// such as the repl.  Also, if the push() triggered a\n\t// readable event, and the user called read(largeNumber) such that\n\t// needReadable was set, then we ought to push more, so that another\n\t// 'readable' event will be triggered.\n\tfunction needMoreData(state) {\n\t  return !state.ended && (state.needReadable || state.length < state.highWaterMark || state.length === 0);\n\t}\n\n\tReadable.prototype.isPaused = function () {\n\t  return this._readableState.flowing === false;\n\t};\n\n\t// backwards compatibility.\n\tReadable.prototype.setEncoding = function (enc) {\n\t  if (!StringDecoder) StringDecoder = requireString_decoder$1().StringDecoder;\n\t  this._readableState.decoder = new StringDecoder(enc);\n\t  this._readableState.encoding = enc;\n\t  return this;\n\t};\n\n\t// Don't raise the hwm > 8MB\n\tvar MAX_HWM = 0x800000;\n\tfunction computeNewHighWaterMark(n) {\n\t  if (n >= MAX_HWM) {\n\t    n = MAX_HWM;\n\t  } else {\n\t    // Get the next highest power of 2 to prevent increasing hwm excessively in\n\t    // tiny amounts\n\t    n--;\n\t    n |= n >>> 1;\n\t    n |= n >>> 2;\n\t    n |= n >>> 4;\n\t    n |= n >>> 8;\n\t    n |= n >>> 16;\n\t    n++;\n\t  }\n\t  return n;\n\t}\n\n\t// This function is designed to be inlinable, so please take care when making\n\t// changes to the function body.\n\tfunction howMuchToRead(n, state) {\n\t  if (n <= 0 || state.length === 0 && state.ended) return 0;\n\t  if (state.objectMode) return 1;\n\t  if (n !== n) {\n\t    // Only flow one buffer at a time\n\t    if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;\n\t  }\n\t  // If we're asking for more than the current hwm, then raise the hwm.\n\t  if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n);\n\t  if (n <= state.length) return n;\n\t  // Don't have enough\n\t  if (!state.ended) {\n\t    state.needReadable = true;\n\t    return 0;\n\t  }\n\t  return state.length;\n\t}\n\n\t// you can override either this method, or the async _read(n) below.\n\tReadable.prototype.read = function (n) {\n\t  debug('read', n);\n\t  n = parseInt(n, 10);\n\t  var state = this._readableState;\n\t  var nOrig = n;\n\n\t  if (n !== 0) state.emittedReadable = false;\n\n\t  // if we're doing read(0) to trigger a readable event, but we\n\t  // already have a bunch of data in the buffer, then just trigger\n\t  // the 'readable' event and move on.\n\t  if (n === 0 && state.needReadable && (state.length >= state.highWaterMark || state.ended)) {\n\t    debug('read: emitReadable', state.length, state.ended);\n\t    if (state.length === 0 && state.ended) endReadable(this);else emitReadable(this);\n\t    return null;\n\t  }\n\n\t  n = howMuchToRead(n, state);\n\n\t  // if we've ended, and we're now clear, then finish it up.\n\t  if (n === 0 && state.ended) {\n\t    if (state.length === 0) endReadable(this);\n\t    return null;\n\t  }\n\n\t  // All the actual chunk generation logic needs to be\n\t  // *below* the call to _read.  The reason is that in certain\n\t  // synthetic stream cases, such as passthrough streams, _read\n\t  // may be a completely synchronous operation which may change\n\t  // the state of the read buffer, providing enough data when\n\t  // before there was *not* enough.\n\t  //\n\t  // So, the steps are:\n\t  // 1. Figure out what the state of things will be after we do\n\t  // a read from the buffer.\n\t  //\n\t  // 2. If that resulting state will trigger a _read, then call _read.\n\t  // Note that this may be asynchronous, or synchronous.  Yes, it is\n\t  // deeply ugly to write APIs this way, but that still doesn't mean\n\t  // that the Readable class should behave improperly, as streams are\n\t  // designed to be sync/async agnostic.\n\t  // Take note if the _read call is sync or async (ie, if the read call\n\t  // has returned yet), so that we know whether or not it's safe to emit\n\t  // 'readable' etc.\n\t  //\n\t  // 3. Actually pull the requested chunks out of the buffer and return.\n\n\t  // if we need a readable event, then we need to do some reading.\n\t  var doRead = state.needReadable;\n\t  debug('need readable', doRead);\n\n\t  // if we currently have less than the highWaterMark, then also read some\n\t  if (state.length === 0 || state.length - n < state.highWaterMark) {\n\t    doRead = true;\n\t    debug('length less than watermark', doRead);\n\t  }\n\n\t  // however, if we've ended, then there's no point, and if we're already\n\t  // reading, then it's unnecessary.\n\t  if (state.ended || state.reading) {\n\t    doRead = false;\n\t    debug('reading or ended', doRead);\n\t  } else if (doRead) {\n\t    debug('do read');\n\t    state.reading = true;\n\t    state.sync = true;\n\t    // if the length is currently zero, then we *need* a readable event.\n\t    if (state.length === 0) state.needReadable = true;\n\t    // call internal read method\n\t    this._read(state.highWaterMark);\n\t    state.sync = false;\n\t    // If _read pushed data synchronously, then `reading` will be false,\n\t    // and we need to re-evaluate how much data we can return to the user.\n\t    if (!state.reading) n = howMuchToRead(nOrig, state);\n\t  }\n\n\t  var ret;\n\t  if (n > 0) ret = fromList(n, state);else ret = null;\n\n\t  if (ret === null) {\n\t    state.needReadable = true;\n\t    n = 0;\n\t  } else {\n\t    state.length -= n;\n\t  }\n\n\t  if (state.length === 0) {\n\t    // If we have nothing in the buffer, then we want to know\n\t    // as soon as we *do* get something into the buffer.\n\t    if (!state.ended) state.needReadable = true;\n\n\t    // If we tried to read() past the EOF, then emit end on the next tick.\n\t    if (nOrig !== n && state.ended) endReadable(this);\n\t  }\n\n\t  if (ret !== null) this.emit('data', ret);\n\n\t  return ret;\n\t};\n\n\tfunction onEofChunk(stream, state) {\n\t  if (state.ended) return;\n\t  if (state.decoder) {\n\t    var chunk = state.decoder.end();\n\t    if (chunk && chunk.length) {\n\t      state.buffer.push(chunk);\n\t      state.length += state.objectMode ? 1 : chunk.length;\n\t    }\n\t  }\n\t  state.ended = true;\n\n\t  // emit 'readable' now to make sure it gets picked up.\n\t  emitReadable(stream);\n\t}\n\n\t// Don't emit readable right away in sync mode, because this can trigger\n\t// another read() call => stack overflow.  This way, it might trigger\n\t// a nextTick recursion warning, but that's not so bad.\n\tfunction emitReadable(stream) {\n\t  var state = stream._readableState;\n\t  state.needReadable = false;\n\t  if (!state.emittedReadable) {\n\t    debug('emitReadable', state.flowing);\n\t    state.emittedReadable = true;\n\t    if (state.sync) pna.nextTick(emitReadable_, stream);else emitReadable_(stream);\n\t  }\n\t}\n\n\tfunction emitReadable_(stream) {\n\t  debug('emit readable');\n\t  stream.emit('readable');\n\t  flow(stream);\n\t}\n\n\t// at this point, the user has presumably seen the 'readable' event,\n\t// and called read() to consume some data.  that may have triggered\n\t// in turn another _read(n) call, in which case reading = true if\n\t// it's in progress.\n\t// However, if we're not ended, or reading, and the length < hwm,\n\t// then go ahead and try to read some more preemptively.\n\tfunction maybeReadMore(stream, state) {\n\t  if (!state.readingMore) {\n\t    state.readingMore = true;\n\t    pna.nextTick(maybeReadMore_, stream, state);\n\t  }\n\t}\n\n\tfunction maybeReadMore_(stream, state) {\n\t  var len = state.length;\n\t  while (!state.reading && !state.flowing && !state.ended && state.length < state.highWaterMark) {\n\t    debug('maybeReadMore read 0');\n\t    stream.read(0);\n\t    if (len === state.length)\n\t      // didn't get any data, stop spinning.\n\t      break;else len = state.length;\n\t  }\n\t  state.readingMore = false;\n\t}\n\n\t// abstract method.  to be overridden in specific implementation classes.\n\t// call cb(er, data) where data is <= n in length.\n\t// for virtual (non-string, non-buffer) streams, \"length\" is somewhat\n\t// arbitrary, and perhaps not very meaningful.\n\tReadable.prototype._read = function (n) {\n\t  this.emit('error', new Error('_read() is not implemented'));\n\t};\n\n\tReadable.prototype.pipe = function (dest, pipeOpts) {\n\t  var src = this;\n\t  var state = this._readableState;\n\n\t  switch (state.pipesCount) {\n\t    case 0:\n\t      state.pipes = dest;\n\t      break;\n\t    case 1:\n\t      state.pipes = [state.pipes, dest];\n\t      break;\n\t    default:\n\t      state.pipes.push(dest);\n\t      break;\n\t  }\n\t  state.pipesCount += 1;\n\t  debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts);\n\n\t  var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr;\n\n\t  var endFn = doEnd ? onend : unpipe;\n\t  if (state.endEmitted) pna.nextTick(endFn);else src.once('end', endFn);\n\n\t  dest.on('unpipe', onunpipe);\n\t  function onunpipe(readable, unpipeInfo) {\n\t    debug('onunpipe');\n\t    if (readable === src) {\n\t      if (unpipeInfo && unpipeInfo.hasUnpiped === false) {\n\t        unpipeInfo.hasUnpiped = true;\n\t        cleanup();\n\t      }\n\t    }\n\t  }\n\n\t  function onend() {\n\t    debug('onend');\n\t    dest.end();\n\t  }\n\n\t  // when the dest drains, it reduces the awaitDrain counter\n\t  // on the source.  This would be more elegant with a .once()\n\t  // handler in flow(), but adding and removing repeatedly is\n\t  // too slow.\n\t  var ondrain = pipeOnDrain(src);\n\t  dest.on('drain', ondrain);\n\n\t  var cleanedUp = false;\n\t  function cleanup() {\n\t    debug('cleanup');\n\t    // cleanup event handlers once the pipe is broken\n\t    dest.removeListener('close', onclose);\n\t    dest.removeListener('finish', onfinish);\n\t    dest.removeListener('drain', ondrain);\n\t    dest.removeListener('error', onerror);\n\t    dest.removeListener('unpipe', onunpipe);\n\t    src.removeListener('end', onend);\n\t    src.removeListener('end', unpipe);\n\t    src.removeListener('data', ondata);\n\n\t    cleanedUp = true;\n\n\t    // if the reader is waiting for a drain event from this\n\t    // specific writer, then it would cause it to never start\n\t    // flowing again.\n\t    // So, if this is awaiting a drain, then we just call it now.\n\t    // If we don't know, then assume that we are waiting for one.\n\t    if (state.awaitDrain && (!dest._writableState || dest._writableState.needDrain)) ondrain();\n\t  }\n\n\t  // If the user pushes more data while we're writing to dest then we'll end up\n\t  // in ondata again. However, we only want to increase awaitDrain once because\n\t  // dest will only emit one 'drain' event for the multiple writes.\n\t  // => Introduce a guard on increasing awaitDrain.\n\t  var increasedAwaitDrain = false;\n\t  src.on('data', ondata);\n\t  function ondata(chunk) {\n\t    debug('ondata');\n\t    increasedAwaitDrain = false;\n\t    var ret = dest.write(chunk);\n\t    if (false === ret && !increasedAwaitDrain) {\n\t      // If the user unpiped during `dest.write()`, it is possible\n\t      // to get stuck in a permanently paused state if that write\n\t      // also returned false.\n\t      // => Check whether `dest` is still a piping destination.\n\t      if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {\n\t        debug('false write response, pause', state.awaitDrain);\n\t        state.awaitDrain++;\n\t        increasedAwaitDrain = true;\n\t      }\n\t      src.pause();\n\t    }\n\t  }\n\n\t  // if the dest has an error, then stop piping into it.\n\t  // however, don't suppress the throwing behavior for this.\n\t  function onerror(er) {\n\t    debug('onerror', er);\n\t    unpipe();\n\t    dest.removeListener('error', onerror);\n\t    if (EElistenerCount(dest, 'error') === 0) dest.emit('error', er);\n\t  }\n\n\t  // Make sure our error handler is attached before userland ones.\n\t  prependListener(dest, 'error', onerror);\n\n\t  // Both close and finish should trigger unpipe, but only once.\n\t  function onclose() {\n\t    dest.removeListener('finish', onfinish);\n\t    unpipe();\n\t  }\n\t  dest.once('close', onclose);\n\t  function onfinish() {\n\t    debug('onfinish');\n\t    dest.removeListener('close', onclose);\n\t    unpipe();\n\t  }\n\t  dest.once('finish', onfinish);\n\n\t  function unpipe() {\n\t    debug('unpipe');\n\t    src.unpipe(dest);\n\t  }\n\n\t  // tell the dest that it's being piped to\n\t  dest.emit('pipe', src);\n\n\t  // start the flow if it hasn't been started already.\n\t  if (!state.flowing) {\n\t    debug('pipe resume');\n\t    src.resume();\n\t  }\n\n\t  return dest;\n\t};\n\n\tfunction pipeOnDrain(src) {\n\t  return function () {\n\t    var state = src._readableState;\n\t    debug('pipeOnDrain', state.awaitDrain);\n\t    if (state.awaitDrain) state.awaitDrain--;\n\t    if (state.awaitDrain === 0 && EElistenerCount(src, 'data')) {\n\t      state.flowing = true;\n\t      flow(src);\n\t    }\n\t  };\n\t}\n\n\tReadable.prototype.unpipe = function (dest) {\n\t  var state = this._readableState;\n\t  var unpipeInfo = { hasUnpiped: false };\n\n\t  // if we're not piping anywhere, then do nothing.\n\t  if (state.pipesCount === 0) return this;\n\n\t  // just one destination.  most common case.\n\t  if (state.pipesCount === 1) {\n\t    // passed in one, but it's not the right one.\n\t    if (dest && dest !== state.pipes) return this;\n\n\t    if (!dest) dest = state.pipes;\n\n\t    // got a match.\n\t    state.pipes = null;\n\t    state.pipesCount = 0;\n\t    state.flowing = false;\n\t    if (dest) dest.emit('unpipe', this, unpipeInfo);\n\t    return this;\n\t  }\n\n\t  // slow case. multiple pipe destinations.\n\n\t  if (!dest) {\n\t    // remove all.\n\t    var dests = state.pipes;\n\t    var len = state.pipesCount;\n\t    state.pipes = null;\n\t    state.pipesCount = 0;\n\t    state.flowing = false;\n\n\t    for (var i = 0; i < len; i++) {\n\t      dests[i].emit('unpipe', this, { hasUnpiped: false });\n\t    }return this;\n\t  }\n\n\t  // try to find the right one.\n\t  var index = indexOf(state.pipes, dest);\n\t  if (index === -1) return this;\n\n\t  state.pipes.splice(index, 1);\n\t  state.pipesCount -= 1;\n\t  if (state.pipesCount === 1) state.pipes = state.pipes[0];\n\n\t  dest.emit('unpipe', this, unpipeInfo);\n\n\t  return this;\n\t};\n\n\t// set up data events if they are asked for\n\t// Ensure readable listeners eventually get something\n\tReadable.prototype.on = function (ev, fn) {\n\t  var res = Stream.prototype.on.call(this, ev, fn);\n\n\t  if (ev === 'data') {\n\t    // Start flowing on next tick if stream isn't explicitly paused\n\t    if (this._readableState.flowing !== false) this.resume();\n\t  } else if (ev === 'readable') {\n\t    var state = this._readableState;\n\t    if (!state.endEmitted && !state.readableListening) {\n\t      state.readableListening = state.needReadable = true;\n\t      state.emittedReadable = false;\n\t      if (!state.reading) {\n\t        pna.nextTick(nReadingNextTick, this);\n\t      } else if (state.length) {\n\t        emitReadable(this);\n\t      }\n\t    }\n\t  }\n\n\t  return res;\n\t};\n\tReadable.prototype.addListener = Readable.prototype.on;\n\n\tfunction nReadingNextTick(self) {\n\t  debug('readable nexttick read 0');\n\t  self.read(0);\n\t}\n\n\t// pause() and resume() are remnants of the legacy readable stream API\n\t// If the user uses them, then switch into old mode.\n\tReadable.prototype.resume = function () {\n\t  var state = this._readableState;\n\t  if (!state.flowing) {\n\t    debug('resume');\n\t    state.flowing = true;\n\t    resume(this, state);\n\t  }\n\t  return this;\n\t};\n\n\tfunction resume(stream, state) {\n\t  if (!state.resumeScheduled) {\n\t    state.resumeScheduled = true;\n\t    pna.nextTick(resume_, stream, state);\n\t  }\n\t}\n\n\tfunction resume_(stream, state) {\n\t  if (!state.reading) {\n\t    debug('resume read 0');\n\t    stream.read(0);\n\t  }\n\n\t  state.resumeScheduled = false;\n\t  state.awaitDrain = 0;\n\t  stream.emit('resume');\n\t  flow(stream);\n\t  if (state.flowing && !state.reading) stream.read(0);\n\t}\n\n\tReadable.prototype.pause = function () {\n\t  debug('call pause flowing=%j', this._readableState.flowing);\n\t  if (false !== this._readableState.flowing) {\n\t    debug('pause');\n\t    this._readableState.flowing = false;\n\t    this.emit('pause');\n\t  }\n\t  return this;\n\t};\n\n\tfunction flow(stream) {\n\t  var state = stream._readableState;\n\t  debug('flow', state.flowing);\n\t  while (state.flowing && stream.read() !== null) {}\n\t}\n\n\t// wrap an old-style stream as the async data source.\n\t// This is *not* part of the readable stream interface.\n\t// It is an ugly unfortunate mess of history.\n\tReadable.prototype.wrap = function (stream) {\n\t  var _this = this;\n\n\t  var state = this._readableState;\n\t  var paused = false;\n\n\t  stream.on('end', function () {\n\t    debug('wrapped end');\n\t    if (state.decoder && !state.ended) {\n\t      var chunk = state.decoder.end();\n\t      if (chunk && chunk.length) _this.push(chunk);\n\t    }\n\n\t    _this.push(null);\n\t  });\n\n\t  stream.on('data', function (chunk) {\n\t    debug('wrapped data');\n\t    if (state.decoder) chunk = state.decoder.write(chunk);\n\n\t    // don't skip over falsy values in objectMode\n\t    if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return;\n\n\t    var ret = _this.push(chunk);\n\t    if (!ret) {\n\t      paused = true;\n\t      stream.pause();\n\t    }\n\t  });\n\n\t  // proxy all the other methods.\n\t  // important when wrapping filters and duplexes.\n\t  for (var i in stream) {\n\t    if (this[i] === undefined && typeof stream[i] === 'function') {\n\t      this[i] = function (method) {\n\t        return function () {\n\t          return stream[method].apply(stream, arguments);\n\t        };\n\t      }(i);\n\t    }\n\t  }\n\n\t  // proxy certain important events.\n\t  for (var n = 0; n < kProxyEvents.length; n++) {\n\t    stream.on(kProxyEvents[n], this.emit.bind(this, kProxyEvents[n]));\n\t  }\n\n\t  // when we try to consume some more bytes, simply unpause the\n\t  // underlying stream.\n\t  this._read = function (n) {\n\t    debug('wrapped _read', n);\n\t    if (paused) {\n\t      paused = false;\n\t      stream.resume();\n\t    }\n\t  };\n\n\t  return this;\n\t};\n\n\tObject.defineProperty(Readable.prototype, 'readableHighWaterMark', {\n\t  // making it explicit this property is not enumerable\n\t  // because otherwise some prototype manipulation in\n\t  // userland will fail\n\t  enumerable: false,\n\t  get: function () {\n\t    return this._readableState.highWaterMark;\n\t  }\n\t});\n\n\t// exposed for testing purposes only.\n\tReadable._fromList = fromList;\n\n\t// Pluck off n bytes from an array of buffers.\n\t// Length is the combined lengths of all the buffers in the list.\n\t// This function is designed to be inlinable, so please take care when making\n\t// changes to the function body.\n\tfunction fromList(n, state) {\n\t  // nothing buffered\n\t  if (state.length === 0) return null;\n\n\t  var ret;\n\t  if (state.objectMode) ret = state.buffer.shift();else if (!n || n >= state.length) {\n\t    // read it all, truncate the list\n\t    if (state.decoder) ret = state.buffer.join('');else if (state.buffer.length === 1) ret = state.buffer.head.data;else ret = state.buffer.concat(state.length);\n\t    state.buffer.clear();\n\t  } else {\n\t    // read part of list\n\t    ret = fromListPartial(n, state.buffer, state.decoder);\n\t  }\n\n\t  return ret;\n\t}\n\n\t// Extracts only enough buffered data to satisfy the amount requested.\n\t// This function is designed to be inlinable, so please take care when making\n\t// changes to the function body.\n\tfunction fromListPartial(n, list, hasStrings) {\n\t  var ret;\n\t  if (n < list.head.data.length) {\n\t    // slice is the same for buffers and strings\n\t    ret = list.head.data.slice(0, n);\n\t    list.head.data = list.head.data.slice(n);\n\t  } else if (n === list.head.data.length) {\n\t    // first chunk is a perfect match\n\t    ret = list.shift();\n\t  } else {\n\t    // result spans more than one buffer\n\t    ret = hasStrings ? copyFromBufferString(n, list) : copyFromBuffer(n, list);\n\t  }\n\t  return ret;\n\t}\n\n\t// Copies a specified amount of characters from the list of buffered data\n\t// chunks.\n\t// This function is designed to be inlinable, so please take care when making\n\t// changes to the function body.\n\tfunction copyFromBufferString(n, list) {\n\t  var p = list.head;\n\t  var c = 1;\n\t  var ret = p.data;\n\t  n -= ret.length;\n\t  while (p = p.next) {\n\t    var str = p.data;\n\t    var nb = n > str.length ? str.length : n;\n\t    if (nb === str.length) ret += str;else ret += str.slice(0, n);\n\t    n -= nb;\n\t    if (n === 0) {\n\t      if (nb === str.length) {\n\t        ++c;\n\t        if (p.next) list.head = p.next;else list.head = list.tail = null;\n\t      } else {\n\t        list.head = p;\n\t        p.data = str.slice(nb);\n\t      }\n\t      break;\n\t    }\n\t    ++c;\n\t  }\n\t  list.length -= c;\n\t  return ret;\n\t}\n\n\t// Copies a specified amount of bytes from the list of buffered data chunks.\n\t// This function is designed to be inlinable, so please take care when making\n\t// changes to the function body.\n\tfunction copyFromBuffer(n, list) {\n\t  var ret = Buffer.allocUnsafe(n);\n\t  var p = list.head;\n\t  var c = 1;\n\t  p.data.copy(ret);\n\t  n -= p.data.length;\n\t  while (p = p.next) {\n\t    var buf = p.data;\n\t    var nb = n > buf.length ? buf.length : n;\n\t    buf.copy(ret, ret.length - n, 0, nb);\n\t    n -= nb;\n\t    if (n === 0) {\n\t      if (nb === buf.length) {\n\t        ++c;\n\t        if (p.next) list.head = p.next;else list.head = list.tail = null;\n\t      } else {\n\t        list.head = p;\n\t        p.data = buf.slice(nb);\n\t      }\n\t      break;\n\t    }\n\t    ++c;\n\t  }\n\t  list.length -= c;\n\t  return ret;\n\t}\n\n\tfunction endReadable(stream) {\n\t  var state = stream._readableState;\n\n\t  // If we get here before consuming all the bytes, then that is a\n\t  // bug in node.  Should never happen.\n\t  if (state.length > 0) throw new Error('\"endReadable()\" called on non-empty stream');\n\n\t  if (!state.endEmitted) {\n\t    state.ended = true;\n\t    pna.nextTick(endReadableNT, state, stream);\n\t  }\n\t}\n\n\tfunction endReadableNT(state, stream) {\n\t  // Check that we didn't get one last unshift.\n\t  if (!state.endEmitted && state.length === 0) {\n\t    state.endEmitted = true;\n\t    stream.readable = false;\n\t    stream.emit('end');\n\t  }\n\t}\n\n\tfunction indexOf(xs, x) {\n\t  for (var i = 0, l = xs.length; i < l; i++) {\n\t    if (xs[i] === x) return i;\n\t  }\n\t  return -1;\n\t}\n\treturn _stream_readable;\n}\n\nvar _stream_transform;\nvar hasRequired_stream_transform;\n\nfunction require_stream_transform () {\n\tif (hasRequired_stream_transform) return _stream_transform;\n\thasRequired_stream_transform = 1;\n\n\t_stream_transform = Transform;\n\n\tvar Duplex = require_stream_duplex();\n\n\t/*<replacement>*/\n\tvar util = Object.create(requireUtil$3());\n\tutil.inherits = requireInherits();\n\t/*</replacement>*/\n\n\tutil.inherits(Transform, Duplex);\n\n\tfunction afterTransform(er, data) {\n\t  var ts = this._transformState;\n\t  ts.transforming = false;\n\n\t  var cb = ts.writecb;\n\n\t  if (!cb) {\n\t    return this.emit('error', new Error('write callback called multiple times'));\n\t  }\n\n\t  ts.writechunk = null;\n\t  ts.writecb = null;\n\n\t  if (data != null) // single equals check for both `null` and `undefined`\n\t    this.push(data);\n\n\t  cb(er);\n\n\t  var rs = this._readableState;\n\t  rs.reading = false;\n\t  if (rs.needReadable || rs.length < rs.highWaterMark) {\n\t    this._read(rs.highWaterMark);\n\t  }\n\t}\n\n\tfunction Transform(options) {\n\t  if (!(this instanceof Transform)) return new Transform(options);\n\n\t  Duplex.call(this, options);\n\n\t  this._transformState = {\n\t    afterTransform: afterTransform.bind(this),\n\t    needTransform: false,\n\t    transforming: false,\n\t    writecb: null,\n\t    writechunk: null,\n\t    writeencoding: null\n\t  };\n\n\t  // start out asking for a readable event once data is transformed.\n\t  this._readableState.needReadable = true;\n\n\t  // we have implemented the _read method, and done the other things\n\t  // that Readable wants before the first _read call, so unset the\n\t  // sync guard flag.\n\t  this._readableState.sync = false;\n\n\t  if (options) {\n\t    if (typeof options.transform === 'function') this._transform = options.transform;\n\n\t    if (typeof options.flush === 'function') this._flush = options.flush;\n\t  }\n\n\t  // When the writable side finishes, then flush out anything remaining.\n\t  this.on('prefinish', prefinish);\n\t}\n\n\tfunction prefinish() {\n\t  var _this = this;\n\n\t  if (typeof this._flush === 'function') {\n\t    this._flush(function (er, data) {\n\t      done(_this, er, data);\n\t    });\n\t  } else {\n\t    done(this, null, null);\n\t  }\n\t}\n\n\tTransform.prototype.push = function (chunk, encoding) {\n\t  this._transformState.needTransform = false;\n\t  return Duplex.prototype.push.call(this, chunk, encoding);\n\t};\n\n\t// This is the part where you do stuff!\n\t// override this function in implementation classes.\n\t// 'chunk' is an input chunk.\n\t//\n\t// Call `push(newChunk)` to pass along transformed output\n\t// to the readable side.  You may call 'push' zero or more times.\n\t//\n\t// Call `cb(err)` when you are done with this chunk.  If you pass\n\t// an error, then that'll put the hurt on the whole operation.  If you\n\t// never call cb(), then you'll never get another chunk.\n\tTransform.prototype._transform = function (chunk, encoding, cb) {\n\t  throw new Error('_transform() is not implemented');\n\t};\n\n\tTransform.prototype._write = function (chunk, encoding, cb) {\n\t  var ts = this._transformState;\n\t  ts.writecb = cb;\n\t  ts.writechunk = chunk;\n\t  ts.writeencoding = encoding;\n\t  if (!ts.transforming) {\n\t    var rs = this._readableState;\n\t    if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMark);\n\t  }\n\t};\n\n\t// Doesn't matter what the args are here.\n\t// _transform does all the work.\n\t// That we got here means that the readable side wants more data.\n\tTransform.prototype._read = function (n) {\n\t  var ts = this._transformState;\n\n\t  if (ts.writechunk !== null && ts.writecb && !ts.transforming) {\n\t    ts.transforming = true;\n\t    this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform);\n\t  } else {\n\t    // mark that we need a transform, so that any data that comes in\n\t    // will get processed, now that we've asked for it.\n\t    ts.needTransform = true;\n\t  }\n\t};\n\n\tTransform.prototype._destroy = function (err, cb) {\n\t  var _this2 = this;\n\n\t  Duplex.prototype._destroy.call(this, err, function (err2) {\n\t    cb(err2);\n\t    _this2.emit('close');\n\t  });\n\t};\n\n\tfunction done(stream, er, data) {\n\t  if (er) return stream.emit('error', er);\n\n\t  if (data != null) // single equals check for both `null` and `undefined`\n\t    stream.push(data);\n\n\t  // if there's nothing in the write buffer, then that means\n\t  // that nothing more will ever be provided\n\t  if (stream._writableState.length) throw new Error('Calling transform done when ws.length != 0');\n\n\t  if (stream._transformState.transforming) throw new Error('Calling transform done when still transforming');\n\n\t  return stream.push(null);\n\t}\n\treturn _stream_transform;\n}\n\nvar _stream_passthrough;\nvar hasRequired_stream_passthrough;\n\nfunction require_stream_passthrough () {\n\tif (hasRequired_stream_passthrough) return _stream_passthrough;\n\thasRequired_stream_passthrough = 1;\n\n\t_stream_passthrough = PassThrough;\n\n\tvar Transform = require_stream_transform();\n\n\t/*<replacement>*/\n\tvar util = Object.create(requireUtil$3());\n\tutil.inherits = requireInherits();\n\t/*</replacement>*/\n\n\tutil.inherits(PassThrough, Transform);\n\n\tfunction PassThrough(options) {\n\t  if (!(this instanceof PassThrough)) return new PassThrough(options);\n\n\t  Transform.call(this, options);\n\t}\n\n\tPassThrough.prototype._transform = function (chunk, encoding, cb) {\n\t  cb(null, chunk);\n\t};\n\treturn _stream_passthrough;\n}\n\nvar hasRequiredReadable$1;\n\nfunction requireReadable$1 () {\n\tif (hasRequiredReadable$1) return readable$1.exports;\n\thasRequiredReadable$1 = 1;\n\t(function (module, exports) {\n\t\tvar Stream = require$$0$b;\n\t\tif (process.env.READABLE_STREAM === 'disable' && Stream) {\n\t\t  module.exports = Stream;\n\t\t  exports = module.exports = Stream.Readable;\n\t\t  exports.Readable = Stream.Readable;\n\t\t  exports.Writable = Stream.Writable;\n\t\t  exports.Duplex = Stream.Duplex;\n\t\t  exports.Transform = Stream.Transform;\n\t\t  exports.PassThrough = Stream.PassThrough;\n\t\t  exports.Stream = Stream;\n\t\t} else {\n\t\t  exports = module.exports = require_stream_readable();\n\t\t  exports.Stream = Stream || exports;\n\t\t  exports.Readable = exports;\n\t\t  exports.Writable = require_stream_writable();\n\t\t  exports.Duplex = require_stream_duplex();\n\t\t  exports.Transform = require_stream_transform();\n\t\t  exports.PassThrough = require_stream_passthrough();\n\t\t} \n\t} (readable$1, readable$1.exports));\n\treturn readable$1.exports;\n}\n\nvar passthrough$1;\nvar hasRequiredPassthrough$1;\n\nfunction requirePassthrough$1 () {\n\tif (hasRequiredPassthrough$1) return passthrough$1;\n\thasRequiredPassthrough$1 = 1;\n\tpassthrough$1 = requireReadable$1().PassThrough;\n\treturn passthrough$1;\n}\n\nvar lazystream;\nvar hasRequiredLazystream;\n\nfunction requireLazystream () {\n\tif (hasRequiredLazystream) return lazystream;\n\thasRequiredLazystream = 1;\n\tvar util = require$$0__default$1;\n\tvar PassThrough = requirePassthrough$1();\n\n\tlazystream = {\n\t  Readable: Readable,\n\t  Writable: Writable\n\t};\n\n\tutil.inherits(Readable, PassThrough);\n\tutil.inherits(Writable, PassThrough);\n\n\t// Patch the given method of instance so that the callback\n\t// is executed once, before the actual method is called the\n\t// first time.\n\tfunction beforeFirstCall(instance, method, callback) {\n\t  instance[method] = function() {\n\t    delete instance[method];\n\t    callback.apply(this, arguments);\n\t    return this[method].apply(this, arguments);\n\t  };\n\t}\n\n\tfunction Readable(fn, options) {\n\t  if (!(this instanceof Readable))\n\t    return new Readable(fn, options);\n\n\t  PassThrough.call(this, options);\n\n\t  beforeFirstCall(this, '_read', function() {\n\t    var source = fn.call(this, options);\n\t    var emit = this.emit.bind(this, 'error');\n\t    source.on('error', emit);\n\t    source.pipe(this);\n\t  });\n\n\t  this.emit('readable');\n\t}\n\n\tfunction Writable(fn, options) {\n\t  if (!(this instanceof Writable))\n\t    return new Writable(fn, options);\n\n\t  PassThrough.call(this, options);\n\n\t  beforeFirstCall(this, '_write', function() {\n\t    var destination = fn.call(this, options);\n\t    var emit = this.emit.bind(this, 'error');\n\t    destination.on('error', emit);\n\t    this.pipe(destination);\n\t  });\n\n\t  this.emit('writable');\n\t}\n\treturn lazystream;\n}\n\n/*!\n * normalize-path <https://github.com/jonschlinkert/normalize-path>\n *\n * Copyright (c) 2014-2018, Jon Schlinkert.\n * Released under the MIT License.\n */\n\nvar normalizePath;\nvar hasRequiredNormalizePath;\n\nfunction requireNormalizePath () {\n\tif (hasRequiredNormalizePath) return normalizePath;\n\thasRequiredNormalizePath = 1;\n\tnormalizePath = function(path, stripTrailing) {\n\t  if (typeof path !== 'string') {\n\t    throw new TypeError('expected path to be a string');\n\t  }\n\n\t  if (path === '\\\\' || path === '/') return '/';\n\n\t  var len = path.length;\n\t  if (len <= 1) return path;\n\n\t  // ensure that win32 namespaces has two leading slashes, so that the path is\n\t  // handled properly by the win32 version of path.parse() after being normalized\n\t  // https://msdn.microsoft.com/library/windows/desktop/aa365247(v=vs.85).aspx#namespaces\n\t  var prefix = '';\n\t  if (len > 4 && path[3] === '\\\\') {\n\t    var ch = path[2];\n\t    if ((ch === '?' || ch === '.') && path.slice(0, 2) === '\\\\\\\\') {\n\t      path = path.slice(2);\n\t      prefix = '//';\n\t    }\n\t  }\n\n\t  var segs = path.split(/[/\\\\]+/);\n\t  if (stripTrailing !== false && segs[segs.length - 1] === '') {\n\t    segs.pop();\n\t  }\n\t  return prefix + segs.join('/');\n\t};\n\treturn normalizePath;\n}\n\n/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\n\nvar identity_1;\nvar hasRequiredIdentity;\n\nfunction requireIdentity () {\n\tif (hasRequiredIdentity) return identity_1;\n\thasRequiredIdentity = 1;\n\tfunction identity(value) {\n\t  return value;\n\t}\n\n\tidentity_1 = identity;\n\treturn identity_1;\n}\n\n/**\n * A faster alternative to `Function#apply`, this function invokes `func`\n * with the `this` binding of `thisArg` and the arguments of `args`.\n *\n * @private\n * @param {Function} func The function to invoke.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {Array} args The arguments to invoke `func` with.\n * @returns {*} Returns the result of `func`.\n */\n\nvar _apply;\nvar hasRequired_apply;\n\nfunction require_apply () {\n\tif (hasRequired_apply) return _apply;\n\thasRequired_apply = 1;\n\tfunction apply(func, thisArg, args) {\n\t  switch (args.length) {\n\t    case 0: return func.call(thisArg);\n\t    case 1: return func.call(thisArg, args[0]);\n\t    case 2: return func.call(thisArg, args[0], args[1]);\n\t    case 3: return func.call(thisArg, args[0], args[1], args[2]);\n\t  }\n\t  return func.apply(thisArg, args);\n\t}\n\n\t_apply = apply;\n\treturn _apply;\n}\n\nvar _overRest;\nvar hasRequired_overRest;\n\nfunction require_overRest () {\n\tif (hasRequired_overRest) return _overRest;\n\thasRequired_overRest = 1;\n\tvar apply = require_apply();\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max;\n\n\t/**\n\t * A specialized version of `baseRest` which transforms the rest array.\n\t *\n\t * @private\n\t * @param {Function} func The function to apply a rest parameter to.\n\t * @param {number} [start=func.length-1] The start position of the rest parameter.\n\t * @param {Function} transform The rest array transform.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction overRest(func, start, transform) {\n\t  start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\n\t  return function() {\n\t    var args = arguments,\n\t        index = -1,\n\t        length = nativeMax(args.length - start, 0),\n\t        array = Array(length);\n\n\t    while (++index < length) {\n\t      array[index] = args[start + index];\n\t    }\n\t    index = -1;\n\t    var otherArgs = Array(start + 1);\n\t    while (++index < start) {\n\t      otherArgs[index] = args[index];\n\t    }\n\t    otherArgs[start] = transform(array);\n\t    return apply(func, this, otherArgs);\n\t  };\n\t}\n\n\t_overRest = overRest;\n\treturn _overRest;\n}\n\n/**\n * Creates a function that returns `value`.\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Util\n * @param {*} value The value to return from the new function.\n * @returns {Function} Returns the new constant function.\n * @example\n *\n * var objects = _.times(2, _.constant({ 'a': 1 }));\n *\n * console.log(objects);\n * // => [{ 'a': 1 }, { 'a': 1 }]\n *\n * console.log(objects[0] === objects[1]);\n * // => true\n */\n\nvar constant_1;\nvar hasRequiredConstant;\n\nfunction requireConstant () {\n\tif (hasRequiredConstant) return constant_1;\n\thasRequiredConstant = 1;\n\tfunction constant(value) {\n\t  return function() {\n\t    return value;\n\t  };\n\t}\n\n\tconstant_1 = constant;\n\treturn constant_1;\n}\n\n/** Detect free variable `global` from Node.js. */\n\nvar _freeGlobal;\nvar hasRequired_freeGlobal;\n\nfunction require_freeGlobal () {\n\tif (hasRequired_freeGlobal) return _freeGlobal;\n\thasRequired_freeGlobal = 1;\n\tvar freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;\n\n\t_freeGlobal = freeGlobal;\n\treturn _freeGlobal;\n}\n\nvar _root;\nvar hasRequired_root;\n\nfunction require_root () {\n\tif (hasRequired_root) return _root;\n\thasRequired_root = 1;\n\tvar freeGlobal = require_freeGlobal();\n\n\t/** Detect free variable `self`. */\n\tvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n\t/** Used as a reference to the global object. */\n\tvar root = freeGlobal || freeSelf || Function('return this')();\n\n\t_root = root;\n\treturn _root;\n}\n\nvar _Symbol;\nvar hasRequired_Symbol;\n\nfunction require_Symbol () {\n\tif (hasRequired_Symbol) return _Symbol;\n\thasRequired_Symbol = 1;\n\tvar root = require_root();\n\n\t/** Built-in value references. */\n\tvar Symbol = root.Symbol;\n\n\t_Symbol = Symbol;\n\treturn _Symbol;\n}\n\nvar _getRawTag;\nvar hasRequired_getRawTag;\n\nfunction require_getRawTag () {\n\tif (hasRequired_getRawTag) return _getRawTag;\n\thasRequired_getRawTag = 1;\n\tvar Symbol = require_Symbol();\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Used to resolve the\n\t * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n\t * of values.\n\t */\n\tvar nativeObjectToString = objectProto.toString;\n\n\t/** Built-in value references. */\n\tvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n\t/**\n\t * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the raw `toStringTag`.\n\t */\n\tfunction getRawTag(value) {\n\t  var isOwn = hasOwnProperty.call(value, symToStringTag),\n\t      tag = value[symToStringTag];\n\n\t  try {\n\t    value[symToStringTag] = undefined;\n\t    var unmasked = true;\n\t  } catch (e) {}\n\n\t  var result = nativeObjectToString.call(value);\n\t  if (unmasked) {\n\t    if (isOwn) {\n\t      value[symToStringTag] = tag;\n\t    } else {\n\t      delete value[symToStringTag];\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\t_getRawTag = getRawTag;\n\treturn _getRawTag;\n}\n\n/** Used for built-in method references. */\n\nvar _objectToString;\nvar hasRequired_objectToString;\n\nfunction require_objectToString () {\n\tif (hasRequired_objectToString) return _objectToString;\n\thasRequired_objectToString = 1;\n\tvar objectProto = Object.prototype;\n\n\t/**\n\t * Used to resolve the\n\t * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n\t * of values.\n\t */\n\tvar nativeObjectToString = objectProto.toString;\n\n\t/**\n\t * Converts `value` to a string using `Object.prototype.toString`.\n\t *\n\t * @private\n\t * @param {*} value The value to convert.\n\t * @returns {string} Returns the converted string.\n\t */\n\tfunction objectToString(value) {\n\t  return nativeObjectToString.call(value);\n\t}\n\n\t_objectToString = objectToString;\n\treturn _objectToString;\n}\n\nvar _baseGetTag;\nvar hasRequired_baseGetTag;\n\nfunction require_baseGetTag () {\n\tif (hasRequired_baseGetTag) return _baseGetTag;\n\thasRequired_baseGetTag = 1;\n\tvar Symbol = require_Symbol(),\n\t    getRawTag = require_getRawTag(),\n\t    objectToString = require_objectToString();\n\n\t/** `Object#toString` result references. */\n\tvar nullTag = '[object Null]',\n\t    undefinedTag = '[object Undefined]';\n\n\t/** Built-in value references. */\n\tvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n\t/**\n\t * The base implementation of `getTag` without fallbacks for buggy environments.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the `toStringTag`.\n\t */\n\tfunction baseGetTag(value) {\n\t  if (value == null) {\n\t    return value === undefined ? undefinedTag : nullTag;\n\t  }\n\t  return (symToStringTag && symToStringTag in Object(value))\n\t    ? getRawTag(value)\n\t    : objectToString(value);\n\t}\n\n\t_baseGetTag = baseGetTag;\n\treturn _baseGetTag;\n}\n\n/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\n\nvar isObject_1;\nvar hasRequiredIsObject;\n\nfunction requireIsObject () {\n\tif (hasRequiredIsObject) return isObject_1;\n\thasRequiredIsObject = 1;\n\tfunction isObject(value) {\n\t  var type = typeof value;\n\t  return value != null && (type == 'object' || type == 'function');\n\t}\n\n\tisObject_1 = isObject;\n\treturn isObject_1;\n}\n\nvar isFunction_1;\nvar hasRequiredIsFunction;\n\nfunction requireIsFunction () {\n\tif (hasRequiredIsFunction) return isFunction_1;\n\thasRequiredIsFunction = 1;\n\tvar baseGetTag = require_baseGetTag(),\n\t    isObject = requireIsObject();\n\n\t/** `Object#toString` result references. */\n\tvar asyncTag = '[object AsyncFunction]',\n\t    funcTag = '[object Function]',\n\t    genTag = '[object GeneratorFunction]',\n\t    proxyTag = '[object Proxy]';\n\n\t/**\n\t * Checks if `value` is classified as a `Function` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n\t * @example\n\t *\n\t * _.isFunction(_);\n\t * // => true\n\t *\n\t * _.isFunction(/abc/);\n\t * // => false\n\t */\n\tfunction isFunction(value) {\n\t  if (!isObject(value)) {\n\t    return false;\n\t  }\n\t  // The use of `Object#toString` avoids issues with the `typeof` operator\n\t  // in Safari 9 which returns 'object' for typed arrays and other constructors.\n\t  var tag = baseGetTag(value);\n\t  return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n\t}\n\n\tisFunction_1 = isFunction;\n\treturn isFunction_1;\n}\n\nvar _coreJsData;\nvar hasRequired_coreJsData;\n\nfunction require_coreJsData () {\n\tif (hasRequired_coreJsData) return _coreJsData;\n\thasRequired_coreJsData = 1;\n\tvar root = require_root();\n\n\t/** Used to detect overreaching core-js shims. */\n\tvar coreJsData = root['__core-js_shared__'];\n\n\t_coreJsData = coreJsData;\n\treturn _coreJsData;\n}\n\nvar _isMasked;\nvar hasRequired_isMasked;\n\nfunction require_isMasked () {\n\tif (hasRequired_isMasked) return _isMasked;\n\thasRequired_isMasked = 1;\n\tvar coreJsData = require_coreJsData();\n\n\t/** Used to detect methods masquerading as native. */\n\tvar maskSrcKey = (function() {\n\t  var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n\t  return uid ? ('Symbol(src)_1.' + uid) : '';\n\t}());\n\n\t/**\n\t * Checks if `func` has its source masked.\n\t *\n\t * @private\n\t * @param {Function} func The function to check.\n\t * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n\t */\n\tfunction isMasked(func) {\n\t  return !!maskSrcKey && (maskSrcKey in func);\n\t}\n\n\t_isMasked = isMasked;\n\treturn _isMasked;\n}\n\n/** Used for built-in method references. */\n\nvar _toSource;\nvar hasRequired_toSource;\n\nfunction require_toSource () {\n\tif (hasRequired_toSource) return _toSource;\n\thasRequired_toSource = 1;\n\tvar funcProto = Function.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/**\n\t * Converts `func` to its source code.\n\t *\n\t * @private\n\t * @param {Function} func The function to convert.\n\t * @returns {string} Returns the source code.\n\t */\n\tfunction toSource(func) {\n\t  if (func != null) {\n\t    try {\n\t      return funcToString.call(func);\n\t    } catch (e) {}\n\t    try {\n\t      return (func + '');\n\t    } catch (e) {}\n\t  }\n\t  return '';\n\t}\n\n\t_toSource = toSource;\n\treturn _toSource;\n}\n\nvar _baseIsNative;\nvar hasRequired_baseIsNative;\n\nfunction require_baseIsNative () {\n\tif (hasRequired_baseIsNative) return _baseIsNative;\n\thasRequired_baseIsNative = 1;\n\tvar isFunction = requireIsFunction(),\n\t    isMasked = require_isMasked(),\n\t    isObject = requireIsObject(),\n\t    toSource = require_toSource();\n\n\t/**\n\t * Used to match `RegExp`\n\t * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n\t */\n\tvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n\t/** Used to detect host constructors (Safari). */\n\tvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype,\n\t    objectProto = Object.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Used to detect if a method is native. */\n\tvar reIsNative = RegExp('^' +\n\t  funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n\t  .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n\t);\n\n\t/**\n\t * The base implementation of `_.isNative` without bad shim checks.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a native function,\n\t *  else `false`.\n\t */\n\tfunction baseIsNative(value) {\n\t  if (!isObject(value) || isMasked(value)) {\n\t    return false;\n\t  }\n\t  var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n\t  return pattern.test(toSource(value));\n\t}\n\n\t_baseIsNative = baseIsNative;\n\treturn _baseIsNative;\n}\n\n/**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\n\nvar _getValue;\nvar hasRequired_getValue;\n\nfunction require_getValue () {\n\tif (hasRequired_getValue) return _getValue;\n\thasRequired_getValue = 1;\n\tfunction getValue(object, key) {\n\t  return object == null ? undefined : object[key];\n\t}\n\n\t_getValue = getValue;\n\treturn _getValue;\n}\n\nvar _getNative;\nvar hasRequired_getNative;\n\nfunction require_getNative () {\n\tif (hasRequired_getNative) return _getNative;\n\thasRequired_getNative = 1;\n\tvar baseIsNative = require_baseIsNative(),\n\t    getValue = require_getValue();\n\n\t/**\n\t * Gets the native function at `key` of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {string} key The key of the method to get.\n\t * @returns {*} Returns the function if it's native, else `undefined`.\n\t */\n\tfunction getNative(object, key) {\n\t  var value = getValue(object, key);\n\t  return baseIsNative(value) ? value : undefined;\n\t}\n\n\t_getNative = getNative;\n\treturn _getNative;\n}\n\nvar _defineProperty;\nvar hasRequired_defineProperty;\n\nfunction require_defineProperty () {\n\tif (hasRequired_defineProperty) return _defineProperty;\n\thasRequired_defineProperty = 1;\n\tvar getNative = require_getNative();\n\n\tvar defineProperty = (function() {\n\t  try {\n\t    var func = getNative(Object, 'defineProperty');\n\t    func({}, '', {});\n\t    return func;\n\t  } catch (e) {}\n\t}());\n\n\t_defineProperty = defineProperty;\n\treturn _defineProperty;\n}\n\nvar _baseSetToString;\nvar hasRequired_baseSetToString;\n\nfunction require_baseSetToString () {\n\tif (hasRequired_baseSetToString) return _baseSetToString;\n\thasRequired_baseSetToString = 1;\n\tvar constant = requireConstant(),\n\t    defineProperty = require_defineProperty(),\n\t    identity = requireIdentity();\n\n\t/**\n\t * The base implementation of `setToString` without support for hot loop shorting.\n\t *\n\t * @private\n\t * @param {Function} func The function to modify.\n\t * @param {Function} string The `toString` result.\n\t * @returns {Function} Returns `func`.\n\t */\n\tvar baseSetToString = !defineProperty ? identity : function(func, string) {\n\t  return defineProperty(func, 'toString', {\n\t    'configurable': true,\n\t    'enumerable': false,\n\t    'value': constant(string),\n\t    'writable': true\n\t  });\n\t};\n\n\t_baseSetToString = baseSetToString;\n\treturn _baseSetToString;\n}\n\n/** Used to detect hot functions by number of calls within a span of milliseconds. */\n\nvar _shortOut;\nvar hasRequired_shortOut;\n\nfunction require_shortOut () {\n\tif (hasRequired_shortOut) return _shortOut;\n\thasRequired_shortOut = 1;\n\tvar HOT_COUNT = 800,\n\t    HOT_SPAN = 16;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeNow = Date.now;\n\n\t/**\n\t * Creates a function that'll short out and invoke `identity` instead\n\t * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n\t * milliseconds.\n\t *\n\t * @private\n\t * @param {Function} func The function to restrict.\n\t * @returns {Function} Returns the new shortable function.\n\t */\n\tfunction shortOut(func) {\n\t  var count = 0,\n\t      lastCalled = 0;\n\n\t  return function() {\n\t    var stamp = nativeNow(),\n\t        remaining = HOT_SPAN - (stamp - lastCalled);\n\n\t    lastCalled = stamp;\n\t    if (remaining > 0) {\n\t      if (++count >= HOT_COUNT) {\n\t        return arguments[0];\n\t      }\n\t    } else {\n\t      count = 0;\n\t    }\n\t    return func.apply(undefined, arguments);\n\t  };\n\t}\n\n\t_shortOut = shortOut;\n\treturn _shortOut;\n}\n\nvar _setToString;\nvar hasRequired_setToString;\n\nfunction require_setToString () {\n\tif (hasRequired_setToString) return _setToString;\n\thasRequired_setToString = 1;\n\tvar baseSetToString = require_baseSetToString(),\n\t    shortOut = require_shortOut();\n\n\t/**\n\t * Sets the `toString` method of `func` to return `string`.\n\t *\n\t * @private\n\t * @param {Function} func The function to modify.\n\t * @param {Function} string The `toString` result.\n\t * @returns {Function} Returns `func`.\n\t */\n\tvar setToString = shortOut(baseSetToString);\n\n\t_setToString = setToString;\n\treturn _setToString;\n}\n\nvar _baseRest;\nvar hasRequired_baseRest;\n\nfunction require_baseRest () {\n\tif (hasRequired_baseRest) return _baseRest;\n\thasRequired_baseRest = 1;\n\tvar identity = requireIdentity(),\n\t    overRest = require_overRest(),\n\t    setToString = require_setToString();\n\n\t/**\n\t * The base implementation of `_.rest` which doesn't validate or coerce arguments.\n\t *\n\t * @private\n\t * @param {Function} func The function to apply a rest parameter to.\n\t * @param {number} [start=func.length-1] The start position of the rest parameter.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction baseRest(func, start) {\n\t  return setToString(overRest(func, start, identity), func + '');\n\t}\n\n\t_baseRest = baseRest;\n\treturn _baseRest;\n}\n\n/**\n * Performs a\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * comparison between two values to determine if they are equivalent.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.eq(object, object);\n * // => true\n *\n * _.eq(object, other);\n * // => false\n *\n * _.eq('a', 'a');\n * // => true\n *\n * _.eq('a', Object('a'));\n * // => false\n *\n * _.eq(NaN, NaN);\n * // => true\n */\n\nvar eq_1;\nvar hasRequiredEq;\n\nfunction requireEq () {\n\tif (hasRequiredEq) return eq_1;\n\thasRequiredEq = 1;\n\tfunction eq(value, other) {\n\t  return value === other || (value !== value && other !== other);\n\t}\n\n\teq_1 = eq;\n\treturn eq_1;\n}\n\n/** Used as references for various `Number` constants. */\n\nvar isLength_1;\nvar hasRequiredIsLength;\n\nfunction requireIsLength () {\n\tif (hasRequiredIsLength) return isLength_1;\n\thasRequiredIsLength = 1;\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/**\n\t * Checks if `value` is a valid array-like length.\n\t *\n\t * **Note:** This method is loosely based on\n\t * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n\t * @example\n\t *\n\t * _.isLength(3);\n\t * // => true\n\t *\n\t * _.isLength(Number.MIN_VALUE);\n\t * // => false\n\t *\n\t * _.isLength(Infinity);\n\t * // => false\n\t *\n\t * _.isLength('3');\n\t * // => false\n\t */\n\tfunction isLength(value) {\n\t  return typeof value == 'number' &&\n\t    value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n\t}\n\n\tisLength_1 = isLength;\n\treturn isLength_1;\n}\n\nvar isArrayLike_1;\nvar hasRequiredIsArrayLike;\n\nfunction requireIsArrayLike () {\n\tif (hasRequiredIsArrayLike) return isArrayLike_1;\n\thasRequiredIsArrayLike = 1;\n\tvar isFunction = requireIsFunction(),\n\t    isLength = requireIsLength();\n\n\t/**\n\t * Checks if `value` is array-like. A value is considered array-like if it's\n\t * not a function and has a `value.length` that's an integer greater than or\n\t * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n\t * @example\n\t *\n\t * _.isArrayLike([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArrayLike(document.body.children);\n\t * // => true\n\t *\n\t * _.isArrayLike('abc');\n\t * // => true\n\t *\n\t * _.isArrayLike(_.noop);\n\t * // => false\n\t */\n\tfunction isArrayLike(value) {\n\t  return value != null && isLength(value.length) && !isFunction(value);\n\t}\n\n\tisArrayLike_1 = isArrayLike;\n\treturn isArrayLike_1;\n}\n\n/** Used as references for various `Number` constants. */\n\nvar _isIndex;\nvar hasRequired_isIndex;\n\nfunction require_isIndex () {\n\tif (hasRequired_isIndex) return _isIndex;\n\thasRequired_isIndex = 1;\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/** Used to detect unsigned integer values. */\n\tvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n\t/**\n\t * Checks if `value` is a valid array-like index.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n\t * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n\t */\n\tfunction isIndex(value, length) {\n\t  var type = typeof value;\n\t  length = length == null ? MAX_SAFE_INTEGER : length;\n\n\t  return !!length &&\n\t    (type == 'number' ||\n\t      (type != 'symbol' && reIsUint.test(value))) &&\n\t        (value > -1 && value % 1 == 0 && value < length);\n\t}\n\n\t_isIndex = isIndex;\n\treturn _isIndex;\n}\n\nvar _isIterateeCall;\nvar hasRequired_isIterateeCall;\n\nfunction require_isIterateeCall () {\n\tif (hasRequired_isIterateeCall) return _isIterateeCall;\n\thasRequired_isIterateeCall = 1;\n\tvar eq = requireEq(),\n\t    isArrayLike = requireIsArrayLike(),\n\t    isIndex = require_isIndex(),\n\t    isObject = requireIsObject();\n\n\t/**\n\t * Checks if the given arguments are from an iteratee call.\n\t *\n\t * @private\n\t * @param {*} value The potential iteratee value argument.\n\t * @param {*} index The potential iteratee index or key argument.\n\t * @param {*} object The potential iteratee object argument.\n\t * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\n\t *  else `false`.\n\t */\n\tfunction isIterateeCall(value, index, object) {\n\t  if (!isObject(object)) {\n\t    return false;\n\t  }\n\t  var type = typeof index;\n\t  if (type == 'number'\n\t        ? (isArrayLike(object) && isIndex(index, object.length))\n\t        : (type == 'string' && index in object)\n\t      ) {\n\t    return eq(object[index], value);\n\t  }\n\t  return false;\n\t}\n\n\t_isIterateeCall = isIterateeCall;\n\treturn _isIterateeCall;\n}\n\n/**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\n\nvar _baseTimes;\nvar hasRequired_baseTimes;\n\nfunction require_baseTimes () {\n\tif (hasRequired_baseTimes) return _baseTimes;\n\thasRequired_baseTimes = 1;\n\tfunction baseTimes(n, iteratee) {\n\t  var index = -1,\n\t      result = Array(n);\n\n\t  while (++index < n) {\n\t    result[index] = iteratee(index);\n\t  }\n\t  return result;\n\t}\n\n\t_baseTimes = baseTimes;\n\treturn _baseTimes;\n}\n\n/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\n\nvar isObjectLike_1;\nvar hasRequiredIsObjectLike;\n\nfunction requireIsObjectLike () {\n\tif (hasRequiredIsObjectLike) return isObjectLike_1;\n\thasRequiredIsObjectLike = 1;\n\tfunction isObjectLike(value) {\n\t  return value != null && typeof value == 'object';\n\t}\n\n\tisObjectLike_1 = isObjectLike;\n\treturn isObjectLike_1;\n}\n\nvar _baseIsArguments;\nvar hasRequired_baseIsArguments;\n\nfunction require_baseIsArguments () {\n\tif (hasRequired_baseIsArguments) return _baseIsArguments;\n\thasRequired_baseIsArguments = 1;\n\tvar baseGetTag = require_baseGetTag(),\n\t    isObjectLike = requireIsObjectLike();\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]';\n\n\t/**\n\t * The base implementation of `_.isArguments`.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n\t */\n\tfunction baseIsArguments(value) {\n\t  return isObjectLike(value) && baseGetTag(value) == argsTag;\n\t}\n\n\t_baseIsArguments = baseIsArguments;\n\treturn _baseIsArguments;\n}\n\nvar isArguments_1;\nvar hasRequiredIsArguments;\n\nfunction requireIsArguments () {\n\tif (hasRequiredIsArguments) return isArguments_1;\n\thasRequiredIsArguments = 1;\n\tvar baseIsArguments = require_baseIsArguments(),\n\t    isObjectLike = requireIsObjectLike();\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Built-in value references. */\n\tvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n\t/**\n\t * Checks if `value` is likely an `arguments` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.isArguments(function() { return arguments; }());\n\t * // => true\n\t *\n\t * _.isArguments([1, 2, 3]);\n\t * // => false\n\t */\n\tvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n\t  return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n\t    !propertyIsEnumerable.call(value, 'callee');\n\t};\n\n\tisArguments_1 = isArguments;\n\treturn isArguments_1;\n}\n\n/**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\n\nvar isArray_1;\nvar hasRequiredIsArray;\n\nfunction requireIsArray () {\n\tif (hasRequiredIsArray) return isArray_1;\n\thasRequiredIsArray = 1;\n\tvar isArray = Array.isArray;\n\n\tisArray_1 = isArray;\n\treturn isArray_1;\n}\n\nvar isBuffer = {exports: {}};\n\n/**\n * This method returns `false`.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {boolean} Returns `false`.\n * @example\n *\n * _.times(2, _.stubFalse);\n * // => [false, false]\n */\n\nvar stubFalse_1;\nvar hasRequiredStubFalse;\n\nfunction requireStubFalse () {\n\tif (hasRequiredStubFalse) return stubFalse_1;\n\thasRequiredStubFalse = 1;\n\tfunction stubFalse() {\n\t  return false;\n\t}\n\n\tstubFalse_1 = stubFalse;\n\treturn stubFalse_1;\n}\n\nisBuffer.exports;\n\nvar hasRequiredIsBuffer;\n\nfunction requireIsBuffer () {\n\tif (hasRequiredIsBuffer) return isBuffer.exports;\n\thasRequiredIsBuffer = 1;\n\t(function (module, exports) {\n\t\tvar root = require_root(),\n\t\t    stubFalse = requireStubFalse();\n\n\t\t/** Detect free variable `exports`. */\n\t\tvar freeExports = exports && !exports.nodeType && exports;\n\n\t\t/** Detect free variable `module`. */\n\t\tvar freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;\n\n\t\t/** Detect the popular CommonJS extension `module.exports`. */\n\t\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t\t/** Built-in value references. */\n\t\tvar Buffer = moduleExports ? root.Buffer : undefined;\n\n\t\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\t\tvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;\n\n\t\t/**\n\t\t * Checks if `value` is a buffer.\n\t\t *\n\t\t * @static\n\t\t * @memberOf _\n\t\t * @since 4.3.0\n\t\t * @category Lang\n\t\t * @param {*} value The value to check.\n\t\t * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n\t\t * @example\n\t\t *\n\t\t * _.isBuffer(new Buffer(2));\n\t\t * // => true\n\t\t *\n\t\t * _.isBuffer(new Uint8Array(2));\n\t\t * // => false\n\t\t */\n\t\tvar isBuffer = nativeIsBuffer || stubFalse;\n\n\t\tmodule.exports = isBuffer; \n\t} (isBuffer, isBuffer.exports));\n\treturn isBuffer.exports;\n}\n\nvar _baseIsTypedArray;\nvar hasRequired_baseIsTypedArray;\n\nfunction require_baseIsTypedArray () {\n\tif (hasRequired_baseIsTypedArray) return _baseIsTypedArray;\n\thasRequired_baseIsTypedArray = 1;\n\tvar baseGetTag = require_baseGetTag(),\n\t    isLength = requireIsLength(),\n\t    isObjectLike = requireIsObjectLike();\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    funcTag = '[object Function]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    objectTag = '[object Object]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/** Used to identify `toStringTag` values of typed arrays. */\n\tvar typedArrayTags = {};\n\ttypedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\n\ttypedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\n\ttypedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\n\ttypedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\n\ttypedArrayTags[uint32Tag] = true;\n\ttypedArrayTags[argsTag] = typedArrayTags[arrayTag] =\n\ttypedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\n\ttypedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\n\ttypedArrayTags[errorTag] = typedArrayTags[funcTag] =\n\ttypedArrayTags[mapTag] = typedArrayTags[numberTag] =\n\ttypedArrayTags[objectTag] = typedArrayTags[regexpTag] =\n\ttypedArrayTags[setTag] = typedArrayTags[stringTag] =\n\ttypedArrayTags[weakMapTag] = false;\n\n\t/**\n\t * The base implementation of `_.isTypedArray` without Node.js optimizations.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n\t */\n\tfunction baseIsTypedArray(value) {\n\t  return isObjectLike(value) &&\n\t    isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n\t}\n\n\t_baseIsTypedArray = baseIsTypedArray;\n\treturn _baseIsTypedArray;\n}\n\n/**\n * The base implementation of `_.unary` without support for storing metadata.\n *\n * @private\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n */\n\nvar _baseUnary;\nvar hasRequired_baseUnary;\n\nfunction require_baseUnary () {\n\tif (hasRequired_baseUnary) return _baseUnary;\n\thasRequired_baseUnary = 1;\n\tfunction baseUnary(func) {\n\t  return function(value) {\n\t    return func(value);\n\t  };\n\t}\n\n\t_baseUnary = baseUnary;\n\treturn _baseUnary;\n}\n\nvar _nodeUtil = {exports: {}};\n\n_nodeUtil.exports;\n\nvar hasRequired_nodeUtil;\n\nfunction require_nodeUtil () {\n\tif (hasRequired_nodeUtil) return _nodeUtil.exports;\n\thasRequired_nodeUtil = 1;\n\t(function (module, exports) {\n\t\tvar freeGlobal = require_freeGlobal();\n\n\t\t/** Detect free variable `exports`. */\n\t\tvar freeExports = exports && !exports.nodeType && exports;\n\n\t\t/** Detect free variable `module`. */\n\t\tvar freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;\n\n\t\t/** Detect the popular CommonJS extension `module.exports`. */\n\t\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t\t/** Detect free variable `process` from Node.js. */\n\t\tvar freeProcess = moduleExports && freeGlobal.process;\n\n\t\t/** Used to access faster Node.js helpers. */\n\t\tvar nodeUtil = (function() {\n\t\t  try {\n\t\t    // Use `util.types` for Node.js 10+.\n\t\t    var types = freeModule && freeModule.require && freeModule.require('util').types;\n\n\t\t    if (types) {\n\t\t      return types;\n\t\t    }\n\n\t\t    // Legacy `process.binding('util')` for Node.js < 10.\n\t\t    return freeProcess && freeProcess.binding && freeProcess.binding('util');\n\t\t  } catch (e) {}\n\t\t}());\n\n\t\tmodule.exports = nodeUtil; \n\t} (_nodeUtil, _nodeUtil.exports));\n\treturn _nodeUtil.exports;\n}\n\nvar isTypedArray_1;\nvar hasRequiredIsTypedArray;\n\nfunction requireIsTypedArray () {\n\tif (hasRequiredIsTypedArray) return isTypedArray_1;\n\thasRequiredIsTypedArray = 1;\n\tvar baseIsTypedArray = require_baseIsTypedArray(),\n\t    baseUnary = require_baseUnary(),\n\t    nodeUtil = require_nodeUtil();\n\n\t/* Node.js helper references. */\n\tvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n\t/**\n\t * Checks if `value` is classified as a typed array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n\t * @example\n\t *\n\t * _.isTypedArray(new Uint8Array);\n\t * // => true\n\t *\n\t * _.isTypedArray([]);\n\t * // => false\n\t */\n\tvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\n\tisTypedArray_1 = isTypedArray;\n\treturn isTypedArray_1;\n}\n\nvar _arrayLikeKeys;\nvar hasRequired_arrayLikeKeys;\n\nfunction require_arrayLikeKeys () {\n\tif (hasRequired_arrayLikeKeys) return _arrayLikeKeys;\n\thasRequired_arrayLikeKeys = 1;\n\tvar baseTimes = require_baseTimes(),\n\t    isArguments = requireIsArguments(),\n\t    isArray = requireIsArray(),\n\t    isBuffer = requireIsBuffer(),\n\t    isIndex = require_isIndex(),\n\t    isTypedArray = requireIsTypedArray();\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Creates an array of the enumerable property names of the array-like `value`.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @param {boolean} inherited Specify returning inherited property names.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction arrayLikeKeys(value, inherited) {\n\t  var isArr = isArray(value),\n\t      isArg = !isArr && isArguments(value),\n\t      isBuff = !isArr && !isArg && isBuffer(value),\n\t      isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n\t      skipIndexes = isArr || isArg || isBuff || isType,\n\t      result = skipIndexes ? baseTimes(value.length, String) : [],\n\t      length = result.length;\n\n\t  for (var key in value) {\n\t    if ((inherited || hasOwnProperty.call(value, key)) &&\n\t        !(skipIndexes && (\n\t           // Safari 9 has enumerable `arguments.length` in strict mode.\n\t           key == 'length' ||\n\t           // Node.js 0.10 has enumerable non-index properties on buffers.\n\t           (isBuff && (key == 'offset' || key == 'parent')) ||\n\t           // PhantomJS 2 has enumerable non-index properties on typed arrays.\n\t           (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\n\t           // Skip index properties.\n\t           isIndex(key, length)\n\t        ))) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\t_arrayLikeKeys = arrayLikeKeys;\n\treturn _arrayLikeKeys;\n}\n\n/** Used for built-in method references. */\n\nvar _isPrototype;\nvar hasRequired_isPrototype;\n\nfunction require_isPrototype () {\n\tif (hasRequired_isPrototype) return _isPrototype;\n\thasRequired_isPrototype = 1;\n\tvar objectProto = Object.prototype;\n\n\t/**\n\t * Checks if `value` is likely a prototype object.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n\t */\n\tfunction isPrototype(value) {\n\t  var Ctor = value && value.constructor,\n\t      proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n\t  return value === proto;\n\t}\n\n\t_isPrototype = isPrototype;\n\treturn _isPrototype;\n}\n\n/**\n * This function is like\n * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * except that it includes inherited enumerable properties.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\n\nvar _nativeKeysIn;\nvar hasRequired_nativeKeysIn;\n\nfunction require_nativeKeysIn () {\n\tif (hasRequired_nativeKeysIn) return _nativeKeysIn;\n\thasRequired_nativeKeysIn = 1;\n\tfunction nativeKeysIn(object) {\n\t  var result = [];\n\t  if (object != null) {\n\t    for (var key in Object(object)) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\t_nativeKeysIn = nativeKeysIn;\n\treturn _nativeKeysIn;\n}\n\nvar _baseKeysIn;\nvar hasRequired_baseKeysIn;\n\nfunction require_baseKeysIn () {\n\tif (hasRequired_baseKeysIn) return _baseKeysIn;\n\thasRequired_baseKeysIn = 1;\n\tvar isObject = requireIsObject(),\n\t    isPrototype = require_isPrototype(),\n\t    nativeKeysIn = require_nativeKeysIn();\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction baseKeysIn(object) {\n\t  if (!isObject(object)) {\n\t    return nativeKeysIn(object);\n\t  }\n\t  var isProto = isPrototype(object),\n\t      result = [];\n\n\t  for (var key in object) {\n\t    if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\t_baseKeysIn = baseKeysIn;\n\treturn _baseKeysIn;\n}\n\nvar keysIn_1;\nvar hasRequiredKeysIn;\n\nfunction requireKeysIn () {\n\tif (hasRequiredKeysIn) return keysIn_1;\n\thasRequiredKeysIn = 1;\n\tvar arrayLikeKeys = require_arrayLikeKeys(),\n\t    baseKeysIn = require_baseKeysIn(),\n\t    isArrayLike = requireIsArrayLike();\n\n\t/**\n\t * Creates an array of the own and inherited enumerable property names of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.keysIn(new Foo);\n\t * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n\t */\n\tfunction keysIn(object) {\n\t  return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n\t}\n\n\tkeysIn_1 = keysIn;\n\treturn keysIn_1;\n}\n\nvar defaults_1;\nvar hasRequiredDefaults;\n\nfunction requireDefaults () {\n\tif (hasRequiredDefaults) return defaults_1;\n\thasRequiredDefaults = 1;\n\tvar baseRest = require_baseRest(),\n\t    eq = requireEq(),\n\t    isIterateeCall = require_isIterateeCall(),\n\t    keysIn = requireKeysIn();\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Assigns own and inherited enumerable string keyed properties of source\n\t * objects to the destination object for all destination properties that\n\t * resolve to `undefined`. Source objects are applied from left to right.\n\t * Once a property is set, additional values of the same property are ignored.\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} [sources] The source objects.\n\t * @returns {Object} Returns `object`.\n\t * @see _.defaultsDeep\n\t * @example\n\t *\n\t * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\n\t * // => { 'a': 1, 'b': 2 }\n\t */\n\tvar defaults = baseRest(function(object, sources) {\n\t  object = Object(object);\n\n\t  var index = -1;\n\t  var length = sources.length;\n\t  var guard = length > 2 ? sources[2] : undefined;\n\n\t  if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n\t    length = 1;\n\t  }\n\n\t  while (++index < length) {\n\t    var source = sources[index];\n\t    var props = keysIn(source);\n\t    var propsIndex = -1;\n\t    var propsLength = props.length;\n\n\t    while (++propsIndex < propsLength) {\n\t      var key = props[propsIndex];\n\t      var value = object[key];\n\n\t      if (value === undefined ||\n\t          (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) {\n\t        object[key] = source[key];\n\t      }\n\t    }\n\t  }\n\n\t  return object;\n\t});\n\n\tdefaults_1 = defaults;\n\treturn defaults_1;\n}\n\nvar ours = {exports: {}};\n\nvar stream = {exports: {}};\n\nvar primordials;\nvar hasRequiredPrimordials;\n\nfunction requirePrimordials () {\n\tif (hasRequiredPrimordials) return primordials;\n\thasRequiredPrimordials = 1;\n\n\t/*\n\t  This file is a reduced and adapted version of the main lib/internal/per_context/primordials.js file defined at\n\n\t  https://github.com/nodejs/node/blob/main/lib/internal/per_context/primordials.js\n\n\t  Don't try to replace with the original file and keep it up to date with the upstream file.\n\t*/\n\n\t// This is a simplified version of AggregateError\n\tclass AggregateError extends Error {\n\t  constructor(errors) {\n\t    if (!Array.isArray(errors)) {\n\t      throw new TypeError(`Expected input to be an Array, got ${typeof errors}`)\n\t    }\n\t    let message = '';\n\t    for (let i = 0; i < errors.length; i++) {\n\t      message += `    ${errors[i].stack}\\n`;\n\t    }\n\t    super(message);\n\t    this.name = 'AggregateError';\n\t    this.errors = errors;\n\t  }\n\t}\n\tprimordials = {\n\t  AggregateError,\n\t  ArrayIsArray(self) {\n\t    return Array.isArray(self)\n\t  },\n\t  ArrayPrototypeIncludes(self, el) {\n\t    return self.includes(el)\n\t  },\n\t  ArrayPrototypeIndexOf(self, el) {\n\t    return self.indexOf(el)\n\t  },\n\t  ArrayPrototypeJoin(self, sep) {\n\t    return self.join(sep)\n\t  },\n\t  ArrayPrototypeMap(self, fn) {\n\t    return self.map(fn)\n\t  },\n\t  ArrayPrototypePop(self, el) {\n\t    return self.pop(el)\n\t  },\n\t  ArrayPrototypePush(self, el) {\n\t    return self.push(el)\n\t  },\n\t  ArrayPrototypeSlice(self, start, end) {\n\t    return self.slice(start, end)\n\t  },\n\t  Error,\n\t  FunctionPrototypeCall(fn, thisArgs, ...args) {\n\t    return fn.call(thisArgs, ...args)\n\t  },\n\t  FunctionPrototypeSymbolHasInstance(self, instance) {\n\t    return Function.prototype[Symbol.hasInstance].call(self, instance)\n\t  },\n\t  MathFloor: Math.floor,\n\t  Number,\n\t  NumberIsInteger: Number.isInteger,\n\t  NumberIsNaN: Number.isNaN,\n\t  NumberMAX_SAFE_INTEGER: Number.MAX_SAFE_INTEGER,\n\t  NumberMIN_SAFE_INTEGER: Number.MIN_SAFE_INTEGER,\n\t  NumberParseInt: Number.parseInt,\n\t  ObjectDefineProperties(self, props) {\n\t    return Object.defineProperties(self, props)\n\t  },\n\t  ObjectDefineProperty(self, name, prop) {\n\t    return Object.defineProperty(self, name, prop)\n\t  },\n\t  ObjectGetOwnPropertyDescriptor(self, name) {\n\t    return Object.getOwnPropertyDescriptor(self, name)\n\t  },\n\t  ObjectKeys(obj) {\n\t    return Object.keys(obj)\n\t  },\n\t  ObjectSetPrototypeOf(target, proto) {\n\t    return Object.setPrototypeOf(target, proto)\n\t  },\n\t  Promise,\n\t  PromisePrototypeCatch(self, fn) {\n\t    return self.catch(fn)\n\t  },\n\t  PromisePrototypeThen(self, thenFn, catchFn) {\n\t    return self.then(thenFn, catchFn)\n\t  },\n\t  PromiseReject(err) {\n\t    return Promise.reject(err)\n\t  },\n\t  PromiseResolve(val) {\n\t    return Promise.resolve(val)\n\t  },\n\t  ReflectApply: Reflect.apply,\n\t  RegExpPrototypeTest(self, value) {\n\t    return self.test(value)\n\t  },\n\t  SafeSet: Set,\n\t  String,\n\t  StringPrototypeSlice(self, start, end) {\n\t    return self.slice(start, end)\n\t  },\n\t  StringPrototypeToLowerCase(self) {\n\t    return self.toLowerCase()\n\t  },\n\t  StringPrototypeToUpperCase(self) {\n\t    return self.toUpperCase()\n\t  },\n\t  StringPrototypeTrim(self) {\n\t    return self.trim()\n\t  },\n\t  Symbol,\n\t  SymbolFor: Symbol.for,\n\t  SymbolAsyncIterator: Symbol.asyncIterator,\n\t  SymbolHasInstance: Symbol.hasInstance,\n\t  SymbolIterator: Symbol.iterator,\n\t  SymbolDispose: Symbol.dispose || Symbol('Symbol.dispose'),\n\t  SymbolAsyncDispose: Symbol.asyncDispose || Symbol('Symbol.asyncDispose'),\n\t  TypedArrayPrototypeSet(self, buf, len) {\n\t    return self.set(buf, len)\n\t  },\n\t  Boolean,\n\t  Uint8Array\n\t};\n\treturn primordials;\n}\n\nvar util$2 = {exports: {}};\n\nvar inspect;\nvar hasRequiredInspect;\n\nfunction requireInspect () {\n\tif (hasRequiredInspect) return inspect;\n\thasRequiredInspect = 1;\n\n\t/*\n\t  This file is a reduced and adapted version of the main lib/internal/util/inspect.js file defined at\n\n\t  https://github.com/nodejs/node/blob/main/lib/internal/util/inspect.js\n\n\t  Don't try to replace with the original file and keep it up to date with the upstream file.\n\t*/\n\tinspect = {\n\t  format(format, ...args) {\n\t    // Simplified version of https://nodejs.org/api/util.html#utilformatformat-args\n\t    return format.replace(/%([sdifj])/g, function (...[_unused, type]) {\n\t      const replacement = args.shift();\n\t      if (type === 'f') {\n\t        return replacement.toFixed(6)\n\t      } else if (type === 'j') {\n\t        return JSON.stringify(replacement)\n\t      } else if (type === 's' && typeof replacement === 'object') {\n\t        const ctor = replacement.constructor !== Object ? replacement.constructor.name : '';\n\t        return `${ctor} {}`.trim()\n\t      } else {\n\t        return replacement.toString()\n\t      }\n\t    })\n\t  },\n\t  inspect(value) {\n\t    // Vastly simplified version of https://nodejs.org/api/util.html#utilinspectobject-options\n\t    switch (typeof value) {\n\t      case 'string':\n\t        if (value.includes(\"'\")) {\n\t          if (!value.includes('\"')) {\n\t            return `\"${value}\"`\n\t          } else if (!value.includes('`') && !value.includes('${')) {\n\t            return `\\`${value}\\``\n\t          }\n\t        }\n\t        return `'${value}'`\n\t      case 'number':\n\t        if (isNaN(value)) {\n\t          return 'NaN'\n\t        } else if (Object.is(value, -0)) {\n\t          return String(value)\n\t        }\n\t        return value\n\t      case 'bigint':\n\t        return `${String(value)}n`\n\t      case 'boolean':\n\t      case 'undefined':\n\t        return String(value)\n\t      case 'object':\n\t        return '{}'\n\t    }\n\t  }\n\t};\n\treturn inspect;\n}\n\nvar errors;\nvar hasRequiredErrors;\n\nfunction requireErrors () {\n\tif (hasRequiredErrors) return errors;\n\thasRequiredErrors = 1;\n\n\tconst { format, inspect } = requireInspect();\n\tconst { AggregateError: CustomAggregateError } = requirePrimordials();\n\n\t/*\n\t  This file is a reduced and adapted version of the main lib/internal/errors.js file defined at\n\n\t  https://github.com/nodejs/node/blob/main/lib/internal/errors.js\n\n\t  Don't try to replace with the original file and keep it up to date (starting from E(...) definitions)\n\t  with the upstream file.\n\t*/\n\n\tconst AggregateError = globalThis.AggregateError || CustomAggregateError;\n\tconst kIsNodeError = Symbol('kIsNodeError');\n\tconst kTypes = [\n\t  'string',\n\t  'function',\n\t  'number',\n\t  'object',\n\t  // Accept 'Function' and 'Object' as alternative to the lower cased version.\n\t  'Function',\n\t  'Object',\n\t  'boolean',\n\t  'bigint',\n\t  'symbol'\n\t];\n\tconst classRegExp = /^([A-Z][a-z0-9]*)+$/;\n\tconst nodeInternalPrefix = '__node_internal_';\n\tconst codes = {};\n\tfunction assert(value, message) {\n\t  if (!value) {\n\t    throw new codes.ERR_INTERNAL_ASSERTION(message)\n\t  }\n\t}\n\n\t// Only use this for integers! Decimal numbers do not work with this function.\n\tfunction addNumericalSeparator(val) {\n\t  let res = '';\n\t  let i = val.length;\n\t  const start = val[0] === '-' ? 1 : 0;\n\t  for (; i >= start + 4; i -= 3) {\n\t    res = `_${val.slice(i - 3, i)}${res}`;\n\t  }\n\t  return `${val.slice(0, i)}${res}`\n\t}\n\tfunction getMessage(key, msg, args) {\n\t  if (typeof msg === 'function') {\n\t    assert(\n\t      msg.length <= args.length,\n\t      // Default options do not count.\n\t      `Code: ${key}; The provided arguments length (${args.length}) does not match the required ones (${msg.length}).`\n\t    );\n\t    return msg(...args)\n\t  }\n\t  const expectedLength = (msg.match(/%[dfijoOs]/g) || []).length;\n\t  assert(\n\t    expectedLength === args.length,\n\t    `Code: ${key}; The provided arguments length (${args.length}) does not match the required ones (${expectedLength}).`\n\t  );\n\t  if (args.length === 0) {\n\t    return msg\n\t  }\n\t  return format(msg, ...args)\n\t}\n\tfunction E(code, message, Base) {\n\t  if (!Base) {\n\t    Base = Error;\n\t  }\n\t  class NodeError extends Base {\n\t    constructor(...args) {\n\t      super(getMessage(code, message, args));\n\t    }\n\t    toString() {\n\t      return `${this.name} [${code}]: ${this.message}`\n\t    }\n\t  }\n\t  Object.defineProperties(NodeError.prototype, {\n\t    name: {\n\t      value: Base.name,\n\t      writable: true,\n\t      enumerable: false,\n\t      configurable: true\n\t    },\n\t    toString: {\n\t      value() {\n\t        return `${this.name} [${code}]: ${this.message}`\n\t      },\n\t      writable: true,\n\t      enumerable: false,\n\t      configurable: true\n\t    }\n\t  });\n\t  NodeError.prototype.code = code;\n\t  NodeError.prototype[kIsNodeError] = true;\n\t  codes[code] = NodeError;\n\t}\n\tfunction hideStackFrames(fn) {\n\t  // We rename the functions that will be hidden to cut off the stacktrace\n\t  // at the outermost one\n\t  const hidden = nodeInternalPrefix + fn.name;\n\t  Object.defineProperty(fn, 'name', {\n\t    value: hidden\n\t  });\n\t  return fn\n\t}\n\tfunction aggregateTwoErrors(innerError, outerError) {\n\t  if (innerError && outerError && innerError !== outerError) {\n\t    if (Array.isArray(outerError.errors)) {\n\t      // If `outerError` is already an `AggregateError`.\n\t      outerError.errors.push(innerError);\n\t      return outerError\n\t    }\n\t    const err = new AggregateError([outerError, innerError], outerError.message);\n\t    err.code = outerError.code;\n\t    return err\n\t  }\n\t  return innerError || outerError\n\t}\n\tclass AbortError extends Error {\n\t  constructor(message = 'The operation was aborted', options = undefined) {\n\t    if (options !== undefined && typeof options !== 'object') {\n\t      throw new codes.ERR_INVALID_ARG_TYPE('options', 'Object', options)\n\t    }\n\t    super(message, options);\n\t    this.code = 'ABORT_ERR';\n\t    this.name = 'AbortError';\n\t  }\n\t}\n\tE('ERR_ASSERTION', '%s', Error);\n\tE(\n\t  'ERR_INVALID_ARG_TYPE',\n\t  (name, expected, actual) => {\n\t    assert(typeof name === 'string', \"'name' must be a string\");\n\t    if (!Array.isArray(expected)) {\n\t      expected = [expected];\n\t    }\n\t    let msg = 'The ';\n\t    if (name.endsWith(' argument')) {\n\t      // For cases like 'first argument'\n\t      msg += `${name} `;\n\t    } else {\n\t      msg += `\"${name}\" ${name.includes('.') ? 'property' : 'argument'} `;\n\t    }\n\t    msg += 'must be ';\n\t    const types = [];\n\t    const instances = [];\n\t    const other = [];\n\t    for (const value of expected) {\n\t      assert(typeof value === 'string', 'All expected entries have to be of type string');\n\t      if (kTypes.includes(value)) {\n\t        types.push(value.toLowerCase());\n\t      } else if (classRegExp.test(value)) {\n\t        instances.push(value);\n\t      } else {\n\t        assert(value !== 'object', 'The value \"object\" should be written as \"Object\"');\n\t        other.push(value);\n\t      }\n\t    }\n\n\t    // Special handle `object` in case other instances are allowed to outline\n\t    // the differences between each other.\n\t    if (instances.length > 0) {\n\t      const pos = types.indexOf('object');\n\t      if (pos !== -1) {\n\t        types.splice(types, pos, 1);\n\t        instances.push('Object');\n\t      }\n\t    }\n\t    if (types.length > 0) {\n\t      switch (types.length) {\n\t        case 1:\n\t          msg += `of type ${types[0]}`;\n\t          break\n\t        case 2:\n\t          msg += `one of type ${types[0]} or ${types[1]}`;\n\t          break\n\t        default: {\n\t          const last = types.pop();\n\t          msg += `one of type ${types.join(', ')}, or ${last}`;\n\t        }\n\t      }\n\t      if (instances.length > 0 || other.length > 0) {\n\t        msg += ' or ';\n\t      }\n\t    }\n\t    if (instances.length > 0) {\n\t      switch (instances.length) {\n\t        case 1:\n\t          msg += `an instance of ${instances[0]}`;\n\t          break\n\t        case 2:\n\t          msg += `an instance of ${instances[0]} or ${instances[1]}`;\n\t          break\n\t        default: {\n\t          const last = instances.pop();\n\t          msg += `an instance of ${instances.join(', ')}, or ${last}`;\n\t        }\n\t      }\n\t      if (other.length > 0) {\n\t        msg += ' or ';\n\t      }\n\t    }\n\t    switch (other.length) {\n\t      case 0:\n\t        break\n\t      case 1:\n\t        if (other[0].toLowerCase() !== other[0]) {\n\t          msg += 'an ';\n\t        }\n\t        msg += `${other[0]}`;\n\t        break\n\t      case 2:\n\t        msg += `one of ${other[0]} or ${other[1]}`;\n\t        break\n\t      default: {\n\t        const last = other.pop();\n\t        msg += `one of ${other.join(', ')}, or ${last}`;\n\t      }\n\t    }\n\t    if (actual == null) {\n\t      msg += `. Received ${actual}`;\n\t    } else if (typeof actual === 'function' && actual.name) {\n\t      msg += `. Received function ${actual.name}`;\n\t    } else if (typeof actual === 'object') {\n\t      var _actual$constructor;\n\t      if (\n\t        (_actual$constructor = actual.constructor) !== null &&\n\t        _actual$constructor !== undefined &&\n\t        _actual$constructor.name\n\t      ) {\n\t        msg += `. Received an instance of ${actual.constructor.name}`;\n\t      } else {\n\t        const inspected = inspect(actual, {\n\t          depth: -1\n\t        });\n\t        msg += `. Received ${inspected}`;\n\t      }\n\t    } else {\n\t      let inspected = inspect(actual, {\n\t        colors: false\n\t      });\n\t      if (inspected.length > 25) {\n\t        inspected = `${inspected.slice(0, 25)}...`;\n\t      }\n\t      msg += `. Received type ${typeof actual} (${inspected})`;\n\t    }\n\t    return msg\n\t  },\n\t  TypeError\n\t);\n\tE(\n\t  'ERR_INVALID_ARG_VALUE',\n\t  (name, value, reason = 'is invalid') => {\n\t    let inspected = inspect(value);\n\t    if (inspected.length > 128) {\n\t      inspected = inspected.slice(0, 128) + '...';\n\t    }\n\t    const type = name.includes('.') ? 'property' : 'argument';\n\t    return `The ${type} '${name}' ${reason}. Received ${inspected}`\n\t  },\n\t  TypeError\n\t);\n\tE(\n\t  'ERR_INVALID_RETURN_VALUE',\n\t  (input, name, value) => {\n\t    var _value$constructor;\n\t    const type =\n\t      value !== null &&\n\t      value !== undefined &&\n\t      (_value$constructor = value.constructor) !== null &&\n\t      _value$constructor !== undefined &&\n\t      _value$constructor.name\n\t        ? `instance of ${value.constructor.name}`\n\t        : `type ${typeof value}`;\n\t    return `Expected ${input} to be returned from the \"${name}\"` + ` function but got ${type}.`\n\t  },\n\t  TypeError\n\t);\n\tE(\n\t  'ERR_MISSING_ARGS',\n\t  (...args) => {\n\t    assert(args.length > 0, 'At least one arg needs to be specified');\n\t    let msg;\n\t    const len = args.length;\n\t    args = (Array.isArray(args) ? args : [args]).map((a) => `\"${a}\"`).join(' or ');\n\t    switch (len) {\n\t      case 1:\n\t        msg += `The ${args[0]} argument`;\n\t        break\n\t      case 2:\n\t        msg += `The ${args[0]} and ${args[1]} arguments`;\n\t        break\n\t      default:\n\t        {\n\t          const last = args.pop();\n\t          msg += `The ${args.join(', ')}, and ${last} arguments`;\n\t        }\n\t        break\n\t    }\n\t    return `${msg} must be specified`\n\t  },\n\t  TypeError\n\t);\n\tE(\n\t  'ERR_OUT_OF_RANGE',\n\t  (str, range, input) => {\n\t    assert(range, 'Missing \"range\" argument');\n\t    let received;\n\t    if (Number.isInteger(input) && Math.abs(input) > 2 ** 32) {\n\t      received = addNumericalSeparator(String(input));\n\t    } else if (typeof input === 'bigint') {\n\t      received = String(input);\n\t      const limit = BigInt(2) ** BigInt(32);\n\t      if (input > limit || input < -limit) {\n\t        received = addNumericalSeparator(received);\n\t      }\n\t      received += 'n';\n\t    } else {\n\t      received = inspect(input);\n\t    }\n\t    return `The value of \"${str}\" is out of range. It must be ${range}. Received ${received}`\n\t  },\n\t  RangeError\n\t);\n\tE('ERR_MULTIPLE_CALLBACK', 'Callback called multiple times', Error);\n\tE('ERR_METHOD_NOT_IMPLEMENTED', 'The %s method is not implemented', Error);\n\tE('ERR_STREAM_ALREADY_FINISHED', 'Cannot call %s after a stream was finished', Error);\n\tE('ERR_STREAM_CANNOT_PIPE', 'Cannot pipe, not readable', Error);\n\tE('ERR_STREAM_DESTROYED', 'Cannot call %s after a stream was destroyed', Error);\n\tE('ERR_STREAM_NULL_VALUES', 'May not write null values to stream', TypeError);\n\tE('ERR_STREAM_PREMATURE_CLOSE', 'Premature close', Error);\n\tE('ERR_STREAM_PUSH_AFTER_EOF', 'stream.push() after EOF', Error);\n\tE('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event', Error);\n\tE('ERR_STREAM_WRITE_AFTER_END', 'write after end', Error);\n\tE('ERR_UNKNOWN_ENCODING', 'Unknown encoding: %s', TypeError);\n\terrors = {\n\t  AbortError,\n\t  aggregateTwoErrors: hideStackFrames(aggregateTwoErrors),\n\t  hideStackFrames,\n\t  codes\n\t};\n\treturn errors;\n}\n\n/**\n * @author Toru Nagashima <https://github.com/mysticatea>\n * @copyright 2015 Toru Nagashima. All rights reserved.\n * See LICENSE file in root directory for full license.\n */\n/**\n * @typedef {object} PrivateData\n * @property {EventTarget} eventTarget The event target.\n * @property {{type:string}} event The original event object.\n * @property {number} eventPhase The current event phase.\n * @property {EventTarget|null} currentTarget The current event target.\n * @property {boolean} canceled The flag to prevent default.\n * @property {boolean} stopped The flag to stop propagation.\n * @property {boolean} immediateStopped The flag to stop propagation immediately.\n * @property {Function|null} passiveListener The listener if the current listener is passive. Otherwise this is null.\n * @property {number} timeStamp The unix time.\n * @private\n */\n\n/**\n * Private data for event wrappers.\n * @type {WeakMap<Event, PrivateData>}\n * @private\n */\nconst privateData = new WeakMap();\n\n/**\n * Cache for wrapper classes.\n * @type {WeakMap<Object, Function>}\n * @private\n */\nconst wrappers = new WeakMap();\n\n/**\n * Get private data.\n * @param {Event} event The event object to get private data.\n * @returns {PrivateData} The private data of the event.\n * @private\n */\nfunction pd(event) {\n    const retv = privateData.get(event);\n    console.assert(\n        retv != null,\n        \"'this' is expected an Event object, but got\",\n        event\n    );\n    return retv\n}\n\n/**\n * https://dom.spec.whatwg.org/#set-the-canceled-flag\n * @param data {PrivateData} private data.\n */\nfunction setCancelFlag(data) {\n    if (data.passiveListener != null) {\n        if (\n            typeof console !== \"undefined\" &&\n            typeof console.error === \"function\"\n        ) {\n            console.error(\n                \"Unable to preventDefault inside passive event listener invocation.\",\n                data.passiveListener\n            );\n        }\n        return\n    }\n    if (!data.event.cancelable) {\n        return\n    }\n\n    data.canceled = true;\n    if (typeof data.event.preventDefault === \"function\") {\n        data.event.preventDefault();\n    }\n}\n\n/**\n * @see https://dom.spec.whatwg.org/#interface-event\n * @private\n */\n/**\n * The event wrapper.\n * @constructor\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Event|{type:string}} event The original event to wrap.\n */\nfunction Event$1(eventTarget, event) {\n    privateData.set(this, {\n        eventTarget,\n        event,\n        eventPhase: 2,\n        currentTarget: eventTarget,\n        canceled: false,\n        stopped: false,\n        immediateStopped: false,\n        passiveListener: null,\n        timeStamp: event.timeStamp || Date.now(),\n    });\n\n    // https://heycam.github.io/webidl/#Unforgeable\n    Object.defineProperty(this, \"isTrusted\", { value: false, enumerable: true });\n\n    // Define accessors\n    const keys = Object.keys(event);\n    for (let i = 0; i < keys.length; ++i) {\n        const key = keys[i];\n        if (!(key in this)) {\n            Object.defineProperty(this, key, defineRedirectDescriptor(key));\n        }\n    }\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEvent$1.prototype = {\n    /**\n     * The type of this event.\n     * @type {string}\n     */\n    get type() {\n        return pd(this).event.type\n    },\n\n    /**\n     * The target of this event.\n     * @type {EventTarget}\n     */\n    get target() {\n        return pd(this).eventTarget\n    },\n\n    /**\n     * The target of this event.\n     * @type {EventTarget}\n     */\n    get currentTarget() {\n        return pd(this).currentTarget\n    },\n\n    /**\n     * @returns {EventTarget[]} The composed path of this event.\n     */\n    composedPath() {\n        const currentTarget = pd(this).currentTarget;\n        if (currentTarget == null) {\n            return []\n        }\n        return [currentTarget]\n    },\n\n    /**\n     * Constant of NONE.\n     * @type {number}\n     */\n    get NONE() {\n        return 0\n    },\n\n    /**\n     * Constant of CAPTURING_PHASE.\n     * @type {number}\n     */\n    get CAPTURING_PHASE() {\n        return 1\n    },\n\n    /**\n     * Constant of AT_TARGET.\n     * @type {number}\n     */\n    get AT_TARGET() {\n        return 2\n    },\n\n    /**\n     * Constant of BUBBLING_PHASE.\n     * @type {number}\n     */\n    get BUBBLING_PHASE() {\n        return 3\n    },\n\n    /**\n     * The target of this event.\n     * @type {number}\n     */\n    get eventPhase() {\n        return pd(this).eventPhase\n    },\n\n    /**\n     * Stop event bubbling.\n     * @returns {void}\n     */\n    stopPropagation() {\n        const data = pd(this);\n\n        data.stopped = true;\n        if (typeof data.event.stopPropagation === \"function\") {\n            data.event.stopPropagation();\n        }\n    },\n\n    /**\n     * Stop event bubbling.\n     * @returns {void}\n     */\n    stopImmediatePropagation() {\n        const data = pd(this);\n\n        data.stopped = true;\n        data.immediateStopped = true;\n        if (typeof data.event.stopImmediatePropagation === \"function\") {\n            data.event.stopImmediatePropagation();\n        }\n    },\n\n    /**\n     * The flag to be bubbling.\n     * @type {boolean}\n     */\n    get bubbles() {\n        return Boolean(pd(this).event.bubbles)\n    },\n\n    /**\n     * The flag to be cancelable.\n     * @type {boolean}\n     */\n    get cancelable() {\n        return Boolean(pd(this).event.cancelable)\n    },\n\n    /**\n     * Cancel this event.\n     * @returns {void}\n     */\n    preventDefault() {\n        setCancelFlag(pd(this));\n    },\n\n    /**\n     * The flag to indicate cancellation state.\n     * @type {boolean}\n     */\n    get defaultPrevented() {\n        return pd(this).canceled\n    },\n\n    /**\n     * The flag to be composed.\n     * @type {boolean}\n     */\n    get composed() {\n        return Boolean(pd(this).event.composed)\n    },\n\n    /**\n     * The unix time of this event.\n     * @type {number}\n     */\n    get timeStamp() {\n        return pd(this).timeStamp\n    },\n\n    /**\n     * The target of this event.\n     * @type {EventTarget}\n     * @deprecated\n     */\n    get srcElement() {\n        return pd(this).eventTarget\n    },\n\n    /**\n     * The flag to stop event bubbling.\n     * @type {boolean}\n     * @deprecated\n     */\n    get cancelBubble() {\n        return pd(this).stopped\n    },\n    set cancelBubble(value) {\n        if (!value) {\n            return\n        }\n        const data = pd(this);\n\n        data.stopped = true;\n        if (typeof data.event.cancelBubble === \"boolean\") {\n            data.event.cancelBubble = true;\n        }\n    },\n\n    /**\n     * The flag to indicate cancellation state.\n     * @type {boolean}\n     * @deprecated\n     */\n    get returnValue() {\n        return !pd(this).canceled\n    },\n    set returnValue(value) {\n        if (!value) {\n            setCancelFlag(pd(this));\n        }\n    },\n\n    /**\n     * Initialize this event object. But do nothing under event dispatching.\n     * @param {string} type The event type.\n     * @param {boolean} [bubbles=false] The flag to be possible to bubble up.\n     * @param {boolean} [cancelable=false] The flag to be possible to cancel.\n     * @deprecated\n     */\n    initEvent() {\n        // Do nothing.\n    },\n};\n\n// `constructor` is not enumerable.\nObject.defineProperty(Event$1.prototype, \"constructor\", {\n    value: Event$1,\n    configurable: true,\n    writable: true,\n});\n\n// Ensure `event instanceof window.Event` is `true`.\nif (typeof window !== \"undefined\" && typeof window.Event !== \"undefined\") {\n    Object.setPrototypeOf(Event$1.prototype, window.Event.prototype);\n\n    // Make association for wrappers.\n    wrappers.set(window.Event.prototype, Event$1);\n}\n\n/**\n * Get the property descriptor to redirect a given property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to redirect the property.\n * @private\n */\nfunction defineRedirectDescriptor(key) {\n    return {\n        get() {\n            return pd(this).event[key]\n        },\n        set(value) {\n            pd(this).event[key] = value;\n        },\n        configurable: true,\n        enumerable: true,\n    }\n}\n\n/**\n * Get the property descriptor to call a given method property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to call the method property.\n * @private\n */\nfunction defineCallDescriptor(key) {\n    return {\n        value() {\n            const event = pd(this).event;\n            return event[key].apply(event, arguments)\n        },\n        configurable: true,\n        enumerable: true,\n    }\n}\n\n/**\n * Define new wrapper class.\n * @param {Function} BaseEvent The base wrapper class.\n * @param {Object} proto The prototype of the original event.\n * @returns {Function} The defined wrapper class.\n * @private\n */\nfunction defineWrapper(BaseEvent, proto) {\n    const keys = Object.keys(proto);\n    if (keys.length === 0) {\n        return BaseEvent\n    }\n\n    /** CustomEvent */\n    function CustomEvent(eventTarget, event) {\n        BaseEvent.call(this, eventTarget, event);\n    }\n\n    CustomEvent.prototype = Object.create(BaseEvent.prototype, {\n        constructor: { value: CustomEvent, configurable: true, writable: true },\n    });\n\n    // Define accessors.\n    for (let i = 0; i < keys.length; ++i) {\n        const key = keys[i];\n        if (!(key in BaseEvent.prototype)) {\n            const descriptor = Object.getOwnPropertyDescriptor(proto, key);\n            const isFunc = typeof descriptor.value === \"function\";\n            Object.defineProperty(\n                CustomEvent.prototype,\n                key,\n                isFunc\n                    ? defineCallDescriptor(key)\n                    : defineRedirectDescriptor(key)\n            );\n        }\n    }\n\n    return CustomEvent\n}\n\n/**\n * Get the wrapper class of a given prototype.\n * @param {Object} proto The prototype of the original event to get its wrapper.\n * @returns {Function} The wrapper class.\n * @private\n */\nfunction getWrapper(proto) {\n    if (proto == null || proto === Object.prototype) {\n        return Event$1\n    }\n\n    let wrapper = wrappers.get(proto);\n    if (wrapper == null) {\n        wrapper = defineWrapper(getWrapper(Object.getPrototypeOf(proto)), proto);\n        wrappers.set(proto, wrapper);\n    }\n    return wrapper\n}\n\n/**\n * Wrap a given event to management a dispatching.\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Object} event The event to wrap.\n * @returns {Event} The wrapper instance.\n * @private\n */\nfunction wrapEvent(eventTarget, event) {\n    const Wrapper = getWrapper(Object.getPrototypeOf(event));\n    return new Wrapper(eventTarget, event)\n}\n\n/**\n * Get the immediateStopped flag of a given event.\n * @param {Event} event The event to get.\n * @returns {boolean} The flag to stop propagation immediately.\n * @private\n */\nfunction isStopped(event) {\n    return pd(event).immediateStopped\n}\n\n/**\n * Set the current event phase of a given event.\n * @param {Event} event The event to set current target.\n * @param {number} eventPhase New event phase.\n * @returns {void}\n * @private\n */\nfunction setEventPhase(event, eventPhase) {\n    pd(event).eventPhase = eventPhase;\n}\n\n/**\n * Set the current target of a given event.\n * @param {Event} event The event to set current target.\n * @param {EventTarget|null} currentTarget New current target.\n * @returns {void}\n * @private\n */\nfunction setCurrentTarget(event, currentTarget) {\n    pd(event).currentTarget = currentTarget;\n}\n\n/**\n * Set a passive listener of a given event.\n * @param {Event} event The event to set current target.\n * @param {Function|null} passiveListener New passive listener.\n * @returns {void}\n * @private\n */\nfunction setPassiveListener(event, passiveListener) {\n    pd(event).passiveListener = passiveListener;\n}\n\n/**\n * @typedef {object} ListenerNode\n * @property {Function} listener\n * @property {1|2|3} listenerType\n * @property {boolean} passive\n * @property {boolean} once\n * @property {ListenerNode|null} next\n * @private\n */\n\n/**\n * @type {WeakMap<object, Map<string, ListenerNode>>}\n * @private\n */\nconst listenersMap = new WeakMap();\n\n// Listener types\nconst CAPTURE = 1;\nconst BUBBLE = 2;\nconst ATTRIBUTE = 3;\n\n/**\n * Check whether a given value is an object or not.\n * @param {any} x The value to check.\n * @returns {boolean} `true` if the value is an object.\n */\nfunction isObject$1(x) {\n    return x !== null && typeof x === \"object\" //eslint-disable-line no-restricted-syntax\n}\n\n/**\n * Get listeners.\n * @param {EventTarget} eventTarget The event target to get.\n * @returns {Map<string, ListenerNode>} The listeners.\n * @private\n */\nfunction getListeners(eventTarget) {\n    const listeners = listenersMap.get(eventTarget);\n    if (listeners == null) {\n        throw new TypeError(\n            \"'this' is expected an EventTarget object, but got another value.\"\n        )\n    }\n    return listeners\n}\n\n/**\n * Get the property descriptor for the event attribute of a given event.\n * @param {string} eventName The event name to get property descriptor.\n * @returns {PropertyDescriptor} The property descriptor.\n * @private\n */\nfunction defineEventAttributeDescriptor(eventName) {\n    return {\n        get() {\n            const listeners = getListeners(this);\n            let node = listeners.get(eventName);\n            while (node != null) {\n                if (node.listenerType === ATTRIBUTE) {\n                    return node.listener\n                }\n                node = node.next;\n            }\n            return null\n        },\n\n        set(listener) {\n            if (typeof listener !== \"function\" && !isObject$1(listener)) {\n                listener = null; // eslint-disable-line no-param-reassign\n            }\n            const listeners = getListeners(this);\n\n            // Traverse to the tail while removing old value.\n            let prev = null;\n            let node = listeners.get(eventName);\n            while (node != null) {\n                if (node.listenerType === ATTRIBUTE) {\n                    // Remove old value.\n                    if (prev !== null) {\n                        prev.next = node.next;\n                    } else if (node.next !== null) {\n                        listeners.set(eventName, node.next);\n                    } else {\n                        listeners.delete(eventName);\n                    }\n                } else {\n                    prev = node;\n                }\n\n                node = node.next;\n            }\n\n            // Add new value.\n            if (listener !== null) {\n                const newNode = {\n                    listener,\n                    listenerType: ATTRIBUTE,\n                    passive: false,\n                    once: false,\n                    next: null,\n                };\n                if (prev === null) {\n                    listeners.set(eventName, newNode);\n                } else {\n                    prev.next = newNode;\n                }\n            }\n        },\n        configurable: true,\n        enumerable: true,\n    }\n}\n\n/**\n * Define an event attribute (e.g. `eventTarget.onclick`).\n * @param {Object} eventTargetPrototype The event target prototype to define an event attrbite.\n * @param {string} eventName The event name to define.\n * @returns {void}\n */\nfunction defineEventAttribute(eventTargetPrototype, eventName) {\n    Object.defineProperty(\n        eventTargetPrototype,\n        `on${eventName}`,\n        defineEventAttributeDescriptor(eventName)\n    );\n}\n\n/**\n * Define a custom EventTarget with event attributes.\n * @param {string[]} eventNames Event names for event attributes.\n * @returns {EventTarget} The custom EventTarget.\n * @private\n */\nfunction defineCustomEventTarget(eventNames) {\n    /** CustomEventTarget */\n    function CustomEventTarget() {\n        EventTarget$1.call(this);\n    }\n\n    CustomEventTarget.prototype = Object.create(EventTarget$1.prototype, {\n        constructor: {\n            value: CustomEventTarget,\n            configurable: true,\n            writable: true,\n        },\n    });\n\n    for (let i = 0; i < eventNames.length; ++i) {\n        defineEventAttribute(CustomEventTarget.prototype, eventNames[i]);\n    }\n\n    return CustomEventTarget\n}\n\n/**\n * EventTarget.\n *\n * - This is constructor if no arguments.\n * - This is a function which returns a CustomEventTarget constructor if there are arguments.\n *\n * For example:\n *\n *     class A extends EventTarget {}\n *     class B extends EventTarget(\"message\") {}\n *     class C extends EventTarget(\"message\", \"error\") {}\n *     class D extends EventTarget([\"message\", \"error\"]) {}\n */\nfunction EventTarget$1() {\n    /*eslint-disable consistent-return */\n    if (this instanceof EventTarget$1) {\n        listenersMap.set(this, new Map());\n        return\n    }\n    if (arguments.length === 1 && Array.isArray(arguments[0])) {\n        return defineCustomEventTarget(arguments[0])\n    }\n    if (arguments.length > 0) {\n        const types = new Array(arguments.length);\n        for (let i = 0; i < arguments.length; ++i) {\n            types[i] = arguments[i];\n        }\n        return defineCustomEventTarget(types)\n    }\n    throw new TypeError(\"Cannot call a class as a function\")\n    /*eslint-enable consistent-return */\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEventTarget$1.prototype = {\n    /**\n     * Add a given listener to this event target.\n     * @param {string} eventName The event name to add.\n     * @param {Function} listener The listener to add.\n     * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n     * @returns {void}\n     */\n    addEventListener(eventName, listener, options) {\n        if (listener == null) {\n            return\n        }\n        if (typeof listener !== \"function\" && !isObject$1(listener)) {\n            throw new TypeError(\"'listener' should be a function or an object.\")\n        }\n\n        const listeners = getListeners(this);\n        const optionsIsObj = isObject$1(options);\n        const capture = optionsIsObj\n            ? Boolean(options.capture)\n            : Boolean(options);\n        const listenerType = capture ? CAPTURE : BUBBLE;\n        const newNode = {\n            listener,\n            listenerType,\n            passive: optionsIsObj && Boolean(options.passive),\n            once: optionsIsObj && Boolean(options.once),\n            next: null,\n        };\n\n        // Set it as the first node if the first node is null.\n        let node = listeners.get(eventName);\n        if (node === undefined) {\n            listeners.set(eventName, newNode);\n            return\n        }\n\n        // Traverse to the tail while checking duplication..\n        let prev = null;\n        while (node != null) {\n            if (\n                node.listener === listener &&\n                node.listenerType === listenerType\n            ) {\n                // Should ignore duplication.\n                return\n            }\n            prev = node;\n            node = node.next;\n        }\n\n        // Add it.\n        prev.next = newNode;\n    },\n\n    /**\n     * Remove a given listener from this event target.\n     * @param {string} eventName The event name to remove.\n     * @param {Function} listener The listener to remove.\n     * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n     * @returns {void}\n     */\n    removeEventListener(eventName, listener, options) {\n        if (listener == null) {\n            return\n        }\n\n        const listeners = getListeners(this);\n        const capture = isObject$1(options)\n            ? Boolean(options.capture)\n            : Boolean(options);\n        const listenerType = capture ? CAPTURE : BUBBLE;\n\n        let prev = null;\n        let node = listeners.get(eventName);\n        while (node != null) {\n            if (\n                node.listener === listener &&\n                node.listenerType === listenerType\n            ) {\n                if (prev !== null) {\n                    prev.next = node.next;\n                } else if (node.next !== null) {\n                    listeners.set(eventName, node.next);\n                } else {\n                    listeners.delete(eventName);\n                }\n                return\n            }\n\n            prev = node;\n            node = node.next;\n        }\n    },\n\n    /**\n     * Dispatch a given event.\n     * @param {Event|{type:string}} event The event to dispatch.\n     * @returns {boolean} `false` if canceled.\n     */\n    dispatchEvent(event) {\n        if (event == null || typeof event.type !== \"string\") {\n            throw new TypeError('\"event.type\" should be a string.')\n        }\n\n        // If listeners aren't registered, terminate.\n        const listeners = getListeners(this);\n        const eventName = event.type;\n        let node = listeners.get(eventName);\n        if (node == null) {\n            return true\n        }\n\n        // Since we cannot rewrite several properties, so wrap object.\n        const wrappedEvent = wrapEvent(this, event);\n\n        // This doesn't process capturing phase and bubbling phase.\n        // This isn't participating in a tree.\n        let prev = null;\n        while (node != null) {\n            // Remove this listener if it's once\n            if (node.once) {\n                if (prev !== null) {\n                    prev.next = node.next;\n                } else if (node.next !== null) {\n                    listeners.set(eventName, node.next);\n                } else {\n                    listeners.delete(eventName);\n                }\n            } else {\n                prev = node;\n            }\n\n            // Call this listener\n            setPassiveListener(\n                wrappedEvent,\n                node.passive ? node.listener : null\n            );\n            if (typeof node.listener === \"function\") {\n                try {\n                    node.listener.call(this, wrappedEvent);\n                } catch (err) {\n                    if (\n                        typeof console !== \"undefined\" &&\n                        typeof console.error === \"function\"\n                    ) {\n                        console.error(err);\n                    }\n                }\n            } else if (\n                node.listenerType !== ATTRIBUTE &&\n                typeof node.listener.handleEvent === \"function\"\n            ) {\n                node.listener.handleEvent(wrappedEvent);\n            }\n\n            // Break if `event.stopImmediatePropagation` was called.\n            if (isStopped(wrappedEvent)) {\n                break\n            }\n\n            node = node.next;\n        }\n        setPassiveListener(wrappedEvent, null);\n        setEventPhase(wrappedEvent, 0);\n        setCurrentTarget(wrappedEvent, null);\n\n        return !wrappedEvent.defaultPrevented\n    },\n};\n\n// `constructor` is not enumerable.\nObject.defineProperty(EventTarget$1.prototype, \"constructor\", {\n    value: EventTarget$1,\n    configurable: true,\n    writable: true,\n});\n\n// Ensure `eventTarget instanceof window.EventTarget` is `true`.\nif (\n    typeof window !== \"undefined\" &&\n    typeof window.EventTarget !== \"undefined\"\n) {\n    Object.setPrototypeOf(EventTarget$1.prototype, window.EventTarget.prototype);\n}\n\n/**\n * @author Toru Nagashima <https://github.com/mysticatea>\n * See LICENSE file in root directory for full license.\n */\n\n/**\n * The signal class.\n * @see https://dom.spec.whatwg.org/#abortsignal\n */\nlet AbortSignal$1 = class AbortSignal extends EventTarget$1 {\n    /**\n     * AbortSignal cannot be constructed directly.\n     */\n    constructor() {\n        super();\n        throw new TypeError(\"AbortSignal cannot be constructed directly\");\n    }\n    /**\n     * Returns `true` if this `AbortSignal`'s `AbortController` has signaled to abort, and `false` otherwise.\n     */\n    get aborted() {\n        const aborted = abortedFlags.get(this);\n        if (typeof aborted !== \"boolean\") {\n            throw new TypeError(`Expected 'this' to be an 'AbortSignal' object, but got ${this === null ? \"null\" : typeof this}`);\n        }\n        return aborted;\n    }\n};\ndefineEventAttribute(AbortSignal$1.prototype, \"abort\");\n/**\n * Create an AbortSignal object.\n */\nfunction createAbortSignal() {\n    const signal = Object.create(AbortSignal$1.prototype);\n    EventTarget$1.call(signal);\n    abortedFlags.set(signal, false);\n    return signal;\n}\n/**\n * Abort a given signal.\n */\nfunction abortSignal(signal) {\n    if (abortedFlags.get(signal) !== false) {\n        return;\n    }\n    abortedFlags.set(signal, true);\n    signal.dispatchEvent({ type: \"abort\" });\n}\n/**\n * Aborted flag for each instances.\n */\nconst abortedFlags = new WeakMap();\n// Properties should be enumerable.\nObject.defineProperties(AbortSignal$1.prototype, {\n    aborted: { enumerable: true },\n});\n// `toString()` should return `\"[object AbortSignal]\"`\nif (typeof Symbol === \"function\" && typeof Symbol.toStringTag === \"symbol\") {\n    Object.defineProperty(AbortSignal$1.prototype, Symbol.toStringTag, {\n        configurable: true,\n        value: \"AbortSignal\",\n    });\n}\n\n/**\n * The AbortController.\n * @see https://dom.spec.whatwg.org/#abortcontroller\n */\nlet AbortController$1 = class AbortController {\n    /**\n     * Initialize this controller.\n     */\n    constructor() {\n        signals.set(this, createAbortSignal());\n    }\n    /**\n     * Returns the `AbortSignal` object associated with this object.\n     */\n    get signal() {\n        return getSignal(this);\n    }\n    /**\n     * Abort and signal to any observers that the associated activity is to be aborted.\n     */\n    abort() {\n        abortSignal(getSignal(this));\n    }\n};\n/**\n * Associated signals.\n */\nconst signals = new WeakMap();\n/**\n * Get the associated signal of a given controller.\n */\nfunction getSignal(controller) {\n    const signal = signals.get(controller);\n    if (signal == null) {\n        throw new TypeError(`Expected 'this' to be an 'AbortController' object, but got ${controller === null ? \"null\" : typeof controller}`);\n    }\n    return signal;\n}\n// Properties should be enumerable.\nObject.defineProperties(AbortController$1.prototype, {\n    signal: { enumerable: true },\n    abort: { enumerable: true },\n});\nif (typeof Symbol === \"function\" && typeof Symbol.toStringTag === \"symbol\") {\n    Object.defineProperty(AbortController$1.prototype, Symbol.toStringTag, {\n        configurable: true,\n        value: \"AbortController\",\n    });\n}\n\nvar abortController = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tAbortController: AbortController$1,\n\tAbortSignal: AbortSignal$1,\n\tdefault: AbortController$1\n});\n\nvar require$$0 = /*@__PURE__*/getAugmentedNamespace(abortController);\n\nvar hasRequiredUtil$2;\n\nfunction requireUtil$2 () {\n\tif (hasRequiredUtil$2) return util$2.exports;\n\thasRequiredUtil$2 = 1;\n\t(function (module) {\n\n\t\tconst bufferModule = require$$0$8;\n\t\tconst { format, inspect } = requireInspect();\n\t\tconst {\n\t\t  codes: { ERR_INVALID_ARG_TYPE }\n\t\t} = requireErrors();\n\t\tconst { kResistStopPropagation, AggregateError, SymbolDispose } = requirePrimordials();\n\t\tconst AbortSignal = globalThis.AbortSignal || require$$0.AbortSignal;\n\t\tconst AbortController = globalThis.AbortController || require$$0.AbortController;\n\t\tconst AsyncFunction = Object.getPrototypeOf(async function () {}).constructor;\n\t\tconst Blob = globalThis.Blob || bufferModule.Blob;\n\t\t/* eslint-disable indent */\n\t\tconst isBlob =\n\t\t  typeof Blob !== 'undefined'\n\t\t    ? function isBlob(b) {\n\t\t        // eslint-disable-next-line indent\n\t\t        return b instanceof Blob\n\t\t      }\n\t\t    : function isBlob(b) {\n\t\t        return false\n\t\t      };\n\t\t/* eslint-enable indent */\n\n\t\tconst validateAbortSignal = (signal, name) => {\n\t\t  if (signal !== undefined && (signal === null || typeof signal !== 'object' || !('aborted' in signal))) {\n\t\t    throw new ERR_INVALID_ARG_TYPE(name, 'AbortSignal', signal)\n\t\t  }\n\t\t};\n\t\tconst validateFunction = (value, name) => {\n\t\t  if (typeof value !== 'function') {\n\t\t    throw new ERR_INVALID_ARG_TYPE(name, 'Function', value)\n\t\t  }\n\t\t};\n\t\tmodule.exports = {\n\t\t  AggregateError,\n\t\t  kEmptyObject: Object.freeze({}),\n\t\t  once(callback) {\n\t\t    let called = false;\n\t\t    return function (...args) {\n\t\t      if (called) {\n\t\t        return\n\t\t      }\n\t\t      called = true;\n\t\t      callback.apply(this, args);\n\t\t    }\n\t\t  },\n\t\t  createDeferredPromise: function () {\n\t\t    let resolve;\n\t\t    let reject;\n\n\t\t    // eslint-disable-next-line promise/param-names\n\t\t    const promise = new Promise((res, rej) => {\n\t\t      resolve = res;\n\t\t      reject = rej;\n\t\t    });\n\t\t    return {\n\t\t      promise,\n\t\t      resolve,\n\t\t      reject\n\t\t    }\n\t\t  },\n\t\t  promisify(fn) {\n\t\t    return new Promise((resolve, reject) => {\n\t\t      fn((err, ...args) => {\n\t\t        if (err) {\n\t\t          return reject(err)\n\t\t        }\n\t\t        return resolve(...args)\n\t\t      });\n\t\t    })\n\t\t  },\n\t\t  debuglog() {\n\t\t    return function () {}\n\t\t  },\n\t\t  format,\n\t\t  inspect,\n\t\t  types: {\n\t\t    isAsyncFunction(fn) {\n\t\t      return fn instanceof AsyncFunction\n\t\t    },\n\t\t    isArrayBufferView(arr) {\n\t\t      return ArrayBuffer.isView(arr)\n\t\t    }\n\t\t  },\n\t\t  isBlob,\n\t\t  deprecate(fn, message) {\n\t\t    return fn\n\t\t  },\n\t\t  addAbortListener:\n\t\t    require$$1$4.addAbortListener ||\n\t\t    function addAbortListener(signal, listener) {\n\t\t      if (signal === undefined) {\n\t\t        throw new ERR_INVALID_ARG_TYPE('signal', 'AbortSignal', signal)\n\t\t      }\n\t\t      validateAbortSignal(signal, 'signal');\n\t\t      validateFunction(listener, 'listener');\n\t\t      let removeEventListener;\n\t\t      if (signal.aborted) {\n\t\t        queueMicrotask(() => listener());\n\t\t      } else {\n\t\t        signal.addEventListener('abort', listener, {\n\t\t          __proto__: null,\n\t\t          once: true,\n\t\t          [kResistStopPropagation]: true\n\t\t        });\n\t\t        removeEventListener = () => {\n\t\t          signal.removeEventListener('abort', listener);\n\t\t        };\n\t\t      }\n\t\t      return {\n\t\t        __proto__: null,\n\t\t        [SymbolDispose]() {\n\t\t          var _removeEventListener\n\t\t          ;(_removeEventListener = removeEventListener) === null || _removeEventListener === undefined\n\t\t            ? undefined\n\t\t            : _removeEventListener();\n\t\t        }\n\t\t      }\n\t\t    },\n\t\t  AbortSignalAny:\n\t\t    AbortSignal.any ||\n\t\t    function AbortSignalAny(signals) {\n\t\t      // Fast path if there is only one signal.\n\t\t      if (signals.length === 1) {\n\t\t        return signals[0]\n\t\t      }\n\t\t      const ac = new AbortController();\n\t\t      const abort = () => ac.abort();\n\t\t      signals.forEach((signal) => {\n\t\t        validateAbortSignal(signal, 'signals');\n\t\t        signal.addEventListener('abort', abort, {\n\t\t          once: true\n\t\t        });\n\t\t      });\n\t\t      ac.signal.addEventListener(\n\t\t        'abort',\n\t\t        () => {\n\t\t          signals.forEach((signal) => signal.removeEventListener('abort', abort));\n\t\t        },\n\t\t        {\n\t\t          once: true\n\t\t        }\n\t\t      );\n\t\t      return ac.signal\n\t\t    }\n\t\t};\n\t\tmodule.exports.promisify.custom = Symbol.for('nodejs.util.promisify.custom'); \n\t} (util$2));\n\treturn util$2.exports;\n}\n\nvar operators = {};\n\n/* eslint jsdoc/require-jsdoc: \"error\" */\n\nvar validators;\nvar hasRequiredValidators;\n\nfunction requireValidators () {\n\tif (hasRequiredValidators) return validators;\n\thasRequiredValidators = 1;\n\n\tconst {\n\t  ArrayIsArray,\n\t  ArrayPrototypeIncludes,\n\t  ArrayPrototypeJoin,\n\t  ArrayPrototypeMap,\n\t  NumberIsInteger,\n\t  NumberIsNaN,\n\t  NumberMAX_SAFE_INTEGER,\n\t  NumberMIN_SAFE_INTEGER,\n\t  NumberParseInt,\n\t  ObjectPrototypeHasOwnProperty,\n\t  RegExpPrototypeExec,\n\t  String,\n\t  StringPrototypeToUpperCase,\n\t  StringPrototypeTrim\n\t} = requirePrimordials();\n\tconst {\n\t  hideStackFrames,\n\t  codes: { ERR_SOCKET_BAD_PORT, ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, ERR_OUT_OF_RANGE, ERR_UNKNOWN_SIGNAL }\n\t} = requireErrors();\n\tconst { normalizeEncoding } = requireUtil$2();\n\tconst { isAsyncFunction, isArrayBufferView } = requireUtil$2().types;\n\tconst signals = {};\n\n\t/**\n\t * @param {*} value\n\t * @returns {boolean}\n\t */\n\tfunction isInt32(value) {\n\t  return value === (value | 0)\n\t}\n\n\t/**\n\t * @param {*} value\n\t * @returns {boolean}\n\t */\n\tfunction isUint32(value) {\n\t  return value === value >>> 0\n\t}\n\tconst octalReg = /^[0-7]+$/;\n\tconst modeDesc = 'must be a 32-bit unsigned integer or an octal string';\n\n\t/**\n\t * Parse and validate values that will be converted into mode_t (the S_*\n\t * constants). Only valid numbers and octal strings are allowed. They could be\n\t * converted to 32-bit unsigned integers or non-negative signed integers in the\n\t * C++ land, but any value higher than 0o777 will result in platform-specific\n\t * behaviors.\n\t * @param {*} value Values to be validated\n\t * @param {string} name Name of the argument\n\t * @param {number} [def] If specified, will be returned for invalid values\n\t * @returns {number}\n\t */\n\tfunction parseFileMode(value, name, def) {\n\t  if (typeof value === 'undefined') {\n\t    value = def;\n\t  }\n\t  if (typeof value === 'string') {\n\t    if (RegExpPrototypeExec(octalReg, value) === null) {\n\t      throw new ERR_INVALID_ARG_VALUE(name, value, modeDesc)\n\t    }\n\t    value = NumberParseInt(value, 8);\n\t  }\n\t  validateUint32(value, name);\n\t  return value\n\t}\n\n\t/**\n\t * @callback validateInteger\n\t * @param {*} value\n\t * @param {string} name\n\t * @param {number} [min]\n\t * @param {number} [max]\n\t * @returns {asserts value is number}\n\t */\n\n\t/** @type {validateInteger} */\n\tconst validateInteger = hideStackFrames((value, name, min = NumberMIN_SAFE_INTEGER, max = NumberMAX_SAFE_INTEGER) => {\n\t  if (typeof value !== 'number') throw new ERR_INVALID_ARG_TYPE(name, 'number', value)\n\t  if (!NumberIsInteger(value)) throw new ERR_OUT_OF_RANGE(name, 'an integer', value)\n\t  if (value < min || value > max) throw new ERR_OUT_OF_RANGE(name, `>= ${min} && <= ${max}`, value)\n\t});\n\n\t/**\n\t * @callback validateInt32\n\t * @param {*} value\n\t * @param {string} name\n\t * @param {number} [min]\n\t * @param {number} [max]\n\t * @returns {asserts value is number}\n\t */\n\n\t/** @type {validateInt32} */\n\tconst validateInt32 = hideStackFrames((value, name, min = -2147483648, max = 2147483647) => {\n\t  // The defaults for min and max correspond to the limits of 32-bit integers.\n\t  if (typeof value !== 'number') {\n\t    throw new ERR_INVALID_ARG_TYPE(name, 'number', value)\n\t  }\n\t  if (!NumberIsInteger(value)) {\n\t    throw new ERR_OUT_OF_RANGE(name, 'an integer', value)\n\t  }\n\t  if (value < min || value > max) {\n\t    throw new ERR_OUT_OF_RANGE(name, `>= ${min} && <= ${max}`, value)\n\t  }\n\t});\n\n\t/**\n\t * @callback validateUint32\n\t * @param {*} value\n\t * @param {string} name\n\t * @param {number|boolean} [positive=false]\n\t * @returns {asserts value is number}\n\t */\n\n\t/** @type {validateUint32} */\n\tconst validateUint32 = hideStackFrames((value, name, positive = false) => {\n\t  if (typeof value !== 'number') {\n\t    throw new ERR_INVALID_ARG_TYPE(name, 'number', value)\n\t  }\n\t  if (!NumberIsInteger(value)) {\n\t    throw new ERR_OUT_OF_RANGE(name, 'an integer', value)\n\t  }\n\t  const min = positive ? 1 : 0;\n\t  // 2 ** 32 === 4294967296\n\t  const max = 4294967295;\n\t  if (value < min || value > max) {\n\t    throw new ERR_OUT_OF_RANGE(name, `>= ${min} && <= ${max}`, value)\n\t  }\n\t});\n\n\t/**\n\t * @callback validateString\n\t * @param {*} value\n\t * @param {string} name\n\t * @returns {asserts value is string}\n\t */\n\n\t/** @type {validateString} */\n\tfunction validateString(value, name) {\n\t  if (typeof value !== 'string') throw new ERR_INVALID_ARG_TYPE(name, 'string', value)\n\t}\n\n\t/**\n\t * @callback validateNumber\n\t * @param {*} value\n\t * @param {string} name\n\t * @param {number} [min]\n\t * @param {number} [max]\n\t * @returns {asserts value is number}\n\t */\n\n\t/** @type {validateNumber} */\n\tfunction validateNumber(value, name, min = undefined, max) {\n\t  if (typeof value !== 'number') throw new ERR_INVALID_ARG_TYPE(name, 'number', value)\n\t  if (\n\t    (min != null && value < min) ||\n\t    (max != null && value > max) ||\n\t    ((min != null || max != null) && NumberIsNaN(value))\n\t  ) {\n\t    throw new ERR_OUT_OF_RANGE(\n\t      name,\n\t      `${min != null ? `>= ${min}` : ''}${min != null && max != null ? ' && ' : ''}${max != null ? `<= ${max}` : ''}`,\n\t      value\n\t    )\n\t  }\n\t}\n\n\t/**\n\t * @callback validateOneOf\n\t * @template T\n\t * @param {T} value\n\t * @param {string} name\n\t * @param {T[]} oneOf\n\t */\n\n\t/** @type {validateOneOf} */\n\tconst validateOneOf = hideStackFrames((value, name, oneOf) => {\n\t  if (!ArrayPrototypeIncludes(oneOf, value)) {\n\t    const allowed = ArrayPrototypeJoin(\n\t      ArrayPrototypeMap(oneOf, (v) => (typeof v === 'string' ? `'${v}'` : String(v))),\n\t      ', '\n\t    );\n\t    const reason = 'must be one of: ' + allowed;\n\t    throw new ERR_INVALID_ARG_VALUE(name, value, reason)\n\t  }\n\t});\n\n\t/**\n\t * @callback validateBoolean\n\t * @param {*} value\n\t * @param {string} name\n\t * @returns {asserts value is boolean}\n\t */\n\n\t/** @type {validateBoolean} */\n\tfunction validateBoolean(value, name) {\n\t  if (typeof value !== 'boolean') throw new ERR_INVALID_ARG_TYPE(name, 'boolean', value)\n\t}\n\n\t/**\n\t * @param {any} options\n\t * @param {string} key\n\t * @param {boolean} defaultValue\n\t * @returns {boolean}\n\t */\n\tfunction getOwnPropertyValueOrDefault(options, key, defaultValue) {\n\t  return options == null || !ObjectPrototypeHasOwnProperty(options, key) ? defaultValue : options[key]\n\t}\n\n\t/**\n\t * @callback validateObject\n\t * @param {*} value\n\t * @param {string} name\n\t * @param {{\n\t *   allowArray?: boolean,\n\t *   allowFunction?: boolean,\n\t *   nullable?: boolean\n\t * }} [options]\n\t */\n\n\t/** @type {validateObject} */\n\tconst validateObject = hideStackFrames((value, name, options = null) => {\n\t  const allowArray = getOwnPropertyValueOrDefault(options, 'allowArray', false);\n\t  const allowFunction = getOwnPropertyValueOrDefault(options, 'allowFunction', false);\n\t  const nullable = getOwnPropertyValueOrDefault(options, 'nullable', false);\n\t  if (\n\t    (!nullable && value === null) ||\n\t    (!allowArray && ArrayIsArray(value)) ||\n\t    (typeof value !== 'object' && (!allowFunction || typeof value !== 'function'))\n\t  ) {\n\t    throw new ERR_INVALID_ARG_TYPE(name, 'Object', value)\n\t  }\n\t});\n\n\t/**\n\t * @callback validateDictionary - We are using the Web IDL Standard definition\n\t *                                of \"dictionary\" here, which means any value\n\t *                                whose Type is either Undefined, Null, or\n\t *                                Object (which includes functions).\n\t * @param {*} value\n\t * @param {string} name\n\t * @see https://webidl.spec.whatwg.org/#es-dictionary\n\t * @see https://tc39.es/ecma262/#table-typeof-operator-results\n\t */\n\n\t/** @type {validateDictionary} */\n\tconst validateDictionary = hideStackFrames((value, name) => {\n\t  if (value != null && typeof value !== 'object' && typeof value !== 'function') {\n\t    throw new ERR_INVALID_ARG_TYPE(name, 'a dictionary', value)\n\t  }\n\t});\n\n\t/**\n\t * @callback validateArray\n\t * @param {*} value\n\t * @param {string} name\n\t * @param {number} [minLength]\n\t * @returns {asserts value is any[]}\n\t */\n\n\t/** @type {validateArray} */\n\tconst validateArray = hideStackFrames((value, name, minLength = 0) => {\n\t  if (!ArrayIsArray(value)) {\n\t    throw new ERR_INVALID_ARG_TYPE(name, 'Array', value)\n\t  }\n\t  if (value.length < minLength) {\n\t    const reason = `must be longer than ${minLength}`;\n\t    throw new ERR_INVALID_ARG_VALUE(name, value, reason)\n\t  }\n\t});\n\n\t/**\n\t * @callback validateStringArray\n\t * @param {*} value\n\t * @param {string} name\n\t * @returns {asserts value is string[]}\n\t */\n\n\t/** @type {validateStringArray} */\n\tfunction validateStringArray(value, name) {\n\t  validateArray(value, name);\n\t  for (let i = 0; i < value.length; i++) {\n\t    validateString(value[i], `${name}[${i}]`);\n\t  }\n\t}\n\n\t/**\n\t * @callback validateBooleanArray\n\t * @param {*} value\n\t * @param {string} name\n\t * @returns {asserts value is boolean[]}\n\t */\n\n\t/** @type {validateBooleanArray} */\n\tfunction validateBooleanArray(value, name) {\n\t  validateArray(value, name);\n\t  for (let i = 0; i < value.length; i++) {\n\t    validateBoolean(value[i], `${name}[${i}]`);\n\t  }\n\t}\n\n\t/**\n\t * @callback validateAbortSignalArray\n\t * @param {*} value\n\t * @param {string} name\n\t * @returns {asserts value is AbortSignal[]}\n\t */\n\n\t/** @type {validateAbortSignalArray} */\n\tfunction validateAbortSignalArray(value, name) {\n\t  validateArray(value, name);\n\t  for (let i = 0; i < value.length; i++) {\n\t    const signal = value[i];\n\t    const indexedName = `${name}[${i}]`;\n\t    if (signal == null) {\n\t      throw new ERR_INVALID_ARG_TYPE(indexedName, 'AbortSignal', signal)\n\t    }\n\t    validateAbortSignal(signal, indexedName);\n\t  }\n\t}\n\n\t/**\n\t * @param {*} signal\n\t * @param {string} [name='signal']\n\t * @returns {asserts signal is keyof signals}\n\t */\n\tfunction validateSignalName(signal, name = 'signal') {\n\t  validateString(signal, name);\n\t  if (signals[signal] === undefined) {\n\t    if (signals[StringPrototypeToUpperCase(signal)] !== undefined) {\n\t      throw new ERR_UNKNOWN_SIGNAL(signal + ' (signals must use all capital letters)')\n\t    }\n\t    throw new ERR_UNKNOWN_SIGNAL(signal)\n\t  }\n\t}\n\n\t/**\n\t * @callback validateBuffer\n\t * @param {*} buffer\n\t * @param {string} [name='buffer']\n\t * @returns {asserts buffer is ArrayBufferView}\n\t */\n\n\t/** @type {validateBuffer} */\n\tconst validateBuffer = hideStackFrames((buffer, name = 'buffer') => {\n\t  if (!isArrayBufferView(buffer)) {\n\t    throw new ERR_INVALID_ARG_TYPE(name, ['Buffer', 'TypedArray', 'DataView'], buffer)\n\t  }\n\t});\n\n\t/**\n\t * @param {string} data\n\t * @param {string} encoding\n\t */\n\tfunction validateEncoding(data, encoding) {\n\t  const normalizedEncoding = normalizeEncoding(encoding);\n\t  const length = data.length;\n\t  if (normalizedEncoding === 'hex' && length % 2 !== 0) {\n\t    throw new ERR_INVALID_ARG_VALUE('encoding', encoding, `is invalid for data of length ${length}`)\n\t  }\n\t}\n\n\t/**\n\t * Check that the port number is not NaN when coerced to a number,\n\t * is an integer and that it falls within the legal range of port numbers.\n\t * @param {*} port\n\t * @param {string} [name='Port']\n\t * @param {boolean} [allowZero=true]\n\t * @returns {number}\n\t */\n\tfunction validatePort(port, name = 'Port', allowZero = true) {\n\t  if (\n\t    (typeof port !== 'number' && typeof port !== 'string') ||\n\t    (typeof port === 'string' && StringPrototypeTrim(port).length === 0) ||\n\t    +port !== +port >>> 0 ||\n\t    port > 0xffff ||\n\t    (port === 0 && !allowZero)\n\t  ) {\n\t    throw new ERR_SOCKET_BAD_PORT(name, port, allowZero)\n\t  }\n\t  return port | 0\n\t}\n\n\t/**\n\t * @callback validateAbortSignal\n\t * @param {*} signal\n\t * @param {string} name\n\t */\n\n\t/** @type {validateAbortSignal} */\n\tconst validateAbortSignal = hideStackFrames((signal, name) => {\n\t  if (signal !== undefined && (signal === null || typeof signal !== 'object' || !('aborted' in signal))) {\n\t    throw new ERR_INVALID_ARG_TYPE(name, 'AbortSignal', signal)\n\t  }\n\t});\n\n\t/**\n\t * @callback validateFunction\n\t * @param {*} value\n\t * @param {string} name\n\t * @returns {asserts value is Function}\n\t */\n\n\t/** @type {validateFunction} */\n\tconst validateFunction = hideStackFrames((value, name) => {\n\t  if (typeof value !== 'function') throw new ERR_INVALID_ARG_TYPE(name, 'Function', value)\n\t});\n\n\t/**\n\t * @callback validatePlainFunction\n\t * @param {*} value\n\t * @param {string} name\n\t * @returns {asserts value is Function}\n\t */\n\n\t/** @type {validatePlainFunction} */\n\tconst validatePlainFunction = hideStackFrames((value, name) => {\n\t  if (typeof value !== 'function' || isAsyncFunction(value)) throw new ERR_INVALID_ARG_TYPE(name, 'Function', value)\n\t});\n\n\t/**\n\t * @callback validateUndefined\n\t * @param {*} value\n\t * @param {string} name\n\t * @returns {asserts value is undefined}\n\t */\n\n\t/** @type {validateUndefined} */\n\tconst validateUndefined = hideStackFrames((value, name) => {\n\t  if (value !== undefined) throw new ERR_INVALID_ARG_TYPE(name, 'undefined', value)\n\t});\n\n\t/**\n\t * @template T\n\t * @param {T} value\n\t * @param {string} name\n\t * @param {T[]} union\n\t */\n\tfunction validateUnion(value, name, union) {\n\t  if (!ArrayPrototypeIncludes(union, value)) {\n\t    throw new ERR_INVALID_ARG_TYPE(name, `('${ArrayPrototypeJoin(union, '|')}')`, value)\n\t  }\n\t}\n\n\t/*\n\t  The rules for the Link header field are described here:\n\t  https://www.rfc-editor.org/rfc/rfc8288.html#section-3\n\n\t  This regex validates any string surrounded by angle brackets\n\t  (not necessarily a valid URI reference) followed by zero or more\n\t  link-params separated by semicolons.\n\t*/\n\tconst linkValueRegExp = /^(?:<[^>]*>)(?:\\s*;\\s*[^;\"\\s]+(?:=(\")?[^;\"\\s]*\\1)?)*$/;\n\n\t/**\n\t * @param {any} value\n\t * @param {string} name\n\t */\n\tfunction validateLinkHeaderFormat(value, name) {\n\t  if (typeof value === 'undefined' || !RegExpPrototypeExec(linkValueRegExp, value)) {\n\t    throw new ERR_INVALID_ARG_VALUE(\n\t      name,\n\t      value,\n\t      'must be an array or string of format \"</styles.css>; rel=preload; as=style\"'\n\t    )\n\t  }\n\t}\n\n\t/**\n\t * @param {any} hints\n\t * @return {string}\n\t */\n\tfunction validateLinkHeaderValue(hints) {\n\t  if (typeof hints === 'string') {\n\t    validateLinkHeaderFormat(hints, 'hints');\n\t    return hints\n\t  } else if (ArrayIsArray(hints)) {\n\t    const hintsLength = hints.length;\n\t    let result = '';\n\t    if (hintsLength === 0) {\n\t      return result\n\t    }\n\t    for (let i = 0; i < hintsLength; i++) {\n\t      const link = hints[i];\n\t      validateLinkHeaderFormat(link, 'hints');\n\t      result += link;\n\t      if (i !== hintsLength - 1) {\n\t        result += ', ';\n\t      }\n\t    }\n\t    return result\n\t  }\n\t  throw new ERR_INVALID_ARG_VALUE(\n\t    'hints',\n\t    hints,\n\t    'must be an array or string of format \"</styles.css>; rel=preload; as=style\"'\n\t  )\n\t}\n\tvalidators = {\n\t  isInt32,\n\t  isUint32,\n\t  parseFileMode,\n\t  validateArray,\n\t  validateStringArray,\n\t  validateBooleanArray,\n\t  validateAbortSignalArray,\n\t  validateBoolean,\n\t  validateBuffer,\n\t  validateDictionary,\n\t  validateEncoding,\n\t  validateFunction,\n\t  validateInt32,\n\t  validateInteger,\n\t  validateNumber,\n\t  validateObject,\n\t  validateOneOf,\n\t  validatePlainFunction,\n\t  validatePort,\n\t  validateSignalName,\n\t  validateString,\n\t  validateUint32,\n\t  validateUndefined,\n\t  validateUnion,\n\t  validateAbortSignal,\n\t  validateLinkHeaderValue\n\t};\n\treturn validators;\n}\n\nvar endOfStream = {exports: {}};\n\nvar process$1;\nvar hasRequiredProcess;\n\nfunction requireProcess () {\n\tif (hasRequiredProcess) return process$1;\n\thasRequiredProcess = 1;\n\t// for now just expose the builtin process global from node.js\n\tprocess$1 = commonjsGlobal.process;\n\treturn process$1;\n}\n\nvar utils$3;\nvar hasRequiredUtils$3;\n\nfunction requireUtils$3 () {\n\tif (hasRequiredUtils$3) return utils$3;\n\thasRequiredUtils$3 = 1;\n\n\tconst { SymbolAsyncIterator, SymbolIterator, SymbolFor } = requirePrimordials();\n\n\t// We need to use SymbolFor to make these globally available\n\t// for interopt with readable-stream, i.e. readable-stream\n\t// and node core needs to be able to read/write private state\n\t// from each other for proper interoperability.\n\tconst kIsDestroyed = SymbolFor('nodejs.stream.destroyed');\n\tconst kIsErrored = SymbolFor('nodejs.stream.errored');\n\tconst kIsReadable = SymbolFor('nodejs.stream.readable');\n\tconst kIsWritable = SymbolFor('nodejs.stream.writable');\n\tconst kIsDisturbed = SymbolFor('nodejs.stream.disturbed');\n\tconst kIsClosedPromise = SymbolFor('nodejs.webstream.isClosedPromise');\n\tconst kControllerErrorFunction = SymbolFor('nodejs.webstream.controllerErrorFunction');\n\tfunction isReadableNodeStream(obj, strict = false) {\n\t  var _obj$_readableState;\n\t  return !!(\n\t    (\n\t      obj &&\n\t      typeof obj.pipe === 'function' &&\n\t      typeof obj.on === 'function' &&\n\t      (!strict || (typeof obj.pause === 'function' && typeof obj.resume === 'function')) &&\n\t      (!obj._writableState ||\n\t        ((_obj$_readableState = obj._readableState) === null || _obj$_readableState === undefined\n\t          ? undefined\n\t          : _obj$_readableState.readable) !== false) &&\n\t      // Duplex\n\t      (!obj._writableState || obj._readableState)\n\t    ) // Writable has .pipe.\n\t  )\n\t}\n\tfunction isWritableNodeStream(obj) {\n\t  var _obj$_writableState;\n\t  return !!(\n\t    (\n\t      obj &&\n\t      typeof obj.write === 'function' &&\n\t      typeof obj.on === 'function' &&\n\t      (!obj._readableState ||\n\t        ((_obj$_writableState = obj._writableState) === null || _obj$_writableState === undefined\n\t          ? undefined\n\t          : _obj$_writableState.writable) !== false)\n\t    ) // Duplex\n\t  )\n\t}\n\tfunction isDuplexNodeStream(obj) {\n\t  return !!(\n\t    obj &&\n\t    typeof obj.pipe === 'function' &&\n\t    obj._readableState &&\n\t    typeof obj.on === 'function' &&\n\t    typeof obj.write === 'function'\n\t  )\n\t}\n\tfunction isNodeStream(obj) {\n\t  return (\n\t    obj &&\n\t    (obj._readableState ||\n\t      obj._writableState ||\n\t      (typeof obj.write === 'function' && typeof obj.on === 'function') ||\n\t      (typeof obj.pipe === 'function' && typeof obj.on === 'function'))\n\t  )\n\t}\n\tfunction isReadableStream(obj) {\n\t  return !!(\n\t    obj &&\n\t    !isNodeStream(obj) &&\n\t    typeof obj.pipeThrough === 'function' &&\n\t    typeof obj.getReader === 'function' &&\n\t    typeof obj.cancel === 'function'\n\t  )\n\t}\n\tfunction isWritableStream(obj) {\n\t  return !!(obj && !isNodeStream(obj) && typeof obj.getWriter === 'function' && typeof obj.abort === 'function')\n\t}\n\tfunction isTransformStream(obj) {\n\t  return !!(obj && !isNodeStream(obj) && typeof obj.readable === 'object' && typeof obj.writable === 'object')\n\t}\n\tfunction isWebStream(obj) {\n\t  return isReadableStream(obj) || isWritableStream(obj) || isTransformStream(obj)\n\t}\n\tfunction isIterable(obj, isAsync) {\n\t  if (obj == null) return false\n\t  if (isAsync === true) return typeof obj[SymbolAsyncIterator] === 'function'\n\t  if (isAsync === false) return typeof obj[SymbolIterator] === 'function'\n\t  return typeof obj[SymbolAsyncIterator] === 'function' || typeof obj[SymbolIterator] === 'function'\n\t}\n\tfunction isDestroyed(stream) {\n\t  if (!isNodeStream(stream)) return null\n\t  const wState = stream._writableState;\n\t  const rState = stream._readableState;\n\t  const state = wState || rState;\n\t  return !!(stream.destroyed || stream[kIsDestroyed] || (state !== null && state !== undefined && state.destroyed))\n\t}\n\n\t// Have been end():d.\n\tfunction isWritableEnded(stream) {\n\t  if (!isWritableNodeStream(stream)) return null\n\t  if (stream.writableEnded === true) return true\n\t  const wState = stream._writableState;\n\t  if (wState !== null && wState !== undefined && wState.errored) return false\n\t  if (typeof (wState === null || wState === undefined ? undefined : wState.ended) !== 'boolean') return null\n\t  return wState.ended\n\t}\n\n\t// Have emitted 'finish'.\n\tfunction isWritableFinished(stream, strict) {\n\t  if (!isWritableNodeStream(stream)) return null\n\t  if (stream.writableFinished === true) return true\n\t  const wState = stream._writableState;\n\t  if (wState !== null && wState !== undefined && wState.errored) return false\n\t  if (typeof (wState === null || wState === undefined ? undefined : wState.finished) !== 'boolean') return null\n\t  return !!(wState.finished || (strict === false && wState.ended === true && wState.length === 0))\n\t}\n\n\t// Have been push(null):d.\n\tfunction isReadableEnded(stream) {\n\t  if (!isReadableNodeStream(stream)) return null\n\t  if (stream.readableEnded === true) return true\n\t  const rState = stream._readableState;\n\t  if (!rState || rState.errored) return false\n\t  if (typeof (rState === null || rState === undefined ? undefined : rState.ended) !== 'boolean') return null\n\t  return rState.ended\n\t}\n\n\t// Have emitted 'end'.\n\tfunction isReadableFinished(stream, strict) {\n\t  if (!isReadableNodeStream(stream)) return null\n\t  const rState = stream._readableState;\n\t  if (rState !== null && rState !== undefined && rState.errored) return false\n\t  if (typeof (rState === null || rState === undefined ? undefined : rState.endEmitted) !== 'boolean') return null\n\t  return !!(rState.endEmitted || (strict === false && rState.ended === true && rState.length === 0))\n\t}\n\tfunction isReadable(stream) {\n\t  if (stream && stream[kIsReadable] != null) return stream[kIsReadable]\n\t  if (typeof (stream === null || stream === undefined ? undefined : stream.readable) !== 'boolean') return null\n\t  if (isDestroyed(stream)) return false\n\t  return isReadableNodeStream(stream) && stream.readable && !isReadableFinished(stream)\n\t}\n\tfunction isWritable(stream) {\n\t  if (stream && stream[kIsWritable] != null) return stream[kIsWritable]\n\t  if (typeof (stream === null || stream === undefined ? undefined : stream.writable) !== 'boolean') return null\n\t  if (isDestroyed(stream)) return false\n\t  return isWritableNodeStream(stream) && stream.writable && !isWritableEnded(stream)\n\t}\n\tfunction isFinished(stream, opts) {\n\t  if (!isNodeStream(stream)) {\n\t    return null\n\t  }\n\t  if (isDestroyed(stream)) {\n\t    return true\n\t  }\n\t  if ((opts === null || opts === undefined ? undefined : opts.readable) !== false && isReadable(stream)) {\n\t    return false\n\t  }\n\t  if ((opts === null || opts === undefined ? undefined : opts.writable) !== false && isWritable(stream)) {\n\t    return false\n\t  }\n\t  return true\n\t}\n\tfunction isWritableErrored(stream) {\n\t  var _stream$_writableStat, _stream$_writableStat2;\n\t  if (!isNodeStream(stream)) {\n\t    return null\n\t  }\n\t  if (stream.writableErrored) {\n\t    return stream.writableErrored\n\t  }\n\t  return (_stream$_writableStat =\n\t    (_stream$_writableStat2 = stream._writableState) === null || _stream$_writableStat2 === undefined\n\t      ? undefined\n\t      : _stream$_writableStat2.errored) !== null && _stream$_writableStat !== undefined\n\t    ? _stream$_writableStat\n\t    : null\n\t}\n\tfunction isReadableErrored(stream) {\n\t  var _stream$_readableStat, _stream$_readableStat2;\n\t  if (!isNodeStream(stream)) {\n\t    return null\n\t  }\n\t  if (stream.readableErrored) {\n\t    return stream.readableErrored\n\t  }\n\t  return (_stream$_readableStat =\n\t    (_stream$_readableStat2 = stream._readableState) === null || _stream$_readableStat2 === undefined\n\t      ? undefined\n\t      : _stream$_readableStat2.errored) !== null && _stream$_readableStat !== undefined\n\t    ? _stream$_readableStat\n\t    : null\n\t}\n\tfunction isClosed(stream) {\n\t  if (!isNodeStream(stream)) {\n\t    return null\n\t  }\n\t  if (typeof stream.closed === 'boolean') {\n\t    return stream.closed\n\t  }\n\t  const wState = stream._writableState;\n\t  const rState = stream._readableState;\n\t  if (\n\t    typeof (wState === null || wState === undefined ? undefined : wState.closed) === 'boolean' ||\n\t    typeof (rState === null || rState === undefined ? undefined : rState.closed) === 'boolean'\n\t  ) {\n\t    return (\n\t      (wState === null || wState === undefined ? undefined : wState.closed) ||\n\t      (rState === null || rState === undefined ? undefined : rState.closed)\n\t    )\n\t  }\n\t  if (typeof stream._closed === 'boolean' && isOutgoingMessage(stream)) {\n\t    return stream._closed\n\t  }\n\t  return null\n\t}\n\tfunction isOutgoingMessage(stream) {\n\t  return (\n\t    typeof stream._closed === 'boolean' &&\n\t    typeof stream._defaultKeepAlive === 'boolean' &&\n\t    typeof stream._removedConnection === 'boolean' &&\n\t    typeof stream._removedContLen === 'boolean'\n\t  )\n\t}\n\tfunction isServerResponse(stream) {\n\t  return typeof stream._sent100 === 'boolean' && isOutgoingMessage(stream)\n\t}\n\tfunction isServerRequest(stream) {\n\t  var _stream$req;\n\t  return (\n\t    typeof stream._consuming === 'boolean' &&\n\t    typeof stream._dumped === 'boolean' &&\n\t    ((_stream$req = stream.req) === null || _stream$req === undefined ? undefined : _stream$req.upgradeOrConnect) ===\n\t      undefined\n\t  )\n\t}\n\tfunction willEmitClose(stream) {\n\t  if (!isNodeStream(stream)) return null\n\t  const wState = stream._writableState;\n\t  const rState = stream._readableState;\n\t  const state = wState || rState;\n\t  return (\n\t    (!state && isServerResponse(stream)) || !!(state && state.autoDestroy && state.emitClose && state.closed === false)\n\t  )\n\t}\n\tfunction isDisturbed(stream) {\n\t  var _stream$kIsDisturbed;\n\t  return !!(\n\t    stream &&\n\t    ((_stream$kIsDisturbed = stream[kIsDisturbed]) !== null && _stream$kIsDisturbed !== undefined\n\t      ? _stream$kIsDisturbed\n\t      : stream.readableDidRead || stream.readableAborted)\n\t  )\n\t}\n\tfunction isErrored(stream) {\n\t  var _ref,\n\t    _ref2,\n\t    _ref3,\n\t    _ref4,\n\t    _ref5,\n\t    _stream$kIsErrored,\n\t    _stream$_readableStat3,\n\t    _stream$_writableStat3,\n\t    _stream$_readableStat4,\n\t    _stream$_writableStat4;\n\t  return !!(\n\t    stream &&\n\t    ((_ref =\n\t      (_ref2 =\n\t        (_ref3 =\n\t          (_ref4 =\n\t            (_ref5 =\n\t              (_stream$kIsErrored = stream[kIsErrored]) !== null && _stream$kIsErrored !== undefined\n\t                ? _stream$kIsErrored\n\t                : stream.readableErrored) !== null && _ref5 !== undefined\n\t              ? _ref5\n\t              : stream.writableErrored) !== null && _ref4 !== undefined\n\t            ? _ref4\n\t            : (_stream$_readableStat3 = stream._readableState) === null || _stream$_readableStat3 === undefined\n\t            ? undefined\n\t            : _stream$_readableStat3.errorEmitted) !== null && _ref3 !== undefined\n\t          ? _ref3\n\t          : (_stream$_writableStat3 = stream._writableState) === null || _stream$_writableStat3 === undefined\n\t          ? undefined\n\t          : _stream$_writableStat3.errorEmitted) !== null && _ref2 !== undefined\n\t        ? _ref2\n\t        : (_stream$_readableStat4 = stream._readableState) === null || _stream$_readableStat4 === undefined\n\t        ? undefined\n\t        : _stream$_readableStat4.errored) !== null && _ref !== undefined\n\t      ? _ref\n\t      : (_stream$_writableStat4 = stream._writableState) === null || _stream$_writableStat4 === undefined\n\t      ? undefined\n\t      : _stream$_writableStat4.errored)\n\t  )\n\t}\n\tutils$3 = {\n\t  isDestroyed,\n\t  kIsDestroyed,\n\t  isDisturbed,\n\t  kIsDisturbed,\n\t  isErrored,\n\t  kIsErrored,\n\t  isReadable,\n\t  kIsReadable,\n\t  kIsClosedPromise,\n\t  kControllerErrorFunction,\n\t  kIsWritable,\n\t  isClosed,\n\t  isDuplexNodeStream,\n\t  isFinished,\n\t  isIterable,\n\t  isReadableNodeStream,\n\t  isReadableStream,\n\t  isReadableEnded,\n\t  isReadableFinished,\n\t  isReadableErrored,\n\t  isNodeStream,\n\t  isWebStream,\n\t  isWritable,\n\t  isWritableNodeStream,\n\t  isWritableStream,\n\t  isWritableEnded,\n\t  isWritableFinished,\n\t  isWritableErrored,\n\t  isServerRequest,\n\t  isServerResponse,\n\t  willEmitClose,\n\t  isTransformStream\n\t};\n\treturn utils$3;\n}\n\nvar hasRequiredEndOfStream;\n\nfunction requireEndOfStream () {\n\tif (hasRequiredEndOfStream) return endOfStream.exports;\n\thasRequiredEndOfStream = 1;\n\n\t/* replacement start */\n\n\tconst process = requireProcess();\n\n\t/* replacement end */\n\n\tconst { AbortError, codes } = requireErrors();\n\tconst { ERR_INVALID_ARG_TYPE, ERR_STREAM_PREMATURE_CLOSE } = codes;\n\tconst { kEmptyObject, once } = requireUtil$2();\n\tconst { validateAbortSignal, validateFunction, validateObject, validateBoolean } = requireValidators();\n\tconst { Promise, PromisePrototypeThen, SymbolDispose } = requirePrimordials();\n\tconst {\n\t  isClosed,\n\t  isReadable,\n\t  isReadableNodeStream,\n\t  isReadableStream,\n\t  isReadableFinished,\n\t  isReadableErrored,\n\t  isWritable,\n\t  isWritableNodeStream,\n\t  isWritableStream,\n\t  isWritableFinished,\n\t  isWritableErrored,\n\t  isNodeStream,\n\t  willEmitClose: _willEmitClose,\n\t  kIsClosedPromise\n\t} = requireUtils$3();\n\tlet addAbortListener;\n\tfunction isRequest(stream) {\n\t  return stream.setHeader && typeof stream.abort === 'function'\n\t}\n\tconst nop = () => {};\n\tfunction eos(stream, options, callback) {\n\t  var _options$readable, _options$writable;\n\t  if (arguments.length === 2) {\n\t    callback = options;\n\t    options = kEmptyObject;\n\t  } else if (options == null) {\n\t    options = kEmptyObject;\n\t  } else {\n\t    validateObject(options, 'options');\n\t  }\n\t  validateFunction(callback, 'callback');\n\t  validateAbortSignal(options.signal, 'options.signal');\n\t  callback = once(callback);\n\t  if (isReadableStream(stream) || isWritableStream(stream)) {\n\t    return eosWeb(stream, options, callback)\n\t  }\n\t  if (!isNodeStream(stream)) {\n\t    throw new ERR_INVALID_ARG_TYPE('stream', ['ReadableStream', 'WritableStream', 'Stream'], stream)\n\t  }\n\t  const readable =\n\t    (_options$readable = options.readable) !== null && _options$readable !== undefined\n\t      ? _options$readable\n\t      : isReadableNodeStream(stream);\n\t  const writable =\n\t    (_options$writable = options.writable) !== null && _options$writable !== undefined\n\t      ? _options$writable\n\t      : isWritableNodeStream(stream);\n\t  const wState = stream._writableState;\n\t  const rState = stream._readableState;\n\t  const onlegacyfinish = () => {\n\t    if (!stream.writable) {\n\t      onfinish();\n\t    }\n\t  };\n\n\t  // TODO (ronag): Improve soft detection to include core modules and\n\t  // common ecosystem modules that do properly emit 'close' but fail\n\t  // this generic check.\n\t  let willEmitClose =\n\t    _willEmitClose(stream) && isReadableNodeStream(stream) === readable && isWritableNodeStream(stream) === writable;\n\t  let writableFinished = isWritableFinished(stream, false);\n\t  const onfinish = () => {\n\t    writableFinished = true;\n\t    // Stream should not be destroyed here. If it is that\n\t    // means that user space is doing something differently and\n\t    // we cannot trust willEmitClose.\n\t    if (stream.destroyed) {\n\t      willEmitClose = false;\n\t    }\n\t    if (willEmitClose && (!stream.readable || readable)) {\n\t      return\n\t    }\n\t    if (!readable || readableFinished) {\n\t      callback.call(stream);\n\t    }\n\t  };\n\t  let readableFinished = isReadableFinished(stream, false);\n\t  const onend = () => {\n\t    readableFinished = true;\n\t    // Stream should not be destroyed here. If it is that\n\t    // means that user space is doing something differently and\n\t    // we cannot trust willEmitClose.\n\t    if (stream.destroyed) {\n\t      willEmitClose = false;\n\t    }\n\t    if (willEmitClose && (!stream.writable || writable)) {\n\t      return\n\t    }\n\t    if (!writable || writableFinished) {\n\t      callback.call(stream);\n\t    }\n\t  };\n\t  const onerror = (err) => {\n\t    callback.call(stream, err);\n\t  };\n\t  let closed = isClosed(stream);\n\t  const onclose = () => {\n\t    closed = true;\n\t    const errored = isWritableErrored(stream) || isReadableErrored(stream);\n\t    if (errored && typeof errored !== 'boolean') {\n\t      return callback.call(stream, errored)\n\t    }\n\t    if (readable && !readableFinished && isReadableNodeStream(stream, true)) {\n\t      if (!isReadableFinished(stream, false)) return callback.call(stream, new ERR_STREAM_PREMATURE_CLOSE())\n\t    }\n\t    if (writable && !writableFinished) {\n\t      if (!isWritableFinished(stream, false)) return callback.call(stream, new ERR_STREAM_PREMATURE_CLOSE())\n\t    }\n\t    callback.call(stream);\n\t  };\n\t  const onclosed = () => {\n\t    closed = true;\n\t    const errored = isWritableErrored(stream) || isReadableErrored(stream);\n\t    if (errored && typeof errored !== 'boolean') {\n\t      return callback.call(stream, errored)\n\t    }\n\t    callback.call(stream);\n\t  };\n\t  const onrequest = () => {\n\t    stream.req.on('finish', onfinish);\n\t  };\n\t  if (isRequest(stream)) {\n\t    stream.on('complete', onfinish);\n\t    if (!willEmitClose) {\n\t      stream.on('abort', onclose);\n\t    }\n\t    if (stream.req) {\n\t      onrequest();\n\t    } else {\n\t      stream.on('request', onrequest);\n\t    }\n\t  } else if (writable && !wState) {\n\t    // legacy streams\n\t    stream.on('end', onlegacyfinish);\n\t    stream.on('close', onlegacyfinish);\n\t  }\n\n\t  // Not all streams will emit 'close' after 'aborted'.\n\t  if (!willEmitClose && typeof stream.aborted === 'boolean') {\n\t    stream.on('aborted', onclose);\n\t  }\n\t  stream.on('end', onend);\n\t  stream.on('finish', onfinish);\n\t  if (options.error !== false) {\n\t    stream.on('error', onerror);\n\t  }\n\t  stream.on('close', onclose);\n\t  if (closed) {\n\t    process.nextTick(onclose);\n\t  } else if (\n\t    (wState !== null && wState !== undefined && wState.errorEmitted) ||\n\t    (rState !== null && rState !== undefined && rState.errorEmitted)\n\t  ) {\n\t    if (!willEmitClose) {\n\t      process.nextTick(onclosed);\n\t    }\n\t  } else if (\n\t    !readable &&\n\t    (!willEmitClose || isReadable(stream)) &&\n\t    (writableFinished || isWritable(stream) === false)\n\t  ) {\n\t    process.nextTick(onclosed);\n\t  } else if (\n\t    !writable &&\n\t    (!willEmitClose || isWritable(stream)) &&\n\t    (readableFinished || isReadable(stream) === false)\n\t  ) {\n\t    process.nextTick(onclosed);\n\t  } else if (rState && stream.req && stream.aborted) {\n\t    process.nextTick(onclosed);\n\t  }\n\t  const cleanup = () => {\n\t    callback = nop;\n\t    stream.removeListener('aborted', onclose);\n\t    stream.removeListener('complete', onfinish);\n\t    stream.removeListener('abort', onclose);\n\t    stream.removeListener('request', onrequest);\n\t    if (stream.req) stream.req.removeListener('finish', onfinish);\n\t    stream.removeListener('end', onlegacyfinish);\n\t    stream.removeListener('close', onlegacyfinish);\n\t    stream.removeListener('finish', onfinish);\n\t    stream.removeListener('end', onend);\n\t    stream.removeListener('error', onerror);\n\t    stream.removeListener('close', onclose);\n\t  };\n\t  if (options.signal && !closed) {\n\t    const abort = () => {\n\t      // Keep it because cleanup removes it.\n\t      const endCallback = callback;\n\t      cleanup();\n\t      endCallback.call(\n\t        stream,\n\t        new AbortError(undefined, {\n\t          cause: options.signal.reason\n\t        })\n\t      );\n\t    };\n\t    if (options.signal.aborted) {\n\t      process.nextTick(abort);\n\t    } else {\n\t      addAbortListener = addAbortListener || requireUtil$2().addAbortListener;\n\t      const disposable = addAbortListener(options.signal, abort);\n\t      const originalCallback = callback;\n\t      callback = once((...args) => {\n\t        disposable[SymbolDispose]();\n\t        originalCallback.apply(stream, args);\n\t      });\n\t    }\n\t  }\n\t  return cleanup\n\t}\n\tfunction eosWeb(stream, options, callback) {\n\t  let isAborted = false;\n\t  let abort = nop;\n\t  if (options.signal) {\n\t    abort = () => {\n\t      isAborted = true;\n\t      callback.call(\n\t        stream,\n\t        new AbortError(undefined, {\n\t          cause: options.signal.reason\n\t        })\n\t      );\n\t    };\n\t    if (options.signal.aborted) {\n\t      process.nextTick(abort);\n\t    } else {\n\t      addAbortListener = addAbortListener || requireUtil$2().addAbortListener;\n\t      const disposable = addAbortListener(options.signal, abort);\n\t      const originalCallback = callback;\n\t      callback = once((...args) => {\n\t        disposable[SymbolDispose]();\n\t        originalCallback.apply(stream, args);\n\t      });\n\t    }\n\t  }\n\t  const resolverFn = (...args) => {\n\t    if (!isAborted) {\n\t      process.nextTick(() => callback.apply(stream, args));\n\t    }\n\t  };\n\t  PromisePrototypeThen(stream[kIsClosedPromise].promise, resolverFn, resolverFn);\n\t  return nop\n\t}\n\tfunction finished(stream, opts) {\n\t  var _opts;\n\t  let autoCleanup = false;\n\t  if (opts === null) {\n\t    opts = kEmptyObject;\n\t  }\n\t  if ((_opts = opts) !== null && _opts !== undefined && _opts.cleanup) {\n\t    validateBoolean(opts.cleanup, 'cleanup');\n\t    autoCleanup = opts.cleanup;\n\t  }\n\t  return new Promise((resolve, reject) => {\n\t    const cleanup = eos(stream, opts, (err) => {\n\t      if (autoCleanup) {\n\t        cleanup();\n\t      }\n\t      if (err) {\n\t        reject(err);\n\t      } else {\n\t        resolve();\n\t      }\n\t    });\n\t  })\n\t}\n\tendOfStream.exports = eos;\n\tendOfStream.exports.finished = finished;\n\treturn endOfStream.exports;\n}\n\nvar destroy_1;\nvar hasRequiredDestroy;\n\nfunction requireDestroy () {\n\tif (hasRequiredDestroy) return destroy_1;\n\thasRequiredDestroy = 1;\n\n\t/* replacement start */\n\n\tconst process = requireProcess();\n\n\t/* replacement end */\n\n\tconst {\n\t  aggregateTwoErrors,\n\t  codes: { ERR_MULTIPLE_CALLBACK },\n\t  AbortError\n\t} = requireErrors();\n\tconst { Symbol } = requirePrimordials();\n\tconst { kIsDestroyed, isDestroyed, isFinished, isServerRequest } = requireUtils$3();\n\tconst kDestroy = Symbol('kDestroy');\n\tconst kConstruct = Symbol('kConstruct');\n\tfunction checkError(err, w, r) {\n\t  if (err) {\n\t    // Avoid V8 leak, https://github.com/nodejs/node/pull/34103#issuecomment-652002364\n\t    err.stack; // eslint-disable-line no-unused-expressions\n\n\t    if (w && !w.errored) {\n\t      w.errored = err;\n\t    }\n\t    if (r && !r.errored) {\n\t      r.errored = err;\n\t    }\n\t  }\n\t}\n\n\t// Backwards compat. cb() is undocumented and unused in core but\n\t// unfortunately might be used by modules.\n\tfunction destroy(err, cb) {\n\t  const r = this._readableState;\n\t  const w = this._writableState;\n\t  // With duplex streams we use the writable side for state.\n\t  const s = w || r;\n\t  if ((w !== null && w !== undefined && w.destroyed) || (r !== null && r !== undefined && r.destroyed)) {\n\t    if (typeof cb === 'function') {\n\t      cb();\n\t    }\n\t    return this\n\t  }\n\n\t  // We set destroyed to true before firing error callbacks in order\n\t  // to make it re-entrance safe in case destroy() is called within callbacks\n\t  checkError(err, w, r);\n\t  if (w) {\n\t    w.destroyed = true;\n\t  }\n\t  if (r) {\n\t    r.destroyed = true;\n\t  }\n\n\t  // If still constructing then defer calling _destroy.\n\t  if (!s.constructed) {\n\t    this.once(kDestroy, function (er) {\n\t      _destroy(this, aggregateTwoErrors(er, err), cb);\n\t    });\n\t  } else {\n\t    _destroy(this, err, cb);\n\t  }\n\t  return this\n\t}\n\tfunction _destroy(self, err, cb) {\n\t  let called = false;\n\t  function onDestroy(err) {\n\t    if (called) {\n\t      return\n\t    }\n\t    called = true;\n\t    const r = self._readableState;\n\t    const w = self._writableState;\n\t    checkError(err, w, r);\n\t    if (w) {\n\t      w.closed = true;\n\t    }\n\t    if (r) {\n\t      r.closed = true;\n\t    }\n\t    if (typeof cb === 'function') {\n\t      cb(err);\n\t    }\n\t    if (err) {\n\t      process.nextTick(emitErrorCloseNT, self, err);\n\t    } else {\n\t      process.nextTick(emitCloseNT, self);\n\t    }\n\t  }\n\t  try {\n\t    self._destroy(err || null, onDestroy);\n\t  } catch (err) {\n\t    onDestroy(err);\n\t  }\n\t}\n\tfunction emitErrorCloseNT(self, err) {\n\t  emitErrorNT(self, err);\n\t  emitCloseNT(self);\n\t}\n\tfunction emitCloseNT(self) {\n\t  const r = self._readableState;\n\t  const w = self._writableState;\n\t  if (w) {\n\t    w.closeEmitted = true;\n\t  }\n\t  if (r) {\n\t    r.closeEmitted = true;\n\t  }\n\t  if ((w !== null && w !== undefined && w.emitClose) || (r !== null && r !== undefined && r.emitClose)) {\n\t    self.emit('close');\n\t  }\n\t}\n\tfunction emitErrorNT(self, err) {\n\t  const r = self._readableState;\n\t  const w = self._writableState;\n\t  if ((w !== null && w !== undefined && w.errorEmitted) || (r !== null && r !== undefined && r.errorEmitted)) {\n\t    return\n\t  }\n\t  if (w) {\n\t    w.errorEmitted = true;\n\t  }\n\t  if (r) {\n\t    r.errorEmitted = true;\n\t  }\n\t  self.emit('error', err);\n\t}\n\tfunction undestroy() {\n\t  const r = this._readableState;\n\t  const w = this._writableState;\n\t  if (r) {\n\t    r.constructed = true;\n\t    r.closed = false;\n\t    r.closeEmitted = false;\n\t    r.destroyed = false;\n\t    r.errored = null;\n\t    r.errorEmitted = false;\n\t    r.reading = false;\n\t    r.ended = r.readable === false;\n\t    r.endEmitted = r.readable === false;\n\t  }\n\t  if (w) {\n\t    w.constructed = true;\n\t    w.destroyed = false;\n\t    w.closed = false;\n\t    w.closeEmitted = false;\n\t    w.errored = null;\n\t    w.errorEmitted = false;\n\t    w.finalCalled = false;\n\t    w.prefinished = false;\n\t    w.ended = w.writable === false;\n\t    w.ending = w.writable === false;\n\t    w.finished = w.writable === false;\n\t  }\n\t}\n\tfunction errorOrDestroy(stream, err, sync) {\n\t  // We have tests that rely on errors being emitted\n\t  // in the same tick, so changing this is semver major.\n\t  // For now when you opt-in to autoDestroy we allow\n\t  // the error to be emitted nextTick. In a future\n\t  // semver major update we should change the default to this.\n\n\t  const r = stream._readableState;\n\t  const w = stream._writableState;\n\t  if ((w !== null && w !== undefined && w.destroyed) || (r !== null && r !== undefined && r.destroyed)) {\n\t    return this\n\t  }\n\t  if ((r !== null && r !== undefined && r.autoDestroy) || (w !== null && w !== undefined && w.autoDestroy))\n\t    stream.destroy(err);\n\t  else if (err) {\n\t    // Avoid V8 leak, https://github.com/nodejs/node/pull/34103#issuecomment-652002364\n\t    err.stack; // eslint-disable-line no-unused-expressions\n\n\t    if (w && !w.errored) {\n\t      w.errored = err;\n\t    }\n\t    if (r && !r.errored) {\n\t      r.errored = err;\n\t    }\n\t    if (sync) {\n\t      process.nextTick(emitErrorNT, stream, err);\n\t    } else {\n\t      emitErrorNT(stream, err);\n\t    }\n\t  }\n\t}\n\tfunction construct(stream, cb) {\n\t  if (typeof stream._construct !== 'function') {\n\t    return\n\t  }\n\t  const r = stream._readableState;\n\t  const w = stream._writableState;\n\t  if (r) {\n\t    r.constructed = false;\n\t  }\n\t  if (w) {\n\t    w.constructed = false;\n\t  }\n\t  stream.once(kConstruct, cb);\n\t  if (stream.listenerCount(kConstruct) > 1) {\n\t    // Duplex\n\t    return\n\t  }\n\t  process.nextTick(constructNT, stream);\n\t}\n\tfunction constructNT(stream) {\n\t  let called = false;\n\t  function onConstruct(err) {\n\t    if (called) {\n\t      errorOrDestroy(stream, err !== null && err !== undefined ? err : new ERR_MULTIPLE_CALLBACK());\n\t      return\n\t    }\n\t    called = true;\n\t    const r = stream._readableState;\n\t    const w = stream._writableState;\n\t    const s = w || r;\n\t    if (r) {\n\t      r.constructed = true;\n\t    }\n\t    if (w) {\n\t      w.constructed = true;\n\t    }\n\t    if (s.destroyed) {\n\t      stream.emit(kDestroy, err);\n\t    } else if (err) {\n\t      errorOrDestroy(stream, err, true);\n\t    } else {\n\t      process.nextTick(emitConstructNT, stream);\n\t    }\n\t  }\n\t  try {\n\t    stream._construct((err) => {\n\t      process.nextTick(onConstruct, err);\n\t    });\n\t  } catch (err) {\n\t    process.nextTick(onConstruct, err);\n\t  }\n\t}\n\tfunction emitConstructNT(stream) {\n\t  stream.emit(kConstruct);\n\t}\n\tfunction isRequest(stream) {\n\t  return (stream === null || stream === undefined ? undefined : stream.setHeader) && typeof stream.abort === 'function'\n\t}\n\tfunction emitCloseLegacy(stream) {\n\t  stream.emit('close');\n\t}\n\tfunction emitErrorCloseLegacy(stream, err) {\n\t  stream.emit('error', err);\n\t  process.nextTick(emitCloseLegacy, stream);\n\t}\n\n\t// Normalize destroy for legacy.\n\tfunction destroyer(stream, err) {\n\t  if (!stream || isDestroyed(stream)) {\n\t    return\n\t  }\n\t  if (!err && !isFinished(stream)) {\n\t    err = new AbortError();\n\t  }\n\n\t  // TODO: Remove isRequest branches.\n\t  if (isServerRequest(stream)) {\n\t    stream.socket = null;\n\t    stream.destroy(err);\n\t  } else if (isRequest(stream)) {\n\t    stream.abort();\n\t  } else if (isRequest(stream.req)) {\n\t    stream.req.abort();\n\t  } else if (typeof stream.destroy === 'function') {\n\t    stream.destroy(err);\n\t  } else if (typeof stream.close === 'function') {\n\t    // TODO: Don't lose err?\n\t    stream.close();\n\t  } else if (err) {\n\t    process.nextTick(emitErrorCloseLegacy, stream, err);\n\t  } else {\n\t    process.nextTick(emitCloseLegacy, stream);\n\t  }\n\t  if (!stream.destroyed) {\n\t    stream[kIsDestroyed] = true;\n\t  }\n\t}\n\tdestroy_1 = {\n\t  construct,\n\t  destroyer,\n\t  destroy,\n\t  undestroy,\n\t  errorOrDestroy\n\t};\n\treturn destroy_1;\n}\n\nvar legacy;\nvar hasRequiredLegacy;\n\nfunction requireLegacy () {\n\tif (hasRequiredLegacy) return legacy;\n\thasRequiredLegacy = 1;\n\n\tconst { ArrayIsArray, ObjectSetPrototypeOf } = requirePrimordials();\n\tconst { EventEmitter: EE } = require$$1$4;\n\tfunction Stream(opts) {\n\t  EE.call(this, opts);\n\t}\n\tObjectSetPrototypeOf(Stream.prototype, EE.prototype);\n\tObjectSetPrototypeOf(Stream, EE);\n\tStream.prototype.pipe = function (dest, options) {\n\t  const source = this;\n\t  function ondata(chunk) {\n\t    if (dest.writable && dest.write(chunk) === false && source.pause) {\n\t      source.pause();\n\t    }\n\t  }\n\t  source.on('data', ondata);\n\t  function ondrain() {\n\t    if (source.readable && source.resume) {\n\t      source.resume();\n\t    }\n\t  }\n\t  dest.on('drain', ondrain);\n\n\t  // If the 'end' option is not supplied, dest.end() will be called when\n\t  // source gets the 'end' or 'close' events.  Only dest.end() once.\n\t  if (!dest._isStdio && (!options || options.end !== false)) {\n\t    source.on('end', onend);\n\t    source.on('close', onclose);\n\t  }\n\t  let didOnEnd = false;\n\t  function onend() {\n\t    if (didOnEnd) return\n\t    didOnEnd = true;\n\t    dest.end();\n\t  }\n\t  function onclose() {\n\t    if (didOnEnd) return\n\t    didOnEnd = true;\n\t    if (typeof dest.destroy === 'function') dest.destroy();\n\t  }\n\n\t  // Don't leave dangling pipes when there are errors.\n\t  function onerror(er) {\n\t    cleanup();\n\t    if (EE.listenerCount(this, 'error') === 0) {\n\t      this.emit('error', er);\n\t    }\n\t  }\n\t  prependListener(source, 'error', onerror);\n\t  prependListener(dest, 'error', onerror);\n\n\t  // Remove all the event listeners that were added.\n\t  function cleanup() {\n\t    source.removeListener('data', ondata);\n\t    dest.removeListener('drain', ondrain);\n\t    source.removeListener('end', onend);\n\t    source.removeListener('close', onclose);\n\t    source.removeListener('error', onerror);\n\t    dest.removeListener('error', onerror);\n\t    source.removeListener('end', cleanup);\n\t    source.removeListener('close', cleanup);\n\t    dest.removeListener('close', cleanup);\n\t  }\n\t  source.on('end', cleanup);\n\t  source.on('close', cleanup);\n\t  dest.on('close', cleanup);\n\t  dest.emit('pipe', source);\n\n\t  // Allow for unix-like usage: A.pipe(B).pipe(C)\n\t  return dest\n\t};\n\tfunction prependListener(emitter, event, fn) {\n\t  // Sadly this is not cacheable as some libraries bundle their own\n\t  // event emitter implementation with them.\n\t  if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn)\n\n\t  // This is a hack to make sure that our error handler is attached before any\n\t  // userland ones.  NEVER DO THIS. This is here only because this code needs\n\t  // to continue to work with older versions of Node.js that do not include\n\t  // the prependListener() method. The goal is to eventually remove this hack.\n\t  if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);\n\t  else if (ArrayIsArray(emitter._events[event])) emitter._events[event].unshift(fn);\n\t  else emitter._events[event] = [fn, emitter._events[event]];\n\t}\n\tlegacy = {\n\t  Stream,\n\t  prependListener\n\t};\n\treturn legacy;\n}\n\nvar addAbortSignal = {exports: {}};\n\nvar hasRequiredAddAbortSignal;\n\nfunction requireAddAbortSignal () {\n\tif (hasRequiredAddAbortSignal) return addAbortSignal.exports;\n\thasRequiredAddAbortSignal = 1;\n\t(function (module) {\n\n\t\tconst { SymbolDispose } = requirePrimordials();\n\t\tconst { AbortError, codes } = requireErrors();\n\t\tconst { isNodeStream, isWebStream, kControllerErrorFunction } = requireUtils$3();\n\t\tconst eos = requireEndOfStream();\n\t\tconst { ERR_INVALID_ARG_TYPE } = codes;\n\t\tlet addAbortListener;\n\n\t\t// This method is inlined here for readable-stream\n\t\t// It also does not allow for signal to not exist on the stream\n\t\t// https://github.com/nodejs/node/pull/36061#discussion_r533718029\n\t\tconst validateAbortSignal = (signal, name) => {\n\t\t  if (typeof signal !== 'object' || !('aborted' in signal)) {\n\t\t    throw new ERR_INVALID_ARG_TYPE(name, 'AbortSignal', signal)\n\t\t  }\n\t\t};\n\t\tmodule.exports.addAbortSignal = function addAbortSignal(signal, stream) {\n\t\t  validateAbortSignal(signal, 'signal');\n\t\t  if (!isNodeStream(stream) && !isWebStream(stream)) {\n\t\t    throw new ERR_INVALID_ARG_TYPE('stream', ['ReadableStream', 'WritableStream', 'Stream'], stream)\n\t\t  }\n\t\t  return module.exports.addAbortSignalNoValidate(signal, stream)\n\t\t};\n\t\tmodule.exports.addAbortSignalNoValidate = function (signal, stream) {\n\t\t  if (typeof signal !== 'object' || !('aborted' in signal)) {\n\t\t    return stream\n\t\t  }\n\t\t  const onAbort = isNodeStream(stream)\n\t\t    ? () => {\n\t\t        stream.destroy(\n\t\t          new AbortError(undefined, {\n\t\t            cause: signal.reason\n\t\t          })\n\t\t        );\n\t\t      }\n\t\t    : () => {\n\t\t        stream[kControllerErrorFunction](\n\t\t          new AbortError(undefined, {\n\t\t            cause: signal.reason\n\t\t          })\n\t\t        );\n\t\t      };\n\t\t  if (signal.aborted) {\n\t\t    onAbort();\n\t\t  } else {\n\t\t    addAbortListener = addAbortListener || requireUtil$2().addAbortListener;\n\t\t    const disposable = addAbortListener(signal, onAbort);\n\t\t    eos(stream, disposable[SymbolDispose]);\n\t\t  }\n\t\t  return stream\n\t\t}; \n\t} (addAbortSignal));\n\treturn addAbortSignal.exports;\n}\n\nvar buffer_list;\nvar hasRequiredBuffer_list;\n\nfunction requireBuffer_list () {\n\tif (hasRequiredBuffer_list) return buffer_list;\n\thasRequiredBuffer_list = 1;\n\n\tconst { StringPrototypeSlice, SymbolIterator, TypedArrayPrototypeSet, Uint8Array } = requirePrimordials();\n\tconst { Buffer } = require$$0$8;\n\tconst { inspect } = requireUtil$2();\n\tbuffer_list = class BufferList {\n\t  constructor() {\n\t    this.head = null;\n\t    this.tail = null;\n\t    this.length = 0;\n\t  }\n\t  push(v) {\n\t    const entry = {\n\t      data: v,\n\t      next: null\n\t    };\n\t    if (this.length > 0) this.tail.next = entry;\n\t    else this.head = entry;\n\t    this.tail = entry;\n\t    ++this.length;\n\t  }\n\t  unshift(v) {\n\t    const entry = {\n\t      data: v,\n\t      next: this.head\n\t    };\n\t    if (this.length === 0) this.tail = entry;\n\t    this.head = entry;\n\t    ++this.length;\n\t  }\n\t  shift() {\n\t    if (this.length === 0) return\n\t    const ret = this.head.data;\n\t    if (this.length === 1) this.head = this.tail = null;\n\t    else this.head = this.head.next;\n\t    --this.length;\n\t    return ret\n\t  }\n\t  clear() {\n\t    this.head = this.tail = null;\n\t    this.length = 0;\n\t  }\n\t  join(s) {\n\t    if (this.length === 0) return ''\n\t    let p = this.head;\n\t    let ret = '' + p.data;\n\t    while ((p = p.next) !== null) ret += s + p.data;\n\t    return ret\n\t  }\n\t  concat(n) {\n\t    if (this.length === 0) return Buffer.alloc(0)\n\t    const ret = Buffer.allocUnsafe(n >>> 0);\n\t    let p = this.head;\n\t    let i = 0;\n\t    while (p) {\n\t      TypedArrayPrototypeSet(ret, p.data, i);\n\t      i += p.data.length;\n\t      p = p.next;\n\t    }\n\t    return ret\n\t  }\n\n\t  // Consumes a specified amount of bytes or characters from the buffered data.\n\t  consume(n, hasStrings) {\n\t    const data = this.head.data;\n\t    if (n < data.length) {\n\t      // `slice` is the same for buffers and strings.\n\t      const slice = data.slice(0, n);\n\t      this.head.data = data.slice(n);\n\t      return slice\n\t    }\n\t    if (n === data.length) {\n\t      // First chunk is a perfect match.\n\t      return this.shift()\n\t    }\n\t    // Result spans more than one buffer.\n\t    return hasStrings ? this._getString(n) : this._getBuffer(n)\n\t  }\n\t  first() {\n\t    return this.head.data\n\t  }\n\t  *[SymbolIterator]() {\n\t    for (let p = this.head; p; p = p.next) {\n\t      yield p.data;\n\t    }\n\t  }\n\n\t  // Consumes a specified amount of characters from the buffered data.\n\t  _getString(n) {\n\t    let ret = '';\n\t    let p = this.head;\n\t    let c = 0;\n\t    do {\n\t      const str = p.data;\n\t      if (n > str.length) {\n\t        ret += str;\n\t        n -= str.length;\n\t      } else {\n\t        if (n === str.length) {\n\t          ret += str;\n\t          ++c;\n\t          if (p.next) this.head = p.next;\n\t          else this.head = this.tail = null;\n\t        } else {\n\t          ret += StringPrototypeSlice(str, 0, n);\n\t          this.head = p;\n\t          p.data = StringPrototypeSlice(str, n);\n\t        }\n\t        break\n\t      }\n\t      ++c;\n\t    } while ((p = p.next) !== null)\n\t    this.length -= c;\n\t    return ret\n\t  }\n\n\t  // Consumes a specified amount of bytes from the buffered data.\n\t  _getBuffer(n) {\n\t    const ret = Buffer.allocUnsafe(n);\n\t    const retLen = n;\n\t    let p = this.head;\n\t    let c = 0;\n\t    do {\n\t      const buf = p.data;\n\t      if (n > buf.length) {\n\t        TypedArrayPrototypeSet(ret, buf, retLen - n);\n\t        n -= buf.length;\n\t      } else {\n\t        if (n === buf.length) {\n\t          TypedArrayPrototypeSet(ret, buf, retLen - n);\n\t          ++c;\n\t          if (p.next) this.head = p.next;\n\t          else this.head = this.tail = null;\n\t        } else {\n\t          TypedArrayPrototypeSet(ret, new Uint8Array(buf.buffer, buf.byteOffset, n), retLen - n);\n\t          this.head = p;\n\t          p.data = buf.slice(n);\n\t        }\n\t        break\n\t      }\n\t      ++c;\n\t    } while ((p = p.next) !== null)\n\t    this.length -= c;\n\t    return ret\n\t  }\n\n\t  // Make sure the linked list only shows the minimal necessary information.\n\t  [Symbol.for('nodejs.util.inspect.custom')](_, options) {\n\t    return inspect(this, {\n\t      ...options,\n\t      // Only inspect one level.\n\t      depth: 0,\n\t      // It should not recurse.\n\t      customInspect: false\n\t    })\n\t  }\n\t};\n\treturn buffer_list;\n}\n\nvar state;\nvar hasRequiredState;\n\nfunction requireState () {\n\tif (hasRequiredState) return state;\n\thasRequiredState = 1;\n\n\tconst { MathFloor, NumberIsInteger } = requirePrimordials();\n\tconst { validateInteger } = requireValidators();\n\tconst { ERR_INVALID_ARG_VALUE } = requireErrors().codes;\n\tlet defaultHighWaterMarkBytes = 16 * 1024;\n\tlet defaultHighWaterMarkObjectMode = 16;\n\tfunction highWaterMarkFrom(options, isDuplex, duplexKey) {\n\t  return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null\n\t}\n\tfunction getDefaultHighWaterMark(objectMode) {\n\t  return objectMode ? defaultHighWaterMarkObjectMode : defaultHighWaterMarkBytes\n\t}\n\tfunction setDefaultHighWaterMark(objectMode, value) {\n\t  validateInteger(value, 'value', 0);\n\t  if (objectMode) {\n\t    defaultHighWaterMarkObjectMode = value;\n\t  } else {\n\t    defaultHighWaterMarkBytes = value;\n\t  }\n\t}\n\tfunction getHighWaterMark(state, options, duplexKey, isDuplex) {\n\t  const hwm = highWaterMarkFrom(options, isDuplex, duplexKey);\n\t  if (hwm != null) {\n\t    if (!NumberIsInteger(hwm) || hwm < 0) {\n\t      const name = isDuplex ? `options.${duplexKey}` : 'options.highWaterMark';\n\t      throw new ERR_INVALID_ARG_VALUE(name, hwm)\n\t    }\n\t    return MathFloor(hwm)\n\t  }\n\n\t  // Default value\n\t  return getDefaultHighWaterMark(state.objectMode)\n\t}\n\tstate = {\n\t  getHighWaterMark,\n\t  getDefaultHighWaterMark,\n\t  setDefaultHighWaterMark\n\t};\n\treturn state;\n}\n\nvar string_decoder = {};\n\nvar safeBuffer = {exports: {}};\n\n/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */\n\nvar hasRequiredSafeBuffer;\n\nfunction requireSafeBuffer () {\n\tif (hasRequiredSafeBuffer) return safeBuffer.exports;\n\thasRequiredSafeBuffer = 1;\n\t(function (module, exports) {\n\t\t/* eslint-disable node/no-deprecated-api */\n\t\tvar buffer = require$$0$8;\n\t\tvar Buffer = buffer.Buffer;\n\n\t\t// alternative to using Object.keys for old browsers\n\t\tfunction copyProps (src, dst) {\n\t\t  for (var key in src) {\n\t\t    dst[key] = src[key];\n\t\t  }\n\t\t}\n\t\tif (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {\n\t\t  module.exports = buffer;\n\t\t} else {\n\t\t  // Copy properties from require('buffer')\n\t\t  copyProps(buffer, exports);\n\t\t  exports.Buffer = SafeBuffer;\n\t\t}\n\n\t\tfunction SafeBuffer (arg, encodingOrOffset, length) {\n\t\t  return Buffer(arg, encodingOrOffset, length)\n\t\t}\n\n\t\tSafeBuffer.prototype = Object.create(Buffer.prototype);\n\n\t\t// Copy static methods from Buffer\n\t\tcopyProps(Buffer, SafeBuffer);\n\n\t\tSafeBuffer.from = function (arg, encodingOrOffset, length) {\n\t\t  if (typeof arg === 'number') {\n\t\t    throw new TypeError('Argument must not be a number')\n\t\t  }\n\t\t  return Buffer(arg, encodingOrOffset, length)\n\t\t};\n\n\t\tSafeBuffer.alloc = function (size, fill, encoding) {\n\t\t  if (typeof size !== 'number') {\n\t\t    throw new TypeError('Argument must be a number')\n\t\t  }\n\t\t  var buf = Buffer(size);\n\t\t  if (fill !== undefined) {\n\t\t    if (typeof encoding === 'string') {\n\t\t      buf.fill(fill, encoding);\n\t\t    } else {\n\t\t      buf.fill(fill);\n\t\t    }\n\t\t  } else {\n\t\t    buf.fill(0);\n\t\t  }\n\t\t  return buf\n\t\t};\n\n\t\tSafeBuffer.allocUnsafe = function (size) {\n\t\t  if (typeof size !== 'number') {\n\t\t    throw new TypeError('Argument must be a number')\n\t\t  }\n\t\t  return Buffer(size)\n\t\t};\n\n\t\tSafeBuffer.allocUnsafeSlow = function (size) {\n\t\t  if (typeof size !== 'number') {\n\t\t    throw new TypeError('Argument must be a number')\n\t\t  }\n\t\t  return buffer.SlowBuffer(size)\n\t\t}; \n\t} (safeBuffer, safeBuffer.exports));\n\treturn safeBuffer.exports;\n}\n\nvar hasRequiredString_decoder;\n\nfunction requireString_decoder () {\n\tif (hasRequiredString_decoder) return string_decoder;\n\thasRequiredString_decoder = 1;\n\n\t/*<replacement>*/\n\n\tvar Buffer = requireSafeBuffer().Buffer;\n\t/*</replacement>*/\n\n\tvar isEncoding = Buffer.isEncoding || function (encoding) {\n\t  encoding = '' + encoding;\n\t  switch (encoding && encoding.toLowerCase()) {\n\t    case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw':\n\t      return true;\n\t    default:\n\t      return false;\n\t  }\n\t};\n\n\tfunction _normalizeEncoding(enc) {\n\t  if (!enc) return 'utf8';\n\t  var retried;\n\t  while (true) {\n\t    switch (enc) {\n\t      case 'utf8':\n\t      case 'utf-8':\n\t        return 'utf8';\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t        return 'utf16le';\n\t      case 'latin1':\n\t      case 'binary':\n\t        return 'latin1';\n\t      case 'base64':\n\t      case 'ascii':\n\t      case 'hex':\n\t        return enc;\n\t      default:\n\t        if (retried) return; // undefined\n\t        enc = ('' + enc).toLowerCase();\n\t        retried = true;\n\t    }\n\t  }\n\t}\n\t// Do not cache `Buffer.isEncoding` when checking encoding names as some\n\t// modules monkey-patch it to support additional encodings\n\tfunction normalizeEncoding(enc) {\n\t  var nenc = _normalizeEncoding(enc);\n\t  if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc);\n\t  return nenc || enc;\n\t}\n\n\t// StringDecoder provides an interface for efficiently splitting a series of\n\t// buffers into a series of JS strings without breaking apart multi-byte\n\t// characters.\n\tstring_decoder.StringDecoder = StringDecoder;\n\tfunction StringDecoder(encoding) {\n\t  this.encoding = normalizeEncoding(encoding);\n\t  var nb;\n\t  switch (this.encoding) {\n\t    case 'utf16le':\n\t      this.text = utf16Text;\n\t      this.end = utf16End;\n\t      nb = 4;\n\t      break;\n\t    case 'utf8':\n\t      this.fillLast = utf8FillLast;\n\t      nb = 4;\n\t      break;\n\t    case 'base64':\n\t      this.text = base64Text;\n\t      this.end = base64End;\n\t      nb = 3;\n\t      break;\n\t    default:\n\t      this.write = simpleWrite;\n\t      this.end = simpleEnd;\n\t      return;\n\t  }\n\t  this.lastNeed = 0;\n\t  this.lastTotal = 0;\n\t  this.lastChar = Buffer.allocUnsafe(nb);\n\t}\n\n\tStringDecoder.prototype.write = function (buf) {\n\t  if (buf.length === 0) return '';\n\t  var r;\n\t  var i;\n\t  if (this.lastNeed) {\n\t    r = this.fillLast(buf);\n\t    if (r === undefined) return '';\n\t    i = this.lastNeed;\n\t    this.lastNeed = 0;\n\t  } else {\n\t    i = 0;\n\t  }\n\t  if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);\n\t  return r || '';\n\t};\n\n\tStringDecoder.prototype.end = utf8End;\n\n\t// Returns only complete characters in a Buffer\n\tStringDecoder.prototype.text = utf8Text;\n\n\t// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer\n\tStringDecoder.prototype.fillLast = function (buf) {\n\t  if (this.lastNeed <= buf.length) {\n\t    buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);\n\t    return this.lastChar.toString(this.encoding, 0, this.lastTotal);\n\t  }\n\t  buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);\n\t  this.lastNeed -= buf.length;\n\t};\n\n\t// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a\n\t// continuation byte. If an invalid byte is detected, -2 is returned.\n\tfunction utf8CheckByte(byte) {\n\t  if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4;\n\t  return byte >> 6 === 0x02 ? -1 : -2;\n\t}\n\n\t// Checks at most 3 bytes at the end of a Buffer in order to detect an\n\t// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4)\n\t// needed to complete the UTF-8 character (if applicable) are returned.\n\tfunction utf8CheckIncomplete(self, buf, i) {\n\t  var j = buf.length - 1;\n\t  if (j < i) return 0;\n\t  var nb = utf8CheckByte(buf[j]);\n\t  if (nb >= 0) {\n\t    if (nb > 0) self.lastNeed = nb - 1;\n\t    return nb;\n\t  }\n\t  if (--j < i || nb === -2) return 0;\n\t  nb = utf8CheckByte(buf[j]);\n\t  if (nb >= 0) {\n\t    if (nb > 0) self.lastNeed = nb - 2;\n\t    return nb;\n\t  }\n\t  if (--j < i || nb === -2) return 0;\n\t  nb = utf8CheckByte(buf[j]);\n\t  if (nb >= 0) {\n\t    if (nb > 0) {\n\t      if (nb === 2) nb = 0;else self.lastNeed = nb - 3;\n\t    }\n\t    return nb;\n\t  }\n\t  return 0;\n\t}\n\n\t// Validates as many continuation bytes for a multi-byte UTF-8 character as\n\t// needed or are available. If we see a non-continuation byte where we expect\n\t// one, we \"replace\" the validated continuation bytes we've seen so far with\n\t// a single UTF-8 replacement character ('\\ufffd'), to match v8's UTF-8 decoding\n\t// behavior. The continuation byte check is included three times in the case\n\t// where all of the continuation bytes for a character exist in the same buffer.\n\t// It is also done this way as a slight performance increase instead of using a\n\t// loop.\n\tfunction utf8CheckExtraBytes(self, buf, p) {\n\t  if ((buf[0] & 0xC0) !== 0x80) {\n\t    self.lastNeed = 0;\n\t    return '\\ufffd';\n\t  }\n\t  if (self.lastNeed > 1 && buf.length > 1) {\n\t    if ((buf[1] & 0xC0) !== 0x80) {\n\t      self.lastNeed = 1;\n\t      return '\\ufffd';\n\t    }\n\t    if (self.lastNeed > 2 && buf.length > 2) {\n\t      if ((buf[2] & 0xC0) !== 0x80) {\n\t        self.lastNeed = 2;\n\t        return '\\ufffd';\n\t      }\n\t    }\n\t  }\n\t}\n\n\t// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer.\n\tfunction utf8FillLast(buf) {\n\t  var p = this.lastTotal - this.lastNeed;\n\t  var r = utf8CheckExtraBytes(this, buf);\n\t  if (r !== undefined) return r;\n\t  if (this.lastNeed <= buf.length) {\n\t    buf.copy(this.lastChar, p, 0, this.lastNeed);\n\t    return this.lastChar.toString(this.encoding, 0, this.lastTotal);\n\t  }\n\t  buf.copy(this.lastChar, p, 0, buf.length);\n\t  this.lastNeed -= buf.length;\n\t}\n\n\t// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a\n\t// partial character, the character's bytes are buffered until the required\n\t// number of bytes are available.\n\tfunction utf8Text(buf, i) {\n\t  var total = utf8CheckIncomplete(this, buf, i);\n\t  if (!this.lastNeed) return buf.toString('utf8', i);\n\t  this.lastTotal = total;\n\t  var end = buf.length - (total - this.lastNeed);\n\t  buf.copy(this.lastChar, 0, end);\n\t  return buf.toString('utf8', i, end);\n\t}\n\n\t// For UTF-8, a replacement character is added when ending on a partial\n\t// character.\n\tfunction utf8End(buf) {\n\t  var r = buf && buf.length ? this.write(buf) : '';\n\t  if (this.lastNeed) return r + '\\ufffd';\n\t  return r;\n\t}\n\n\t// UTF-16LE typically needs two bytes per character, but even if we have an even\n\t// number of bytes available, we need to check if we end on a leading/high\n\t// surrogate. In that case, we need to wait for the next two bytes in order to\n\t// decode the last character properly.\n\tfunction utf16Text(buf, i) {\n\t  if ((buf.length - i) % 2 === 0) {\n\t    var r = buf.toString('utf16le', i);\n\t    if (r) {\n\t      var c = r.charCodeAt(r.length - 1);\n\t      if (c >= 0xD800 && c <= 0xDBFF) {\n\t        this.lastNeed = 2;\n\t        this.lastTotal = 4;\n\t        this.lastChar[0] = buf[buf.length - 2];\n\t        this.lastChar[1] = buf[buf.length - 1];\n\t        return r.slice(0, -1);\n\t      }\n\t    }\n\t    return r;\n\t  }\n\t  this.lastNeed = 1;\n\t  this.lastTotal = 2;\n\t  this.lastChar[0] = buf[buf.length - 1];\n\t  return buf.toString('utf16le', i, buf.length - 1);\n\t}\n\n\t// For UTF-16LE we do not explicitly append special replacement characters if we\n\t// end on a partial character, we simply let v8 handle that.\n\tfunction utf16End(buf) {\n\t  var r = buf && buf.length ? this.write(buf) : '';\n\t  if (this.lastNeed) {\n\t    var end = this.lastTotal - this.lastNeed;\n\t    return r + this.lastChar.toString('utf16le', 0, end);\n\t  }\n\t  return r;\n\t}\n\n\tfunction base64Text(buf, i) {\n\t  var n = (buf.length - i) % 3;\n\t  if (n === 0) return buf.toString('base64', i);\n\t  this.lastNeed = 3 - n;\n\t  this.lastTotal = 3;\n\t  if (n === 1) {\n\t    this.lastChar[0] = buf[buf.length - 1];\n\t  } else {\n\t    this.lastChar[0] = buf[buf.length - 2];\n\t    this.lastChar[1] = buf[buf.length - 1];\n\t  }\n\t  return buf.toString('base64', i, buf.length - n);\n\t}\n\n\tfunction base64End(buf) {\n\t  var r = buf && buf.length ? this.write(buf) : '';\n\t  if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed);\n\t  return r;\n\t}\n\n\t// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex)\n\tfunction simpleWrite(buf) {\n\t  return buf.toString(this.encoding);\n\t}\n\n\tfunction simpleEnd(buf) {\n\t  return buf && buf.length ? this.write(buf) : '';\n\t}\n\treturn string_decoder;\n}\n\nvar from_1;\nvar hasRequiredFrom;\n\nfunction requireFrom () {\n\tif (hasRequiredFrom) return from_1;\n\thasRequiredFrom = 1;\n\n\t/* replacement start */\n\n\tconst process = requireProcess();\n\n\t/* replacement end */\n\n\tconst { PromisePrototypeThen, SymbolAsyncIterator, SymbolIterator } = requirePrimordials();\n\tconst { Buffer } = require$$0$8;\n\tconst { ERR_INVALID_ARG_TYPE, ERR_STREAM_NULL_VALUES } = requireErrors().codes;\n\tfunction from(Readable, iterable, opts) {\n\t  let iterator;\n\t  if (typeof iterable === 'string' || iterable instanceof Buffer) {\n\t    return new Readable({\n\t      objectMode: true,\n\t      ...opts,\n\t      read() {\n\t        this.push(iterable);\n\t        this.push(null);\n\t      }\n\t    })\n\t  }\n\t  let isAsync;\n\t  if (iterable && iterable[SymbolAsyncIterator]) {\n\t    isAsync = true;\n\t    iterator = iterable[SymbolAsyncIterator]();\n\t  } else if (iterable && iterable[SymbolIterator]) {\n\t    isAsync = false;\n\t    iterator = iterable[SymbolIterator]();\n\t  } else {\n\t    throw new ERR_INVALID_ARG_TYPE('iterable', ['Iterable'], iterable)\n\t  }\n\t  const readable = new Readable({\n\t    objectMode: true,\n\t    highWaterMark: 1,\n\t    // TODO(ronag): What options should be allowed?\n\t    ...opts\n\t  });\n\n\t  // Flag to protect against _read\n\t  // being called before last iteration completion.\n\t  let reading = false;\n\t  readable._read = function () {\n\t    if (!reading) {\n\t      reading = true;\n\t      next();\n\t    }\n\t  };\n\t  readable._destroy = function (error, cb) {\n\t    PromisePrototypeThen(\n\t      close(error),\n\t      () => process.nextTick(cb, error),\n\t      // nextTick is here in case cb throws\n\t      (e) => process.nextTick(cb, e || error)\n\t    );\n\t  };\n\t  async function close(error) {\n\t    const hadError = error !== undefined && error !== null;\n\t    const hasThrow = typeof iterator.throw === 'function';\n\t    if (hadError && hasThrow) {\n\t      const { value, done } = await iterator.throw(error);\n\t      await value;\n\t      if (done) {\n\t        return\n\t      }\n\t    }\n\t    if (typeof iterator.return === 'function') {\n\t      const { value } = await iterator.return();\n\t      await value;\n\t    }\n\t  }\n\t  async function next() {\n\t    for (;;) {\n\t      try {\n\t        const { value, done } = isAsync ? await iterator.next() : iterator.next();\n\t        if (done) {\n\t          readable.push(null);\n\t        } else {\n\t          const res = value && typeof value.then === 'function' ? await value : value;\n\t          if (res === null) {\n\t            reading = false;\n\t            throw new ERR_STREAM_NULL_VALUES()\n\t          } else if (readable.push(res)) {\n\t            continue\n\t          } else {\n\t            reading = false;\n\t          }\n\t        }\n\t      } catch (err) {\n\t        readable.destroy(err);\n\t      }\n\t      break\n\t    }\n\t  }\n\t  return readable\n\t}\n\tfrom_1 = from;\n\treturn from_1;\n}\n\nvar readable;\nvar hasRequiredReadable;\n\nfunction requireReadable () {\n\tif (hasRequiredReadable) return readable;\n\thasRequiredReadable = 1;\n\n\t/* replacement start */\n\n\tconst process = requireProcess();\n\n\t/* replacement end */\n\n\tconst {\n\t  ArrayPrototypeIndexOf,\n\t  NumberIsInteger,\n\t  NumberIsNaN,\n\t  NumberParseInt,\n\t  ObjectDefineProperties,\n\t  ObjectKeys,\n\t  ObjectSetPrototypeOf,\n\t  Promise,\n\t  SafeSet,\n\t  SymbolAsyncDispose,\n\t  SymbolAsyncIterator,\n\t  Symbol\n\t} = requirePrimordials();\n\treadable = Readable;\n\tReadable.ReadableState = ReadableState;\n\tconst { EventEmitter: EE } = require$$1$4;\n\tconst { Stream, prependListener } = requireLegacy();\n\tconst { Buffer } = require$$0$8;\n\tconst { addAbortSignal } = requireAddAbortSignal();\n\tconst eos = requireEndOfStream();\n\tlet debug = requireUtil$2().debuglog('stream', (fn) => {\n\t  debug = fn;\n\t});\n\tconst BufferList = requireBuffer_list();\n\tconst destroyImpl = requireDestroy();\n\tconst { getHighWaterMark, getDefaultHighWaterMark } = requireState();\n\tconst {\n\t  aggregateTwoErrors,\n\t  codes: {\n\t    ERR_INVALID_ARG_TYPE,\n\t    ERR_METHOD_NOT_IMPLEMENTED,\n\t    ERR_OUT_OF_RANGE,\n\t    ERR_STREAM_PUSH_AFTER_EOF,\n\t    ERR_STREAM_UNSHIFT_AFTER_END_EVENT\n\t  },\n\t  AbortError\n\t} = requireErrors();\n\tconst { validateObject } = requireValidators();\n\tconst kPaused = Symbol('kPaused');\n\tconst { StringDecoder } = requireString_decoder();\n\tconst from = requireFrom();\n\tObjectSetPrototypeOf(Readable.prototype, Stream.prototype);\n\tObjectSetPrototypeOf(Readable, Stream);\n\tconst nop = () => {};\n\tconst { errorOrDestroy } = destroyImpl;\n\tconst kObjectMode = 1 << 0;\n\tconst kEnded = 1 << 1;\n\tconst kEndEmitted = 1 << 2;\n\tconst kReading = 1 << 3;\n\tconst kConstructed = 1 << 4;\n\tconst kSync = 1 << 5;\n\tconst kNeedReadable = 1 << 6;\n\tconst kEmittedReadable = 1 << 7;\n\tconst kReadableListening = 1 << 8;\n\tconst kResumeScheduled = 1 << 9;\n\tconst kErrorEmitted = 1 << 10;\n\tconst kEmitClose = 1 << 11;\n\tconst kAutoDestroy = 1 << 12;\n\tconst kDestroyed = 1 << 13;\n\tconst kClosed = 1 << 14;\n\tconst kCloseEmitted = 1 << 15;\n\tconst kMultiAwaitDrain = 1 << 16;\n\tconst kReadingMore = 1 << 17;\n\tconst kDataEmitted = 1 << 18;\n\n\t// TODO(benjamingr) it is likely slower to do it this way than with free functions\n\tfunction makeBitMapDescriptor(bit) {\n\t  return {\n\t    enumerable: false,\n\t    get() {\n\t      return (this.state & bit) !== 0\n\t    },\n\t    set(value) {\n\t      if (value) this.state |= bit;\n\t      else this.state &= ~bit;\n\t    }\n\t  }\n\t}\n\tObjectDefineProperties(ReadableState.prototype, {\n\t  objectMode: makeBitMapDescriptor(kObjectMode),\n\t  ended: makeBitMapDescriptor(kEnded),\n\t  endEmitted: makeBitMapDescriptor(kEndEmitted),\n\t  reading: makeBitMapDescriptor(kReading),\n\t  // Stream is still being constructed and cannot be\n\t  // destroyed until construction finished or failed.\n\t  // Async construction is opt in, therefore we start as\n\t  // constructed.\n\t  constructed: makeBitMapDescriptor(kConstructed),\n\t  // A flag to be able to tell if the event 'readable'/'data' is emitted\n\t  // immediately, or on a later tick.  We set this to true at first, because\n\t  // any actions that shouldn't happen until \"later\" should generally also\n\t  // not happen before the first read call.\n\t  sync: makeBitMapDescriptor(kSync),\n\t  // Whenever we return null, then we set a flag to say\n\t  // that we're awaiting a 'readable' event emission.\n\t  needReadable: makeBitMapDescriptor(kNeedReadable),\n\t  emittedReadable: makeBitMapDescriptor(kEmittedReadable),\n\t  readableListening: makeBitMapDescriptor(kReadableListening),\n\t  resumeScheduled: makeBitMapDescriptor(kResumeScheduled),\n\t  // True if the error was already emitted and should not be thrown again.\n\t  errorEmitted: makeBitMapDescriptor(kErrorEmitted),\n\t  emitClose: makeBitMapDescriptor(kEmitClose),\n\t  autoDestroy: makeBitMapDescriptor(kAutoDestroy),\n\t  // Has it been destroyed.\n\t  destroyed: makeBitMapDescriptor(kDestroyed),\n\t  // Indicates whether the stream has finished destroying.\n\t  closed: makeBitMapDescriptor(kClosed),\n\t  // True if close has been emitted or would have been emitted\n\t  // depending on emitClose.\n\t  closeEmitted: makeBitMapDescriptor(kCloseEmitted),\n\t  multiAwaitDrain: makeBitMapDescriptor(kMultiAwaitDrain),\n\t  // If true, a maybeReadMore has been scheduled.\n\t  readingMore: makeBitMapDescriptor(kReadingMore),\n\t  dataEmitted: makeBitMapDescriptor(kDataEmitted)\n\t});\n\tfunction ReadableState(options, stream, isDuplex) {\n\t  // Duplex streams are both readable and writable, but share\n\t  // the same options object.\n\t  // However, some cases require setting options to different\n\t  // values for the readable and the writable sides of the duplex stream.\n\t  // These options can be provided separately as readableXXX and writableXXX.\n\t  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof requireDuplex();\n\n\t  // Bit map field to store ReadableState more effciently with 1 bit per field\n\t  // instead of a V8 slot per field.\n\t  this.state = kEmitClose | kAutoDestroy | kConstructed | kSync;\n\t  // Object stream flag. Used to make read(n) ignore n and to\n\t  // make all the buffer merging and length checks go away.\n\t  if (options && options.objectMode) this.state |= kObjectMode;\n\t  if (isDuplex && options && options.readableObjectMode) this.state |= kObjectMode;\n\n\t  // The point at which it stops calling _read() to fill the buffer\n\t  // Note: 0 is a valid value, means \"don't call _read preemptively ever\"\n\t  this.highWaterMark = options\n\t    ? getHighWaterMark(this, options, 'readableHighWaterMark', isDuplex)\n\t    : getDefaultHighWaterMark(false);\n\n\t  // A linked list is used to store data chunks instead of an array because the\n\t  // linked list can remove elements from the beginning faster than\n\t  // array.shift().\n\t  this.buffer = new BufferList();\n\t  this.length = 0;\n\t  this.pipes = [];\n\t  this.flowing = null;\n\t  this[kPaused] = null;\n\n\t  // Should close be emitted on destroy. Defaults to true.\n\t  if (options && options.emitClose === false) this.state &= -2049;\n\n\t  // Should .destroy() be called after 'end' (and potentially 'finish').\n\t  if (options && options.autoDestroy === false) this.state &= -4097;\n\n\t  // Indicates whether the stream has errored. When true no further\n\t  // _read calls, 'data' or 'readable' events should occur. This is needed\n\t  // since when autoDestroy is disabled we need a way to tell whether the\n\t  // stream has failed.\n\t  this.errored = null;\n\n\t  // Crypto is kind of old and crusty.  Historically, its default string\n\t  // encoding is 'binary' so we have to make this configurable.\n\t  // Everything else in the universe uses 'utf8', though.\n\t  this.defaultEncoding = (options && options.defaultEncoding) || 'utf8';\n\n\t  // Ref the piped dest which we need a drain event on it\n\t  // type: null | Writable | Set<Writable>.\n\t  this.awaitDrainWriters = null;\n\t  this.decoder = null;\n\t  this.encoding = null;\n\t  if (options && options.encoding) {\n\t    this.decoder = new StringDecoder(options.encoding);\n\t    this.encoding = options.encoding;\n\t  }\n\t}\n\tfunction Readable(options) {\n\t  if (!(this instanceof Readable)) return new Readable(options)\n\n\t  // Checking for a Stream.Duplex instance is faster here instead of inside\n\t  // the ReadableState constructor, at least with V8 6.5.\n\t  const isDuplex = this instanceof requireDuplex();\n\t  this._readableState = new ReadableState(options, this, isDuplex);\n\t  if (options) {\n\t    if (typeof options.read === 'function') this._read = options.read;\n\t    if (typeof options.destroy === 'function') this._destroy = options.destroy;\n\t    if (typeof options.construct === 'function') this._construct = options.construct;\n\t    if (options.signal && !isDuplex) addAbortSignal(options.signal, this);\n\t  }\n\t  Stream.call(this, options);\n\t  destroyImpl.construct(this, () => {\n\t    if (this._readableState.needReadable) {\n\t      maybeReadMore(this, this._readableState);\n\t    }\n\t  });\n\t}\n\tReadable.prototype.destroy = destroyImpl.destroy;\n\tReadable.prototype._undestroy = destroyImpl.undestroy;\n\tReadable.prototype._destroy = function (err, cb) {\n\t  cb(err);\n\t};\n\tReadable.prototype[EE.captureRejectionSymbol] = function (err) {\n\t  this.destroy(err);\n\t};\n\tReadable.prototype[SymbolAsyncDispose] = function () {\n\t  let error;\n\t  if (!this.destroyed) {\n\t    error = this.readableEnded ? null : new AbortError();\n\t    this.destroy(error);\n\t  }\n\t  return new Promise((resolve, reject) => eos(this, (err) => (err && err !== error ? reject(err) : resolve(null))))\n\t};\n\n\t// Manually shove something into the read() buffer.\n\t// This returns true if the highWaterMark has not been hit yet,\n\t// similar to how Writable.write() returns true if you should\n\t// write() some more.\n\tReadable.prototype.push = function (chunk, encoding) {\n\t  return readableAddChunk(this, chunk, encoding, false)\n\t};\n\n\t// Unshift should *always* be something directly out of read().\n\tReadable.prototype.unshift = function (chunk, encoding) {\n\t  return readableAddChunk(this, chunk, encoding, true)\n\t};\n\tfunction readableAddChunk(stream, chunk, encoding, addToFront) {\n\t  debug('readableAddChunk', chunk);\n\t  const state = stream._readableState;\n\t  let err;\n\t  if ((state.state & kObjectMode) === 0) {\n\t    if (typeof chunk === 'string') {\n\t      encoding = encoding || state.defaultEncoding;\n\t      if (state.encoding !== encoding) {\n\t        if (addToFront && state.encoding) {\n\t          // When unshifting, if state.encoding is set, we have to save\n\t          // the string in the BufferList with the state encoding.\n\t          chunk = Buffer.from(chunk, encoding).toString(state.encoding);\n\t        } else {\n\t          chunk = Buffer.from(chunk, encoding);\n\t          encoding = '';\n\t        }\n\t      }\n\t    } else if (chunk instanceof Buffer) {\n\t      encoding = '';\n\t    } else if (Stream._isUint8Array(chunk)) {\n\t      chunk = Stream._uint8ArrayToBuffer(chunk);\n\t      encoding = '';\n\t    } else if (chunk != null) {\n\t      err = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer', 'Uint8Array'], chunk);\n\t    }\n\t  }\n\t  if (err) {\n\t    errorOrDestroy(stream, err);\n\t  } else if (chunk === null) {\n\t    state.state &= -9;\n\t    onEofChunk(stream, state);\n\t  } else if ((state.state & kObjectMode) !== 0 || (chunk && chunk.length > 0)) {\n\t    if (addToFront) {\n\t      if ((state.state & kEndEmitted) !== 0) errorOrDestroy(stream, new ERR_STREAM_UNSHIFT_AFTER_END_EVENT());\n\t      else if (state.destroyed || state.errored) return false\n\t      else addChunk(stream, state, chunk, true);\n\t    } else if (state.ended) {\n\t      errorOrDestroy(stream, new ERR_STREAM_PUSH_AFTER_EOF());\n\t    } else if (state.destroyed || state.errored) {\n\t      return false\n\t    } else {\n\t      state.state &= -9;\n\t      if (state.decoder && !encoding) {\n\t        chunk = state.decoder.write(chunk);\n\t        if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);\n\t        else maybeReadMore(stream, state);\n\t      } else {\n\t        addChunk(stream, state, chunk, false);\n\t      }\n\t    }\n\t  } else if (!addToFront) {\n\t    state.state &= -9;\n\t    maybeReadMore(stream, state);\n\t  }\n\n\t  // We can push more data if we are below the highWaterMark.\n\t  // Also, if we have no data yet, we can stand some more bytes.\n\t  // This is to work around cases where hwm=0, such as the repl.\n\t  return !state.ended && (state.length < state.highWaterMark || state.length === 0)\n\t}\n\tfunction addChunk(stream, state, chunk, addToFront) {\n\t  if (state.flowing && state.length === 0 && !state.sync && stream.listenerCount('data') > 0) {\n\t    // Use the guard to avoid creating `Set()` repeatedly\n\t    // when we have multiple pipes.\n\t    if ((state.state & kMultiAwaitDrain) !== 0) {\n\t      state.awaitDrainWriters.clear();\n\t    } else {\n\t      state.awaitDrainWriters = null;\n\t    }\n\t    state.dataEmitted = true;\n\t    stream.emit('data', chunk);\n\t  } else {\n\t    // Update the buffer info.\n\t    state.length += state.objectMode ? 1 : chunk.length;\n\t    if (addToFront) state.buffer.unshift(chunk);\n\t    else state.buffer.push(chunk);\n\t    if ((state.state & kNeedReadable) !== 0) emitReadable(stream);\n\t  }\n\t  maybeReadMore(stream, state);\n\t}\n\tReadable.prototype.isPaused = function () {\n\t  const state = this._readableState;\n\t  return state[kPaused] === true || state.flowing === false\n\t};\n\n\t// Backwards compatibility.\n\tReadable.prototype.setEncoding = function (enc) {\n\t  const decoder = new StringDecoder(enc);\n\t  this._readableState.decoder = decoder;\n\t  // If setEncoding(null), decoder.encoding equals utf8.\n\t  this._readableState.encoding = this._readableState.decoder.encoding;\n\t  const buffer = this._readableState.buffer;\n\t  // Iterate over current buffer to convert already stored Buffers:\n\t  let content = '';\n\t  for (const data of buffer) {\n\t    content += decoder.write(data);\n\t  }\n\t  buffer.clear();\n\t  if (content !== '') buffer.push(content);\n\t  this._readableState.length = content.length;\n\t  return this\n\t};\n\n\t// Don't raise the hwm > 1GB.\n\tconst MAX_HWM = 0x40000000;\n\tfunction computeNewHighWaterMark(n) {\n\t  if (n > MAX_HWM) {\n\t    throw new ERR_OUT_OF_RANGE('size', '<= 1GiB', n)\n\t  } else {\n\t    // Get the next highest power of 2 to prevent increasing hwm excessively in\n\t    // tiny amounts.\n\t    n--;\n\t    n |= n >>> 1;\n\t    n |= n >>> 2;\n\t    n |= n >>> 4;\n\t    n |= n >>> 8;\n\t    n |= n >>> 16;\n\t    n++;\n\t  }\n\t  return n\n\t}\n\n\t// This function is designed to be inlinable, so please take care when making\n\t// changes to the function body.\n\tfunction howMuchToRead(n, state) {\n\t  if (n <= 0 || (state.length === 0 && state.ended)) return 0\n\t  if ((state.state & kObjectMode) !== 0) return 1\n\t  if (NumberIsNaN(n)) {\n\t    // Only flow one buffer at a time.\n\t    if (state.flowing && state.length) return state.buffer.first().length\n\t    return state.length\n\t  }\n\t  if (n <= state.length) return n\n\t  return state.ended ? state.length : 0\n\t}\n\n\t// You can override either this method, or the async _read(n) below.\n\tReadable.prototype.read = function (n) {\n\t  debug('read', n);\n\t  // Same as parseInt(undefined, 10), however V8 7.3 performance regressed\n\t  // in this scenario, so we are doing it manually.\n\t  if (n === undefined) {\n\t    n = NaN;\n\t  } else if (!NumberIsInteger(n)) {\n\t    n = NumberParseInt(n, 10);\n\t  }\n\t  const state = this._readableState;\n\t  const nOrig = n;\n\n\t  // If we're asking for more than the current hwm, then raise the hwm.\n\t  if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n);\n\t  if (n !== 0) state.state &= -129;\n\n\t  // If we're doing read(0) to trigger a readable event, but we\n\t  // already have a bunch of data in the buffer, then just trigger\n\t  // the 'readable' event and move on.\n\t  if (\n\t    n === 0 &&\n\t    state.needReadable &&\n\t    ((state.highWaterMark !== 0 ? state.length >= state.highWaterMark : state.length > 0) || state.ended)\n\t  ) {\n\t    debug('read: emitReadable', state.length, state.ended);\n\t    if (state.length === 0 && state.ended) endReadable(this);\n\t    else emitReadable(this);\n\t    return null\n\t  }\n\t  n = howMuchToRead(n, state);\n\n\t  // If we've ended, and we're now clear, then finish it up.\n\t  if (n === 0 && state.ended) {\n\t    if (state.length === 0) endReadable(this);\n\t    return null\n\t  }\n\n\t  // All the actual chunk generation logic needs to be\n\t  // *below* the call to _read.  The reason is that in certain\n\t  // synthetic stream cases, such as passthrough streams, _read\n\t  // may be a completely synchronous operation which may change\n\t  // the state of the read buffer, providing enough data when\n\t  // before there was *not* enough.\n\t  //\n\t  // So, the steps are:\n\t  // 1. Figure out what the state of things will be after we do\n\t  // a read from the buffer.\n\t  //\n\t  // 2. If that resulting state will trigger a _read, then call _read.\n\t  // Note that this may be asynchronous, or synchronous.  Yes, it is\n\t  // deeply ugly to write APIs this way, but that still doesn't mean\n\t  // that the Readable class should behave improperly, as streams are\n\t  // designed to be sync/async agnostic.\n\t  // Take note if the _read call is sync or async (ie, if the read call\n\t  // has returned yet), so that we know whether or not it's safe to emit\n\t  // 'readable' etc.\n\t  //\n\t  // 3. Actually pull the requested chunks out of the buffer and return.\n\n\t  // if we need a readable event, then we need to do some reading.\n\t  let doRead = (state.state & kNeedReadable) !== 0;\n\t  debug('need readable', doRead);\n\n\t  // If we currently have less than the highWaterMark, then also read some.\n\t  if (state.length === 0 || state.length - n < state.highWaterMark) {\n\t    doRead = true;\n\t    debug('length less than watermark', doRead);\n\t  }\n\n\t  // However, if we've ended, then there's no point, if we're already\n\t  // reading, then it's unnecessary, if we're constructing we have to wait,\n\t  // and if we're destroyed or errored, then it's not allowed,\n\t  if (state.ended || state.reading || state.destroyed || state.errored || !state.constructed) {\n\t    doRead = false;\n\t    debug('reading, ended or constructing', doRead);\n\t  } else if (doRead) {\n\t    debug('do read');\n\t    state.state |= kReading | kSync;\n\t    // If the length is currently zero, then we *need* a readable event.\n\t    if (state.length === 0) state.state |= kNeedReadable;\n\n\t    // Call internal read method\n\t    try {\n\t      this._read(state.highWaterMark);\n\t    } catch (err) {\n\t      errorOrDestroy(this, err);\n\t    }\n\t    state.state &= -33;\n\n\t    // If _read pushed data synchronously, then `reading` will be false,\n\t    // and we need to re-evaluate how much data we can return to the user.\n\t    if (!state.reading) n = howMuchToRead(nOrig, state);\n\t  }\n\t  let ret;\n\t  if (n > 0) ret = fromList(n, state);\n\t  else ret = null;\n\t  if (ret === null) {\n\t    state.needReadable = state.length <= state.highWaterMark;\n\t    n = 0;\n\t  } else {\n\t    state.length -= n;\n\t    if (state.multiAwaitDrain) {\n\t      state.awaitDrainWriters.clear();\n\t    } else {\n\t      state.awaitDrainWriters = null;\n\t    }\n\t  }\n\t  if (state.length === 0) {\n\t    // If we have nothing in the buffer, then we want to know\n\t    // as soon as we *do* get something into the buffer.\n\t    if (!state.ended) state.needReadable = true;\n\n\t    // If we tried to read() past the EOF, then emit end on the next tick.\n\t    if (nOrig !== n && state.ended) endReadable(this);\n\t  }\n\t  if (ret !== null && !state.errorEmitted && !state.closeEmitted) {\n\t    state.dataEmitted = true;\n\t    this.emit('data', ret);\n\t  }\n\t  return ret\n\t};\n\tfunction onEofChunk(stream, state) {\n\t  debug('onEofChunk');\n\t  if (state.ended) return\n\t  if (state.decoder) {\n\t    const chunk = state.decoder.end();\n\t    if (chunk && chunk.length) {\n\t      state.buffer.push(chunk);\n\t      state.length += state.objectMode ? 1 : chunk.length;\n\t    }\n\t  }\n\t  state.ended = true;\n\t  if (state.sync) {\n\t    // If we are sync, wait until next tick to emit the data.\n\t    // Otherwise we risk emitting data in the flow()\n\t    // the readable code triggers during a read() call.\n\t    emitReadable(stream);\n\t  } else {\n\t    // Emit 'readable' now to make sure it gets picked up.\n\t    state.needReadable = false;\n\t    state.emittedReadable = true;\n\t    // We have to emit readable now that we are EOF. Modules\n\t    // in the ecosystem (e.g. dicer) rely on this event being sync.\n\t    emitReadable_(stream);\n\t  }\n\t}\n\n\t// Don't emit readable right away in sync mode, because this can trigger\n\t// another read() call => stack overflow.  This way, it might trigger\n\t// a nextTick recursion warning, but that's not so bad.\n\tfunction emitReadable(stream) {\n\t  const state = stream._readableState;\n\t  debug('emitReadable', state.needReadable, state.emittedReadable);\n\t  state.needReadable = false;\n\t  if (!state.emittedReadable) {\n\t    debug('emitReadable', state.flowing);\n\t    state.emittedReadable = true;\n\t    process.nextTick(emitReadable_, stream);\n\t  }\n\t}\n\tfunction emitReadable_(stream) {\n\t  const state = stream._readableState;\n\t  debug('emitReadable_', state.destroyed, state.length, state.ended);\n\t  if (!state.destroyed && !state.errored && (state.length || state.ended)) {\n\t    stream.emit('readable');\n\t    state.emittedReadable = false;\n\t  }\n\n\t  // The stream needs another readable event if:\n\t  // 1. It is not flowing, as the flow mechanism will take\n\t  //    care of it.\n\t  // 2. It is not ended.\n\t  // 3. It is below the highWaterMark, so we can schedule\n\t  //    another readable later.\n\t  state.needReadable = !state.flowing && !state.ended && state.length <= state.highWaterMark;\n\t  flow(stream);\n\t}\n\n\t// At this point, the user has presumably seen the 'readable' event,\n\t// and called read() to consume some data.  that may have triggered\n\t// in turn another _read(n) call, in which case reading = true if\n\t// it's in progress.\n\t// However, if we're not ended, or reading, and the length < hwm,\n\t// then go ahead and try to read some more preemptively.\n\tfunction maybeReadMore(stream, state) {\n\t  if (!state.readingMore && state.constructed) {\n\t    state.readingMore = true;\n\t    process.nextTick(maybeReadMore_, stream, state);\n\t  }\n\t}\n\tfunction maybeReadMore_(stream, state) {\n\t  // Attempt to read more data if we should.\n\t  //\n\t  // The conditions for reading more data are (one of):\n\t  // - Not enough data buffered (state.length < state.highWaterMark). The loop\n\t  //   is responsible for filling the buffer with enough data if such data\n\t  //   is available. If highWaterMark is 0 and we are not in the flowing mode\n\t  //   we should _not_ attempt to buffer any extra data. We'll get more data\n\t  //   when the stream consumer calls read() instead.\n\t  // - No data in the buffer, and the stream is in flowing mode. In this mode\n\t  //   the loop below is responsible for ensuring read() is called. Failing to\n\t  //   call read here would abort the flow and there's no other mechanism for\n\t  //   continuing the flow if the stream consumer has just subscribed to the\n\t  //   'data' event.\n\t  //\n\t  // In addition to the above conditions to keep reading data, the following\n\t  // conditions prevent the data from being read:\n\t  // - The stream has ended (state.ended).\n\t  // - There is already a pending 'read' operation (state.reading). This is a\n\t  //   case where the stream has called the implementation defined _read()\n\t  //   method, but they are processing the call asynchronously and have _not_\n\t  //   called push() with new data. In this case we skip performing more\n\t  //   read()s. The execution ends in this method again after the _read() ends\n\t  //   up calling push() with more data.\n\t  while (\n\t    !state.reading &&\n\t    !state.ended &&\n\t    (state.length < state.highWaterMark || (state.flowing && state.length === 0))\n\t  ) {\n\t    const len = state.length;\n\t    debug('maybeReadMore read 0');\n\t    stream.read(0);\n\t    if (len === state.length)\n\t      // Didn't get any data, stop spinning.\n\t      break\n\t  }\n\t  state.readingMore = false;\n\t}\n\n\t// Abstract method.  to be overridden in specific implementation classes.\n\t// call cb(er, data) where data is <= n in length.\n\t// for virtual (non-string, non-buffer) streams, \"length\" is somewhat\n\t// arbitrary, and perhaps not very meaningful.\n\tReadable.prototype._read = function (n) {\n\t  throw new ERR_METHOD_NOT_IMPLEMENTED('_read()')\n\t};\n\tReadable.prototype.pipe = function (dest, pipeOpts) {\n\t  const src = this;\n\t  const state = this._readableState;\n\t  if (state.pipes.length === 1) {\n\t    if (!state.multiAwaitDrain) {\n\t      state.multiAwaitDrain = true;\n\t      state.awaitDrainWriters = new SafeSet(state.awaitDrainWriters ? [state.awaitDrainWriters] : []);\n\t    }\n\t  }\n\t  state.pipes.push(dest);\n\t  debug('pipe count=%d opts=%j', state.pipes.length, pipeOpts);\n\t  const doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr;\n\t  const endFn = doEnd ? onend : unpipe;\n\t  if (state.endEmitted) process.nextTick(endFn);\n\t  else src.once('end', endFn);\n\t  dest.on('unpipe', onunpipe);\n\t  function onunpipe(readable, unpipeInfo) {\n\t    debug('onunpipe');\n\t    if (readable === src) {\n\t      if (unpipeInfo && unpipeInfo.hasUnpiped === false) {\n\t        unpipeInfo.hasUnpiped = true;\n\t        cleanup();\n\t      }\n\t    }\n\t  }\n\t  function onend() {\n\t    debug('onend');\n\t    dest.end();\n\t  }\n\t  let ondrain;\n\t  let cleanedUp = false;\n\t  function cleanup() {\n\t    debug('cleanup');\n\t    // Cleanup event handlers once the pipe is broken.\n\t    dest.removeListener('close', onclose);\n\t    dest.removeListener('finish', onfinish);\n\t    if (ondrain) {\n\t      dest.removeListener('drain', ondrain);\n\t    }\n\t    dest.removeListener('error', onerror);\n\t    dest.removeListener('unpipe', onunpipe);\n\t    src.removeListener('end', onend);\n\t    src.removeListener('end', unpipe);\n\t    src.removeListener('data', ondata);\n\t    cleanedUp = true;\n\n\t    // If the reader is waiting for a drain event from this\n\t    // specific writer, then it would cause it to never start\n\t    // flowing again.\n\t    // So, if this is awaiting a drain, then we just call it now.\n\t    // If we don't know, then assume that we are waiting for one.\n\t    if (ondrain && state.awaitDrainWriters && (!dest._writableState || dest._writableState.needDrain)) ondrain();\n\t  }\n\t  function pause() {\n\t    // If the user unpiped during `dest.write()`, it is possible\n\t    // to get stuck in a permanently paused state if that write\n\t    // also returned false.\n\t    // => Check whether `dest` is still a piping destination.\n\t    if (!cleanedUp) {\n\t      if (state.pipes.length === 1 && state.pipes[0] === dest) {\n\t        debug('false write response, pause', 0);\n\t        state.awaitDrainWriters = dest;\n\t        state.multiAwaitDrain = false;\n\t      } else if (state.pipes.length > 1 && state.pipes.includes(dest)) {\n\t        debug('false write response, pause', state.awaitDrainWriters.size);\n\t        state.awaitDrainWriters.add(dest);\n\t      }\n\t      src.pause();\n\t    }\n\t    if (!ondrain) {\n\t      // When the dest drains, it reduces the awaitDrain counter\n\t      // on the source.  This would be more elegant with a .once()\n\t      // handler in flow(), but adding and removing repeatedly is\n\t      // too slow.\n\t      ondrain = pipeOnDrain(src, dest);\n\t      dest.on('drain', ondrain);\n\t    }\n\t  }\n\t  src.on('data', ondata);\n\t  function ondata(chunk) {\n\t    debug('ondata');\n\t    const ret = dest.write(chunk);\n\t    debug('dest.write', ret);\n\t    if (ret === false) {\n\t      pause();\n\t    }\n\t  }\n\n\t  // If the dest has an error, then stop piping into it.\n\t  // However, don't suppress the throwing behavior for this.\n\t  function onerror(er) {\n\t    debug('onerror', er);\n\t    unpipe();\n\t    dest.removeListener('error', onerror);\n\t    if (dest.listenerCount('error') === 0) {\n\t      const s = dest._writableState || dest._readableState;\n\t      if (s && !s.errorEmitted) {\n\t        // User incorrectly emitted 'error' directly on the stream.\n\t        errorOrDestroy(dest, er);\n\t      } else {\n\t        dest.emit('error', er);\n\t      }\n\t    }\n\t  }\n\n\t  // Make sure our error handler is attached before userland ones.\n\t  prependListener(dest, 'error', onerror);\n\n\t  // Both close and finish should trigger unpipe, but only once.\n\t  function onclose() {\n\t    dest.removeListener('finish', onfinish);\n\t    unpipe();\n\t  }\n\t  dest.once('close', onclose);\n\t  function onfinish() {\n\t    debug('onfinish');\n\t    dest.removeListener('close', onclose);\n\t    unpipe();\n\t  }\n\t  dest.once('finish', onfinish);\n\t  function unpipe() {\n\t    debug('unpipe');\n\t    src.unpipe(dest);\n\t  }\n\n\t  // Tell the dest that it's being piped to.\n\t  dest.emit('pipe', src);\n\n\t  // Start the flow if it hasn't been started already.\n\n\t  if (dest.writableNeedDrain === true) {\n\t    pause();\n\t  } else if (!state.flowing) {\n\t    debug('pipe resume');\n\t    src.resume();\n\t  }\n\t  return dest\n\t};\n\tfunction pipeOnDrain(src, dest) {\n\t  return function pipeOnDrainFunctionResult() {\n\t    const state = src._readableState;\n\n\t    // `ondrain` will call directly,\n\t    // `this` maybe not a reference to dest,\n\t    // so we use the real dest here.\n\t    if (state.awaitDrainWriters === dest) {\n\t      debug('pipeOnDrain', 1);\n\t      state.awaitDrainWriters = null;\n\t    } else if (state.multiAwaitDrain) {\n\t      debug('pipeOnDrain', state.awaitDrainWriters.size);\n\t      state.awaitDrainWriters.delete(dest);\n\t    }\n\t    if ((!state.awaitDrainWriters || state.awaitDrainWriters.size === 0) && src.listenerCount('data')) {\n\t      src.resume();\n\t    }\n\t  }\n\t}\n\tReadable.prototype.unpipe = function (dest) {\n\t  const state = this._readableState;\n\t  const unpipeInfo = {\n\t    hasUnpiped: false\n\t  };\n\n\t  // If we're not piping anywhere, then do nothing.\n\t  if (state.pipes.length === 0) return this\n\t  if (!dest) {\n\t    // remove all.\n\t    const dests = state.pipes;\n\t    state.pipes = [];\n\t    this.pause();\n\t    for (let i = 0; i < dests.length; i++)\n\t      dests[i].emit('unpipe', this, {\n\t        hasUnpiped: false\n\t      });\n\t    return this\n\t  }\n\n\t  // Try to find the right one.\n\t  const index = ArrayPrototypeIndexOf(state.pipes, dest);\n\t  if (index === -1) return this\n\t  state.pipes.splice(index, 1);\n\t  if (state.pipes.length === 0) this.pause();\n\t  dest.emit('unpipe', this, unpipeInfo);\n\t  return this\n\t};\n\n\t// Set up data events if they are asked for\n\t// Ensure readable listeners eventually get something.\n\tReadable.prototype.on = function (ev, fn) {\n\t  const res = Stream.prototype.on.call(this, ev, fn);\n\t  const state = this._readableState;\n\t  if (ev === 'data') {\n\t    // Update readableListening so that resume() may be a no-op\n\t    // a few lines down. This is needed to support once('readable').\n\t    state.readableListening = this.listenerCount('readable') > 0;\n\n\t    // Try start flowing on next tick if stream isn't explicitly paused.\n\t    if (state.flowing !== false) this.resume();\n\t  } else if (ev === 'readable') {\n\t    if (!state.endEmitted && !state.readableListening) {\n\t      state.readableListening = state.needReadable = true;\n\t      state.flowing = false;\n\t      state.emittedReadable = false;\n\t      debug('on readable', state.length, state.reading);\n\t      if (state.length) {\n\t        emitReadable(this);\n\t      } else if (!state.reading) {\n\t        process.nextTick(nReadingNextTick, this);\n\t      }\n\t    }\n\t  }\n\t  return res\n\t};\n\tReadable.prototype.addListener = Readable.prototype.on;\n\tReadable.prototype.removeListener = function (ev, fn) {\n\t  const res = Stream.prototype.removeListener.call(this, ev, fn);\n\t  if (ev === 'readable') {\n\t    // We need to check if there is someone still listening to\n\t    // readable and reset the state. However this needs to happen\n\t    // after readable has been emitted but before I/O (nextTick) to\n\t    // support once('readable', fn) cycles. This means that calling\n\t    // resume within the same tick will have no\n\t    // effect.\n\t    process.nextTick(updateReadableListening, this);\n\t  }\n\t  return res\n\t};\n\tReadable.prototype.off = Readable.prototype.removeListener;\n\tReadable.prototype.removeAllListeners = function (ev) {\n\t  const res = Stream.prototype.removeAllListeners.apply(this, arguments);\n\t  if (ev === 'readable' || ev === undefined) {\n\t    // We need to check if there is someone still listening to\n\t    // readable and reset the state. However this needs to happen\n\t    // after readable has been emitted but before I/O (nextTick) to\n\t    // support once('readable', fn) cycles. This means that calling\n\t    // resume within the same tick will have no\n\t    // effect.\n\t    process.nextTick(updateReadableListening, this);\n\t  }\n\t  return res\n\t};\n\tfunction updateReadableListening(self) {\n\t  const state = self._readableState;\n\t  state.readableListening = self.listenerCount('readable') > 0;\n\t  if (state.resumeScheduled && state[kPaused] === false) {\n\t    // Flowing needs to be set to true now, otherwise\n\t    // the upcoming resume will not flow.\n\t    state.flowing = true;\n\n\t    // Crude way to check if we should resume.\n\t  } else if (self.listenerCount('data') > 0) {\n\t    self.resume();\n\t  } else if (!state.readableListening) {\n\t    state.flowing = null;\n\t  }\n\t}\n\tfunction nReadingNextTick(self) {\n\t  debug('readable nexttick read 0');\n\t  self.read(0);\n\t}\n\n\t// pause() and resume() are remnants of the legacy readable stream API\n\t// If the user uses them, then switch into old mode.\n\tReadable.prototype.resume = function () {\n\t  const state = this._readableState;\n\t  if (!state.flowing) {\n\t    debug('resume');\n\t    // We flow only if there is no one listening\n\t    // for readable, but we still have to call\n\t    // resume().\n\t    state.flowing = !state.readableListening;\n\t    resume(this, state);\n\t  }\n\t  state[kPaused] = false;\n\t  return this\n\t};\n\tfunction resume(stream, state) {\n\t  if (!state.resumeScheduled) {\n\t    state.resumeScheduled = true;\n\t    process.nextTick(resume_, stream, state);\n\t  }\n\t}\n\tfunction resume_(stream, state) {\n\t  debug('resume', state.reading);\n\t  if (!state.reading) {\n\t    stream.read(0);\n\t  }\n\t  state.resumeScheduled = false;\n\t  stream.emit('resume');\n\t  flow(stream);\n\t  if (state.flowing && !state.reading) stream.read(0);\n\t}\n\tReadable.prototype.pause = function () {\n\t  debug('call pause flowing=%j', this._readableState.flowing);\n\t  if (this._readableState.flowing !== false) {\n\t    debug('pause');\n\t    this._readableState.flowing = false;\n\t    this.emit('pause');\n\t  }\n\t  this._readableState[kPaused] = true;\n\t  return this\n\t};\n\tfunction flow(stream) {\n\t  const state = stream._readableState;\n\t  debug('flow', state.flowing);\n\t  while (state.flowing && stream.read() !== null);\n\t}\n\n\t// Wrap an old-style stream as the async data source.\n\t// This is *not* part of the readable stream interface.\n\t// It is an ugly unfortunate mess of history.\n\tReadable.prototype.wrap = function (stream) {\n\t  let paused = false;\n\n\t  // TODO (ronag): Should this.destroy(err) emit\n\t  // 'error' on the wrapped stream? Would require\n\t  // a static factory method, e.g. Readable.wrap(stream).\n\n\t  stream.on('data', (chunk) => {\n\t    if (!this.push(chunk) && stream.pause) {\n\t      paused = true;\n\t      stream.pause();\n\t    }\n\t  });\n\t  stream.on('end', () => {\n\t    this.push(null);\n\t  });\n\t  stream.on('error', (err) => {\n\t    errorOrDestroy(this, err);\n\t  });\n\t  stream.on('close', () => {\n\t    this.destroy();\n\t  });\n\t  stream.on('destroy', () => {\n\t    this.destroy();\n\t  });\n\t  this._read = () => {\n\t    if (paused && stream.resume) {\n\t      paused = false;\n\t      stream.resume();\n\t    }\n\t  };\n\n\t  // Proxy all the other methods. Important when wrapping filters and duplexes.\n\t  const streamKeys = ObjectKeys(stream);\n\t  for (let j = 1; j < streamKeys.length; j++) {\n\t    const i = streamKeys[j];\n\t    if (this[i] === undefined && typeof stream[i] === 'function') {\n\t      this[i] = stream[i].bind(stream);\n\t    }\n\t  }\n\t  return this\n\t};\n\tReadable.prototype[SymbolAsyncIterator] = function () {\n\t  return streamToAsyncIterator(this)\n\t};\n\tReadable.prototype.iterator = function (options) {\n\t  if (options !== undefined) {\n\t    validateObject(options, 'options');\n\t  }\n\t  return streamToAsyncIterator(this, options)\n\t};\n\tfunction streamToAsyncIterator(stream, options) {\n\t  if (typeof stream.read !== 'function') {\n\t    stream = Readable.wrap(stream, {\n\t      objectMode: true\n\t    });\n\t  }\n\t  const iter = createAsyncIterator(stream, options);\n\t  iter.stream = stream;\n\t  return iter\n\t}\n\tasync function* createAsyncIterator(stream, options) {\n\t  let callback = nop;\n\t  function next(resolve) {\n\t    if (this === stream) {\n\t      callback();\n\t      callback = nop;\n\t    } else {\n\t      callback = resolve;\n\t    }\n\t  }\n\t  stream.on('readable', next);\n\t  let error;\n\t  const cleanup = eos(\n\t    stream,\n\t    {\n\t      writable: false\n\t    },\n\t    (err) => {\n\t      error = err ? aggregateTwoErrors(error, err) : null;\n\t      callback();\n\t      callback = nop;\n\t    }\n\t  );\n\t  try {\n\t    while (true) {\n\t      const chunk = stream.destroyed ? null : stream.read();\n\t      if (chunk !== null) {\n\t        yield chunk;\n\t      } else if (error) {\n\t        throw error\n\t      } else if (error === null) {\n\t        return\n\t      } else {\n\t        await new Promise(next);\n\t      }\n\t    }\n\t  } catch (err) {\n\t    error = aggregateTwoErrors(error, err);\n\t    throw error\n\t  } finally {\n\t    if (\n\t      (error || (options === null || options === undefined ? undefined : options.destroyOnReturn) !== false) &&\n\t      (error === undefined || stream._readableState.autoDestroy)\n\t    ) {\n\t      destroyImpl.destroyer(stream, null);\n\t    } else {\n\t      stream.off('readable', next);\n\t      cleanup();\n\t    }\n\t  }\n\t}\n\n\t// Making it explicit these properties are not enumerable\n\t// because otherwise some prototype manipulation in\n\t// userland will fail.\n\tObjectDefineProperties(Readable.prototype, {\n\t  readable: {\n\t    __proto__: null,\n\t    get() {\n\t      const r = this._readableState;\n\t      // r.readable === false means that this is part of a Duplex stream\n\t      // where the readable side was disabled upon construction.\n\t      // Compat. The user might manually disable readable side through\n\t      // deprecated setter.\n\t      return !!r && r.readable !== false && !r.destroyed && !r.errorEmitted && !r.endEmitted\n\t    },\n\t    set(val) {\n\t      // Backwards compat.\n\t      if (this._readableState) {\n\t        this._readableState.readable = !!val;\n\t      }\n\t    }\n\t  },\n\t  readableDidRead: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get: function () {\n\t      return this._readableState.dataEmitted\n\t    }\n\t  },\n\t  readableAborted: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get: function () {\n\t      return !!(\n\t        this._readableState.readable !== false &&\n\t        (this._readableState.destroyed || this._readableState.errored) &&\n\t        !this._readableState.endEmitted\n\t      )\n\t    }\n\t  },\n\t  readableHighWaterMark: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get: function () {\n\t      return this._readableState.highWaterMark\n\t    }\n\t  },\n\t  readableBuffer: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get: function () {\n\t      return this._readableState && this._readableState.buffer\n\t    }\n\t  },\n\t  readableFlowing: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get: function () {\n\t      return this._readableState.flowing\n\t    },\n\t    set: function (state) {\n\t      if (this._readableState) {\n\t        this._readableState.flowing = state;\n\t      }\n\t    }\n\t  },\n\t  readableLength: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get() {\n\t      return this._readableState.length\n\t    }\n\t  },\n\t  readableObjectMode: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get() {\n\t      return this._readableState ? this._readableState.objectMode : false\n\t    }\n\t  },\n\t  readableEncoding: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get() {\n\t      return this._readableState ? this._readableState.encoding : null\n\t    }\n\t  },\n\t  errored: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get() {\n\t      return this._readableState ? this._readableState.errored : null\n\t    }\n\t  },\n\t  closed: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._readableState ? this._readableState.closed : false\n\t    }\n\t  },\n\t  destroyed: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get() {\n\t      return this._readableState ? this._readableState.destroyed : false\n\t    },\n\t    set(value) {\n\t      // We ignore the value if the stream\n\t      // has not been initialized yet.\n\t      if (!this._readableState) {\n\t        return\n\t      }\n\n\t      // Backward compatibility, the user is explicitly\n\t      // managing destroyed.\n\t      this._readableState.destroyed = value;\n\t    }\n\t  },\n\t  readableEnded: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get() {\n\t      return this._readableState ? this._readableState.endEmitted : false\n\t    }\n\t  }\n\t});\n\tObjectDefineProperties(ReadableState.prototype, {\n\t  // Legacy getter for `pipesCount`.\n\t  pipesCount: {\n\t    __proto__: null,\n\t    get() {\n\t      return this.pipes.length\n\t    }\n\t  },\n\t  // Legacy property for `paused`.\n\t  paused: {\n\t    __proto__: null,\n\t    get() {\n\t      return this[kPaused] !== false\n\t    },\n\t    set(value) {\n\t      this[kPaused] = !!value;\n\t    }\n\t  }\n\t});\n\n\t// Exposed for testing purposes only.\n\tReadable._fromList = fromList;\n\n\t// Pluck off n bytes from an array of buffers.\n\t// Length is the combined lengths of all the buffers in the list.\n\t// This function is designed to be inlinable, so please take care when making\n\t// changes to the function body.\n\tfunction fromList(n, state) {\n\t  // nothing buffered.\n\t  if (state.length === 0) return null\n\t  let ret;\n\t  if (state.objectMode) ret = state.buffer.shift();\n\t  else if (!n || n >= state.length) {\n\t    // Read it all, truncate the list.\n\t    if (state.decoder) ret = state.buffer.join('');\n\t    else if (state.buffer.length === 1) ret = state.buffer.first();\n\t    else ret = state.buffer.concat(state.length);\n\t    state.buffer.clear();\n\t  } else {\n\t    // read part of list.\n\t    ret = state.buffer.consume(n, state.decoder);\n\t  }\n\t  return ret\n\t}\n\tfunction endReadable(stream) {\n\t  const state = stream._readableState;\n\t  debug('endReadable', state.endEmitted);\n\t  if (!state.endEmitted) {\n\t    state.ended = true;\n\t    process.nextTick(endReadableNT, state, stream);\n\t  }\n\t}\n\tfunction endReadableNT(state, stream) {\n\t  debug('endReadableNT', state.endEmitted, state.length);\n\n\t  // Check that we didn't get one last unshift.\n\t  if (!state.errored && !state.closeEmitted && !state.endEmitted && state.length === 0) {\n\t    state.endEmitted = true;\n\t    stream.emit('end');\n\t    if (stream.writable && stream.allowHalfOpen === false) {\n\t      process.nextTick(endWritableNT, stream);\n\t    } else if (state.autoDestroy) {\n\t      // In case of duplex streams we need a way to detect\n\t      // if the writable side is ready for autoDestroy as well.\n\t      const wState = stream._writableState;\n\t      const autoDestroy =\n\t        !wState ||\n\t        (wState.autoDestroy &&\n\t          // We don't expect the writable to ever 'finish'\n\t          // if writable is explicitly set to false.\n\t          (wState.finished || wState.writable === false));\n\t      if (autoDestroy) {\n\t        stream.destroy();\n\t      }\n\t    }\n\t  }\n\t}\n\tfunction endWritableNT(stream) {\n\t  const writable = stream.writable && !stream.writableEnded && !stream.destroyed;\n\t  if (writable) {\n\t    stream.end();\n\t  }\n\t}\n\tReadable.from = function (iterable, opts) {\n\t  return from(Readable, iterable, opts)\n\t};\n\tlet webStreamsAdapters;\n\n\t// Lazy to avoid circular references\n\tfunction lazyWebStreams() {\n\t  if (webStreamsAdapters === undefined) webStreamsAdapters = {};\n\t  return webStreamsAdapters\n\t}\n\tReadable.fromWeb = function (readableStream, options) {\n\t  return lazyWebStreams().newStreamReadableFromReadableStream(readableStream, options)\n\t};\n\tReadable.toWeb = function (streamReadable, options) {\n\t  return lazyWebStreams().newReadableStreamFromStreamReadable(streamReadable, options)\n\t};\n\tReadable.wrap = function (src, options) {\n\t  var _ref, _src$readableObjectMo;\n\t  return new Readable({\n\t    objectMode:\n\t      (_ref =\n\t        (_src$readableObjectMo = src.readableObjectMode) !== null && _src$readableObjectMo !== undefined\n\t          ? _src$readableObjectMo\n\t          : src.objectMode) !== null && _ref !== undefined\n\t        ? _ref\n\t        : true,\n\t    ...options,\n\t    destroy(err, callback) {\n\t      destroyImpl.destroyer(src, err);\n\t      callback(err);\n\t    }\n\t  }).wrap(src)\n\t};\n\treturn readable;\n}\n\nvar writable;\nvar hasRequiredWritable;\n\nfunction requireWritable () {\n\tif (hasRequiredWritable) return writable;\n\thasRequiredWritable = 1;\n\n\t/* replacement start */\n\n\tconst process = requireProcess();\n\n\t/* replacement end */\n\n\tconst {\n\t  ArrayPrototypeSlice,\n\t  Error,\n\t  FunctionPrototypeSymbolHasInstance,\n\t  ObjectDefineProperty,\n\t  ObjectDefineProperties,\n\t  ObjectSetPrototypeOf,\n\t  StringPrototypeToLowerCase,\n\t  Symbol,\n\t  SymbolHasInstance\n\t} = requirePrimordials();\n\twritable = Writable;\n\tWritable.WritableState = WritableState;\n\tconst { EventEmitter: EE } = require$$1$4;\n\tconst Stream = requireLegacy().Stream;\n\tconst { Buffer } = require$$0$8;\n\tconst destroyImpl = requireDestroy();\n\tconst { addAbortSignal } = requireAddAbortSignal();\n\tconst { getHighWaterMark, getDefaultHighWaterMark } = requireState();\n\tconst {\n\t  ERR_INVALID_ARG_TYPE,\n\t  ERR_METHOD_NOT_IMPLEMENTED,\n\t  ERR_MULTIPLE_CALLBACK,\n\t  ERR_STREAM_CANNOT_PIPE,\n\t  ERR_STREAM_DESTROYED,\n\t  ERR_STREAM_ALREADY_FINISHED,\n\t  ERR_STREAM_NULL_VALUES,\n\t  ERR_STREAM_WRITE_AFTER_END,\n\t  ERR_UNKNOWN_ENCODING\n\t} = requireErrors().codes;\n\tconst { errorOrDestroy } = destroyImpl;\n\tObjectSetPrototypeOf(Writable.prototype, Stream.prototype);\n\tObjectSetPrototypeOf(Writable, Stream);\n\tfunction nop() {}\n\tconst kOnFinished = Symbol('kOnFinished');\n\tfunction WritableState(options, stream, isDuplex) {\n\t  // Duplex streams are both readable and writable, but share\n\t  // the same options object.\n\t  // However, some cases require setting options to different\n\t  // values for the readable and the writable sides of the duplex stream,\n\t  // e.g. options.readableObjectMode vs. options.writableObjectMode, etc.\n\t  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof requireDuplex();\n\n\t  // Object stream flag to indicate whether or not this stream\n\t  // contains buffers or objects.\n\t  this.objectMode = !!(options && options.objectMode);\n\t  if (isDuplex) this.objectMode = this.objectMode || !!(options && options.writableObjectMode);\n\n\t  // The point at which write() starts returning false\n\t  // Note: 0 is a valid value, means that we always return false if\n\t  // the entire buffer is not flushed immediately on write().\n\t  this.highWaterMark = options\n\t    ? getHighWaterMark(this, options, 'writableHighWaterMark', isDuplex)\n\t    : getDefaultHighWaterMark(false);\n\n\t  // if _final has been called.\n\t  this.finalCalled = false;\n\n\t  // drain event flag.\n\t  this.needDrain = false;\n\t  // At the start of calling end()\n\t  this.ending = false;\n\t  // When end() has been called, and returned.\n\t  this.ended = false;\n\t  // When 'finish' is emitted.\n\t  this.finished = false;\n\n\t  // Has it been destroyed\n\t  this.destroyed = false;\n\n\t  // Should we decode strings into buffers before passing to _write?\n\t  // this is here so that some node-core streams can optimize string\n\t  // handling at a lower level.\n\t  const noDecode = !!(options && options.decodeStrings === false);\n\t  this.decodeStrings = !noDecode;\n\n\t  // Crypto is kind of old and crusty.  Historically, its default string\n\t  // encoding is 'binary' so we have to make this configurable.\n\t  // Everything else in the universe uses 'utf8', though.\n\t  this.defaultEncoding = (options && options.defaultEncoding) || 'utf8';\n\n\t  // Not an actual buffer we keep track of, but a measurement\n\t  // of how much we're waiting to get pushed to some underlying\n\t  // socket or file.\n\t  this.length = 0;\n\n\t  // A flag to see when we're in the middle of a write.\n\t  this.writing = false;\n\n\t  // When true all writes will be buffered until .uncork() call.\n\t  this.corked = 0;\n\n\t  // A flag to be able to tell if the onwrite cb is called immediately,\n\t  // or on a later tick.  We set this to true at first, because any\n\t  // actions that shouldn't happen until \"later\" should generally also\n\t  // not happen before the first write call.\n\t  this.sync = true;\n\n\t  // A flag to know if we're processing previously buffered items, which\n\t  // may call the _write() callback in the same tick, so that we don't\n\t  // end up in an overlapped onwrite situation.\n\t  this.bufferProcessing = false;\n\n\t  // The callback that's passed to _write(chunk, cb).\n\t  this.onwrite = onwrite.bind(undefined, stream);\n\n\t  // The callback that the user supplies to write(chunk, encoding, cb).\n\t  this.writecb = null;\n\n\t  // The amount that is being written when _write is called.\n\t  this.writelen = 0;\n\n\t  // Storage for data passed to the afterWrite() callback in case of\n\t  // synchronous _write() completion.\n\t  this.afterWriteTickInfo = null;\n\t  resetBuffer(this);\n\n\t  // Number of pending user-supplied write callbacks\n\t  // this must be 0 before 'finish' can be emitted.\n\t  this.pendingcb = 0;\n\n\t  // Stream is still being constructed and cannot be\n\t  // destroyed until construction finished or failed.\n\t  // Async construction is opt in, therefore we start as\n\t  // constructed.\n\t  this.constructed = true;\n\n\t  // Emit prefinish if the only thing we're waiting for is _write cbs\n\t  // This is relevant for synchronous Transform streams.\n\t  this.prefinished = false;\n\n\t  // True if the error was already emitted and should not be thrown again.\n\t  this.errorEmitted = false;\n\n\t  // Should close be emitted on destroy. Defaults to true.\n\t  this.emitClose = !options || options.emitClose !== false;\n\n\t  // Should .destroy() be called after 'finish' (and potentially 'end').\n\t  this.autoDestroy = !options || options.autoDestroy !== false;\n\n\t  // Indicates whether the stream has errored. When true all write() calls\n\t  // should return false. This is needed since when autoDestroy\n\t  // is disabled we need a way to tell whether the stream has failed.\n\t  this.errored = null;\n\n\t  // Indicates whether the stream has finished destroying.\n\t  this.closed = false;\n\n\t  // True if close has been emitted or would have been emitted\n\t  // depending on emitClose.\n\t  this.closeEmitted = false;\n\t  this[kOnFinished] = [];\n\t}\n\tfunction resetBuffer(state) {\n\t  state.buffered = [];\n\t  state.bufferedIndex = 0;\n\t  state.allBuffers = true;\n\t  state.allNoop = true;\n\t}\n\tWritableState.prototype.getBuffer = function getBuffer() {\n\t  return ArrayPrototypeSlice(this.buffered, this.bufferedIndex)\n\t};\n\tObjectDefineProperty(WritableState.prototype, 'bufferedRequestCount', {\n\t  __proto__: null,\n\t  get() {\n\t    return this.buffered.length - this.bufferedIndex\n\t  }\n\t});\n\tfunction Writable(options) {\n\t  // Writable ctor is applied to Duplexes, too.\n\t  // `realHasInstance` is necessary because using plain `instanceof`\n\t  // would return false, as no `_writableState` property is attached.\n\n\t  // Trying to use the custom `instanceof` for Writable here will also break the\n\t  // Node.js LazyTransform implementation, which has a non-trivial getter for\n\t  // `_writableState` that would lead to infinite recursion.\n\n\t  // Checking for a Stream.Duplex instance is faster here instead of inside\n\t  // the WritableState constructor, at least with V8 6.5.\n\t  const isDuplex = this instanceof requireDuplex();\n\t  if (!isDuplex && !FunctionPrototypeSymbolHasInstance(Writable, this)) return new Writable(options)\n\t  this._writableState = new WritableState(options, this, isDuplex);\n\t  if (options) {\n\t    if (typeof options.write === 'function') this._write = options.write;\n\t    if (typeof options.writev === 'function') this._writev = options.writev;\n\t    if (typeof options.destroy === 'function') this._destroy = options.destroy;\n\t    if (typeof options.final === 'function') this._final = options.final;\n\t    if (typeof options.construct === 'function') this._construct = options.construct;\n\t    if (options.signal) addAbortSignal(options.signal, this);\n\t  }\n\t  Stream.call(this, options);\n\t  destroyImpl.construct(this, () => {\n\t    const state = this._writableState;\n\t    if (!state.writing) {\n\t      clearBuffer(this, state);\n\t    }\n\t    finishMaybe(this, state);\n\t  });\n\t}\n\tObjectDefineProperty(Writable, SymbolHasInstance, {\n\t  __proto__: null,\n\t  value: function (object) {\n\t    if (FunctionPrototypeSymbolHasInstance(this, object)) return true\n\t    if (this !== Writable) return false\n\t    return object && object._writableState instanceof WritableState\n\t  }\n\t});\n\n\t// Otherwise people can pipe Writable streams, which is just wrong.\n\tWritable.prototype.pipe = function () {\n\t  errorOrDestroy(this, new ERR_STREAM_CANNOT_PIPE());\n\t};\n\tfunction _write(stream, chunk, encoding, cb) {\n\t  const state = stream._writableState;\n\t  if (typeof encoding === 'function') {\n\t    cb = encoding;\n\t    encoding = state.defaultEncoding;\n\t  } else {\n\t    if (!encoding) encoding = state.defaultEncoding;\n\t    else if (encoding !== 'buffer' && !Buffer.isEncoding(encoding)) throw new ERR_UNKNOWN_ENCODING(encoding)\n\t    if (typeof cb !== 'function') cb = nop;\n\t  }\n\t  if (chunk === null) {\n\t    throw new ERR_STREAM_NULL_VALUES()\n\t  } else if (!state.objectMode) {\n\t    if (typeof chunk === 'string') {\n\t      if (state.decodeStrings !== false) {\n\t        chunk = Buffer.from(chunk, encoding);\n\t        encoding = 'buffer';\n\t      }\n\t    } else if (chunk instanceof Buffer) {\n\t      encoding = 'buffer';\n\t    } else if (Stream._isUint8Array(chunk)) {\n\t      chunk = Stream._uint8ArrayToBuffer(chunk);\n\t      encoding = 'buffer';\n\t    } else {\n\t      throw new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer', 'Uint8Array'], chunk)\n\t    }\n\t  }\n\t  let err;\n\t  if (state.ending) {\n\t    err = new ERR_STREAM_WRITE_AFTER_END();\n\t  } else if (state.destroyed) {\n\t    err = new ERR_STREAM_DESTROYED('write');\n\t  }\n\t  if (err) {\n\t    process.nextTick(cb, err);\n\t    errorOrDestroy(stream, err, true);\n\t    return err\n\t  }\n\t  state.pendingcb++;\n\t  return writeOrBuffer(stream, state, chunk, encoding, cb)\n\t}\n\tWritable.prototype.write = function (chunk, encoding, cb) {\n\t  return _write(this, chunk, encoding, cb) === true\n\t};\n\tWritable.prototype.cork = function () {\n\t  this._writableState.corked++;\n\t};\n\tWritable.prototype.uncork = function () {\n\t  const state = this._writableState;\n\t  if (state.corked) {\n\t    state.corked--;\n\t    if (!state.writing) clearBuffer(this, state);\n\t  }\n\t};\n\tWritable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {\n\t  // node::ParseEncoding() requires lower case.\n\t  if (typeof encoding === 'string') encoding = StringPrototypeToLowerCase(encoding);\n\t  if (!Buffer.isEncoding(encoding)) throw new ERR_UNKNOWN_ENCODING(encoding)\n\t  this._writableState.defaultEncoding = encoding;\n\t  return this\n\t};\n\n\t// If we're already writing something, then just put this\n\t// in the queue, and wait our turn.  Otherwise, call _write\n\t// If we return false, then we need a drain event, so set that flag.\n\tfunction writeOrBuffer(stream, state, chunk, encoding, callback) {\n\t  const len = state.objectMode ? 1 : chunk.length;\n\t  state.length += len;\n\n\t  // stream._write resets state.length\n\t  const ret = state.length < state.highWaterMark;\n\t  // We must ensure that previous needDrain will not be reset to false.\n\t  if (!ret) state.needDrain = true;\n\t  if (state.writing || state.corked || state.errored || !state.constructed) {\n\t    state.buffered.push({\n\t      chunk,\n\t      encoding,\n\t      callback\n\t    });\n\t    if (state.allBuffers && encoding !== 'buffer') {\n\t      state.allBuffers = false;\n\t    }\n\t    if (state.allNoop && callback !== nop) {\n\t      state.allNoop = false;\n\t    }\n\t  } else {\n\t    state.writelen = len;\n\t    state.writecb = callback;\n\t    state.writing = true;\n\t    state.sync = true;\n\t    stream._write(chunk, encoding, state.onwrite);\n\t    state.sync = false;\n\t  }\n\n\t  // Return false if errored or destroyed in order to break\n\t  // any synchronous while(stream.write(data)) loops.\n\t  return ret && !state.errored && !state.destroyed\n\t}\n\tfunction doWrite(stream, state, writev, len, chunk, encoding, cb) {\n\t  state.writelen = len;\n\t  state.writecb = cb;\n\t  state.writing = true;\n\t  state.sync = true;\n\t  if (state.destroyed) state.onwrite(new ERR_STREAM_DESTROYED('write'));\n\t  else if (writev) stream._writev(chunk, state.onwrite);\n\t  else stream._write(chunk, encoding, state.onwrite);\n\t  state.sync = false;\n\t}\n\tfunction onwriteError(stream, state, er, cb) {\n\t  --state.pendingcb;\n\t  cb(er);\n\t  // Ensure callbacks are invoked even when autoDestroy is\n\t  // not enabled. Passing `er` here doesn't make sense since\n\t  // it's related to one specific write, not to the buffered\n\t  // writes.\n\t  errorBuffer(state);\n\t  // This can emit error, but error must always follow cb.\n\t  errorOrDestroy(stream, er);\n\t}\n\tfunction onwrite(stream, er) {\n\t  const state = stream._writableState;\n\t  const sync = state.sync;\n\t  const cb = state.writecb;\n\t  if (typeof cb !== 'function') {\n\t    errorOrDestroy(stream, new ERR_MULTIPLE_CALLBACK());\n\t    return\n\t  }\n\t  state.writing = false;\n\t  state.writecb = null;\n\t  state.length -= state.writelen;\n\t  state.writelen = 0;\n\t  if (er) {\n\t    // Avoid V8 leak, https://github.com/nodejs/node/pull/34103#issuecomment-652002364\n\t    er.stack; // eslint-disable-line no-unused-expressions\n\n\t    if (!state.errored) {\n\t      state.errored = er;\n\t    }\n\n\t    // In case of duplex streams we need to notify the readable side of the\n\t    // error.\n\t    if (stream._readableState && !stream._readableState.errored) {\n\t      stream._readableState.errored = er;\n\t    }\n\t    if (sync) {\n\t      process.nextTick(onwriteError, stream, state, er, cb);\n\t    } else {\n\t      onwriteError(stream, state, er, cb);\n\t    }\n\t  } else {\n\t    if (state.buffered.length > state.bufferedIndex) {\n\t      clearBuffer(stream, state);\n\t    }\n\t    if (sync) {\n\t      // It is a common case that the callback passed to .write() is always\n\t      // the same. In that case, we do not schedule a new nextTick(), but\n\t      // rather just increase a counter, to improve performance and avoid\n\t      // memory allocations.\n\t      if (state.afterWriteTickInfo !== null && state.afterWriteTickInfo.cb === cb) {\n\t        state.afterWriteTickInfo.count++;\n\t      } else {\n\t        state.afterWriteTickInfo = {\n\t          count: 1,\n\t          cb,\n\t          stream,\n\t          state\n\t        };\n\t        process.nextTick(afterWriteTick, state.afterWriteTickInfo);\n\t      }\n\t    } else {\n\t      afterWrite(stream, state, 1, cb);\n\t    }\n\t  }\n\t}\n\tfunction afterWriteTick({ stream, state, count, cb }) {\n\t  state.afterWriteTickInfo = null;\n\t  return afterWrite(stream, state, count, cb)\n\t}\n\tfunction afterWrite(stream, state, count, cb) {\n\t  const needDrain = !state.ending && !stream.destroyed && state.length === 0 && state.needDrain;\n\t  if (needDrain) {\n\t    state.needDrain = false;\n\t    stream.emit('drain');\n\t  }\n\t  while (count-- > 0) {\n\t    state.pendingcb--;\n\t    cb();\n\t  }\n\t  if (state.destroyed) {\n\t    errorBuffer(state);\n\t  }\n\t  finishMaybe(stream, state);\n\t}\n\n\t// If there's something in the buffer waiting, then invoke callbacks.\n\tfunction errorBuffer(state) {\n\t  if (state.writing) {\n\t    return\n\t  }\n\t  for (let n = state.bufferedIndex; n < state.buffered.length; ++n) {\n\t    var _state$errored;\n\t    const { chunk, callback } = state.buffered[n];\n\t    const len = state.objectMode ? 1 : chunk.length;\n\t    state.length -= len;\n\t    callback(\n\t      (_state$errored = state.errored) !== null && _state$errored !== undefined\n\t        ? _state$errored\n\t        : new ERR_STREAM_DESTROYED('write')\n\t    );\n\t  }\n\t  const onfinishCallbacks = state[kOnFinished].splice(0);\n\t  for (let i = 0; i < onfinishCallbacks.length; i++) {\n\t    var _state$errored2;\n\t    onfinishCallbacks[i](\n\t      (_state$errored2 = state.errored) !== null && _state$errored2 !== undefined\n\t        ? _state$errored2\n\t        : new ERR_STREAM_DESTROYED('end')\n\t    );\n\t  }\n\t  resetBuffer(state);\n\t}\n\n\t// If there's something in the buffer waiting, then process it.\n\tfunction clearBuffer(stream, state) {\n\t  if (state.corked || state.bufferProcessing || state.destroyed || !state.constructed) {\n\t    return\n\t  }\n\t  const { buffered, bufferedIndex, objectMode } = state;\n\t  const bufferedLength = buffered.length - bufferedIndex;\n\t  if (!bufferedLength) {\n\t    return\n\t  }\n\t  let i = bufferedIndex;\n\t  state.bufferProcessing = true;\n\t  if (bufferedLength > 1 && stream._writev) {\n\t    state.pendingcb -= bufferedLength - 1;\n\t    const callback = state.allNoop\n\t      ? nop\n\t      : (err) => {\n\t          for (let n = i; n < buffered.length; ++n) {\n\t            buffered[n].callback(err);\n\t          }\n\t        };\n\t    // Make a copy of `buffered` if it's going to be used by `callback` above,\n\t    // since `doWrite` will mutate the array.\n\t    const chunks = state.allNoop && i === 0 ? buffered : ArrayPrototypeSlice(buffered, i);\n\t    chunks.allBuffers = state.allBuffers;\n\t    doWrite(stream, state, true, state.length, chunks, '', callback);\n\t    resetBuffer(state);\n\t  } else {\n\t    do {\n\t      const { chunk, encoding, callback } = buffered[i];\n\t      buffered[i++] = null;\n\t      const len = objectMode ? 1 : chunk.length;\n\t      doWrite(stream, state, false, len, chunk, encoding, callback);\n\t    } while (i < buffered.length && !state.writing)\n\t    if (i === buffered.length) {\n\t      resetBuffer(state);\n\t    } else if (i > 256) {\n\t      buffered.splice(0, i);\n\t      state.bufferedIndex = 0;\n\t    } else {\n\t      state.bufferedIndex = i;\n\t    }\n\t  }\n\t  state.bufferProcessing = false;\n\t}\n\tWritable.prototype._write = function (chunk, encoding, cb) {\n\t  if (this._writev) {\n\t    this._writev(\n\t      [\n\t        {\n\t          chunk,\n\t          encoding\n\t        }\n\t      ],\n\t      cb\n\t    );\n\t  } else {\n\t    throw new ERR_METHOD_NOT_IMPLEMENTED('_write()')\n\t  }\n\t};\n\tWritable.prototype._writev = null;\n\tWritable.prototype.end = function (chunk, encoding, cb) {\n\t  const state = this._writableState;\n\t  if (typeof chunk === 'function') {\n\t    cb = chunk;\n\t    chunk = null;\n\t    encoding = null;\n\t  } else if (typeof encoding === 'function') {\n\t    cb = encoding;\n\t    encoding = null;\n\t  }\n\t  let err;\n\t  if (chunk !== null && chunk !== undefined) {\n\t    const ret = _write(this, chunk, encoding);\n\t    if (ret instanceof Error) {\n\t      err = ret;\n\t    }\n\t  }\n\n\t  // .end() fully uncorks.\n\t  if (state.corked) {\n\t    state.corked = 1;\n\t    this.uncork();\n\t  }\n\t  if (err) ; else if (!state.errored && !state.ending) {\n\t    // This is forgiving in terms of unnecessary calls to end() and can hide\n\t    // logic errors. However, usually such errors are harmless and causing a\n\t    // hard error can be disproportionately destructive. It is not always\n\t    // trivial for the user to determine whether end() needs to be called\n\t    // or not.\n\n\t    state.ending = true;\n\t    finishMaybe(this, state, true);\n\t    state.ended = true;\n\t  } else if (state.finished) {\n\t    err = new ERR_STREAM_ALREADY_FINISHED('end');\n\t  } else if (state.destroyed) {\n\t    err = new ERR_STREAM_DESTROYED('end');\n\t  }\n\t  if (typeof cb === 'function') {\n\t    if (err || state.finished) {\n\t      process.nextTick(cb, err);\n\t    } else {\n\t      state[kOnFinished].push(cb);\n\t    }\n\t  }\n\t  return this\n\t};\n\tfunction needFinish(state) {\n\t  return (\n\t    state.ending &&\n\t    !state.destroyed &&\n\t    state.constructed &&\n\t    state.length === 0 &&\n\t    !state.errored &&\n\t    state.buffered.length === 0 &&\n\t    !state.finished &&\n\t    !state.writing &&\n\t    !state.errorEmitted &&\n\t    !state.closeEmitted\n\t  )\n\t}\n\tfunction callFinal(stream, state) {\n\t  let called = false;\n\t  function onFinish(err) {\n\t    if (called) {\n\t      errorOrDestroy(stream, err !== null && err !== undefined ? err : ERR_MULTIPLE_CALLBACK());\n\t      return\n\t    }\n\t    called = true;\n\t    state.pendingcb--;\n\t    if (err) {\n\t      const onfinishCallbacks = state[kOnFinished].splice(0);\n\t      for (let i = 0; i < onfinishCallbacks.length; i++) {\n\t        onfinishCallbacks[i](err);\n\t      }\n\t      errorOrDestroy(stream, err, state.sync);\n\t    } else if (needFinish(state)) {\n\t      state.prefinished = true;\n\t      stream.emit('prefinish');\n\t      // Backwards compat. Don't check state.sync here.\n\t      // Some streams assume 'finish' will be emitted\n\t      // asynchronously relative to _final callback.\n\t      state.pendingcb++;\n\t      process.nextTick(finish, stream, state);\n\t    }\n\t  }\n\t  state.sync = true;\n\t  state.pendingcb++;\n\t  try {\n\t    stream._final(onFinish);\n\t  } catch (err) {\n\t    onFinish(err);\n\t  }\n\t  state.sync = false;\n\t}\n\tfunction prefinish(stream, state) {\n\t  if (!state.prefinished && !state.finalCalled) {\n\t    if (typeof stream._final === 'function' && !state.destroyed) {\n\t      state.finalCalled = true;\n\t      callFinal(stream, state);\n\t    } else {\n\t      state.prefinished = true;\n\t      stream.emit('prefinish');\n\t    }\n\t  }\n\t}\n\tfunction finishMaybe(stream, state, sync) {\n\t  if (needFinish(state)) {\n\t    prefinish(stream, state);\n\t    if (state.pendingcb === 0) {\n\t      if (sync) {\n\t        state.pendingcb++;\n\t        process.nextTick(\n\t          (stream, state) => {\n\t            if (needFinish(state)) {\n\t              finish(stream, state);\n\t            } else {\n\t              state.pendingcb--;\n\t            }\n\t          },\n\t          stream,\n\t          state\n\t        );\n\t      } else if (needFinish(state)) {\n\t        state.pendingcb++;\n\t        finish(stream, state);\n\t      }\n\t    }\n\t  }\n\t}\n\tfunction finish(stream, state) {\n\t  state.pendingcb--;\n\t  state.finished = true;\n\t  const onfinishCallbacks = state[kOnFinished].splice(0);\n\t  for (let i = 0; i < onfinishCallbacks.length; i++) {\n\t    onfinishCallbacks[i]();\n\t  }\n\t  stream.emit('finish');\n\t  if (state.autoDestroy) {\n\t    // In case of duplex streams we need a way to detect\n\t    // if the readable side is ready for autoDestroy as well.\n\t    const rState = stream._readableState;\n\t    const autoDestroy =\n\t      !rState ||\n\t      (rState.autoDestroy &&\n\t        // We don't expect the readable to ever 'end'\n\t        // if readable is explicitly set to false.\n\t        (rState.endEmitted || rState.readable === false));\n\t    if (autoDestroy) {\n\t      stream.destroy();\n\t    }\n\t  }\n\t}\n\tObjectDefineProperties(Writable.prototype, {\n\t  closed: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState ? this._writableState.closed : false\n\t    }\n\t  },\n\t  destroyed: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState ? this._writableState.destroyed : false\n\t    },\n\t    set(value) {\n\t      // Backward compatibility, the user is explicitly managing destroyed.\n\t      if (this._writableState) {\n\t        this._writableState.destroyed = value;\n\t      }\n\t    }\n\t  },\n\t  writable: {\n\t    __proto__: null,\n\t    get() {\n\t      const w = this._writableState;\n\t      // w.writable === false means that this is part of a Duplex stream\n\t      // where the writable side was disabled upon construction.\n\t      // Compat. The user might manually disable writable side through\n\t      // deprecated setter.\n\t      return !!w && w.writable !== false && !w.destroyed && !w.errored && !w.ending && !w.ended\n\t    },\n\t    set(val) {\n\t      // Backwards compatible.\n\t      if (this._writableState) {\n\t        this._writableState.writable = !!val;\n\t      }\n\t    }\n\t  },\n\t  writableFinished: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState ? this._writableState.finished : false\n\t    }\n\t  },\n\t  writableObjectMode: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState ? this._writableState.objectMode : false\n\t    }\n\t  },\n\t  writableBuffer: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState && this._writableState.getBuffer()\n\t    }\n\t  },\n\t  writableEnded: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState ? this._writableState.ending : false\n\t    }\n\t  },\n\t  writableNeedDrain: {\n\t    __proto__: null,\n\t    get() {\n\t      const wState = this._writableState;\n\t      if (!wState) return false\n\t      return !wState.destroyed && !wState.ending && wState.needDrain\n\t    }\n\t  },\n\t  writableHighWaterMark: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState && this._writableState.highWaterMark\n\t    }\n\t  },\n\t  writableCorked: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState ? this._writableState.corked : 0\n\t    }\n\t  },\n\t  writableLength: {\n\t    __proto__: null,\n\t    get() {\n\t      return this._writableState && this._writableState.length\n\t    }\n\t  },\n\t  errored: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get() {\n\t      return this._writableState ? this._writableState.errored : null\n\t    }\n\t  },\n\t  writableAborted: {\n\t    __proto__: null,\n\t    enumerable: false,\n\t    get: function () {\n\t      return !!(\n\t        this._writableState.writable !== false &&\n\t        (this._writableState.destroyed || this._writableState.errored) &&\n\t        !this._writableState.finished\n\t      )\n\t    }\n\t  }\n\t});\n\tconst destroy = destroyImpl.destroy;\n\tWritable.prototype.destroy = function (err, cb) {\n\t  const state = this._writableState;\n\n\t  // Invoke pending callbacks.\n\t  if (!state.destroyed && (state.bufferedIndex < state.buffered.length || state[kOnFinished].length)) {\n\t    process.nextTick(errorBuffer, state);\n\t  }\n\t  destroy.call(this, err, cb);\n\t  return this\n\t};\n\tWritable.prototype._undestroy = destroyImpl.undestroy;\n\tWritable.prototype._destroy = function (err, cb) {\n\t  cb(err);\n\t};\n\tWritable.prototype[EE.captureRejectionSymbol] = function (err) {\n\t  this.destroy(err);\n\t};\n\tlet webStreamsAdapters;\n\n\t// Lazy to avoid circular references\n\tfunction lazyWebStreams() {\n\t  if (webStreamsAdapters === undefined) webStreamsAdapters = {};\n\t  return webStreamsAdapters\n\t}\n\tWritable.fromWeb = function (writableStream, options) {\n\t  return lazyWebStreams().newStreamWritableFromWritableStream(writableStream, options)\n\t};\n\tWritable.toWeb = function (streamWritable) {\n\t  return lazyWebStreams().newWritableStreamFromStreamWritable(streamWritable)\n\t};\n\treturn writable;\n}\n\n/* replacement start */\n\nvar duplexify;\nvar hasRequiredDuplexify;\n\nfunction requireDuplexify () {\n\tif (hasRequiredDuplexify) return duplexify;\n\thasRequiredDuplexify = 1;\n\tconst process = requireProcess()\n\n\t/* replacement end */\n\n\t;\tconst bufferModule = require$$0$8;\n\tconst {\n\t  isReadable,\n\t  isWritable,\n\t  isIterable,\n\t  isNodeStream,\n\t  isReadableNodeStream,\n\t  isWritableNodeStream,\n\t  isDuplexNodeStream,\n\t  isReadableStream,\n\t  isWritableStream\n\t} = requireUtils$3();\n\tconst eos = requireEndOfStream();\n\tconst {\n\t  AbortError,\n\t  codes: { ERR_INVALID_ARG_TYPE, ERR_INVALID_RETURN_VALUE }\n\t} = requireErrors();\n\tconst { destroyer } = requireDestroy();\n\tconst Duplex = requireDuplex();\n\tconst Readable = requireReadable();\n\tconst Writable = requireWritable();\n\tconst { createDeferredPromise } = requireUtil$2();\n\tconst from = requireFrom();\n\tconst Blob = globalThis.Blob || bufferModule.Blob;\n\tconst isBlob =\n\t  typeof Blob !== 'undefined'\n\t    ? function isBlob(b) {\n\t        return b instanceof Blob\n\t      }\n\t    : function isBlob(b) {\n\t        return false\n\t      };\n\tconst AbortController = globalThis.AbortController || require$$0.AbortController;\n\tconst { FunctionPrototypeCall } = requirePrimordials();\n\n\t// This is needed for pre node 17.\n\tclass Duplexify extends Duplex {\n\t  constructor(options) {\n\t    super(options);\n\n\t    // https://github.com/nodejs/node/pull/34385\n\n\t    if ((options === null || options === undefined ? undefined : options.readable) === false) {\n\t      this._readableState.readable = false;\n\t      this._readableState.ended = true;\n\t      this._readableState.endEmitted = true;\n\t    }\n\t    if ((options === null || options === undefined ? undefined : options.writable) === false) {\n\t      this._writableState.writable = false;\n\t      this._writableState.ending = true;\n\t      this._writableState.ended = true;\n\t      this._writableState.finished = true;\n\t    }\n\t  }\n\t}\n\tduplexify = function duplexify(body, name) {\n\t  if (isDuplexNodeStream(body)) {\n\t    return body\n\t  }\n\t  if (isReadableNodeStream(body)) {\n\t    return _duplexify({\n\t      readable: body\n\t    })\n\t  }\n\t  if (isWritableNodeStream(body)) {\n\t    return _duplexify({\n\t      writable: body\n\t    })\n\t  }\n\t  if (isNodeStream(body)) {\n\t    return _duplexify({\n\t      writable: false,\n\t      readable: false\n\t    })\n\t  }\n\t  if (isReadableStream(body)) {\n\t    return _duplexify({\n\t      readable: Readable.fromWeb(body)\n\t    })\n\t  }\n\t  if (isWritableStream(body)) {\n\t    return _duplexify({\n\t      writable: Writable.fromWeb(body)\n\t    })\n\t  }\n\t  if (typeof body === 'function') {\n\t    const { value, write, final, destroy } = fromAsyncGen(body);\n\t    if (isIterable(value)) {\n\t      return from(Duplexify, value, {\n\t        // TODO (ronag): highWaterMark?\n\t        objectMode: true,\n\t        write,\n\t        final,\n\t        destroy\n\t      })\n\t    }\n\t    const then = value === null || value === undefined ? undefined : value.then;\n\t    if (typeof then === 'function') {\n\t      let d;\n\t      const promise = FunctionPrototypeCall(\n\t        then,\n\t        value,\n\t        (val) => {\n\t          if (val != null) {\n\t            throw new ERR_INVALID_RETURN_VALUE('nully', 'body', val)\n\t          }\n\t        },\n\t        (err) => {\n\t          destroyer(d, err);\n\t        }\n\t      );\n\t      return (d = new Duplexify({\n\t        // TODO (ronag): highWaterMark?\n\t        objectMode: true,\n\t        readable: false,\n\t        write,\n\t        final(cb) {\n\t          final(async () => {\n\t            try {\n\t              await promise;\n\t              process.nextTick(cb, null);\n\t            } catch (err) {\n\t              process.nextTick(cb, err);\n\t            }\n\t          });\n\t        },\n\t        destroy\n\t      }))\n\t    }\n\t    throw new ERR_INVALID_RETURN_VALUE('Iterable, AsyncIterable or AsyncFunction', name, value)\n\t  }\n\t  if (isBlob(body)) {\n\t    return duplexify(body.arrayBuffer())\n\t  }\n\t  if (isIterable(body)) {\n\t    return from(Duplexify, body, {\n\t      // TODO (ronag): highWaterMark?\n\t      objectMode: true,\n\t      writable: false\n\t    })\n\t  }\n\t  if (\n\t    isReadableStream(body === null || body === undefined ? undefined : body.readable) &&\n\t    isWritableStream(body === null || body === undefined ? undefined : body.writable)\n\t  ) {\n\t    return Duplexify.fromWeb(body)\n\t  }\n\t  if (\n\t    typeof (body === null || body === undefined ? undefined : body.writable) === 'object' ||\n\t    typeof (body === null || body === undefined ? undefined : body.readable) === 'object'\n\t  ) {\n\t    const readable =\n\t      body !== null && body !== undefined && body.readable\n\t        ? isReadableNodeStream(body === null || body === undefined ? undefined : body.readable)\n\t          ? body === null || body === undefined\n\t            ? undefined\n\t            : body.readable\n\t          : duplexify(body.readable)\n\t        : undefined;\n\t    const writable =\n\t      body !== null && body !== undefined && body.writable\n\t        ? isWritableNodeStream(body === null || body === undefined ? undefined : body.writable)\n\t          ? body === null || body === undefined\n\t            ? undefined\n\t            : body.writable\n\t          : duplexify(body.writable)\n\t        : undefined;\n\t    return _duplexify({\n\t      readable,\n\t      writable\n\t    })\n\t  }\n\t  const then = body === null || body === undefined ? undefined : body.then;\n\t  if (typeof then === 'function') {\n\t    let d;\n\t    FunctionPrototypeCall(\n\t      then,\n\t      body,\n\t      (val) => {\n\t        if (val != null) {\n\t          d.push(val);\n\t        }\n\t        d.push(null);\n\t      },\n\t      (err) => {\n\t        destroyer(d, err);\n\t      }\n\t    );\n\t    return (d = new Duplexify({\n\t      objectMode: true,\n\t      writable: false,\n\t      read() {}\n\t    }))\n\t  }\n\t  throw new ERR_INVALID_ARG_TYPE(\n\t    name,\n\t    [\n\t      'Blob',\n\t      'ReadableStream',\n\t      'WritableStream',\n\t      'Stream',\n\t      'Iterable',\n\t      'AsyncIterable',\n\t      'Function',\n\t      '{ readable, writable } pair',\n\t      'Promise'\n\t    ],\n\t    body\n\t  )\n\t};\n\tfunction fromAsyncGen(fn) {\n\t  let { promise, resolve } = createDeferredPromise();\n\t  const ac = new AbortController();\n\t  const signal = ac.signal;\n\t  const value = fn(\n\t    (async function* () {\n\t      while (true) {\n\t        const _promise = promise;\n\t        promise = null;\n\t        const { chunk, done, cb } = await _promise;\n\t        process.nextTick(cb);\n\t        if (done) return\n\t        if (signal.aborted)\n\t          throw new AbortError(undefined, {\n\t            cause: signal.reason\n\t          })\n\t        ;({ promise, resolve } = createDeferredPromise());\n\t        yield chunk;\n\t      }\n\t    })(),\n\t    {\n\t      signal\n\t    }\n\t  );\n\t  return {\n\t    value,\n\t    write(chunk, encoding, cb) {\n\t      const _resolve = resolve;\n\t      resolve = null;\n\t      _resolve({\n\t        chunk,\n\t        done: false,\n\t        cb\n\t      });\n\t    },\n\t    final(cb) {\n\t      const _resolve = resolve;\n\t      resolve = null;\n\t      _resolve({\n\t        done: true,\n\t        cb\n\t      });\n\t    },\n\t    destroy(err, cb) {\n\t      ac.abort();\n\t      cb(err);\n\t    }\n\t  }\n\t}\n\tfunction _duplexify(pair) {\n\t  const r = pair.readable && typeof pair.readable.read !== 'function' ? Readable.wrap(pair.readable) : pair.readable;\n\t  const w = pair.writable;\n\t  let readable = !!isReadable(r);\n\t  let writable = !!isWritable(w);\n\t  let ondrain;\n\t  let onfinish;\n\t  let onreadable;\n\t  let onclose;\n\t  let d;\n\t  function onfinished(err) {\n\t    const cb = onclose;\n\t    onclose = null;\n\t    if (cb) {\n\t      cb(err);\n\t    } else if (err) {\n\t      d.destroy(err);\n\t    }\n\t  }\n\n\t  // TODO(ronag): Avoid double buffering.\n\t  // Implement Writable/Readable/Duplex traits.\n\t  // See, https://github.com/nodejs/node/pull/33515.\n\t  d = new Duplexify({\n\t    // TODO (ronag): highWaterMark?\n\t    readableObjectMode: !!(r !== null && r !== undefined && r.readableObjectMode),\n\t    writableObjectMode: !!(w !== null && w !== undefined && w.writableObjectMode),\n\t    readable,\n\t    writable\n\t  });\n\t  if (writable) {\n\t    eos(w, (err) => {\n\t      writable = false;\n\t      if (err) {\n\t        destroyer(r, err);\n\t      }\n\t      onfinished(err);\n\t    });\n\t    d._write = function (chunk, encoding, callback) {\n\t      if (w.write(chunk, encoding)) {\n\t        callback();\n\t      } else {\n\t        ondrain = callback;\n\t      }\n\t    };\n\t    d._final = function (callback) {\n\t      w.end();\n\t      onfinish = callback;\n\t    };\n\t    w.on('drain', function () {\n\t      if (ondrain) {\n\t        const cb = ondrain;\n\t        ondrain = null;\n\t        cb();\n\t      }\n\t    });\n\t    w.on('finish', function () {\n\t      if (onfinish) {\n\t        const cb = onfinish;\n\t        onfinish = null;\n\t        cb();\n\t      }\n\t    });\n\t  }\n\t  if (readable) {\n\t    eos(r, (err) => {\n\t      readable = false;\n\t      if (err) {\n\t        destroyer(r, err);\n\t      }\n\t      onfinished(err);\n\t    });\n\t    r.on('readable', function () {\n\t      if (onreadable) {\n\t        const cb = onreadable;\n\t        onreadable = null;\n\t        cb();\n\t      }\n\t    });\n\t    r.on('end', function () {\n\t      d.push(null);\n\t    });\n\t    d._read = function () {\n\t      while (true) {\n\t        const buf = r.read();\n\t        if (buf === null) {\n\t          onreadable = d._read;\n\t          return\n\t        }\n\t        if (!d.push(buf)) {\n\t          return\n\t        }\n\t      }\n\t    };\n\t  }\n\t  d._destroy = function (err, callback) {\n\t    if (!err && onclose !== null) {\n\t      err = new AbortError();\n\t    }\n\t    onreadable = null;\n\t    ondrain = null;\n\t    onfinish = null;\n\t    if (onclose === null) {\n\t      callback(err);\n\t    } else {\n\t      onclose = callback;\n\t      destroyer(w, err);\n\t      destroyer(r, err);\n\t    }\n\t  };\n\t  return d\n\t}\n\treturn duplexify;\n}\n\nvar duplex;\nvar hasRequiredDuplex;\n\nfunction requireDuplex () {\n\tif (hasRequiredDuplex) return duplex;\n\thasRequiredDuplex = 1;\n\n\tconst {\n\t  ObjectDefineProperties,\n\t  ObjectGetOwnPropertyDescriptor,\n\t  ObjectKeys,\n\t  ObjectSetPrototypeOf\n\t} = requirePrimordials();\n\tduplex = Duplex;\n\tconst Readable = requireReadable();\n\tconst Writable = requireWritable();\n\tObjectSetPrototypeOf(Duplex.prototype, Readable.prototype);\n\tObjectSetPrototypeOf(Duplex, Readable);\n\t{\n\t  const keys = ObjectKeys(Writable.prototype);\n\t  // Allow the keys array to be GC'ed.\n\t  for (let i = 0; i < keys.length; i++) {\n\t    const method = keys[i];\n\t    if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];\n\t  }\n\t}\n\tfunction Duplex(options) {\n\t  if (!(this instanceof Duplex)) return new Duplex(options)\n\t  Readable.call(this, options);\n\t  Writable.call(this, options);\n\t  if (options) {\n\t    this.allowHalfOpen = options.allowHalfOpen !== false;\n\t    if (options.readable === false) {\n\t      this._readableState.readable = false;\n\t      this._readableState.ended = true;\n\t      this._readableState.endEmitted = true;\n\t    }\n\t    if (options.writable === false) {\n\t      this._writableState.writable = false;\n\t      this._writableState.ending = true;\n\t      this._writableState.ended = true;\n\t      this._writableState.finished = true;\n\t    }\n\t  } else {\n\t    this.allowHalfOpen = true;\n\t  }\n\t}\n\tObjectDefineProperties(Duplex.prototype, {\n\t  writable: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writable')\n\t  },\n\t  writableHighWaterMark: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableHighWaterMark')\n\t  },\n\t  writableObjectMode: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableObjectMode')\n\t  },\n\t  writableBuffer: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableBuffer')\n\t  },\n\t  writableLength: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableLength')\n\t  },\n\t  writableFinished: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableFinished')\n\t  },\n\t  writableCorked: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableCorked')\n\t  },\n\t  writableEnded: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableEnded')\n\t  },\n\t  writableNeedDrain: {\n\t    __proto__: null,\n\t    ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableNeedDrain')\n\t  },\n\t  destroyed: {\n\t    __proto__: null,\n\t    get() {\n\t      if (this._readableState === undefined || this._writableState === undefined) {\n\t        return false\n\t      }\n\t      return this._readableState.destroyed && this._writableState.destroyed\n\t    },\n\t    set(value) {\n\t      // Backward compatibility, the user is explicitly\n\t      // managing destroyed.\n\t      if (this._readableState && this._writableState) {\n\t        this._readableState.destroyed = value;\n\t        this._writableState.destroyed = value;\n\t      }\n\t    }\n\t  }\n\t});\n\tlet webStreamsAdapters;\n\n\t// Lazy to avoid circular references\n\tfunction lazyWebStreams() {\n\t  if (webStreamsAdapters === undefined) webStreamsAdapters = {};\n\t  return webStreamsAdapters\n\t}\n\tDuplex.fromWeb = function (pair, options) {\n\t  return lazyWebStreams().newStreamDuplexFromReadableWritablePair(pair, options)\n\t};\n\tDuplex.toWeb = function (duplex) {\n\t  return lazyWebStreams().newReadableWritablePairFromDuplex(duplex)\n\t};\n\tlet duplexify;\n\tDuplex.from = function (body) {\n\t  if (!duplexify) {\n\t    duplexify = requireDuplexify();\n\t  }\n\t  return duplexify(body, 'body')\n\t};\n\treturn duplex;\n}\n\nvar transform;\nvar hasRequiredTransform;\n\nfunction requireTransform () {\n\tif (hasRequiredTransform) return transform;\n\thasRequiredTransform = 1;\n\n\tconst { ObjectSetPrototypeOf, Symbol } = requirePrimordials();\n\ttransform = Transform;\n\tconst { ERR_METHOD_NOT_IMPLEMENTED } = requireErrors().codes;\n\tconst Duplex = requireDuplex();\n\tconst { getHighWaterMark } = requireState();\n\tObjectSetPrototypeOf(Transform.prototype, Duplex.prototype);\n\tObjectSetPrototypeOf(Transform, Duplex);\n\tconst kCallback = Symbol('kCallback');\n\tfunction Transform(options) {\n\t  if (!(this instanceof Transform)) return new Transform(options)\n\n\t  // TODO (ronag): This should preferably always be\n\t  // applied but would be semver-major. Or even better;\n\t  // make Transform a Readable with the Writable interface.\n\t  const readableHighWaterMark = options ? getHighWaterMark(this, options, 'readableHighWaterMark', true) : null;\n\t  if (readableHighWaterMark === 0) {\n\t    // A Duplex will buffer both on the writable and readable side while\n\t    // a Transform just wants to buffer hwm number of elements. To avoid\n\t    // buffering twice we disable buffering on the writable side.\n\t    options = {\n\t      ...options,\n\t      highWaterMark: null,\n\t      readableHighWaterMark,\n\t      // TODO (ronag): 0 is not optimal since we have\n\t      // a \"bug\" where we check needDrain before calling _write and not after.\n\t      // Refs: https://github.com/nodejs/node/pull/32887\n\t      // Refs: https://github.com/nodejs/node/pull/35941\n\t      writableHighWaterMark: options.writableHighWaterMark || 0\n\t    };\n\t  }\n\t  Duplex.call(this, options);\n\n\t  // We have implemented the _read method, and done the other things\n\t  // that Readable wants before the first _read call, so unset the\n\t  // sync guard flag.\n\t  this._readableState.sync = false;\n\t  this[kCallback] = null;\n\t  if (options) {\n\t    if (typeof options.transform === 'function') this._transform = options.transform;\n\t    if (typeof options.flush === 'function') this._flush = options.flush;\n\t  }\n\n\t  // When the writable side finishes, then flush out anything remaining.\n\t  // Backwards compat. Some Transform streams incorrectly implement _final\n\t  // instead of or in addition to _flush. By using 'prefinish' instead of\n\t  // implementing _final we continue supporting this unfortunate use case.\n\t  this.on('prefinish', prefinish);\n\t}\n\tfunction final(cb) {\n\t  if (typeof this._flush === 'function' && !this.destroyed) {\n\t    this._flush((er, data) => {\n\t      if (er) {\n\t        if (cb) {\n\t          cb(er);\n\t        } else {\n\t          this.destroy(er);\n\t        }\n\t        return\n\t      }\n\t      if (data != null) {\n\t        this.push(data);\n\t      }\n\t      this.push(null);\n\t      if (cb) {\n\t        cb();\n\t      }\n\t    });\n\t  } else {\n\t    this.push(null);\n\t    if (cb) {\n\t      cb();\n\t    }\n\t  }\n\t}\n\tfunction prefinish() {\n\t  if (this._final !== final) {\n\t    final.call(this);\n\t  }\n\t}\n\tTransform.prototype._final = final;\n\tTransform.prototype._transform = function (chunk, encoding, callback) {\n\t  throw new ERR_METHOD_NOT_IMPLEMENTED('_transform()')\n\t};\n\tTransform.prototype._write = function (chunk, encoding, callback) {\n\t  const rState = this._readableState;\n\t  const wState = this._writableState;\n\t  const length = rState.length;\n\t  this._transform(chunk, encoding, (err, val) => {\n\t    if (err) {\n\t      callback(err);\n\t      return\n\t    }\n\t    if (val != null) {\n\t      this.push(val);\n\t    }\n\t    if (\n\t      wState.ended ||\n\t      // Backwards compat.\n\t      length === rState.length ||\n\t      // Backwards compat.\n\t      rState.length < rState.highWaterMark\n\t    ) {\n\t      callback();\n\t    } else {\n\t      this[kCallback] = callback;\n\t    }\n\t  });\n\t};\n\tTransform.prototype._read = function () {\n\t  if (this[kCallback]) {\n\t    const callback = this[kCallback];\n\t    this[kCallback] = null;\n\t    callback();\n\t  }\n\t};\n\treturn transform;\n}\n\nvar passthrough;\nvar hasRequiredPassthrough;\n\nfunction requirePassthrough () {\n\tif (hasRequiredPassthrough) return passthrough;\n\thasRequiredPassthrough = 1;\n\n\tconst { ObjectSetPrototypeOf } = requirePrimordials();\n\tpassthrough = PassThrough;\n\tconst Transform = requireTransform();\n\tObjectSetPrototypeOf(PassThrough.prototype, Transform.prototype);\n\tObjectSetPrototypeOf(PassThrough, Transform);\n\tfunction PassThrough(options) {\n\t  if (!(this instanceof PassThrough)) return new PassThrough(options)\n\t  Transform.call(this, options);\n\t}\n\tPassThrough.prototype._transform = function (chunk, encoding, cb) {\n\t  cb(null, chunk);\n\t};\n\treturn passthrough;\n}\n\n/* replacement start */\n\nvar pipeline_1;\nvar hasRequiredPipeline;\n\nfunction requirePipeline () {\n\tif (hasRequiredPipeline) return pipeline_1;\n\thasRequiredPipeline = 1;\n\tconst process = requireProcess()\n\n\t/* replacement end */\n\t// Ported from https://github.com/mafintosh/pump with\n\t// permission from the author, Mathias Buus (@mafintosh).\n\n\t;\tconst { ArrayIsArray, Promise, SymbolAsyncIterator, SymbolDispose } = requirePrimordials();\n\tconst eos = requireEndOfStream();\n\tconst { once } = requireUtil$2();\n\tconst destroyImpl = requireDestroy();\n\tconst Duplex = requireDuplex();\n\tconst {\n\t  aggregateTwoErrors,\n\t  codes: {\n\t    ERR_INVALID_ARG_TYPE,\n\t    ERR_INVALID_RETURN_VALUE,\n\t    ERR_MISSING_ARGS,\n\t    ERR_STREAM_DESTROYED,\n\t    ERR_STREAM_PREMATURE_CLOSE\n\t  },\n\t  AbortError\n\t} = requireErrors();\n\tconst { validateFunction, validateAbortSignal } = requireValidators();\n\tconst {\n\t  isIterable,\n\t  isReadable,\n\t  isReadableNodeStream,\n\t  isNodeStream,\n\t  isTransformStream,\n\t  isWebStream,\n\t  isReadableStream,\n\t  isReadableFinished\n\t} = requireUtils$3();\n\tconst AbortController = globalThis.AbortController || require$$0.AbortController;\n\tlet PassThrough;\n\tlet Readable;\n\tlet addAbortListener;\n\tfunction destroyer(stream, reading, writing) {\n\t  let finished = false;\n\t  stream.on('close', () => {\n\t    finished = true;\n\t  });\n\t  const cleanup = eos(\n\t    stream,\n\t    {\n\t      readable: reading,\n\t      writable: writing\n\t    },\n\t    (err) => {\n\t      finished = !err;\n\t    }\n\t  );\n\t  return {\n\t    destroy: (err) => {\n\t      if (finished) return\n\t      finished = true;\n\t      destroyImpl.destroyer(stream, err || new ERR_STREAM_DESTROYED('pipe'));\n\t    },\n\t    cleanup\n\t  }\n\t}\n\tfunction popCallback(streams) {\n\t  // Streams should never be an empty array. It should always contain at least\n\t  // a single stream. Therefore optimize for the average case instead of\n\t  // checking for length === 0 as well.\n\t  validateFunction(streams[streams.length - 1], 'streams[stream.length - 1]');\n\t  return streams.pop()\n\t}\n\tfunction makeAsyncIterable(val) {\n\t  if (isIterable(val)) {\n\t    return val\n\t  } else if (isReadableNodeStream(val)) {\n\t    // Legacy streams are not Iterable.\n\t    return fromReadable(val)\n\t  }\n\t  throw new ERR_INVALID_ARG_TYPE('val', ['Readable', 'Iterable', 'AsyncIterable'], val)\n\t}\n\tasync function* fromReadable(val) {\n\t  if (!Readable) {\n\t    Readable = requireReadable();\n\t  }\n\t  yield* Readable.prototype[SymbolAsyncIterator].call(val);\n\t}\n\tasync function pumpToNode(iterable, writable, finish, { end }) {\n\t  let error;\n\t  let onresolve = null;\n\t  const resume = (err) => {\n\t    if (err) {\n\t      error = err;\n\t    }\n\t    if (onresolve) {\n\t      const callback = onresolve;\n\t      onresolve = null;\n\t      callback();\n\t    }\n\t  };\n\t  const wait = () =>\n\t    new Promise((resolve, reject) => {\n\t      if (error) {\n\t        reject(error);\n\t      } else {\n\t        onresolve = () => {\n\t          if (error) {\n\t            reject(error);\n\t          } else {\n\t            resolve();\n\t          }\n\t        };\n\t      }\n\t    });\n\t  writable.on('drain', resume);\n\t  const cleanup = eos(\n\t    writable,\n\t    {\n\t      readable: false\n\t    },\n\t    resume\n\t  );\n\t  try {\n\t    if (writable.writableNeedDrain) {\n\t      await wait();\n\t    }\n\t    for await (const chunk of iterable) {\n\t      if (!writable.write(chunk)) {\n\t        await wait();\n\t      }\n\t    }\n\t    if (end) {\n\t      writable.end();\n\t      await wait();\n\t    }\n\t    finish();\n\t  } catch (err) {\n\t    finish(error !== err ? aggregateTwoErrors(error, err) : err);\n\t  } finally {\n\t    cleanup();\n\t    writable.off('drain', resume);\n\t  }\n\t}\n\tasync function pumpToWeb(readable, writable, finish, { end }) {\n\t  if (isTransformStream(writable)) {\n\t    writable = writable.writable;\n\t  }\n\t  // https://streams.spec.whatwg.org/#example-manual-write-with-backpressure\n\t  const writer = writable.getWriter();\n\t  try {\n\t    for await (const chunk of readable) {\n\t      await writer.ready;\n\t      writer.write(chunk).catch(() => {});\n\t    }\n\t    await writer.ready;\n\t    if (end) {\n\t      await writer.close();\n\t    }\n\t    finish();\n\t  } catch (err) {\n\t    try {\n\t      await writer.abort(err);\n\t      finish(err);\n\t    } catch (err) {\n\t      finish(err);\n\t    }\n\t  }\n\t}\n\tfunction pipeline(...streams) {\n\t  return pipelineImpl(streams, once(popCallback(streams)))\n\t}\n\tfunction pipelineImpl(streams, callback, opts) {\n\t  if (streams.length === 1 && ArrayIsArray(streams[0])) {\n\t    streams = streams[0];\n\t  }\n\t  if (streams.length < 2) {\n\t    throw new ERR_MISSING_ARGS('streams')\n\t  }\n\t  const ac = new AbortController();\n\t  const signal = ac.signal;\n\t  const outerSignal = opts === null || opts === undefined ? undefined : opts.signal;\n\n\t  // Need to cleanup event listeners if last stream is readable\n\t  // https://github.com/nodejs/node/issues/35452\n\t  const lastStreamCleanup = [];\n\t  validateAbortSignal(outerSignal, 'options.signal');\n\t  function abort() {\n\t    finishImpl(new AbortError());\n\t  }\n\t  addAbortListener = addAbortListener || requireUtil$2().addAbortListener;\n\t  let disposable;\n\t  if (outerSignal) {\n\t    disposable = addAbortListener(outerSignal, abort);\n\t  }\n\t  let error;\n\t  let value;\n\t  const destroys = [];\n\t  let finishCount = 0;\n\t  function finish(err) {\n\t    finishImpl(err, --finishCount === 0);\n\t  }\n\t  function finishImpl(err, final) {\n\t    var _disposable;\n\t    if (err && (!error || error.code === 'ERR_STREAM_PREMATURE_CLOSE')) {\n\t      error = err;\n\t    }\n\t    if (!error && !final) {\n\t      return\n\t    }\n\t    while (destroys.length) {\n\t      destroys.shift()(error);\n\t    }\n(_disposable = disposable) === null || _disposable === undefined ? undefined : _disposable[SymbolDispose]();\n\t    ac.abort();\n\t    if (final) {\n\t      if (!error) {\n\t        lastStreamCleanup.forEach((fn) => fn());\n\t      }\n\t      process.nextTick(callback, error, value);\n\t    }\n\t  }\n\t  let ret;\n\t  for (let i = 0; i < streams.length; i++) {\n\t    const stream = streams[i];\n\t    const reading = i < streams.length - 1;\n\t    const writing = i > 0;\n\t    const end = reading || (opts === null || opts === undefined ? undefined : opts.end) !== false;\n\t    const isLastStream = i === streams.length - 1;\n\t    if (isNodeStream(stream)) {\n\t      if (end) {\n\t        const { destroy, cleanup } = destroyer(stream, reading, writing);\n\t        destroys.push(destroy);\n\t        if (isReadable(stream) && isLastStream) {\n\t          lastStreamCleanup.push(cleanup);\n\t        }\n\t      }\n\n\t      // Catch stream errors that occur after pipe/pump has completed.\n\t      function onError(err) {\n\t        if (err && err.name !== 'AbortError' && err.code !== 'ERR_STREAM_PREMATURE_CLOSE') {\n\t          finish(err);\n\t        }\n\t      }\n\t      stream.on('error', onError);\n\t      if (isReadable(stream) && isLastStream) {\n\t        lastStreamCleanup.push(() => {\n\t          stream.removeListener('error', onError);\n\t        });\n\t      }\n\t    }\n\t    if (i === 0) {\n\t      if (typeof stream === 'function') {\n\t        ret = stream({\n\t          signal\n\t        });\n\t        if (!isIterable(ret)) {\n\t          throw new ERR_INVALID_RETURN_VALUE('Iterable, AsyncIterable or Stream', 'source', ret)\n\t        }\n\t      } else if (isIterable(stream) || isReadableNodeStream(stream) || isTransformStream(stream)) {\n\t        ret = stream;\n\t      } else {\n\t        ret = Duplex.from(stream);\n\t      }\n\t    } else if (typeof stream === 'function') {\n\t      if (isTransformStream(ret)) {\n\t        var _ret;\n\t        ret = makeAsyncIterable((_ret = ret) === null || _ret === undefined ? undefined : _ret.readable);\n\t      } else {\n\t        ret = makeAsyncIterable(ret);\n\t      }\n\t      ret = stream(ret, {\n\t        signal\n\t      });\n\t      if (reading) {\n\t        if (!isIterable(ret, true)) {\n\t          throw new ERR_INVALID_RETURN_VALUE('AsyncIterable', `transform[${i - 1}]`, ret)\n\t        }\n\t      } else {\n\t        var _ret2;\n\t        if (!PassThrough) {\n\t          PassThrough = requirePassthrough();\n\t        }\n\n\t        // If the last argument to pipeline is not a stream\n\t        // we must create a proxy stream so that pipeline(...)\n\t        // always returns a stream which can be further\n\t        // composed through `.pipe(stream)`.\n\n\t        const pt = new PassThrough({\n\t          objectMode: true\n\t        });\n\n\t        // Handle Promises/A+ spec, `then` could be a getter that throws on\n\t        // second use.\n\t        const then = (_ret2 = ret) === null || _ret2 === undefined ? undefined : _ret2.then;\n\t        if (typeof then === 'function') {\n\t          finishCount++;\n\t          then.call(\n\t            ret,\n\t            (val) => {\n\t              value = val;\n\t              if (val != null) {\n\t                pt.write(val);\n\t              }\n\t              if (end) {\n\t                pt.end();\n\t              }\n\t              process.nextTick(finish);\n\t            },\n\t            (err) => {\n\t              pt.destroy(err);\n\t              process.nextTick(finish, err);\n\t            }\n\t          );\n\t        } else if (isIterable(ret, true)) {\n\t          finishCount++;\n\t          pumpToNode(ret, pt, finish, {\n\t            end\n\t          });\n\t        } else if (isReadableStream(ret) || isTransformStream(ret)) {\n\t          const toRead = ret.readable || ret;\n\t          finishCount++;\n\t          pumpToNode(toRead, pt, finish, {\n\t            end\n\t          });\n\t        } else {\n\t          throw new ERR_INVALID_RETURN_VALUE('AsyncIterable or Promise', 'destination', ret)\n\t        }\n\t        ret = pt;\n\t        const { destroy, cleanup } = destroyer(ret, false, true);\n\t        destroys.push(destroy);\n\t        if (isLastStream) {\n\t          lastStreamCleanup.push(cleanup);\n\t        }\n\t      }\n\t    } else if (isNodeStream(stream)) {\n\t      if (isReadableNodeStream(ret)) {\n\t        finishCount += 2;\n\t        const cleanup = pipe(ret, stream, finish, {\n\t          end\n\t        });\n\t        if (isReadable(stream) && isLastStream) {\n\t          lastStreamCleanup.push(cleanup);\n\t        }\n\t      } else if (isTransformStream(ret) || isReadableStream(ret)) {\n\t        const toRead = ret.readable || ret;\n\t        finishCount++;\n\t        pumpToNode(toRead, stream, finish, {\n\t          end\n\t        });\n\t      } else if (isIterable(ret)) {\n\t        finishCount++;\n\t        pumpToNode(ret, stream, finish, {\n\t          end\n\t        });\n\t      } else {\n\t        throw new ERR_INVALID_ARG_TYPE(\n\t          'val',\n\t          ['Readable', 'Iterable', 'AsyncIterable', 'ReadableStream', 'TransformStream'],\n\t          ret\n\t        )\n\t      }\n\t      ret = stream;\n\t    } else if (isWebStream(stream)) {\n\t      if (isReadableNodeStream(ret)) {\n\t        finishCount++;\n\t        pumpToWeb(makeAsyncIterable(ret), stream, finish, {\n\t          end\n\t        });\n\t      } else if (isReadableStream(ret) || isIterable(ret)) {\n\t        finishCount++;\n\t        pumpToWeb(ret, stream, finish, {\n\t          end\n\t        });\n\t      } else if (isTransformStream(ret)) {\n\t        finishCount++;\n\t        pumpToWeb(ret.readable, stream, finish, {\n\t          end\n\t        });\n\t      } else {\n\t        throw new ERR_INVALID_ARG_TYPE(\n\t          'val',\n\t          ['Readable', 'Iterable', 'AsyncIterable', 'ReadableStream', 'TransformStream'],\n\t          ret\n\t        )\n\t      }\n\t      ret = stream;\n\t    } else {\n\t      ret = Duplex.from(stream);\n\t    }\n\t  }\n\t  if (\n\t    (signal !== null && signal !== undefined && signal.aborted) ||\n\t    (outerSignal !== null && outerSignal !== undefined && outerSignal.aborted)\n\t  ) {\n\t    process.nextTick(abort);\n\t  }\n\t  return ret\n\t}\n\tfunction pipe(src, dst, finish, { end }) {\n\t  let ended = false;\n\t  dst.on('close', () => {\n\t    if (!ended) {\n\t      // Finish if the destination closes before the source has completed.\n\t      finish(new ERR_STREAM_PREMATURE_CLOSE());\n\t    }\n\t  });\n\t  src.pipe(dst, {\n\t    end: false\n\t  }); // If end is true we already will have a listener to end dst.\n\n\t  if (end) {\n\t    // Compat. Before node v10.12.0 stdio used to throw an error so\n\t    // pipe() did/does not end() stdio destinations.\n\t    // Now they allow it but \"secretly\" don't close the underlying fd.\n\n\t    function endFn() {\n\t      ended = true;\n\t      dst.end();\n\t    }\n\t    if (isReadableFinished(src)) {\n\t      // End the destination if the source has already ended.\n\t      process.nextTick(endFn);\n\t    } else {\n\t      src.once('end', endFn);\n\t    }\n\t  } else {\n\t    finish();\n\t  }\n\t  eos(\n\t    src,\n\t    {\n\t      readable: true,\n\t      writable: false\n\t    },\n\t    (err) => {\n\t      const rState = src._readableState;\n\t      if (\n\t        err &&\n\t        err.code === 'ERR_STREAM_PREMATURE_CLOSE' &&\n\t        rState &&\n\t        rState.ended &&\n\t        !rState.errored &&\n\t        !rState.errorEmitted\n\t      ) {\n\t        // Some readable streams will emit 'close' before 'end'. However, since\n\t        // this is on the readable side 'end' should still be emitted if the\n\t        // stream has been ended and no error emitted. This should be allowed in\n\t        // favor of backwards compatibility. Since the stream is piped to a\n\t        // destination this should not result in any observable difference.\n\t        // We don't need to check if this is a writable premature close since\n\t        // eos will only fail with premature close on the reading side for\n\t        // duplex streams.\n\t        src.once('end', finish).once('error', finish);\n\t      } else {\n\t        finish(err);\n\t      }\n\t    }\n\t  );\n\t  return eos(\n\t    dst,\n\t    {\n\t      readable: false,\n\t      writable: true\n\t    },\n\t    finish\n\t  )\n\t}\n\tpipeline_1 = {\n\t  pipelineImpl,\n\t  pipeline\n\t};\n\treturn pipeline_1;\n}\n\nvar compose;\nvar hasRequiredCompose;\n\nfunction requireCompose () {\n\tif (hasRequiredCompose) return compose;\n\thasRequiredCompose = 1;\n\n\tconst { pipeline } = requirePipeline();\n\tconst Duplex = requireDuplex();\n\tconst { destroyer } = requireDestroy();\n\tconst {\n\t  isNodeStream,\n\t  isReadable,\n\t  isWritable,\n\t  isWebStream,\n\t  isTransformStream,\n\t  isWritableStream,\n\t  isReadableStream\n\t} = requireUtils$3();\n\tconst {\n\t  AbortError,\n\t  codes: { ERR_INVALID_ARG_VALUE, ERR_MISSING_ARGS }\n\t} = requireErrors();\n\tconst eos = requireEndOfStream();\n\tcompose = function compose(...streams) {\n\t  if (streams.length === 0) {\n\t    throw new ERR_MISSING_ARGS('streams')\n\t  }\n\t  if (streams.length === 1) {\n\t    return Duplex.from(streams[0])\n\t  }\n\t  const orgStreams = [...streams];\n\t  if (typeof streams[0] === 'function') {\n\t    streams[0] = Duplex.from(streams[0]);\n\t  }\n\t  if (typeof streams[streams.length - 1] === 'function') {\n\t    const idx = streams.length - 1;\n\t    streams[idx] = Duplex.from(streams[idx]);\n\t  }\n\t  for (let n = 0; n < streams.length; ++n) {\n\t    if (!isNodeStream(streams[n]) && !isWebStream(streams[n])) {\n\t      // TODO(ronag): Add checks for non streams.\n\t      continue\n\t    }\n\t    if (\n\t      n < streams.length - 1 &&\n\t      !(isReadable(streams[n]) || isReadableStream(streams[n]) || isTransformStream(streams[n]))\n\t    ) {\n\t      throw new ERR_INVALID_ARG_VALUE(`streams[${n}]`, orgStreams[n], 'must be readable')\n\t    }\n\t    if (n > 0 && !(isWritable(streams[n]) || isWritableStream(streams[n]) || isTransformStream(streams[n]))) {\n\t      throw new ERR_INVALID_ARG_VALUE(`streams[${n}]`, orgStreams[n], 'must be writable')\n\t    }\n\t  }\n\t  let ondrain;\n\t  let onfinish;\n\t  let onreadable;\n\t  let onclose;\n\t  let d;\n\t  function onfinished(err) {\n\t    const cb = onclose;\n\t    onclose = null;\n\t    if (cb) {\n\t      cb(err);\n\t    } else if (err) {\n\t      d.destroy(err);\n\t    } else if (!readable && !writable) {\n\t      d.destroy();\n\t    }\n\t  }\n\t  const head = streams[0];\n\t  const tail = pipeline(streams, onfinished);\n\t  const writable = !!(isWritable(head) || isWritableStream(head) || isTransformStream(head));\n\t  const readable = !!(isReadable(tail) || isReadableStream(tail) || isTransformStream(tail));\n\n\t  // TODO(ronag): Avoid double buffering.\n\t  // Implement Writable/Readable/Duplex traits.\n\t  // See, https://github.com/nodejs/node/pull/33515.\n\t  d = new Duplex({\n\t    // TODO (ronag): highWaterMark?\n\t    writableObjectMode: !!(head !== null && head !== undefined && head.writableObjectMode),\n\t    readableObjectMode: !!(tail !== null && tail !== undefined && tail.readableObjectMode),\n\t    writable,\n\t    readable\n\t  });\n\t  if (writable) {\n\t    if (isNodeStream(head)) {\n\t      d._write = function (chunk, encoding, callback) {\n\t        if (head.write(chunk, encoding)) {\n\t          callback();\n\t        } else {\n\t          ondrain = callback;\n\t        }\n\t      };\n\t      d._final = function (callback) {\n\t        head.end();\n\t        onfinish = callback;\n\t      };\n\t      head.on('drain', function () {\n\t        if (ondrain) {\n\t          const cb = ondrain;\n\t          ondrain = null;\n\t          cb();\n\t        }\n\t      });\n\t    } else if (isWebStream(head)) {\n\t      const writable = isTransformStream(head) ? head.writable : head;\n\t      const writer = writable.getWriter();\n\t      d._write = async function (chunk, encoding, callback) {\n\t        try {\n\t          await writer.ready;\n\t          writer.write(chunk).catch(() => {});\n\t          callback();\n\t        } catch (err) {\n\t          callback(err);\n\t        }\n\t      };\n\t      d._final = async function (callback) {\n\t        try {\n\t          await writer.ready;\n\t          writer.close().catch(() => {});\n\t          onfinish = callback;\n\t        } catch (err) {\n\t          callback(err);\n\t        }\n\t      };\n\t    }\n\t    const toRead = isTransformStream(tail) ? tail.readable : tail;\n\t    eos(toRead, () => {\n\t      if (onfinish) {\n\t        const cb = onfinish;\n\t        onfinish = null;\n\t        cb();\n\t      }\n\t    });\n\t  }\n\t  if (readable) {\n\t    if (isNodeStream(tail)) {\n\t      tail.on('readable', function () {\n\t        if (onreadable) {\n\t          const cb = onreadable;\n\t          onreadable = null;\n\t          cb();\n\t        }\n\t      });\n\t      tail.on('end', function () {\n\t        d.push(null);\n\t      });\n\t      d._read = function () {\n\t        while (true) {\n\t          const buf = tail.read();\n\t          if (buf === null) {\n\t            onreadable = d._read;\n\t            return\n\t          }\n\t          if (!d.push(buf)) {\n\t            return\n\t          }\n\t        }\n\t      };\n\t    } else if (isWebStream(tail)) {\n\t      const readable = isTransformStream(tail) ? tail.readable : tail;\n\t      const reader = readable.getReader();\n\t      d._read = async function () {\n\t        while (true) {\n\t          try {\n\t            const { value, done } = await reader.read();\n\t            if (!d.push(value)) {\n\t              return\n\t            }\n\t            if (done) {\n\t              d.push(null);\n\t              return\n\t            }\n\t          } catch {\n\t            return\n\t          }\n\t        }\n\t      };\n\t    }\n\t  }\n\t  d._destroy = function (err, callback) {\n\t    if (!err && onclose !== null) {\n\t      err = new AbortError();\n\t    }\n\t    onreadable = null;\n\t    ondrain = null;\n\t    onfinish = null;\n\t    if (onclose === null) {\n\t      callback(err);\n\t    } else {\n\t      onclose = callback;\n\t      if (isNodeStream(tail)) {\n\t        destroyer(tail, err);\n\t      }\n\t    }\n\t  };\n\t  return d\n\t};\n\treturn compose;\n}\n\nvar hasRequiredOperators;\n\nfunction requireOperators () {\n\tif (hasRequiredOperators) return operators;\n\thasRequiredOperators = 1;\n\n\tconst AbortController = globalThis.AbortController || require$$0.AbortController;\n\tconst {\n\t  codes: { ERR_INVALID_ARG_VALUE, ERR_INVALID_ARG_TYPE, ERR_MISSING_ARGS, ERR_OUT_OF_RANGE },\n\t  AbortError\n\t} = requireErrors();\n\tconst { validateAbortSignal, validateInteger, validateObject } = requireValidators();\n\tconst kWeakHandler = requirePrimordials().Symbol('kWeak');\n\tconst kResistStopPropagation = requirePrimordials().Symbol('kResistStopPropagation');\n\tconst { finished } = requireEndOfStream();\n\tconst staticCompose = requireCompose();\n\tconst { addAbortSignalNoValidate } = requireAddAbortSignal();\n\tconst { isWritable, isNodeStream } = requireUtils$3();\n\tconst { deprecate } = requireUtil$2();\n\tconst {\n\t  ArrayPrototypePush,\n\t  Boolean,\n\t  MathFloor,\n\t  Number,\n\t  NumberIsNaN,\n\t  Promise,\n\t  PromiseReject,\n\t  PromiseResolve,\n\t  PromisePrototypeThen,\n\t  Symbol\n\t} = requirePrimordials();\n\tconst kEmpty = Symbol('kEmpty');\n\tconst kEof = Symbol('kEof');\n\tfunction compose(stream, options) {\n\t  if (options != null) {\n\t    validateObject(options, 'options');\n\t  }\n\t  if ((options === null || options === undefined ? undefined : options.signal) != null) {\n\t    validateAbortSignal(options.signal, 'options.signal');\n\t  }\n\t  if (isNodeStream(stream) && !isWritable(stream)) {\n\t    throw new ERR_INVALID_ARG_VALUE('stream', stream, 'must be writable')\n\t  }\n\t  const composedStream = staticCompose(this, stream);\n\t  if (options !== null && options !== undefined && options.signal) {\n\t    // Not validating as we already validated before\n\t    addAbortSignalNoValidate(options.signal, composedStream);\n\t  }\n\t  return composedStream\n\t}\n\tfunction map(fn, options) {\n\t  if (typeof fn !== 'function') {\n\t    throw new ERR_INVALID_ARG_TYPE('fn', ['Function', 'AsyncFunction'], fn)\n\t  }\n\t  if (options != null) {\n\t    validateObject(options, 'options');\n\t  }\n\t  if ((options === null || options === undefined ? undefined : options.signal) != null) {\n\t    validateAbortSignal(options.signal, 'options.signal');\n\t  }\n\t  let concurrency = 1;\n\t  if ((options === null || options === undefined ? undefined : options.concurrency) != null) {\n\t    concurrency = MathFloor(options.concurrency);\n\t  }\n\t  let highWaterMark = concurrency - 1;\n\t  if ((options === null || options === undefined ? undefined : options.highWaterMark) != null) {\n\t    highWaterMark = MathFloor(options.highWaterMark);\n\t  }\n\t  validateInteger(concurrency, 'options.concurrency', 1);\n\t  validateInteger(highWaterMark, 'options.highWaterMark', 0);\n\t  highWaterMark += concurrency;\n\t  return async function* map() {\n\t    const signal = requireUtil$2().AbortSignalAny(\n\t      [options === null || options === undefined ? undefined : options.signal].filter(Boolean)\n\t    );\n\t    const stream = this;\n\t    const queue = [];\n\t    const signalOpt = {\n\t      signal\n\t    };\n\t    let next;\n\t    let resume;\n\t    let done = false;\n\t    let cnt = 0;\n\t    function onCatch() {\n\t      done = true;\n\t      afterItemProcessed();\n\t    }\n\t    function afterItemProcessed() {\n\t      cnt -= 1;\n\t      maybeResume();\n\t    }\n\t    function maybeResume() {\n\t      if (resume && !done && cnt < concurrency && queue.length < highWaterMark) {\n\t        resume();\n\t        resume = null;\n\t      }\n\t    }\n\t    async function pump() {\n\t      try {\n\t        for await (let val of stream) {\n\t          if (done) {\n\t            return\n\t          }\n\t          if (signal.aborted) {\n\t            throw new AbortError()\n\t          }\n\t          try {\n\t            val = fn(val, signalOpt);\n\t            if (val === kEmpty) {\n\t              continue\n\t            }\n\t            val = PromiseResolve(val);\n\t          } catch (err) {\n\t            val = PromiseReject(err);\n\t          }\n\t          cnt += 1;\n\t          PromisePrototypeThen(val, afterItemProcessed, onCatch);\n\t          queue.push(val);\n\t          if (next) {\n\t            next();\n\t            next = null;\n\t          }\n\t          if (!done && (queue.length >= highWaterMark || cnt >= concurrency)) {\n\t            await new Promise((resolve) => {\n\t              resume = resolve;\n\t            });\n\t          }\n\t        }\n\t        queue.push(kEof);\n\t      } catch (err) {\n\t        const val = PromiseReject(err);\n\t        PromisePrototypeThen(val, afterItemProcessed, onCatch);\n\t        queue.push(val);\n\t      } finally {\n\t        done = true;\n\t        if (next) {\n\t          next();\n\t          next = null;\n\t        }\n\t      }\n\t    }\n\t    pump();\n\t    try {\n\t      while (true) {\n\t        while (queue.length > 0) {\n\t          const val = await queue[0];\n\t          if (val === kEof) {\n\t            return\n\t          }\n\t          if (signal.aborted) {\n\t            throw new AbortError()\n\t          }\n\t          if (val !== kEmpty) {\n\t            yield val;\n\t          }\n\t          queue.shift();\n\t          maybeResume();\n\t        }\n\t        await new Promise((resolve) => {\n\t          next = resolve;\n\t        });\n\t      }\n\t    } finally {\n\t      done = true;\n\t      if (resume) {\n\t        resume();\n\t        resume = null;\n\t      }\n\t    }\n\t  }.call(this)\n\t}\n\tfunction asIndexedPairs(options = undefined) {\n\t  if (options != null) {\n\t    validateObject(options, 'options');\n\t  }\n\t  if ((options === null || options === undefined ? undefined : options.signal) != null) {\n\t    validateAbortSignal(options.signal, 'options.signal');\n\t  }\n\t  return async function* asIndexedPairs() {\n\t    let index = 0;\n\t    for await (const val of this) {\n\t      var _options$signal;\n\t      if (\n\t        options !== null &&\n\t        options !== undefined &&\n\t        (_options$signal = options.signal) !== null &&\n\t        _options$signal !== undefined &&\n\t        _options$signal.aborted\n\t      ) {\n\t        throw new AbortError({\n\t          cause: options.signal.reason\n\t        })\n\t      }\n\t      yield [index++, val];\n\t    }\n\t  }.call(this)\n\t}\n\tasync function some(fn, options = undefined) {\n\t  for await (const unused of filter.call(this, fn, options)) {\n\t    return true\n\t  }\n\t  return false\n\t}\n\tasync function every(fn, options = undefined) {\n\t  if (typeof fn !== 'function') {\n\t    throw new ERR_INVALID_ARG_TYPE('fn', ['Function', 'AsyncFunction'], fn)\n\t  }\n\t  // https://en.wikipedia.org/wiki/De_Morgan%27s_laws\n\t  return !(await some.call(\n\t    this,\n\t    async (...args) => {\n\t      return !(await fn(...args))\n\t    },\n\t    options\n\t  ))\n\t}\n\tasync function find(fn, options) {\n\t  for await (const result of filter.call(this, fn, options)) {\n\t    return result\n\t  }\n\t  return undefined\n\t}\n\tasync function forEach(fn, options) {\n\t  if (typeof fn !== 'function') {\n\t    throw new ERR_INVALID_ARG_TYPE('fn', ['Function', 'AsyncFunction'], fn)\n\t  }\n\t  async function forEachFn(value, options) {\n\t    await fn(value, options);\n\t    return kEmpty\n\t  }\n\t  // eslint-disable-next-line no-unused-vars\n\t  for await (const unused of map.call(this, forEachFn, options));\n\t}\n\tfunction filter(fn, options) {\n\t  if (typeof fn !== 'function') {\n\t    throw new ERR_INVALID_ARG_TYPE('fn', ['Function', 'AsyncFunction'], fn)\n\t  }\n\t  async function filterFn(value, options) {\n\t    if (await fn(value, options)) {\n\t      return value\n\t    }\n\t    return kEmpty\n\t  }\n\t  return map.call(this, filterFn, options)\n\t}\n\n\t// Specific to provide better error to reduce since the argument is only\n\t// missing if the stream has no items in it - but the code is still appropriate\n\tclass ReduceAwareErrMissingArgs extends ERR_MISSING_ARGS {\n\t  constructor() {\n\t    super('reduce');\n\t    this.message = 'Reduce of an empty stream requires an initial value';\n\t  }\n\t}\n\tasync function reduce(reducer, initialValue, options) {\n\t  var _options$signal2;\n\t  if (typeof reducer !== 'function') {\n\t    throw new ERR_INVALID_ARG_TYPE('reducer', ['Function', 'AsyncFunction'], reducer)\n\t  }\n\t  if (options != null) {\n\t    validateObject(options, 'options');\n\t  }\n\t  if ((options === null || options === undefined ? undefined : options.signal) != null) {\n\t    validateAbortSignal(options.signal, 'options.signal');\n\t  }\n\t  let hasInitialValue = arguments.length > 1;\n\t  if (\n\t    options !== null &&\n\t    options !== undefined &&\n\t    (_options$signal2 = options.signal) !== null &&\n\t    _options$signal2 !== undefined &&\n\t    _options$signal2.aborted\n\t  ) {\n\t    const err = new AbortError(undefined, {\n\t      cause: options.signal.reason\n\t    });\n\t    this.once('error', () => {}); // The error is already propagated\n\t    await finished(this.destroy(err));\n\t    throw err\n\t  }\n\t  const ac = new AbortController();\n\t  const signal = ac.signal;\n\t  if (options !== null && options !== undefined && options.signal) {\n\t    const opts = {\n\t      once: true,\n\t      [kWeakHandler]: this,\n\t      [kResistStopPropagation]: true\n\t    };\n\t    options.signal.addEventListener('abort', () => ac.abort(), opts);\n\t  }\n\t  let gotAnyItemFromStream = false;\n\t  try {\n\t    for await (const value of this) {\n\t      var _options$signal3;\n\t      gotAnyItemFromStream = true;\n\t      if (\n\t        options !== null &&\n\t        options !== undefined &&\n\t        (_options$signal3 = options.signal) !== null &&\n\t        _options$signal3 !== undefined &&\n\t        _options$signal3.aborted\n\t      ) {\n\t        throw new AbortError()\n\t      }\n\t      if (!hasInitialValue) {\n\t        initialValue = value;\n\t        hasInitialValue = true;\n\t      } else {\n\t        initialValue = await reducer(initialValue, value, {\n\t          signal\n\t        });\n\t      }\n\t    }\n\t    if (!gotAnyItemFromStream && !hasInitialValue) {\n\t      throw new ReduceAwareErrMissingArgs()\n\t    }\n\t  } finally {\n\t    ac.abort();\n\t  }\n\t  return initialValue\n\t}\n\tasync function toArray(options) {\n\t  if (options != null) {\n\t    validateObject(options, 'options');\n\t  }\n\t  if ((options === null || options === undefined ? undefined : options.signal) != null) {\n\t    validateAbortSignal(options.signal, 'options.signal');\n\t  }\n\t  const result = [];\n\t  for await (const val of this) {\n\t    var _options$signal4;\n\t    if (\n\t      options !== null &&\n\t      options !== undefined &&\n\t      (_options$signal4 = options.signal) !== null &&\n\t      _options$signal4 !== undefined &&\n\t      _options$signal4.aborted\n\t    ) {\n\t      throw new AbortError(undefined, {\n\t        cause: options.signal.reason\n\t      })\n\t    }\n\t    ArrayPrototypePush(result, val);\n\t  }\n\t  return result\n\t}\n\tfunction flatMap(fn, options) {\n\t  const values = map.call(this, fn, options);\n\t  return async function* flatMap() {\n\t    for await (const val of values) {\n\t      yield* val;\n\t    }\n\t  }.call(this)\n\t}\n\tfunction toIntegerOrInfinity(number) {\n\t  // We coerce here to align with the spec\n\t  // https://github.com/tc39/proposal-iterator-helpers/issues/169\n\t  number = Number(number);\n\t  if (NumberIsNaN(number)) {\n\t    return 0\n\t  }\n\t  if (number < 0) {\n\t    throw new ERR_OUT_OF_RANGE('number', '>= 0', number)\n\t  }\n\t  return number\n\t}\n\tfunction drop(number, options = undefined) {\n\t  if (options != null) {\n\t    validateObject(options, 'options');\n\t  }\n\t  if ((options === null || options === undefined ? undefined : options.signal) != null) {\n\t    validateAbortSignal(options.signal, 'options.signal');\n\t  }\n\t  number = toIntegerOrInfinity(number);\n\t  return async function* drop() {\n\t    var _options$signal5;\n\t    if (\n\t      options !== null &&\n\t      options !== undefined &&\n\t      (_options$signal5 = options.signal) !== null &&\n\t      _options$signal5 !== undefined &&\n\t      _options$signal5.aborted\n\t    ) {\n\t      throw new AbortError()\n\t    }\n\t    for await (const val of this) {\n\t      var _options$signal6;\n\t      if (\n\t        options !== null &&\n\t        options !== undefined &&\n\t        (_options$signal6 = options.signal) !== null &&\n\t        _options$signal6 !== undefined &&\n\t        _options$signal6.aborted\n\t      ) {\n\t        throw new AbortError()\n\t      }\n\t      if (number-- <= 0) {\n\t        yield val;\n\t      }\n\t    }\n\t  }.call(this)\n\t}\n\tfunction take(number, options = undefined) {\n\t  if (options != null) {\n\t    validateObject(options, 'options');\n\t  }\n\t  if ((options === null || options === undefined ? undefined : options.signal) != null) {\n\t    validateAbortSignal(options.signal, 'options.signal');\n\t  }\n\t  number = toIntegerOrInfinity(number);\n\t  return async function* take() {\n\t    var _options$signal7;\n\t    if (\n\t      options !== null &&\n\t      options !== undefined &&\n\t      (_options$signal7 = options.signal) !== null &&\n\t      _options$signal7 !== undefined &&\n\t      _options$signal7.aborted\n\t    ) {\n\t      throw new AbortError()\n\t    }\n\t    for await (const val of this) {\n\t      var _options$signal8;\n\t      if (\n\t        options !== null &&\n\t        options !== undefined &&\n\t        (_options$signal8 = options.signal) !== null &&\n\t        _options$signal8 !== undefined &&\n\t        _options$signal8.aborted\n\t      ) {\n\t        throw new AbortError()\n\t      }\n\t      if (number-- > 0) {\n\t        yield val;\n\t      }\n\n\t      // Don't get another item from iterator in case we reached the end\n\t      if (number <= 0) {\n\t        return\n\t      }\n\t    }\n\t  }.call(this)\n\t}\n\toperators.streamReturningOperators = {\n\t  asIndexedPairs: deprecate(asIndexedPairs, 'readable.asIndexedPairs will be removed in a future version.'),\n\t  drop,\n\t  filter,\n\t  flatMap,\n\t  map,\n\t  take,\n\t  compose\n\t};\n\toperators.promiseReturningOperators = {\n\t  every,\n\t  forEach,\n\t  reduce,\n\t  toArray,\n\t  some,\n\t  find\n\t};\n\treturn operators;\n}\n\nvar promises;\nvar hasRequiredPromises;\n\nfunction requirePromises () {\n\tif (hasRequiredPromises) return promises;\n\thasRequiredPromises = 1;\n\n\tconst { ArrayPrototypePop, Promise } = requirePrimordials();\n\tconst { isIterable, isNodeStream, isWebStream } = requireUtils$3();\n\tconst { pipelineImpl: pl } = requirePipeline();\n\tconst { finished } = requireEndOfStream();\n\trequireStream();\n\tfunction pipeline(...streams) {\n\t  return new Promise((resolve, reject) => {\n\t    let signal;\n\t    let end;\n\t    const lastArg = streams[streams.length - 1];\n\t    if (\n\t      lastArg &&\n\t      typeof lastArg === 'object' &&\n\t      !isNodeStream(lastArg) &&\n\t      !isIterable(lastArg) &&\n\t      !isWebStream(lastArg)\n\t    ) {\n\t      const options = ArrayPrototypePop(streams);\n\t      signal = options.signal;\n\t      end = options.end;\n\t    }\n\t    pl(\n\t      streams,\n\t      (err, value) => {\n\t        if (err) {\n\t          reject(err);\n\t        } else {\n\t          resolve(value);\n\t        }\n\t      },\n\t      {\n\t        signal,\n\t        end\n\t      }\n\t    );\n\t  })\n\t}\n\tpromises = {\n\t  finished,\n\t  pipeline\n\t};\n\treturn promises;\n}\n\nvar hasRequiredStream;\n\nfunction requireStream () {\n\tif (hasRequiredStream) return stream.exports;\n\thasRequiredStream = 1;\n\n\t/* replacement start */\n\n\tconst { Buffer } = require$$0$8;\n\n\t/* replacement end */\n\n\tconst { ObjectDefineProperty, ObjectKeys, ReflectApply } = requirePrimordials();\n\tconst {\n\t  promisify: { custom: customPromisify }\n\t} = requireUtil$2();\n\tconst { streamReturningOperators, promiseReturningOperators } = requireOperators();\n\tconst {\n\t  codes: { ERR_ILLEGAL_CONSTRUCTOR }\n\t} = requireErrors();\n\tconst compose = requireCompose();\n\tconst { setDefaultHighWaterMark, getDefaultHighWaterMark } = requireState();\n\tconst { pipeline } = requirePipeline();\n\tconst { destroyer } = requireDestroy();\n\tconst eos = requireEndOfStream();\n\tconst promises = requirePromises();\n\tconst utils = requireUtils$3();\n\tconst Stream = (stream.exports = requireLegacy().Stream);\n\tStream.isDestroyed = utils.isDestroyed;\n\tStream.isDisturbed = utils.isDisturbed;\n\tStream.isErrored = utils.isErrored;\n\tStream.isReadable = utils.isReadable;\n\tStream.isWritable = utils.isWritable;\n\tStream.Readable = requireReadable();\n\tfor (const key of ObjectKeys(streamReturningOperators)) {\n\t  const op = streamReturningOperators[key];\n\t  function fn(...args) {\n\t    if (new.target) {\n\t      throw ERR_ILLEGAL_CONSTRUCTOR()\n\t    }\n\t    return Stream.Readable.from(ReflectApply(op, this, args))\n\t  }\n\t  ObjectDefineProperty(fn, 'name', {\n\t    __proto__: null,\n\t    value: op.name\n\t  });\n\t  ObjectDefineProperty(fn, 'length', {\n\t    __proto__: null,\n\t    value: op.length\n\t  });\n\t  ObjectDefineProperty(Stream.Readable.prototype, key, {\n\t    __proto__: null,\n\t    value: fn,\n\t    enumerable: false,\n\t    configurable: true,\n\t    writable: true\n\t  });\n\t}\n\tfor (const key of ObjectKeys(promiseReturningOperators)) {\n\t  const op = promiseReturningOperators[key];\n\t  function fn(...args) {\n\t    if (new.target) {\n\t      throw ERR_ILLEGAL_CONSTRUCTOR()\n\t    }\n\t    return ReflectApply(op, this, args)\n\t  }\n\t  ObjectDefineProperty(fn, 'name', {\n\t    __proto__: null,\n\t    value: op.name\n\t  });\n\t  ObjectDefineProperty(fn, 'length', {\n\t    __proto__: null,\n\t    value: op.length\n\t  });\n\t  ObjectDefineProperty(Stream.Readable.prototype, key, {\n\t    __proto__: null,\n\t    value: fn,\n\t    enumerable: false,\n\t    configurable: true,\n\t    writable: true\n\t  });\n\t}\n\tStream.Writable = requireWritable();\n\tStream.Duplex = requireDuplex();\n\tStream.Transform = requireTransform();\n\tStream.PassThrough = requirePassthrough();\n\tStream.pipeline = pipeline;\n\tconst { addAbortSignal } = requireAddAbortSignal();\n\tStream.addAbortSignal = addAbortSignal;\n\tStream.finished = eos;\n\tStream.destroy = destroyer;\n\tStream.compose = compose;\n\tStream.setDefaultHighWaterMark = setDefaultHighWaterMark;\n\tStream.getDefaultHighWaterMark = getDefaultHighWaterMark;\n\tObjectDefineProperty(Stream, 'promises', {\n\t  __proto__: null,\n\t  configurable: true,\n\t  enumerable: true,\n\t  get() {\n\t    return promises\n\t  }\n\t});\n\tObjectDefineProperty(pipeline, customPromisify, {\n\t  __proto__: null,\n\t  enumerable: true,\n\t  get() {\n\t    return promises.pipeline\n\t  }\n\t});\n\tObjectDefineProperty(eos, customPromisify, {\n\t  __proto__: null,\n\t  enumerable: true,\n\t  get() {\n\t    return promises.finished\n\t  }\n\t});\n\n\t// Backwards-compat with node 0.4.x\n\tStream.Stream = Stream;\n\tStream._isUint8Array = function isUint8Array(value) {\n\t  return value instanceof Uint8Array\n\t};\n\tStream._uint8ArrayToBuffer = function _uint8ArrayToBuffer(chunk) {\n\t  return Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength)\n\t};\n\treturn stream.exports;\n}\n\nours.exports;\n\nvar hasRequiredOurs;\n\nfunction requireOurs () {\n\tif (hasRequiredOurs) return ours.exports;\n\thasRequiredOurs = 1;\n\t(function (module) {\n\n\t\tconst Stream = require$$0$b;\n\t\tif (Stream && process.env.READABLE_STREAM === 'disable') {\n\t\t  const promises = Stream.promises;\n\n\t\t  // Explicit export naming is needed for ESM\n\t\t  module.exports._uint8ArrayToBuffer = Stream._uint8ArrayToBuffer;\n\t\t  module.exports._isUint8Array = Stream._isUint8Array;\n\t\t  module.exports.isDisturbed = Stream.isDisturbed;\n\t\t  module.exports.isErrored = Stream.isErrored;\n\t\t  module.exports.isReadable = Stream.isReadable;\n\t\t  module.exports.Readable = Stream.Readable;\n\t\t  module.exports.Writable = Stream.Writable;\n\t\t  module.exports.Duplex = Stream.Duplex;\n\t\t  module.exports.Transform = Stream.Transform;\n\t\t  module.exports.PassThrough = Stream.PassThrough;\n\t\t  module.exports.addAbortSignal = Stream.addAbortSignal;\n\t\t  module.exports.finished = Stream.finished;\n\t\t  module.exports.destroy = Stream.destroy;\n\t\t  module.exports.pipeline = Stream.pipeline;\n\t\t  module.exports.compose = Stream.compose;\n\t\t  Object.defineProperty(Stream, 'promises', {\n\t\t    configurable: true,\n\t\t    enumerable: true,\n\t\t    get() {\n\t\t      return promises\n\t\t    }\n\t\t  });\n\t\t  module.exports.Stream = Stream.Stream;\n\t\t} else {\n\t\t  const CustomStream = requireStream();\n\t\t  const promises = requirePromises();\n\t\t  const originalDestroy = CustomStream.Readable.destroy;\n\t\t  module.exports = CustomStream.Readable;\n\n\t\t  // Explicit export naming is needed for ESM\n\t\t  module.exports._uint8ArrayToBuffer = CustomStream._uint8ArrayToBuffer;\n\t\t  module.exports._isUint8Array = CustomStream._isUint8Array;\n\t\t  module.exports.isDisturbed = CustomStream.isDisturbed;\n\t\t  module.exports.isErrored = CustomStream.isErrored;\n\t\t  module.exports.isReadable = CustomStream.isReadable;\n\t\t  module.exports.Readable = CustomStream.Readable;\n\t\t  module.exports.Writable = CustomStream.Writable;\n\t\t  module.exports.Duplex = CustomStream.Duplex;\n\t\t  module.exports.Transform = CustomStream.Transform;\n\t\t  module.exports.PassThrough = CustomStream.PassThrough;\n\t\t  module.exports.addAbortSignal = CustomStream.addAbortSignal;\n\t\t  module.exports.finished = CustomStream.finished;\n\t\t  module.exports.destroy = CustomStream.destroy;\n\t\t  module.exports.destroy = originalDestroy;\n\t\t  module.exports.pipeline = CustomStream.pipeline;\n\t\t  module.exports.compose = CustomStream.compose;\n\t\t  Object.defineProperty(CustomStream, 'promises', {\n\t\t    configurable: true,\n\t\t    enumerable: true,\n\t\t    get() {\n\t\t      return promises\n\t\t    }\n\t\t  });\n\t\t  module.exports.Stream = CustomStream.Stream;\n\t\t}\n\n\t\t// Allow default importing\n\t\tmodule.exports.default = module.exports; \n\t} (ours));\n\treturn ours.exports;\n}\n\nvar file = {exports: {}};\n\n/**\n * Appends the elements of `values` to `array`.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to append.\n * @returns {Array} Returns `array`.\n */\n\nvar _arrayPush;\nvar hasRequired_arrayPush;\n\nfunction require_arrayPush () {\n\tif (hasRequired_arrayPush) return _arrayPush;\n\thasRequired_arrayPush = 1;\n\tfunction arrayPush(array, values) {\n\t  var index = -1,\n\t      length = values.length,\n\t      offset = array.length;\n\n\t  while (++index < length) {\n\t    array[offset + index] = values[index];\n\t  }\n\t  return array;\n\t}\n\n\t_arrayPush = arrayPush;\n\treturn _arrayPush;\n}\n\nvar _isFlattenable;\nvar hasRequired_isFlattenable;\n\nfunction require_isFlattenable () {\n\tif (hasRequired_isFlattenable) return _isFlattenable;\n\thasRequired_isFlattenable = 1;\n\tvar Symbol = require_Symbol(),\n\t    isArguments = requireIsArguments(),\n\t    isArray = requireIsArray();\n\n\t/** Built-in value references. */\n\tvar spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined;\n\n\t/**\n\t * Checks if `value` is a flattenable `arguments` object or array.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.\n\t */\n\tfunction isFlattenable(value) {\n\t  return isArray(value) || isArguments(value) ||\n\t    !!(spreadableSymbol && value && value[spreadableSymbol]);\n\t}\n\n\t_isFlattenable = isFlattenable;\n\treturn _isFlattenable;\n}\n\nvar _baseFlatten;\nvar hasRequired_baseFlatten;\n\nfunction require_baseFlatten () {\n\tif (hasRequired_baseFlatten) return _baseFlatten;\n\thasRequired_baseFlatten = 1;\n\tvar arrayPush = require_arrayPush(),\n\t    isFlattenable = require_isFlattenable();\n\n\t/**\n\t * The base implementation of `_.flatten` with support for restricting flattening.\n\t *\n\t * @private\n\t * @param {Array} array The array to flatten.\n\t * @param {number} depth The maximum recursion depth.\n\t * @param {boolean} [predicate=isFlattenable] The function invoked per iteration.\n\t * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.\n\t * @param {Array} [result=[]] The initial result value.\n\t * @returns {Array} Returns the new flattened array.\n\t */\n\tfunction baseFlatten(array, depth, predicate, isStrict, result) {\n\t  var index = -1,\n\t      length = array.length;\n\n\t  predicate || (predicate = isFlattenable);\n\t  result || (result = []);\n\n\t  while (++index < length) {\n\t    var value = array[index];\n\t    if (depth > 0 && predicate(value)) {\n\t      if (depth > 1) {\n\t        // Recursively flatten arrays (susceptible to call stack limits).\n\t        baseFlatten(value, depth - 1, predicate, isStrict, result);\n\t      } else {\n\t        arrayPush(result, value);\n\t      }\n\t    } else if (!isStrict) {\n\t      result[result.length] = value;\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\t_baseFlatten = baseFlatten;\n\treturn _baseFlatten;\n}\n\nvar flatten_1;\nvar hasRequiredFlatten;\n\nfunction requireFlatten () {\n\tif (hasRequiredFlatten) return flatten_1;\n\thasRequiredFlatten = 1;\n\tvar baseFlatten = require_baseFlatten();\n\n\t/**\n\t * Flattens `array` a single level deep.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Array\n\t * @param {Array} array The array to flatten.\n\t * @returns {Array} Returns the new flattened array.\n\t * @example\n\t *\n\t * _.flatten([1, [2, [3, [4]], 5]]);\n\t * // => [1, 2, [3, [4]], 5]\n\t */\n\tfunction flatten(array) {\n\t  var length = array == null ? 0 : array.length;\n\t  return length ? baseFlatten(array, 1) : [];\n\t}\n\n\tflatten_1 = flatten;\n\treturn flatten_1;\n}\n\nvar _nativeCreate;\nvar hasRequired_nativeCreate;\n\nfunction require_nativeCreate () {\n\tif (hasRequired_nativeCreate) return _nativeCreate;\n\thasRequired_nativeCreate = 1;\n\tvar getNative = require_getNative();\n\n\t/* Built-in method references that are verified to be native. */\n\tvar nativeCreate = getNative(Object, 'create');\n\n\t_nativeCreate = nativeCreate;\n\treturn _nativeCreate;\n}\n\nvar _hashClear;\nvar hasRequired_hashClear;\n\nfunction require_hashClear () {\n\tif (hasRequired_hashClear) return _hashClear;\n\thasRequired_hashClear = 1;\n\tvar nativeCreate = require_nativeCreate();\n\n\t/**\n\t * Removes all key-value entries from the hash.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf Hash\n\t */\n\tfunction hashClear() {\n\t  this.__data__ = nativeCreate ? nativeCreate(null) : {};\n\t  this.size = 0;\n\t}\n\n\t_hashClear = hashClear;\n\treturn _hashClear;\n}\n\n/**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\n\nvar _hashDelete;\nvar hasRequired_hashDelete;\n\nfunction require_hashDelete () {\n\tif (hasRequired_hashDelete) return _hashDelete;\n\thasRequired_hashDelete = 1;\n\tfunction hashDelete(key) {\n\t  var result = this.has(key) && delete this.__data__[key];\n\t  this.size -= result ? 1 : 0;\n\t  return result;\n\t}\n\n\t_hashDelete = hashDelete;\n\treturn _hashDelete;\n}\n\nvar _hashGet;\nvar hasRequired_hashGet;\n\nfunction require_hashGet () {\n\tif (hasRequired_hashGet) return _hashGet;\n\thasRequired_hashGet = 1;\n\tvar nativeCreate = require_nativeCreate();\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Gets the hash value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf Hash\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction hashGet(key) {\n\t  var data = this.__data__;\n\t  if (nativeCreate) {\n\t    var result = data[key];\n\t    return result === HASH_UNDEFINED ? undefined : result;\n\t  }\n\t  return hasOwnProperty.call(data, key) ? data[key] : undefined;\n\t}\n\n\t_hashGet = hashGet;\n\treturn _hashGet;\n}\n\nvar _hashHas;\nvar hasRequired_hashHas;\n\nfunction require_hashHas () {\n\tif (hasRequired_hashHas) return _hashHas;\n\thasRequired_hashHas = 1;\n\tvar nativeCreate = require_nativeCreate();\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Checks if a hash value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf Hash\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction hashHas(key) {\n\t  var data = this.__data__;\n\t  return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\n\t}\n\n\t_hashHas = hashHas;\n\treturn _hashHas;\n}\n\nvar _hashSet;\nvar hasRequired_hashSet;\n\nfunction require_hashSet () {\n\tif (hasRequired_hashSet) return _hashSet;\n\thasRequired_hashSet = 1;\n\tvar nativeCreate = require_nativeCreate();\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/**\n\t * Sets the hash `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf Hash\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the hash instance.\n\t */\n\tfunction hashSet(key, value) {\n\t  var data = this.__data__;\n\t  this.size += this.has(key) ? 0 : 1;\n\t  data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n\t  return this;\n\t}\n\n\t_hashSet = hashSet;\n\treturn _hashSet;\n}\n\nvar _Hash;\nvar hasRequired_Hash;\n\nfunction require_Hash () {\n\tif (hasRequired_Hash) return _Hash;\n\thasRequired_Hash = 1;\n\tvar hashClear = require_hashClear(),\n\t    hashDelete = require_hashDelete(),\n\t    hashGet = require_hashGet(),\n\t    hashHas = require_hashHas(),\n\t    hashSet = require_hashSet();\n\n\t/**\n\t * Creates a hash object.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction Hash(entries) {\n\t  var index = -1,\n\t      length = entries == null ? 0 : entries.length;\n\n\t  this.clear();\n\t  while (++index < length) {\n\t    var entry = entries[index];\n\t    this.set(entry[0], entry[1]);\n\t  }\n\t}\n\n\t// Add methods to `Hash`.\n\tHash.prototype.clear = hashClear;\n\tHash.prototype['delete'] = hashDelete;\n\tHash.prototype.get = hashGet;\n\tHash.prototype.has = hashHas;\n\tHash.prototype.set = hashSet;\n\n\t_Hash = Hash;\n\treturn _Hash;\n}\n\n/**\n * Removes all key-value entries from the list cache.\n *\n * @private\n * @name clear\n * @memberOf ListCache\n */\n\nvar _listCacheClear;\nvar hasRequired_listCacheClear;\n\nfunction require_listCacheClear () {\n\tif (hasRequired_listCacheClear) return _listCacheClear;\n\thasRequired_listCacheClear = 1;\n\tfunction listCacheClear() {\n\t  this.__data__ = [];\n\t  this.size = 0;\n\t}\n\n\t_listCacheClear = listCacheClear;\n\treturn _listCacheClear;\n}\n\nvar _assocIndexOf;\nvar hasRequired_assocIndexOf;\n\nfunction require_assocIndexOf () {\n\tif (hasRequired_assocIndexOf) return _assocIndexOf;\n\thasRequired_assocIndexOf = 1;\n\tvar eq = requireEq();\n\n\t/**\n\t * Gets the index at which the `key` is found in `array` of key-value pairs.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} key The key to search for.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction assocIndexOf(array, key) {\n\t  var length = array.length;\n\t  while (length--) {\n\t    if (eq(array[length][0], key)) {\n\t      return length;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\t_assocIndexOf = assocIndexOf;\n\treturn _assocIndexOf;\n}\n\nvar _listCacheDelete;\nvar hasRequired_listCacheDelete;\n\nfunction require_listCacheDelete () {\n\tif (hasRequired_listCacheDelete) return _listCacheDelete;\n\thasRequired_listCacheDelete = 1;\n\tvar assocIndexOf = require_assocIndexOf();\n\n\t/** Used for built-in method references. */\n\tvar arrayProto = Array.prototype;\n\n\t/** Built-in value references. */\n\tvar splice = arrayProto.splice;\n\n\t/**\n\t * Removes `key` and its value from the list cache.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction listCacheDelete(key) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  if (index < 0) {\n\t    return false;\n\t  }\n\t  var lastIndex = data.length - 1;\n\t  if (index == lastIndex) {\n\t    data.pop();\n\t  } else {\n\t    splice.call(data, index, 1);\n\t  }\n\t  --this.size;\n\t  return true;\n\t}\n\n\t_listCacheDelete = listCacheDelete;\n\treturn _listCacheDelete;\n}\n\nvar _listCacheGet;\nvar hasRequired_listCacheGet;\n\nfunction require_listCacheGet () {\n\tif (hasRequired_listCacheGet) return _listCacheGet;\n\thasRequired_listCacheGet = 1;\n\tvar assocIndexOf = require_assocIndexOf();\n\n\t/**\n\t * Gets the list cache value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction listCacheGet(key) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  return index < 0 ? undefined : data[index][1];\n\t}\n\n\t_listCacheGet = listCacheGet;\n\treturn _listCacheGet;\n}\n\nvar _listCacheHas;\nvar hasRequired_listCacheHas;\n\nfunction require_listCacheHas () {\n\tif (hasRequired_listCacheHas) return _listCacheHas;\n\thasRequired_listCacheHas = 1;\n\tvar assocIndexOf = require_assocIndexOf();\n\n\t/**\n\t * Checks if a list cache value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf ListCache\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction listCacheHas(key) {\n\t  return assocIndexOf(this.__data__, key) > -1;\n\t}\n\n\t_listCacheHas = listCacheHas;\n\treturn _listCacheHas;\n}\n\nvar _listCacheSet;\nvar hasRequired_listCacheSet;\n\nfunction require_listCacheSet () {\n\tif (hasRequired_listCacheSet) return _listCacheSet;\n\thasRequired_listCacheSet = 1;\n\tvar assocIndexOf = require_assocIndexOf();\n\n\t/**\n\t * Sets the list cache `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the list cache instance.\n\t */\n\tfunction listCacheSet(key, value) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  if (index < 0) {\n\t    ++this.size;\n\t    data.push([key, value]);\n\t  } else {\n\t    data[index][1] = value;\n\t  }\n\t  return this;\n\t}\n\n\t_listCacheSet = listCacheSet;\n\treturn _listCacheSet;\n}\n\nvar _ListCache;\nvar hasRequired_ListCache;\n\nfunction require_ListCache () {\n\tif (hasRequired_ListCache) return _ListCache;\n\thasRequired_ListCache = 1;\n\tvar listCacheClear = require_listCacheClear(),\n\t    listCacheDelete = require_listCacheDelete(),\n\t    listCacheGet = require_listCacheGet(),\n\t    listCacheHas = require_listCacheHas(),\n\t    listCacheSet = require_listCacheSet();\n\n\t/**\n\t * Creates an list cache object.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction ListCache(entries) {\n\t  var index = -1,\n\t      length = entries == null ? 0 : entries.length;\n\n\t  this.clear();\n\t  while (++index < length) {\n\t    var entry = entries[index];\n\t    this.set(entry[0], entry[1]);\n\t  }\n\t}\n\n\t// Add methods to `ListCache`.\n\tListCache.prototype.clear = listCacheClear;\n\tListCache.prototype['delete'] = listCacheDelete;\n\tListCache.prototype.get = listCacheGet;\n\tListCache.prototype.has = listCacheHas;\n\tListCache.prototype.set = listCacheSet;\n\n\t_ListCache = ListCache;\n\treturn _ListCache;\n}\n\nvar _Map;\nvar hasRequired_Map;\n\nfunction require_Map () {\n\tif (hasRequired_Map) return _Map;\n\thasRequired_Map = 1;\n\tvar getNative = require_getNative(),\n\t    root = require_root();\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Map = getNative(root, 'Map');\n\n\t_Map = Map;\n\treturn _Map;\n}\n\nvar _mapCacheClear;\nvar hasRequired_mapCacheClear;\n\nfunction require_mapCacheClear () {\n\tif (hasRequired_mapCacheClear) return _mapCacheClear;\n\thasRequired_mapCacheClear = 1;\n\tvar Hash = require_Hash(),\n\t    ListCache = require_ListCache(),\n\t    Map = require_Map();\n\n\t/**\n\t * Removes all key-value entries from the map.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf MapCache\n\t */\n\tfunction mapCacheClear() {\n\t  this.size = 0;\n\t  this.__data__ = {\n\t    'hash': new Hash,\n\t    'map': new (Map || ListCache),\n\t    'string': new Hash\n\t  };\n\t}\n\n\t_mapCacheClear = mapCacheClear;\n\treturn _mapCacheClear;\n}\n\n/**\n * Checks if `value` is suitable for use as unique object key.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n */\n\nvar _isKeyable;\nvar hasRequired_isKeyable;\n\nfunction require_isKeyable () {\n\tif (hasRequired_isKeyable) return _isKeyable;\n\thasRequired_isKeyable = 1;\n\tfunction isKeyable(value) {\n\t  var type = typeof value;\n\t  return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n\t    ? (value !== '__proto__')\n\t    : (value === null);\n\t}\n\n\t_isKeyable = isKeyable;\n\treturn _isKeyable;\n}\n\nvar _getMapData;\nvar hasRequired_getMapData;\n\nfunction require_getMapData () {\n\tif (hasRequired_getMapData) return _getMapData;\n\thasRequired_getMapData = 1;\n\tvar isKeyable = require_isKeyable();\n\n\t/**\n\t * Gets the data for `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to query.\n\t * @param {string} key The reference key.\n\t * @returns {*} Returns the map data.\n\t */\n\tfunction getMapData(map, key) {\n\t  var data = map.__data__;\n\t  return isKeyable(key)\n\t    ? data[typeof key == 'string' ? 'string' : 'hash']\n\t    : data.map;\n\t}\n\n\t_getMapData = getMapData;\n\treturn _getMapData;\n}\n\nvar _mapCacheDelete;\nvar hasRequired_mapCacheDelete;\n\nfunction require_mapCacheDelete () {\n\tif (hasRequired_mapCacheDelete) return _mapCacheDelete;\n\thasRequired_mapCacheDelete = 1;\n\tvar getMapData = require_getMapData();\n\n\t/**\n\t * Removes `key` and its value from the map.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction mapCacheDelete(key) {\n\t  var result = getMapData(this, key)['delete'](key);\n\t  this.size -= result ? 1 : 0;\n\t  return result;\n\t}\n\n\t_mapCacheDelete = mapCacheDelete;\n\treturn _mapCacheDelete;\n}\n\nvar _mapCacheGet;\nvar hasRequired_mapCacheGet;\n\nfunction require_mapCacheGet () {\n\tif (hasRequired_mapCacheGet) return _mapCacheGet;\n\thasRequired_mapCacheGet = 1;\n\tvar getMapData = require_getMapData();\n\n\t/**\n\t * Gets the map value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction mapCacheGet(key) {\n\t  return getMapData(this, key).get(key);\n\t}\n\n\t_mapCacheGet = mapCacheGet;\n\treturn _mapCacheGet;\n}\n\nvar _mapCacheHas;\nvar hasRequired_mapCacheHas;\n\nfunction require_mapCacheHas () {\n\tif (hasRequired_mapCacheHas) return _mapCacheHas;\n\thasRequired_mapCacheHas = 1;\n\tvar getMapData = require_getMapData();\n\n\t/**\n\t * Checks if a map value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf MapCache\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction mapCacheHas(key) {\n\t  return getMapData(this, key).has(key);\n\t}\n\n\t_mapCacheHas = mapCacheHas;\n\treturn _mapCacheHas;\n}\n\nvar _mapCacheSet;\nvar hasRequired_mapCacheSet;\n\nfunction require_mapCacheSet () {\n\tif (hasRequired_mapCacheSet) return _mapCacheSet;\n\thasRequired_mapCacheSet = 1;\n\tvar getMapData = require_getMapData();\n\n\t/**\n\t * Sets the map `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the map cache instance.\n\t */\n\tfunction mapCacheSet(key, value) {\n\t  var data = getMapData(this, key),\n\t      size = data.size;\n\n\t  data.set(key, value);\n\t  this.size += data.size == size ? 0 : 1;\n\t  return this;\n\t}\n\n\t_mapCacheSet = mapCacheSet;\n\treturn _mapCacheSet;\n}\n\nvar _MapCache;\nvar hasRequired_MapCache;\n\nfunction require_MapCache () {\n\tif (hasRequired_MapCache) return _MapCache;\n\thasRequired_MapCache = 1;\n\tvar mapCacheClear = require_mapCacheClear(),\n\t    mapCacheDelete = require_mapCacheDelete(),\n\t    mapCacheGet = require_mapCacheGet(),\n\t    mapCacheHas = require_mapCacheHas(),\n\t    mapCacheSet = require_mapCacheSet();\n\n\t/**\n\t * Creates a map cache object to store key-value pairs.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction MapCache(entries) {\n\t  var index = -1,\n\t      length = entries == null ? 0 : entries.length;\n\n\t  this.clear();\n\t  while (++index < length) {\n\t    var entry = entries[index];\n\t    this.set(entry[0], entry[1]);\n\t  }\n\t}\n\n\t// Add methods to `MapCache`.\n\tMapCache.prototype.clear = mapCacheClear;\n\tMapCache.prototype['delete'] = mapCacheDelete;\n\tMapCache.prototype.get = mapCacheGet;\n\tMapCache.prototype.has = mapCacheHas;\n\tMapCache.prototype.set = mapCacheSet;\n\n\t_MapCache = MapCache;\n\treturn _MapCache;\n}\n\n/** Used to stand-in for `undefined` hash values. */\n\nvar _setCacheAdd;\nvar hasRequired_setCacheAdd;\n\nfunction require_setCacheAdd () {\n\tif (hasRequired_setCacheAdd) return _setCacheAdd;\n\thasRequired_setCacheAdd = 1;\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/**\n\t * Adds `value` to the array cache.\n\t *\n\t * @private\n\t * @name add\n\t * @memberOf SetCache\n\t * @alias push\n\t * @param {*} value The value to cache.\n\t * @returns {Object} Returns the cache instance.\n\t */\n\tfunction setCacheAdd(value) {\n\t  this.__data__.set(value, HASH_UNDEFINED);\n\t  return this;\n\t}\n\n\t_setCacheAdd = setCacheAdd;\n\treturn _setCacheAdd;\n}\n\n/**\n * Checks if `value` is in the array cache.\n *\n * @private\n * @name has\n * @memberOf SetCache\n * @param {*} value The value to search for.\n * @returns {number} Returns `true` if `value` is found, else `false`.\n */\n\nvar _setCacheHas;\nvar hasRequired_setCacheHas;\n\nfunction require_setCacheHas () {\n\tif (hasRequired_setCacheHas) return _setCacheHas;\n\thasRequired_setCacheHas = 1;\n\tfunction setCacheHas(value) {\n\t  return this.__data__.has(value);\n\t}\n\n\t_setCacheHas = setCacheHas;\n\treturn _setCacheHas;\n}\n\nvar _SetCache;\nvar hasRequired_SetCache;\n\nfunction require_SetCache () {\n\tif (hasRequired_SetCache) return _SetCache;\n\thasRequired_SetCache = 1;\n\tvar MapCache = require_MapCache(),\n\t    setCacheAdd = require_setCacheAdd(),\n\t    setCacheHas = require_setCacheHas();\n\n\t/**\n\t *\n\t * Creates an array cache object to store unique values.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [values] The values to cache.\n\t */\n\tfunction SetCache(values) {\n\t  var index = -1,\n\t      length = values == null ? 0 : values.length;\n\n\t  this.__data__ = new MapCache;\n\t  while (++index < length) {\n\t    this.add(values[index]);\n\t  }\n\t}\n\n\t// Add methods to `SetCache`.\n\tSetCache.prototype.add = SetCache.prototype.push = setCacheAdd;\n\tSetCache.prototype.has = setCacheHas;\n\n\t_SetCache = SetCache;\n\treturn _SetCache;\n}\n\n/**\n * The base implementation of `_.findIndex` and `_.findLastIndex` without\n * support for iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Function} predicate The function invoked per iteration.\n * @param {number} fromIndex The index to search from.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n\nvar _baseFindIndex;\nvar hasRequired_baseFindIndex;\n\nfunction require_baseFindIndex () {\n\tif (hasRequired_baseFindIndex) return _baseFindIndex;\n\thasRequired_baseFindIndex = 1;\n\tfunction baseFindIndex(array, predicate, fromIndex, fromRight) {\n\t  var length = array.length,\n\t      index = fromIndex + (fromRight ? 1 : -1);\n\n\t  while ((fromRight ? index-- : ++index < length)) {\n\t    if (predicate(array[index], index, array)) {\n\t      return index;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\t_baseFindIndex = baseFindIndex;\n\treturn _baseFindIndex;\n}\n\n/**\n * The base implementation of `_.isNaN` without support for number objects.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\n */\n\nvar _baseIsNaN;\nvar hasRequired_baseIsNaN;\n\nfunction require_baseIsNaN () {\n\tif (hasRequired_baseIsNaN) return _baseIsNaN;\n\thasRequired_baseIsNaN = 1;\n\tfunction baseIsNaN(value) {\n\t  return value !== value;\n\t}\n\n\t_baseIsNaN = baseIsNaN;\n\treturn _baseIsNaN;\n}\n\n/**\n * A specialized version of `_.indexOf` which performs strict equality\n * comparisons of values, i.e. `===`.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n\nvar _strictIndexOf;\nvar hasRequired_strictIndexOf;\n\nfunction require_strictIndexOf () {\n\tif (hasRequired_strictIndexOf) return _strictIndexOf;\n\thasRequired_strictIndexOf = 1;\n\tfunction strictIndexOf(array, value, fromIndex) {\n\t  var index = fromIndex - 1,\n\t      length = array.length;\n\n\t  while (++index < length) {\n\t    if (array[index] === value) {\n\t      return index;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\t_strictIndexOf = strictIndexOf;\n\treturn _strictIndexOf;\n}\n\nvar _baseIndexOf;\nvar hasRequired_baseIndexOf;\n\nfunction require_baseIndexOf () {\n\tif (hasRequired_baseIndexOf) return _baseIndexOf;\n\thasRequired_baseIndexOf = 1;\n\tvar baseFindIndex = require_baseFindIndex(),\n\t    baseIsNaN = require_baseIsNaN(),\n\t    strictIndexOf = require_strictIndexOf();\n\n\t/**\n\t * The base implementation of `_.indexOf` without `fromIndex` bounds checks.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} fromIndex The index to search from.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction baseIndexOf(array, value, fromIndex) {\n\t  return value === value\n\t    ? strictIndexOf(array, value, fromIndex)\n\t    : baseFindIndex(array, baseIsNaN, fromIndex);\n\t}\n\n\t_baseIndexOf = baseIndexOf;\n\treturn _baseIndexOf;\n}\n\nvar _arrayIncludes;\nvar hasRequired_arrayIncludes;\n\nfunction require_arrayIncludes () {\n\tif (hasRequired_arrayIncludes) return _arrayIncludes;\n\thasRequired_arrayIncludes = 1;\n\tvar baseIndexOf = require_baseIndexOf();\n\n\t/**\n\t * A specialized version of `_.includes` for arrays without support for\n\t * specifying an index to search from.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to inspect.\n\t * @param {*} target The value to search for.\n\t * @returns {boolean} Returns `true` if `target` is found, else `false`.\n\t */\n\tfunction arrayIncludes(array, value) {\n\t  var length = array == null ? 0 : array.length;\n\t  return !!length && baseIndexOf(array, value, 0) > -1;\n\t}\n\n\t_arrayIncludes = arrayIncludes;\n\treturn _arrayIncludes;\n}\n\n/**\n * This function is like `arrayIncludes` except that it accepts a comparator.\n *\n * @private\n * @param {Array} [array] The array to inspect.\n * @param {*} target The value to search for.\n * @param {Function} comparator The comparator invoked per element.\n * @returns {boolean} Returns `true` if `target` is found, else `false`.\n */\n\nvar _arrayIncludesWith;\nvar hasRequired_arrayIncludesWith;\n\nfunction require_arrayIncludesWith () {\n\tif (hasRequired_arrayIncludesWith) return _arrayIncludesWith;\n\thasRequired_arrayIncludesWith = 1;\n\tfunction arrayIncludesWith(array, value, comparator) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (comparator(value, array[index])) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\t_arrayIncludesWith = arrayIncludesWith;\n\treturn _arrayIncludesWith;\n}\n\n/**\n * A specialized version of `_.map` for arrays without support for iteratee\n * shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n */\n\nvar _arrayMap;\nvar hasRequired_arrayMap;\n\nfunction require_arrayMap () {\n\tif (hasRequired_arrayMap) return _arrayMap;\n\thasRequired_arrayMap = 1;\n\tfunction arrayMap(array, iteratee) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length,\n\t      result = Array(length);\n\n\t  while (++index < length) {\n\t    result[index] = iteratee(array[index], index, array);\n\t  }\n\t  return result;\n\t}\n\n\t_arrayMap = arrayMap;\n\treturn _arrayMap;\n}\n\n/**\n * Checks if a `cache` value for `key` exists.\n *\n * @private\n * @param {Object} cache The cache to query.\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\n\nvar _cacheHas;\nvar hasRequired_cacheHas;\n\nfunction require_cacheHas () {\n\tif (hasRequired_cacheHas) return _cacheHas;\n\thasRequired_cacheHas = 1;\n\tfunction cacheHas(cache, key) {\n\t  return cache.has(key);\n\t}\n\n\t_cacheHas = cacheHas;\n\treturn _cacheHas;\n}\n\nvar _baseDifference;\nvar hasRequired_baseDifference;\n\nfunction require_baseDifference () {\n\tif (hasRequired_baseDifference) return _baseDifference;\n\thasRequired_baseDifference = 1;\n\tvar SetCache = require_SetCache(),\n\t    arrayIncludes = require_arrayIncludes(),\n\t    arrayIncludesWith = require_arrayIncludesWith(),\n\t    arrayMap = require_arrayMap(),\n\t    baseUnary = require_baseUnary(),\n\t    cacheHas = require_cacheHas();\n\n\t/** Used as the size to enable large array optimizations. */\n\tvar LARGE_ARRAY_SIZE = 200;\n\n\t/**\n\t * The base implementation of methods like `_.difference` without support\n\t * for excluding multiple arrays or iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {Array} values The values to exclude.\n\t * @param {Function} [iteratee] The iteratee invoked per element.\n\t * @param {Function} [comparator] The comparator invoked per element.\n\t * @returns {Array} Returns the new array of filtered values.\n\t */\n\tfunction baseDifference(array, values, iteratee, comparator) {\n\t  var index = -1,\n\t      includes = arrayIncludes,\n\t      isCommon = true,\n\t      length = array.length,\n\t      result = [],\n\t      valuesLength = values.length;\n\n\t  if (!length) {\n\t    return result;\n\t  }\n\t  if (iteratee) {\n\t    values = arrayMap(values, baseUnary(iteratee));\n\t  }\n\t  if (comparator) {\n\t    includes = arrayIncludesWith;\n\t    isCommon = false;\n\t  }\n\t  else if (values.length >= LARGE_ARRAY_SIZE) {\n\t    includes = cacheHas;\n\t    isCommon = false;\n\t    values = new SetCache(values);\n\t  }\n\t  outer:\n\t  while (++index < length) {\n\t    var value = array[index],\n\t        computed = iteratee == null ? value : iteratee(value);\n\n\t    value = (comparator || value !== 0) ? value : 0;\n\t    if (isCommon && computed === computed) {\n\t      var valuesIndex = valuesLength;\n\t      while (valuesIndex--) {\n\t        if (values[valuesIndex] === computed) {\n\t          continue outer;\n\t        }\n\t      }\n\t      result.push(value);\n\t    }\n\t    else if (!includes(values, computed, comparator)) {\n\t      result.push(value);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\t_baseDifference = baseDifference;\n\treturn _baseDifference;\n}\n\nvar isArrayLikeObject_1;\nvar hasRequiredIsArrayLikeObject;\n\nfunction requireIsArrayLikeObject () {\n\tif (hasRequiredIsArrayLikeObject) return isArrayLikeObject_1;\n\thasRequiredIsArrayLikeObject = 1;\n\tvar isArrayLike = requireIsArrayLike(),\n\t    isObjectLike = requireIsObjectLike();\n\n\t/**\n\t * This method is like `_.isArrayLike` except that it also checks if `value`\n\t * is an object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an array-like object,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.isArrayLikeObject([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArrayLikeObject(document.body.children);\n\t * // => true\n\t *\n\t * _.isArrayLikeObject('abc');\n\t * // => false\n\t *\n\t * _.isArrayLikeObject(_.noop);\n\t * // => false\n\t */\n\tfunction isArrayLikeObject(value) {\n\t  return isObjectLike(value) && isArrayLike(value);\n\t}\n\n\tisArrayLikeObject_1 = isArrayLikeObject;\n\treturn isArrayLikeObject_1;\n}\n\nvar difference_1;\nvar hasRequiredDifference;\n\nfunction requireDifference () {\n\tif (hasRequiredDifference) return difference_1;\n\thasRequiredDifference = 1;\n\tvar baseDifference = require_baseDifference(),\n\t    baseFlatten = require_baseFlatten(),\n\t    baseRest = require_baseRest(),\n\t    isArrayLikeObject = requireIsArrayLikeObject();\n\n\t/**\n\t * Creates an array of `array` values not included in the other given arrays\n\t * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons. The order and references of result values are\n\t * determined by the first array.\n\t *\n\t * **Note:** Unlike `_.pullAll`, this method returns a new array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Array\n\t * @param {Array} array The array to inspect.\n\t * @param {...Array} [values] The values to exclude.\n\t * @returns {Array} Returns the new array of filtered values.\n\t * @see _.without, _.xor\n\t * @example\n\t *\n\t * _.difference([2, 1], [2, 3]);\n\t * // => [1]\n\t */\n\tvar difference = baseRest(function(array, values) {\n\t  return isArrayLikeObject(array)\n\t    ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true))\n\t    : [];\n\t});\n\n\tdifference_1 = difference;\n\treturn difference_1;\n}\n\nvar _Set;\nvar hasRequired_Set;\n\nfunction require_Set () {\n\tif (hasRequired_Set) return _Set;\n\thasRequired_Set = 1;\n\tvar getNative = require_getNative(),\n\t    root = require_root();\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Set = getNative(root, 'Set');\n\n\t_Set = Set;\n\treturn _Set;\n}\n\n/**\n * This method returns `undefined`.\n *\n * @static\n * @memberOf _\n * @since 2.3.0\n * @category Util\n * @example\n *\n * _.times(2, _.noop);\n * // => [undefined, undefined]\n */\n\nvar noop_1;\nvar hasRequiredNoop;\n\nfunction requireNoop () {\n\tif (hasRequiredNoop) return noop_1;\n\thasRequiredNoop = 1;\n\tfunction noop() {\n\t  // No operation performed.\n\t}\n\n\tnoop_1 = noop;\n\treturn noop_1;\n}\n\n/**\n * Converts `set` to an array of its values.\n *\n * @private\n * @param {Object} set The set to convert.\n * @returns {Array} Returns the values.\n */\n\nvar _setToArray;\nvar hasRequired_setToArray;\n\nfunction require_setToArray () {\n\tif (hasRequired_setToArray) return _setToArray;\n\thasRequired_setToArray = 1;\n\tfunction setToArray(set) {\n\t  var index = -1,\n\t      result = Array(set.size);\n\n\t  set.forEach(function(value) {\n\t    result[++index] = value;\n\t  });\n\t  return result;\n\t}\n\n\t_setToArray = setToArray;\n\treturn _setToArray;\n}\n\nvar _createSet;\nvar hasRequired_createSet;\n\nfunction require_createSet () {\n\tif (hasRequired_createSet) return _createSet;\n\thasRequired_createSet = 1;\n\tvar Set = require_Set(),\n\t    noop = requireNoop(),\n\t    setToArray = require_setToArray();\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/**\n\t * Creates a set object of `values`.\n\t *\n\t * @private\n\t * @param {Array} values The values to add to the set.\n\t * @returns {Object} Returns the new set.\n\t */\n\tvar createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) {\n\t  return new Set(values);\n\t};\n\n\t_createSet = createSet;\n\treturn _createSet;\n}\n\nvar _baseUniq;\nvar hasRequired_baseUniq;\n\nfunction require_baseUniq () {\n\tif (hasRequired_baseUniq) return _baseUniq;\n\thasRequired_baseUniq = 1;\n\tvar SetCache = require_SetCache(),\n\t    arrayIncludes = require_arrayIncludes(),\n\t    arrayIncludesWith = require_arrayIncludesWith(),\n\t    cacheHas = require_cacheHas(),\n\t    createSet = require_createSet(),\n\t    setToArray = require_setToArray();\n\n\t/** Used as the size to enable large array optimizations. */\n\tvar LARGE_ARRAY_SIZE = 200;\n\n\t/**\n\t * The base implementation of `_.uniqBy` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} [iteratee] The iteratee invoked per element.\n\t * @param {Function} [comparator] The comparator invoked per element.\n\t * @returns {Array} Returns the new duplicate free array.\n\t */\n\tfunction baseUniq(array, iteratee, comparator) {\n\t  var index = -1,\n\t      includes = arrayIncludes,\n\t      length = array.length,\n\t      isCommon = true,\n\t      result = [],\n\t      seen = result;\n\n\t  if (comparator) {\n\t    isCommon = false;\n\t    includes = arrayIncludesWith;\n\t  }\n\t  else if (length >= LARGE_ARRAY_SIZE) {\n\t    var set = iteratee ? null : createSet(array);\n\t    if (set) {\n\t      return setToArray(set);\n\t    }\n\t    isCommon = false;\n\t    includes = cacheHas;\n\t    seen = new SetCache;\n\t  }\n\t  else {\n\t    seen = iteratee ? [] : result;\n\t  }\n\t  outer:\n\t  while (++index < length) {\n\t    var value = array[index],\n\t        computed = iteratee ? iteratee(value) : value;\n\n\t    value = (comparator || value !== 0) ? value : 0;\n\t    if (isCommon && computed === computed) {\n\t      var seenIndex = seen.length;\n\t      while (seenIndex--) {\n\t        if (seen[seenIndex] === computed) {\n\t          continue outer;\n\t        }\n\t      }\n\t      if (iteratee) {\n\t        seen.push(computed);\n\t      }\n\t      result.push(value);\n\t    }\n\t    else if (!includes(seen, computed, comparator)) {\n\t      if (seen !== result) {\n\t        seen.push(computed);\n\t      }\n\t      result.push(value);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\t_baseUniq = baseUniq;\n\treturn _baseUniq;\n}\n\nvar union_1;\nvar hasRequiredUnion;\n\nfunction requireUnion () {\n\tif (hasRequiredUnion) return union_1;\n\thasRequiredUnion = 1;\n\tvar baseFlatten = require_baseFlatten(),\n\t    baseRest = require_baseRest(),\n\t    baseUniq = require_baseUniq(),\n\t    isArrayLikeObject = requireIsArrayLikeObject();\n\n\t/**\n\t * Creates an array of unique values, in order, from all given arrays using\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Array\n\t * @param {...Array} [arrays] The arrays to inspect.\n\t * @returns {Array} Returns the new array of combined values.\n\t * @example\n\t *\n\t * _.union([2], [1, 2]);\n\t * // => [2, 1]\n\t */\n\tvar union = baseRest(function(arrays) {\n\t  return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true));\n\t});\n\n\tunion_1 = union;\n\treturn union_1;\n}\n\n/**\n * Creates a unary function that invokes `func` with its argument transformed.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {Function} transform The argument transform.\n * @returns {Function} Returns the new function.\n */\n\nvar _overArg;\nvar hasRequired_overArg;\n\nfunction require_overArg () {\n\tif (hasRequired_overArg) return _overArg;\n\thasRequired_overArg = 1;\n\tfunction overArg(func, transform) {\n\t  return function(arg) {\n\t    return func(transform(arg));\n\t  };\n\t}\n\n\t_overArg = overArg;\n\treturn _overArg;\n}\n\nvar _getPrototype;\nvar hasRequired_getPrototype;\n\nfunction require_getPrototype () {\n\tif (hasRequired_getPrototype) return _getPrototype;\n\thasRequired_getPrototype = 1;\n\tvar overArg = require_overArg();\n\n\t/** Built-in value references. */\n\tvar getPrototype = overArg(Object.getPrototypeOf, Object);\n\n\t_getPrototype = getPrototype;\n\treturn _getPrototype;\n}\n\nvar isPlainObject_1;\nvar hasRequiredIsPlainObject;\n\nfunction requireIsPlainObject () {\n\tif (hasRequiredIsPlainObject) return isPlainObject_1;\n\thasRequiredIsPlainObject = 1;\n\tvar baseGetTag = require_baseGetTag(),\n\t    getPrototype = require_getPrototype(),\n\t    isObjectLike = requireIsObjectLike();\n\n\t/** `Object#toString` result references. */\n\tvar objectTag = '[object Object]';\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype,\n\t    objectProto = Object.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Used to infer the `Object` constructor. */\n\tvar objectCtorString = funcToString.call(Object);\n\n\t/**\n\t * Checks if `value` is a plain object, that is, an object created by the\n\t * `Object` constructor or one with a `[[Prototype]]` of `null`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.8.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t * }\n\t *\n\t * _.isPlainObject(new Foo);\n\t * // => false\n\t *\n\t * _.isPlainObject([1, 2, 3]);\n\t * // => false\n\t *\n\t * _.isPlainObject({ 'x': 0, 'y': 0 });\n\t * // => true\n\t *\n\t * _.isPlainObject(Object.create(null));\n\t * // => true\n\t */\n\tfunction isPlainObject(value) {\n\t  if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n\t    return false;\n\t  }\n\t  var proto = getPrototype(value);\n\t  if (proto === null) {\n\t    return true;\n\t  }\n\t  var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n\t  return typeof Ctor == 'function' && Ctor instanceof Ctor &&\n\t    funcToString.call(Ctor) == objectCtorString;\n\t}\n\n\tisPlainObject_1 = isPlainObject;\n\treturn isPlainObject_1;\n}\n\nvar commonjs$4 = {};\n\nvar commonjs$3 = {};\n\nvar braceExpansion;\nvar hasRequiredBraceExpansion;\n\nfunction requireBraceExpansion () {\n\tif (hasRequiredBraceExpansion) return braceExpansion;\n\thasRequiredBraceExpansion = 1;\n\tvar balanced = requireBalancedMatch();\n\n\tbraceExpansion = expandTop;\n\n\tvar escSlash = '\\0SLASH'+Math.random()+'\\0';\n\tvar escOpen = '\\0OPEN'+Math.random()+'\\0';\n\tvar escClose = '\\0CLOSE'+Math.random()+'\\0';\n\tvar escComma = '\\0COMMA'+Math.random()+'\\0';\n\tvar escPeriod = '\\0PERIOD'+Math.random()+'\\0';\n\n\tfunction numeric(str) {\n\t  return parseInt(str, 10) == str\n\t    ? parseInt(str, 10)\n\t    : str.charCodeAt(0);\n\t}\n\n\tfunction escapeBraces(str) {\n\t  return str.split('\\\\\\\\').join(escSlash)\n\t            .split('\\\\{').join(escOpen)\n\t            .split('\\\\}').join(escClose)\n\t            .split('\\\\,').join(escComma)\n\t            .split('\\\\.').join(escPeriod);\n\t}\n\n\tfunction unescapeBraces(str) {\n\t  return str.split(escSlash).join('\\\\')\n\t            .split(escOpen).join('{')\n\t            .split(escClose).join('}')\n\t            .split(escComma).join(',')\n\t            .split(escPeriod).join('.');\n\t}\n\n\n\t// Basically just str.split(\",\"), but handling cases\n\t// where we have nested braced sections, which should be\n\t// treated as individual members, like {a,{b,c},d}\n\tfunction parseCommaParts(str) {\n\t  if (!str)\n\t    return [''];\n\n\t  var parts = [];\n\t  var m = balanced('{', '}', str);\n\n\t  if (!m)\n\t    return str.split(',');\n\n\t  var pre = m.pre;\n\t  var body = m.body;\n\t  var post = m.post;\n\t  var p = pre.split(',');\n\n\t  p[p.length-1] += '{' + body + '}';\n\t  var postParts = parseCommaParts(post);\n\t  if (post.length) {\n\t    p[p.length-1] += postParts.shift();\n\t    p.push.apply(p, postParts);\n\t  }\n\n\t  parts.push.apply(parts, p);\n\n\t  return parts;\n\t}\n\n\tfunction expandTop(str) {\n\t  if (!str)\n\t    return [];\n\n\t  // I don't know why Bash 4.3 does this, but it does.\n\t  // Anything starting with {} will have the first two bytes preserved\n\t  // but *only* at the top level, so {},a}b will not expand to anything,\n\t  // but a{},b}c will be expanded to [a}c,abc].\n\t  // One could argue that this is a bug in Bash, but since the goal of\n\t  // this module is to match Bash's rules, we escape a leading {}\n\t  if (str.substr(0, 2) === '{}') {\n\t    str = '\\\\{\\\\}' + str.substr(2);\n\t  }\n\n\t  return expand(escapeBraces(str), true).map(unescapeBraces);\n\t}\n\n\tfunction embrace(str) {\n\t  return '{' + str + '}';\n\t}\n\tfunction isPadded(el) {\n\t  return /^-?0\\d/.test(el);\n\t}\n\n\tfunction lte(i, y) {\n\t  return i <= y;\n\t}\n\tfunction gte(i, y) {\n\t  return i >= y;\n\t}\n\n\tfunction expand(str, isTop) {\n\t  var expansions = [];\n\n\t  var m = balanced('{', '}', str);\n\t  if (!m) return [str];\n\n\t  // no need to expand pre, since it is guaranteed to be free of brace-sets\n\t  var pre = m.pre;\n\t  var post = m.post.length\n\t    ? expand(m.post, false)\n\t    : [''];\n\n\t  if (/\\$$/.test(m.pre)) {    \n\t    for (var k = 0; k < post.length; k++) {\n\t      var expansion = pre+ '{' + m.body + '}' + post[k];\n\t      expansions.push(expansion);\n\t    }\n\t  } else {\n\t    var isNumericSequence = /^-?\\d+\\.\\.-?\\d+(?:\\.\\.-?\\d+)?$/.test(m.body);\n\t    var isAlphaSequence = /^[a-zA-Z]\\.\\.[a-zA-Z](?:\\.\\.-?\\d+)?$/.test(m.body);\n\t    var isSequence = isNumericSequence || isAlphaSequence;\n\t    var isOptions = m.body.indexOf(',') >= 0;\n\t    if (!isSequence && !isOptions) {\n\t      // {a},b}\n\t      if (m.post.match(/,.*\\}/)) {\n\t        str = m.pre + '{' + m.body + escClose + m.post;\n\t        return expand(str);\n\t      }\n\t      return [str];\n\t    }\n\n\t    var n;\n\t    if (isSequence) {\n\t      n = m.body.split(/\\.\\./);\n\t    } else {\n\t      n = parseCommaParts(m.body);\n\t      if (n.length === 1) {\n\t        // x{{a,b}}y ==> x{a}y x{b}y\n\t        n = expand(n[0], false).map(embrace);\n\t        if (n.length === 1) {\n\t          return post.map(function(p) {\n\t            return m.pre + n[0] + p;\n\t          });\n\t        }\n\t      }\n\t    }\n\n\t    // at this point, n is the parts, and we know it's not a comma set\n\t    // with a single entry.\n\t    var N;\n\n\t    if (isSequence) {\n\t      var x = numeric(n[0]);\n\t      var y = numeric(n[1]);\n\t      var width = Math.max(n[0].length, n[1].length);\n\t      var incr = n.length == 3\n\t        ? Math.abs(numeric(n[2]))\n\t        : 1;\n\t      var test = lte;\n\t      var reverse = y < x;\n\t      if (reverse) {\n\t        incr *= -1;\n\t        test = gte;\n\t      }\n\t      var pad = n.some(isPadded);\n\n\t      N = [];\n\n\t      for (var i = x; test(i, y); i += incr) {\n\t        var c;\n\t        if (isAlphaSequence) {\n\t          c = String.fromCharCode(i);\n\t          if (c === '\\\\')\n\t            c = '';\n\t        } else {\n\t          c = String(i);\n\t          if (pad) {\n\t            var need = width - c.length;\n\t            if (need > 0) {\n\t              var z = new Array(need + 1).join('0');\n\t              if (i < 0)\n\t                c = '-' + z + c.slice(1);\n\t              else\n\t                c = z + c;\n\t            }\n\t          }\n\t        }\n\t        N.push(c);\n\t      }\n\t    } else {\n\t      N = [];\n\n\t      for (var j = 0; j < n.length; j++) {\n\t        N.push.apply(N, expand(n[j], false));\n\t      }\n\t    }\n\n\t    for (var j = 0; j < N.length; j++) {\n\t      for (var k = 0; k < post.length; k++) {\n\t        var expansion = pre + N[j] + post[k];\n\t        if (!isTop || isSequence || expansion)\n\t          expansions.push(expansion);\n\t      }\n\t    }\n\t  }\n\n\t  return expansions;\n\t}\n\treturn braceExpansion;\n}\n\nvar assertValidPattern = {};\n\nvar hasRequiredAssertValidPattern;\n\nfunction requireAssertValidPattern () {\n\tif (hasRequiredAssertValidPattern) return assertValidPattern;\n\thasRequiredAssertValidPattern = 1;\n\tObject.defineProperty(assertValidPattern, \"__esModule\", { value: true });\n\tassertValidPattern.assertValidPattern = void 0;\n\tconst MAX_PATTERN_LENGTH = 1024 * 64;\n\tconst assertValidPattern$1 = (pattern) => {\n\t    if (typeof pattern !== 'string') {\n\t        throw new TypeError('invalid pattern');\n\t    }\n\t    if (pattern.length > MAX_PATTERN_LENGTH) {\n\t        throw new TypeError('pattern is too long');\n\t    }\n\t};\n\tassertValidPattern.assertValidPattern = assertValidPattern$1;\n\t\n\treturn assertValidPattern;\n}\n\nvar ast = {};\n\nvar braceExpressions = {};\n\nvar hasRequiredBraceExpressions;\n\nfunction requireBraceExpressions () {\n\tif (hasRequiredBraceExpressions) return braceExpressions;\n\thasRequiredBraceExpressions = 1;\n\t// translate the various posix character classes into unicode properties\n\t// this works across all unicode locales\n\tObject.defineProperty(braceExpressions, \"__esModule\", { value: true });\n\tbraceExpressions.parseClass = void 0;\n\t// { <posix class>: [<translation>, /u flag required, negated]\n\tconst posixClasses = {\n\t    '[:alnum:]': ['\\\\p{L}\\\\p{Nl}\\\\p{Nd}', true],\n\t    '[:alpha:]': ['\\\\p{L}\\\\p{Nl}', true],\n\t    '[:ascii:]': ['\\\\x' + '00-\\\\x' + '7f', false],\n\t    '[:blank:]': ['\\\\p{Zs}\\\\t', true],\n\t    '[:cntrl:]': ['\\\\p{Cc}', true],\n\t    '[:digit:]': ['\\\\p{Nd}', true],\n\t    '[:graph:]': ['\\\\p{Z}\\\\p{C}', true, true],\n\t    '[:lower:]': ['\\\\p{Ll}', true],\n\t    '[:print:]': ['\\\\p{C}', true],\n\t    '[:punct:]': ['\\\\p{P}', true],\n\t    '[:space:]': ['\\\\p{Z}\\\\t\\\\r\\\\n\\\\v\\\\f', true],\n\t    '[:upper:]': ['\\\\p{Lu}', true],\n\t    '[:word:]': ['\\\\p{L}\\\\p{Nl}\\\\p{Nd}\\\\p{Pc}', true],\n\t    '[:xdigit:]': ['A-Fa-f0-9', false],\n\t};\n\t// only need to escape a few things inside of brace expressions\n\t// escapes: [ \\ ] -\n\tconst braceEscape = (s) => s.replace(/[[\\]\\\\-]/g, '\\\\$&');\n\t// escape all regexp magic characters\n\tconst regexpEscape = (s) => s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&');\n\t// everything has already been escaped, we just have to join\n\tconst rangesToString = (ranges) => ranges.join('');\n\t// takes a glob string at a posix brace expression, and returns\n\t// an equivalent regular expression source, and boolean indicating\n\t// whether the /u flag needs to be applied, and the number of chars\n\t// consumed to parse the character class.\n\t// This also removes out of order ranges, and returns ($.) if the\n\t// entire class just no good.\n\tconst parseClass = (glob, position) => {\n\t    const pos = position;\n\t    /* c8 ignore start */\n\t    if (glob.charAt(pos) !== '[') {\n\t        throw new Error('not in a brace expression');\n\t    }\n\t    /* c8 ignore stop */\n\t    const ranges = [];\n\t    const negs = [];\n\t    let i = pos + 1;\n\t    let sawStart = false;\n\t    let uflag = false;\n\t    let escaping = false;\n\t    let negate = false;\n\t    let endPos = pos;\n\t    let rangeStart = '';\n\t    WHILE: while (i < glob.length) {\n\t        const c = glob.charAt(i);\n\t        if ((c === '!' || c === '^') && i === pos + 1) {\n\t            negate = true;\n\t            i++;\n\t            continue;\n\t        }\n\t        if (c === ']' && sawStart && !escaping) {\n\t            endPos = i + 1;\n\t            break;\n\t        }\n\t        sawStart = true;\n\t        if (c === '\\\\') {\n\t            if (!escaping) {\n\t                escaping = true;\n\t                i++;\n\t                continue;\n\t            }\n\t            // escaped \\ char, fall through and treat like normal char\n\t        }\n\t        if (c === '[' && !escaping) {\n\t            // either a posix class, a collation equivalent, or just a [\n\t            for (const [cls, [unip, u, neg]] of Object.entries(posixClasses)) {\n\t                if (glob.startsWith(cls, i)) {\n\t                    // invalid, [a-[] is fine, but not [a-[:alpha]]\n\t                    if (rangeStart) {\n\t                        return ['$.', false, glob.length - pos, true];\n\t                    }\n\t                    i += cls.length;\n\t                    if (neg)\n\t                        negs.push(unip);\n\t                    else\n\t                        ranges.push(unip);\n\t                    uflag = uflag || u;\n\t                    continue WHILE;\n\t                }\n\t            }\n\t        }\n\t        // now it's just a normal character, effectively\n\t        escaping = false;\n\t        if (rangeStart) {\n\t            // throw this range away if it's not valid, but others\n\t            // can still match.\n\t            if (c > rangeStart) {\n\t                ranges.push(braceEscape(rangeStart) + '-' + braceEscape(c));\n\t            }\n\t            else if (c === rangeStart) {\n\t                ranges.push(braceEscape(c));\n\t            }\n\t            rangeStart = '';\n\t            i++;\n\t            continue;\n\t        }\n\t        // now might be the start of a range.\n\t        // can be either c-d or c-] or c<more...>] or c] at this point\n\t        if (glob.startsWith('-]', i + 1)) {\n\t            ranges.push(braceEscape(c + '-'));\n\t            i += 2;\n\t            continue;\n\t        }\n\t        if (glob.startsWith('-', i + 1)) {\n\t            rangeStart = c;\n\t            i += 2;\n\t            continue;\n\t        }\n\t        // not the start of a range, just a single character\n\t        ranges.push(braceEscape(c));\n\t        i++;\n\t    }\n\t    if (endPos < i) {\n\t        // didn't see the end of the class, not a valid class,\n\t        // but might still be valid as a literal match.\n\t        return ['', false, 0, false];\n\t    }\n\t    // if we got no ranges and no negates, then we have a range that\n\t    // cannot possibly match anything, and that poisons the whole glob\n\t    if (!ranges.length && !negs.length) {\n\t        return ['$.', false, glob.length - pos, true];\n\t    }\n\t    // if we got one positive range, and it's a single character, then that's\n\t    // not actually a magic pattern, it's just that one literal character.\n\t    // we should not treat that as \"magic\", we should just return the literal\n\t    // character. [_] is a perfectly valid way to escape glob magic chars.\n\t    if (negs.length === 0 &&\n\t        ranges.length === 1 &&\n\t        /^\\\\?.$/.test(ranges[0]) &&\n\t        !negate) {\n\t        const r = ranges[0].length === 2 ? ranges[0].slice(-1) : ranges[0];\n\t        return [regexpEscape(r), false, endPos - pos, false];\n\t    }\n\t    const sranges = '[' + (negate ? '^' : '') + rangesToString(ranges) + ']';\n\t    const snegs = '[' + (negate ? '' : '^') + rangesToString(negs) + ']';\n\t    const comb = ranges.length && negs.length\n\t        ? '(' + sranges + '|' + snegs + ')'\n\t        : ranges.length\n\t            ? sranges\n\t            : snegs;\n\t    return [comb, uflag, endPos - pos, true];\n\t};\n\tbraceExpressions.parseClass = parseClass;\n\t\n\treturn braceExpressions;\n}\n\nvar _unescape = {};\n\nvar hasRequired_unescape;\n\nfunction require_unescape () {\n\tif (hasRequired_unescape) return _unescape;\n\thasRequired_unescape = 1;\n\tObject.defineProperty(_unescape, \"__esModule\", { value: true });\n\t_unescape.unescape = void 0;\n\t/**\n\t * Un-escape a string that has been escaped with {@link escape}.\n\t *\n\t * If the {@link windowsPathsNoEscape} option is used, then square-brace\n\t * escapes are removed, but not backslash escapes.  For example, it will turn\n\t * the string `'[*]'` into `*`, but it will not turn `'\\\\*'` into `'*'`,\n\t * becuase `\\` is a path separator in `windowsPathsNoEscape` mode.\n\t *\n\t * When `windowsPathsNoEscape` is not set, then both brace escapes and\n\t * backslash escapes are removed.\n\t *\n\t * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped\n\t * or unescaped.\n\t */\n\tconst unescape = (s, { windowsPathsNoEscape = false, } = {}) => {\n\t    return windowsPathsNoEscape\n\t        ? s.replace(/\\[([^\\/\\\\])\\]/g, '$1')\n\t        : s.replace(/((?!\\\\).|^)\\[([^\\/\\\\])\\]/g, '$1$2').replace(/\\\\([^\\/])/g, '$1');\n\t};\n\t_unescape.unescape = unescape;\n\t\n\treturn _unescape;\n}\n\nvar hasRequiredAst;\n\nfunction requireAst () {\n\tif (hasRequiredAst) return ast;\n\thasRequiredAst = 1;\n\t// parse a single path portion\n\tObject.defineProperty(ast, \"__esModule\", { value: true });\n\tast.AST = void 0;\n\tconst brace_expressions_js_1 = requireBraceExpressions();\n\tconst unescape_js_1 = require_unescape();\n\tconst types = new Set(['!', '?', '+', '*', '@']);\n\tconst isExtglobType = (c) => types.has(c);\n\t// Patterns that get prepended to bind to the start of either the\n\t// entire string, or just a single path portion, to prevent dots\n\t// and/or traversal patterns, when needed.\n\t// Exts don't need the ^ or / bit, because the root binds that already.\n\tconst startNoTraversal = '(?!(?:^|/)\\\\.\\\\.?(?:$|/))';\n\tconst startNoDot = '(?!\\\\.)';\n\t// characters that indicate a start of pattern needs the \"no dots\" bit,\n\t// because a dot *might* be matched. ( is not in the list, because in\n\t// the case of a child extglob, it will handle the prevention itself.\n\tconst addPatternStart = new Set(['[', '.']);\n\t// cases where traversal is A-OK, no dot prevention needed\n\tconst justDots = new Set(['..', '.']);\n\tconst reSpecials = new Set('().*{}+?[]^$\\\\!');\n\tconst regExpEscape = (s) => s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&');\n\t// any single thing other than /\n\tconst qmark = '[^/]';\n\t// * => any number of characters\n\tconst star = qmark + '*?';\n\t// use + when we need to ensure that *something* matches, because the * is\n\t// the only thing in the path portion.\n\tconst starNoEmpty = qmark + '+?';\n\t// remove the \\ chars that we added if we end up doing a nonmagic compare\n\t// const deslash = (s: string) => s.replace(/\\\\(.)/g, '$1')\n\tclass AST {\n\t    type;\n\t    #root;\n\t    #hasMagic;\n\t    #uflag = false;\n\t    #parts = [];\n\t    #parent;\n\t    #parentIndex;\n\t    #negs;\n\t    #filledNegs = false;\n\t    #options;\n\t    #toString;\n\t    // set to true if it's an extglob with no children\n\t    // (which really means one child of '')\n\t    #emptyExt = false;\n\t    constructor(type, parent, options = {}) {\n\t        this.type = type;\n\t        // extglobs are inherently magical\n\t        if (type)\n\t            this.#hasMagic = true;\n\t        this.#parent = parent;\n\t        this.#root = this.#parent ? this.#parent.#root : this;\n\t        this.#options = this.#root === this ? options : this.#root.#options;\n\t        this.#negs = this.#root === this ? [] : this.#root.#negs;\n\t        if (type === '!' && !this.#root.#filledNegs)\n\t            this.#negs.push(this);\n\t        this.#parentIndex = this.#parent ? this.#parent.#parts.length : 0;\n\t    }\n\t    get hasMagic() {\n\t        /* c8 ignore start */\n\t        if (this.#hasMagic !== undefined)\n\t            return this.#hasMagic;\n\t        /* c8 ignore stop */\n\t        for (const p of this.#parts) {\n\t            if (typeof p === 'string')\n\t                continue;\n\t            if (p.type || p.hasMagic)\n\t                return (this.#hasMagic = true);\n\t        }\n\t        // note: will be undefined until we generate the regexp src and find out\n\t        return this.#hasMagic;\n\t    }\n\t    // reconstructs the pattern\n\t    toString() {\n\t        if (this.#toString !== undefined)\n\t            return this.#toString;\n\t        if (!this.type) {\n\t            return (this.#toString = this.#parts.map(p => String(p)).join(''));\n\t        }\n\t        else {\n\t            return (this.#toString =\n\t                this.type + '(' + this.#parts.map(p => String(p)).join('|') + ')');\n\t        }\n\t    }\n\t    #fillNegs() {\n\t        /* c8 ignore start */\n\t        if (this !== this.#root)\n\t            throw new Error('should only call on root');\n\t        if (this.#filledNegs)\n\t            return this;\n\t        /* c8 ignore stop */\n\t        // call toString() once to fill this out\n\t        this.toString();\n\t        this.#filledNegs = true;\n\t        let n;\n\t        while ((n = this.#negs.pop())) {\n\t            if (n.type !== '!')\n\t                continue;\n\t            // walk up the tree, appending everthing that comes AFTER parentIndex\n\t            let p = n;\n\t            let pp = p.#parent;\n\t            while (pp) {\n\t                for (let i = p.#parentIndex + 1; !pp.type && i < pp.#parts.length; i++) {\n\t                    for (const part of n.#parts) {\n\t                        /* c8 ignore start */\n\t                        if (typeof part === 'string') {\n\t                            throw new Error('string part in extglob AST??');\n\t                        }\n\t                        /* c8 ignore stop */\n\t                        part.copyIn(pp.#parts[i]);\n\t                    }\n\t                }\n\t                p = pp;\n\t                pp = p.#parent;\n\t            }\n\t        }\n\t        return this;\n\t    }\n\t    push(...parts) {\n\t        for (const p of parts) {\n\t            if (p === '')\n\t                continue;\n\t            /* c8 ignore start */\n\t            if (typeof p !== 'string' && !(p instanceof AST && p.#parent === this)) {\n\t                throw new Error('invalid part: ' + p);\n\t            }\n\t            /* c8 ignore stop */\n\t            this.#parts.push(p);\n\t        }\n\t    }\n\t    toJSON() {\n\t        const ret = this.type === null\n\t            ? this.#parts.slice().map(p => (typeof p === 'string' ? p : p.toJSON()))\n\t            : [this.type, ...this.#parts.map(p => p.toJSON())];\n\t        if (this.isStart() && !this.type)\n\t            ret.unshift([]);\n\t        if (this.isEnd() &&\n\t            (this === this.#root ||\n\t                (this.#root.#filledNegs && this.#parent?.type === '!'))) {\n\t            ret.push({});\n\t        }\n\t        return ret;\n\t    }\n\t    isStart() {\n\t        if (this.#root === this)\n\t            return true;\n\t        // if (this.type) return !!this.#parent?.isStart()\n\t        if (!this.#parent?.isStart())\n\t            return false;\n\t        if (this.#parentIndex === 0)\n\t            return true;\n\t        // if everything AHEAD of this is a negation, then it's still the \"start\"\n\t        const p = this.#parent;\n\t        for (let i = 0; i < this.#parentIndex; i++) {\n\t            const pp = p.#parts[i];\n\t            if (!(pp instanceof AST && pp.type === '!')) {\n\t                return false;\n\t            }\n\t        }\n\t        return true;\n\t    }\n\t    isEnd() {\n\t        if (this.#root === this)\n\t            return true;\n\t        if (this.#parent?.type === '!')\n\t            return true;\n\t        if (!this.#parent?.isEnd())\n\t            return false;\n\t        if (!this.type)\n\t            return this.#parent?.isEnd();\n\t        // if not root, it'll always have a parent\n\t        /* c8 ignore start */\n\t        const pl = this.#parent ? this.#parent.#parts.length : 0;\n\t        /* c8 ignore stop */\n\t        return this.#parentIndex === pl - 1;\n\t    }\n\t    copyIn(part) {\n\t        if (typeof part === 'string')\n\t            this.push(part);\n\t        else\n\t            this.push(part.clone(this));\n\t    }\n\t    clone(parent) {\n\t        const c = new AST(this.type, parent);\n\t        for (const p of this.#parts) {\n\t            c.copyIn(p);\n\t        }\n\t        return c;\n\t    }\n\t    static #parseAST(str, ast, pos, opt) {\n\t        let escaping = false;\n\t        let inBrace = false;\n\t        let braceStart = -1;\n\t        let braceNeg = false;\n\t        if (ast.type === null) {\n\t            // outside of a extglob, append until we find a start\n\t            let i = pos;\n\t            let acc = '';\n\t            while (i < str.length) {\n\t                const c = str.charAt(i++);\n\t                // still accumulate escapes at this point, but we do ignore\n\t                // starts that are escaped\n\t                if (escaping || c === '\\\\') {\n\t                    escaping = !escaping;\n\t                    acc += c;\n\t                    continue;\n\t                }\n\t                if (inBrace) {\n\t                    if (i === braceStart + 1) {\n\t                        if (c === '^' || c === '!') {\n\t                            braceNeg = true;\n\t                        }\n\t                    }\n\t                    else if (c === ']' && !(i === braceStart + 2 && braceNeg)) {\n\t                        inBrace = false;\n\t                    }\n\t                    acc += c;\n\t                    continue;\n\t                }\n\t                else if (c === '[') {\n\t                    inBrace = true;\n\t                    braceStart = i;\n\t                    braceNeg = false;\n\t                    acc += c;\n\t                    continue;\n\t                }\n\t                if (!opt.noext && isExtglobType(c) && str.charAt(i) === '(') {\n\t                    ast.push(acc);\n\t                    acc = '';\n\t                    const ext = new AST(c, ast);\n\t                    i = AST.#parseAST(str, ext, i, opt);\n\t                    ast.push(ext);\n\t                    continue;\n\t                }\n\t                acc += c;\n\t            }\n\t            ast.push(acc);\n\t            return i;\n\t        }\n\t        // some kind of extglob, pos is at the (\n\t        // find the next | or )\n\t        let i = pos + 1;\n\t        let part = new AST(null, ast);\n\t        const parts = [];\n\t        let acc = '';\n\t        while (i < str.length) {\n\t            const c = str.charAt(i++);\n\t            // still accumulate escapes at this point, but we do ignore\n\t            // starts that are escaped\n\t            if (escaping || c === '\\\\') {\n\t                escaping = !escaping;\n\t                acc += c;\n\t                continue;\n\t            }\n\t            if (inBrace) {\n\t                if (i === braceStart + 1) {\n\t                    if (c === '^' || c === '!') {\n\t                        braceNeg = true;\n\t                    }\n\t                }\n\t                else if (c === ']' && !(i === braceStart + 2 && braceNeg)) {\n\t                    inBrace = false;\n\t                }\n\t                acc += c;\n\t                continue;\n\t            }\n\t            else if (c === '[') {\n\t                inBrace = true;\n\t                braceStart = i;\n\t                braceNeg = false;\n\t                acc += c;\n\t                continue;\n\t            }\n\t            if (isExtglobType(c) && str.charAt(i) === '(') {\n\t                part.push(acc);\n\t                acc = '';\n\t                const ext = new AST(c, part);\n\t                part.push(ext);\n\t                i = AST.#parseAST(str, ext, i, opt);\n\t                continue;\n\t            }\n\t            if (c === '|') {\n\t                part.push(acc);\n\t                acc = '';\n\t                parts.push(part);\n\t                part = new AST(null, ast);\n\t                continue;\n\t            }\n\t            if (c === ')') {\n\t                if (acc === '' && ast.#parts.length === 0) {\n\t                    ast.#emptyExt = true;\n\t                }\n\t                part.push(acc);\n\t                acc = '';\n\t                ast.push(...parts, part);\n\t                return i;\n\t            }\n\t            acc += c;\n\t        }\n\t        // unfinished extglob\n\t        // if we got here, it was a malformed extglob! not an extglob, but\n\t        // maybe something else in there.\n\t        ast.type = null;\n\t        ast.#hasMagic = undefined;\n\t        ast.#parts = [str.substring(pos - 1)];\n\t        return i;\n\t    }\n\t    static fromGlob(pattern, options = {}) {\n\t        const ast = new AST(null, undefined, options);\n\t        AST.#parseAST(pattern, ast, 0, options);\n\t        return ast;\n\t    }\n\t    // returns the regular expression if there's magic, or the unescaped\n\t    // string if not.\n\t    toMMPattern() {\n\t        // should only be called on root\n\t        /* c8 ignore start */\n\t        if (this !== this.#root)\n\t            return this.#root.toMMPattern();\n\t        /* c8 ignore stop */\n\t        const glob = this.toString();\n\t        const [re, body, hasMagic, uflag] = this.toRegExpSource();\n\t        // if we're in nocase mode, and not nocaseMagicOnly, then we do\n\t        // still need a regular expression if we have to case-insensitively\n\t        // match capital/lowercase characters.\n\t        const anyMagic = hasMagic ||\n\t            this.#hasMagic ||\n\t            (this.#options.nocase &&\n\t                !this.#options.nocaseMagicOnly &&\n\t                glob.toUpperCase() !== glob.toLowerCase());\n\t        if (!anyMagic) {\n\t            return body;\n\t        }\n\t        const flags = (this.#options.nocase ? 'i' : '') + (uflag ? 'u' : '');\n\t        return Object.assign(new RegExp(`^${re}$`, flags), {\n\t            _src: re,\n\t            _glob: glob,\n\t        });\n\t    }\n\t    get options() {\n\t        return this.#options;\n\t    }\n\t    // returns the string match, the regexp source, whether there's magic\n\t    // in the regexp (so a regular expression is required) and whether or\n\t    // not the uflag is needed for the regular expression (for posix classes)\n\t    // TODO: instead of injecting the start/end at this point, just return\n\t    // the BODY of the regexp, along with the start/end portions suitable\n\t    // for binding the start/end in either a joined full-path makeRe context\n\t    // (where we bind to (^|/), or a standalone matchPart context (where\n\t    // we bind to ^, and not /).  Otherwise slashes get duped!\n\t    //\n\t    // In part-matching mode, the start is:\n\t    // - if not isStart: nothing\n\t    // - if traversal possible, but not allowed: ^(?!\\.\\.?$)\n\t    // - if dots allowed or not possible: ^\n\t    // - if dots possible and not allowed: ^(?!\\.)\n\t    // end is:\n\t    // - if not isEnd(): nothing\n\t    // - else: $\n\t    //\n\t    // In full-path matching mode, we put the slash at the START of the\n\t    // pattern, so start is:\n\t    // - if first pattern: same as part-matching mode\n\t    // - if not isStart(): nothing\n\t    // - if traversal possible, but not allowed: /(?!\\.\\.?(?:$|/))\n\t    // - if dots allowed or not possible: /\n\t    // - if dots possible and not allowed: /(?!\\.)\n\t    // end is:\n\t    // - if last pattern, same as part-matching mode\n\t    // - else nothing\n\t    //\n\t    // Always put the (?:$|/) on negated tails, though, because that has to be\n\t    // there to bind the end of the negated pattern portion, and it's easier to\n\t    // just stick it in now rather than try to inject it later in the middle of\n\t    // the pattern.\n\t    //\n\t    // We can just always return the same end, and leave it up to the caller\n\t    // to know whether it's going to be used joined or in parts.\n\t    // And, if the start is adjusted slightly, can do the same there:\n\t    // - if not isStart: nothing\n\t    // - if traversal possible, but not allowed: (?:/|^)(?!\\.\\.?$)\n\t    // - if dots allowed or not possible: (?:/|^)\n\t    // - if dots possible and not allowed: (?:/|^)(?!\\.)\n\t    //\n\t    // But it's better to have a simpler binding without a conditional, for\n\t    // performance, so probably better to return both start options.\n\t    //\n\t    // Then the caller just ignores the end if it's not the first pattern,\n\t    // and the start always gets applied.\n\t    //\n\t    // But that's always going to be $ if it's the ending pattern, or nothing,\n\t    // so the caller can just attach $ at the end of the pattern when building.\n\t    //\n\t    // So the todo is:\n\t    // - better detect what kind of start is needed\n\t    // - return both flavors of starting pattern\n\t    // - attach $ at the end of the pattern when creating the actual RegExp\n\t    //\n\t    // Ah, but wait, no, that all only applies to the root when the first pattern\n\t    // is not an extglob. If the first pattern IS an extglob, then we need all\n\t    // that dot prevention biz to live in the extglob portions, because eg\n\t    // +(*|.x*) can match .xy but not .yx.\n\t    //\n\t    // So, return the two flavors if it's #root and the first child is not an\n\t    // AST, otherwise leave it to the child AST to handle it, and there,\n\t    // use the (?:^|/) style of start binding.\n\t    //\n\t    // Even simplified further:\n\t    // - Since the start for a join is eg /(?!\\.) and the start for a part\n\t    // is ^(?!\\.), we can just prepend (?!\\.) to the pattern (either root\n\t    // or start or whatever) and prepend ^ or / at the Regexp construction.\n\t    toRegExpSource(allowDot) {\n\t        const dot = allowDot ?? !!this.#options.dot;\n\t        if (this.#root === this)\n\t            this.#fillNegs();\n\t        if (!this.type) {\n\t            const noEmpty = this.isStart() && this.isEnd();\n\t            const src = this.#parts\n\t                .map(p => {\n\t                const [re, _, hasMagic, uflag] = typeof p === 'string'\n\t                    ? AST.#parseGlob(p, this.#hasMagic, noEmpty)\n\t                    : p.toRegExpSource(allowDot);\n\t                this.#hasMagic = this.#hasMagic || hasMagic;\n\t                this.#uflag = this.#uflag || uflag;\n\t                return re;\n\t            })\n\t                .join('');\n\t            let start = '';\n\t            if (this.isStart()) {\n\t                if (typeof this.#parts[0] === 'string') {\n\t                    // this is the string that will match the start of the pattern,\n\t                    // so we need to protect against dots and such.\n\t                    // '.' and '..' cannot match unless the pattern is that exactly,\n\t                    // even if it starts with . or dot:true is set.\n\t                    const dotTravAllowed = this.#parts.length === 1 && justDots.has(this.#parts[0]);\n\t                    if (!dotTravAllowed) {\n\t                        const aps = addPatternStart;\n\t                        // check if we have a possibility of matching . or ..,\n\t                        // and prevent that.\n\t                        const needNoTrav = \n\t                        // dots are allowed, and the pattern starts with [ or .\n\t                        (dot && aps.has(src.charAt(0))) ||\n\t                            // the pattern starts with \\., and then [ or .\n\t                            (src.startsWith('\\\\.') && aps.has(src.charAt(2))) ||\n\t                            // the pattern starts with \\.\\., and then [ or .\n\t                            (src.startsWith('\\\\.\\\\.') && aps.has(src.charAt(4)));\n\t                        // no need to prevent dots if it can't match a dot, or if a\n\t                        // sub-pattern will be preventing it anyway.\n\t                        const needNoDot = !dot && !allowDot && aps.has(src.charAt(0));\n\t                        start = needNoTrav ? startNoTraversal : needNoDot ? startNoDot : '';\n\t                    }\n\t                }\n\t            }\n\t            // append the \"end of path portion\" pattern to negation tails\n\t            let end = '';\n\t            if (this.isEnd() &&\n\t                this.#root.#filledNegs &&\n\t                this.#parent?.type === '!') {\n\t                end = '(?:$|\\\\/)';\n\t            }\n\t            const final = start + src + end;\n\t            return [\n\t                final,\n\t                (0, unescape_js_1.unescape)(src),\n\t                (this.#hasMagic = !!this.#hasMagic),\n\t                this.#uflag,\n\t            ];\n\t        }\n\t        // We need to calculate the body *twice* if it's a repeat pattern\n\t        // at the start, once in nodot mode, then again in dot mode, so a\n\t        // pattern like *(?) can match 'x.y'\n\t        const repeated = this.type === '*' || this.type === '+';\n\t        // some kind of extglob\n\t        const start = this.type === '!' ? '(?:(?!(?:' : '(?:';\n\t        let body = this.#partsToRegExp(dot);\n\t        if (this.isStart() && this.isEnd() && !body && this.type !== '!') {\n\t            // invalid extglob, has to at least be *something* present, if it's\n\t            // the entire path portion.\n\t            const s = this.toString();\n\t            this.#parts = [s];\n\t            this.type = null;\n\t            this.#hasMagic = undefined;\n\t            return [s, (0, unescape_js_1.unescape)(this.toString()), false, false];\n\t        }\n\t        // XXX abstract out this map method\n\t        let bodyDotAllowed = !repeated || allowDot || dot || false\n\t            ? ''\n\t            : this.#partsToRegExp(true);\n\t        if (bodyDotAllowed === body) {\n\t            bodyDotAllowed = '';\n\t        }\n\t        if (bodyDotAllowed) {\n\t            body = `(?:${body})(?:${bodyDotAllowed})*?`;\n\t        }\n\t        // an empty !() is exactly equivalent to a starNoEmpty\n\t        let final = '';\n\t        if (this.type === '!' && this.#emptyExt) {\n\t            final = (this.isStart() && !dot ? startNoDot : '') + starNoEmpty;\n\t        }\n\t        else {\n\t            const close = this.type === '!'\n\t                ? // !() must match something,but !(x) can match ''\n\t                    '))' +\n\t                        (this.isStart() && !dot && !allowDot ? startNoDot : '') +\n\t                        star +\n\t                        ')'\n\t                : this.type === '@'\n\t                    ? ')'\n\t                    : this.type === '?'\n\t                        ? ')?'\n\t                        : this.type === '+' && bodyDotAllowed\n\t                            ? ')'\n\t                            : this.type === '*' && bodyDotAllowed\n\t                                ? `)?`\n\t                                : `)${this.type}`;\n\t            final = start + body + close;\n\t        }\n\t        return [\n\t            final,\n\t            (0, unescape_js_1.unescape)(body),\n\t            (this.#hasMagic = !!this.#hasMagic),\n\t            this.#uflag,\n\t        ];\n\t    }\n\t    #partsToRegExp(dot) {\n\t        return this.#parts\n\t            .map(p => {\n\t            // extglob ASTs should only contain parent ASTs\n\t            /* c8 ignore start */\n\t            if (typeof p === 'string') {\n\t                throw new Error('string type in extglob ast??');\n\t            }\n\t            /* c8 ignore stop */\n\t            // can ignore hasMagic, because extglobs are already always magic\n\t            const [re, _, _hasMagic, uflag] = p.toRegExpSource(dot);\n\t            this.#uflag = this.#uflag || uflag;\n\t            return re;\n\t        })\n\t            .filter(p => !(this.isStart() && this.isEnd()) || !!p)\n\t            .join('|');\n\t    }\n\t    static #parseGlob(glob, hasMagic, noEmpty = false) {\n\t        let escaping = false;\n\t        let re = '';\n\t        let uflag = false;\n\t        for (let i = 0; i < glob.length; i++) {\n\t            const c = glob.charAt(i);\n\t            if (escaping) {\n\t                escaping = false;\n\t                re += (reSpecials.has(c) ? '\\\\' : '') + c;\n\t                continue;\n\t            }\n\t            if (c === '\\\\') {\n\t                if (i === glob.length - 1) {\n\t                    re += '\\\\\\\\';\n\t                }\n\t                else {\n\t                    escaping = true;\n\t                }\n\t                continue;\n\t            }\n\t            if (c === '[') {\n\t                const [src, needUflag, consumed, magic] = (0, brace_expressions_js_1.parseClass)(glob, i);\n\t                if (consumed) {\n\t                    re += src;\n\t                    uflag = uflag || needUflag;\n\t                    i += consumed - 1;\n\t                    hasMagic = hasMagic || magic;\n\t                    continue;\n\t                }\n\t            }\n\t            if (c === '*') {\n\t                if (noEmpty && glob === '*')\n\t                    re += starNoEmpty;\n\t                else\n\t                    re += star;\n\t                hasMagic = true;\n\t                continue;\n\t            }\n\t            if (c === '?') {\n\t                re += qmark;\n\t                hasMagic = true;\n\t                continue;\n\t            }\n\t            re += regExpEscape(c);\n\t        }\n\t        return [re, (0, unescape_js_1.unescape)(glob), !!hasMagic, uflag];\n\t    }\n\t}\n\tast.AST = AST;\n\t\n\treturn ast;\n}\n\nvar _escape = {};\n\nvar hasRequired_escape;\n\nfunction require_escape () {\n\tif (hasRequired_escape) return _escape;\n\thasRequired_escape = 1;\n\tObject.defineProperty(_escape, \"__esModule\", { value: true });\n\t_escape.escape = void 0;\n\t/**\n\t * Escape all magic characters in a glob pattern.\n\t *\n\t * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}\n\t * option is used, then characters are escaped by wrapping in `[]`, because\n\t * a magic character wrapped in a character class can only be satisfied by\n\t * that exact character.  In this mode, `\\` is _not_ escaped, because it is\n\t * not interpreted as a magic character, but instead as a path separator.\n\t */\n\tconst escape = (s, { windowsPathsNoEscape = false, } = {}) => {\n\t    // don't need to escape +@! because we escape the parens\n\t    // that make those magic, and escaping ! as [!] isn't valid,\n\t    // because [!]] is a valid glob class meaning not ']'.\n\t    return windowsPathsNoEscape\n\t        ? s.replace(/[?*()[\\]]/g, '[$&]')\n\t        : s.replace(/[?*()[\\]\\\\]/g, '\\\\$&');\n\t};\n\t_escape.escape = escape;\n\t\n\treturn _escape;\n}\n\nvar hasRequiredCommonjs$4;\n\nfunction requireCommonjs$4 () {\n\tif (hasRequiredCommonjs$4) return commonjs$3;\n\thasRequiredCommonjs$4 = 1;\n\t(function (exports) {\n\t\tvar __importDefault = (commonjs$3 && commonjs$3.__importDefault) || function (mod) {\n\t\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.unescape = exports.escape = exports.AST = exports.Minimatch = exports.match = exports.makeRe = exports.braceExpand = exports.defaults = exports.filter = exports.GLOBSTAR = exports.sep = exports.minimatch = void 0;\n\t\tconst brace_expansion_1 = __importDefault(requireBraceExpansion());\n\t\tconst assert_valid_pattern_js_1 = requireAssertValidPattern();\n\t\tconst ast_js_1 = requireAst();\n\t\tconst escape_js_1 = require_escape();\n\t\tconst unescape_js_1 = require_unescape();\n\t\tconst minimatch = (p, pattern, options = {}) => {\n\t\t    (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);\n\t\t    // shortcut: comments match nothing.\n\t\t    if (!options.nocomment && pattern.charAt(0) === '#') {\n\t\t        return false;\n\t\t    }\n\t\t    return new Minimatch(pattern, options).match(p);\n\t\t};\n\t\texports.minimatch = minimatch;\n\t\t// Optimized checking for the most common glob patterns.\n\t\tconst starDotExtRE = /^\\*+([^+@!?\\*\\[\\(]*)$/;\n\t\tconst starDotExtTest = (ext) => (f) => !f.startsWith('.') && f.endsWith(ext);\n\t\tconst starDotExtTestDot = (ext) => (f) => f.endsWith(ext);\n\t\tconst starDotExtTestNocase = (ext) => {\n\t\t    ext = ext.toLowerCase();\n\t\t    return (f) => !f.startsWith('.') && f.toLowerCase().endsWith(ext);\n\t\t};\n\t\tconst starDotExtTestNocaseDot = (ext) => {\n\t\t    ext = ext.toLowerCase();\n\t\t    return (f) => f.toLowerCase().endsWith(ext);\n\t\t};\n\t\tconst starDotStarRE = /^\\*+\\.\\*+$/;\n\t\tconst starDotStarTest = (f) => !f.startsWith('.') && f.includes('.');\n\t\tconst starDotStarTestDot = (f) => f !== '.' && f !== '..' && f.includes('.');\n\t\tconst dotStarRE = /^\\.\\*+$/;\n\t\tconst dotStarTest = (f) => f !== '.' && f !== '..' && f.startsWith('.');\n\t\tconst starRE = /^\\*+$/;\n\t\tconst starTest = (f) => f.length !== 0 && !f.startsWith('.');\n\t\tconst starTestDot = (f) => f.length !== 0 && f !== '.' && f !== '..';\n\t\tconst qmarksRE = /^\\?+([^+@!?\\*\\[\\(]*)?$/;\n\t\tconst qmarksTestNocase = ([$0, ext = '']) => {\n\t\t    const noext = qmarksTestNoExt([$0]);\n\t\t    if (!ext)\n\t\t        return noext;\n\t\t    ext = ext.toLowerCase();\n\t\t    return (f) => noext(f) && f.toLowerCase().endsWith(ext);\n\t\t};\n\t\tconst qmarksTestNocaseDot = ([$0, ext = '']) => {\n\t\t    const noext = qmarksTestNoExtDot([$0]);\n\t\t    if (!ext)\n\t\t        return noext;\n\t\t    ext = ext.toLowerCase();\n\t\t    return (f) => noext(f) && f.toLowerCase().endsWith(ext);\n\t\t};\n\t\tconst qmarksTestDot = ([$0, ext = '']) => {\n\t\t    const noext = qmarksTestNoExtDot([$0]);\n\t\t    return !ext ? noext : (f) => noext(f) && f.endsWith(ext);\n\t\t};\n\t\tconst qmarksTest = ([$0, ext = '']) => {\n\t\t    const noext = qmarksTestNoExt([$0]);\n\t\t    return !ext ? noext : (f) => noext(f) && f.endsWith(ext);\n\t\t};\n\t\tconst qmarksTestNoExt = ([$0]) => {\n\t\t    const len = $0.length;\n\t\t    return (f) => f.length === len && !f.startsWith('.');\n\t\t};\n\t\tconst qmarksTestNoExtDot = ([$0]) => {\n\t\t    const len = $0.length;\n\t\t    return (f) => f.length === len && f !== '.' && f !== '..';\n\t\t};\n\t\t/* c8 ignore start */\n\t\tconst defaultPlatform = (typeof process === 'object' && process\n\t\t    ? (typeof process.env === 'object' &&\n\t\t        process.env &&\n\t\t        process.env.__MINIMATCH_TESTING_PLATFORM__) ||\n\t\t        process.platform\n\t\t    : 'posix');\n\t\tconst path = {\n\t\t    win32: { sep: '\\\\' },\n\t\t    posix: { sep: '/' },\n\t\t};\n\t\t/* c8 ignore stop */\n\t\texports.sep = defaultPlatform === 'win32' ? path.win32.sep : path.posix.sep;\n\t\texports.minimatch.sep = exports.sep;\n\t\texports.GLOBSTAR = Symbol('globstar **');\n\t\texports.minimatch.GLOBSTAR = exports.GLOBSTAR;\n\t\t// any single thing other than /\n\t\t// don't need to escape / when using new RegExp()\n\t\tconst qmark = '[^/]';\n\t\t// * => any number of characters\n\t\tconst star = qmark + '*?';\n\t\t// ** when dots are allowed.  Anything goes, except .. and .\n\t\t// not (^ or / followed by one or two dots followed by $ or /),\n\t\t// followed by anything, any number of times.\n\t\tconst twoStarDot = '(?:(?!(?:\\\\/|^)(?:\\\\.{1,2})($|\\\\/)).)*?';\n\t\t// not a ^ or / followed by a dot,\n\t\t// followed by anything, any number of times.\n\t\tconst twoStarNoDot = '(?:(?!(?:\\\\/|^)\\\\.).)*?';\n\t\tconst filter = (pattern, options = {}) => (p) => (0, exports.minimatch)(p, pattern, options);\n\t\texports.filter = filter;\n\t\texports.minimatch.filter = exports.filter;\n\t\tconst ext = (a, b = {}) => Object.assign({}, a, b);\n\t\tconst defaults = (def) => {\n\t\t    if (!def || typeof def !== 'object' || !Object.keys(def).length) {\n\t\t        return exports.minimatch;\n\t\t    }\n\t\t    const orig = exports.minimatch;\n\t\t    const m = (p, pattern, options = {}) => orig(p, pattern, ext(def, options));\n\t\t    return Object.assign(m, {\n\t\t        Minimatch: class Minimatch extends orig.Minimatch {\n\t\t            constructor(pattern, options = {}) {\n\t\t                super(pattern, ext(def, options));\n\t\t            }\n\t\t            static defaults(options) {\n\t\t                return orig.defaults(ext(def, options)).Minimatch;\n\t\t            }\n\t\t        },\n\t\t        AST: class AST extends orig.AST {\n\t\t            /* c8 ignore start */\n\t\t            constructor(type, parent, options = {}) {\n\t\t                super(type, parent, ext(def, options));\n\t\t            }\n\t\t            /* c8 ignore stop */\n\t\t            static fromGlob(pattern, options = {}) {\n\t\t                return orig.AST.fromGlob(pattern, ext(def, options));\n\t\t            }\n\t\t        },\n\t\t        unescape: (s, options = {}) => orig.unescape(s, ext(def, options)),\n\t\t        escape: (s, options = {}) => orig.escape(s, ext(def, options)),\n\t\t        filter: (pattern, options = {}) => orig.filter(pattern, ext(def, options)),\n\t\t        defaults: (options) => orig.defaults(ext(def, options)),\n\t\t        makeRe: (pattern, options = {}) => orig.makeRe(pattern, ext(def, options)),\n\t\t        braceExpand: (pattern, options = {}) => orig.braceExpand(pattern, ext(def, options)),\n\t\t        match: (list, pattern, options = {}) => orig.match(list, pattern, ext(def, options)),\n\t\t        sep: orig.sep,\n\t\t        GLOBSTAR: exports.GLOBSTAR,\n\t\t    });\n\t\t};\n\t\texports.defaults = defaults;\n\t\texports.minimatch.defaults = exports.defaults;\n\t\t// Brace expansion:\n\t\t// a{b,c}d -> abd acd\n\t\t// a{b,}c -> abc ac\n\t\t// a{0..3}d -> a0d a1d a2d a3d\n\t\t// a{b,c{d,e}f}g -> abg acdfg acefg\n\t\t// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n\t\t//\n\t\t// Invalid sets are not expanded.\n\t\t// a{2..}b -> a{2..}b\n\t\t// a{b}c -> a{b}c\n\t\tconst braceExpand = (pattern, options = {}) => {\n\t\t    (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);\n\t\t    // Thanks to Yeting Li <https://github.com/yetingli> for\n\t\t    // improving this regexp to avoid a ReDOS vulnerability.\n\t\t    if (options.nobrace || !/\\{(?:(?!\\{).)*\\}/.test(pattern)) {\n\t\t        // shortcut. no need to expand.\n\t\t        return [pattern];\n\t\t    }\n\t\t    return (0, brace_expansion_1.default)(pattern);\n\t\t};\n\t\texports.braceExpand = braceExpand;\n\t\texports.minimatch.braceExpand = exports.braceExpand;\n\t\t// parse a component of the expanded set.\n\t\t// At this point, no pattern may contain \"/\" in it\n\t\t// so we're going to return a 2d array, where each entry is the full\n\t\t// pattern, split on '/', and then turned into a regular expression.\n\t\t// A regexp is made at the end which joins each array with an\n\t\t// escaped /, and another full one which joins each regexp with |.\n\t\t//\n\t\t// Following the lead of Bash 4.1, note that \"**\" only has special meaning\n\t\t// when it is the *only* thing in a path portion.  Otherwise, any series\n\t\t// of * is equivalent to a single *.  Globstar behavior is enabled by\n\t\t// default, and can be disabled by setting options.noglobstar.\n\t\tconst makeRe = (pattern, options = {}) => new Minimatch(pattern, options).makeRe();\n\t\texports.makeRe = makeRe;\n\t\texports.minimatch.makeRe = exports.makeRe;\n\t\tconst match = (list, pattern, options = {}) => {\n\t\t    const mm = new Minimatch(pattern, options);\n\t\t    list = list.filter(f => mm.match(f));\n\t\t    if (mm.options.nonull && !list.length) {\n\t\t        list.push(pattern);\n\t\t    }\n\t\t    return list;\n\t\t};\n\t\texports.match = match;\n\t\texports.minimatch.match = exports.match;\n\t\t// replace stuff like \\* with *\n\t\tconst globMagic = /[?*]|[+@!]\\(.*?\\)|\\[|\\]/;\n\t\tconst regExpEscape = (s) => s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&');\n\t\tclass Minimatch {\n\t\t    options;\n\t\t    set;\n\t\t    pattern;\n\t\t    windowsPathsNoEscape;\n\t\t    nonegate;\n\t\t    negate;\n\t\t    comment;\n\t\t    empty;\n\t\t    preserveMultipleSlashes;\n\t\t    partial;\n\t\t    globSet;\n\t\t    globParts;\n\t\t    nocase;\n\t\t    isWindows;\n\t\t    platform;\n\t\t    windowsNoMagicRoot;\n\t\t    regexp;\n\t\t    constructor(pattern, options = {}) {\n\t\t        (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);\n\t\t        options = options || {};\n\t\t        this.options = options;\n\t\t        this.pattern = pattern;\n\t\t        this.platform = options.platform || defaultPlatform;\n\t\t        this.isWindows = this.platform === 'win32';\n\t\t        this.windowsPathsNoEscape =\n\t\t            !!options.windowsPathsNoEscape || options.allowWindowsEscape === false;\n\t\t        if (this.windowsPathsNoEscape) {\n\t\t            this.pattern = this.pattern.replace(/\\\\/g, '/');\n\t\t        }\n\t\t        this.preserveMultipleSlashes = !!options.preserveMultipleSlashes;\n\t\t        this.regexp = null;\n\t\t        this.negate = false;\n\t\t        this.nonegate = !!options.nonegate;\n\t\t        this.comment = false;\n\t\t        this.empty = false;\n\t\t        this.partial = !!options.partial;\n\t\t        this.nocase = !!this.options.nocase;\n\t\t        this.windowsNoMagicRoot =\n\t\t            options.windowsNoMagicRoot !== undefined\n\t\t                ? options.windowsNoMagicRoot\n\t\t                : !!(this.isWindows && this.nocase);\n\t\t        this.globSet = [];\n\t\t        this.globParts = [];\n\t\t        this.set = [];\n\t\t        // make the set of regexps etc.\n\t\t        this.make();\n\t\t    }\n\t\t    hasMagic() {\n\t\t        if (this.options.magicalBraces && this.set.length > 1) {\n\t\t            return true;\n\t\t        }\n\t\t        for (const pattern of this.set) {\n\t\t            for (const part of pattern) {\n\t\t                if (typeof part !== 'string')\n\t\t                    return true;\n\t\t            }\n\t\t        }\n\t\t        return false;\n\t\t    }\n\t\t    debug(..._) { }\n\t\t    make() {\n\t\t        const pattern = this.pattern;\n\t\t        const options = this.options;\n\t\t        // empty patterns and comments match nothing.\n\t\t        if (!options.nocomment && pattern.charAt(0) === '#') {\n\t\t            this.comment = true;\n\t\t            return;\n\t\t        }\n\t\t        if (!pattern) {\n\t\t            this.empty = true;\n\t\t            return;\n\t\t        }\n\t\t        // step 1: figure out negation, etc.\n\t\t        this.parseNegate();\n\t\t        // step 2: expand braces\n\t\t        this.globSet = [...new Set(this.braceExpand())];\n\t\t        if (options.debug) {\n\t\t            this.debug = (...args) => console.error(...args);\n\t\t        }\n\t\t        this.debug(this.pattern, this.globSet);\n\t\t        // step 3: now we have a set, so turn each one into a series of\n\t\t        // path-portion matching patterns.\n\t\t        // These will be regexps, except in the case of \"**\", which is\n\t\t        // set to the GLOBSTAR object for globstar behavior,\n\t\t        // and will not contain any / characters\n\t\t        //\n\t\t        // First, we preprocess to make the glob pattern sets a bit simpler\n\t\t        // and deduped.  There are some perf-killing patterns that can cause\n\t\t        // problems with a glob walk, but we can simplify them down a bit.\n\t\t        const rawGlobParts = this.globSet.map(s => this.slashSplit(s));\n\t\t        this.globParts = this.preprocess(rawGlobParts);\n\t\t        this.debug(this.pattern, this.globParts);\n\t\t        // glob --> regexps\n\t\t        let set = this.globParts.map((s, _, __) => {\n\t\t            if (this.isWindows && this.windowsNoMagicRoot) {\n\t\t                // check if it's a drive or unc path.\n\t\t                const isUNC = s[0] === '' &&\n\t\t                    s[1] === '' &&\n\t\t                    (s[2] === '?' || !globMagic.test(s[2])) &&\n\t\t                    !globMagic.test(s[3]);\n\t\t                const isDrive = /^[a-z]:/i.test(s[0]);\n\t\t                if (isUNC) {\n\t\t                    return [...s.slice(0, 4), ...s.slice(4).map(ss => this.parse(ss))];\n\t\t                }\n\t\t                else if (isDrive) {\n\t\t                    return [s[0], ...s.slice(1).map(ss => this.parse(ss))];\n\t\t                }\n\t\t            }\n\t\t            return s.map(ss => this.parse(ss));\n\t\t        });\n\t\t        this.debug(this.pattern, set);\n\t\t        // filter out everything that didn't compile properly.\n\t\t        this.set = set.filter(s => s.indexOf(false) === -1);\n\t\t        // do not treat the ? in UNC paths as magic\n\t\t        if (this.isWindows) {\n\t\t            for (let i = 0; i < this.set.length; i++) {\n\t\t                const p = this.set[i];\n\t\t                if (p[0] === '' &&\n\t\t                    p[1] === '' &&\n\t\t                    this.globParts[i][2] === '?' &&\n\t\t                    typeof p[3] === 'string' &&\n\t\t                    /^[a-z]:$/i.test(p[3])) {\n\t\t                    p[2] = '?';\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t        this.debug(this.pattern, this.set);\n\t\t    }\n\t\t    // various transforms to equivalent pattern sets that are\n\t\t    // faster to process in a filesystem walk.  The goal is to\n\t\t    // eliminate what we can, and push all ** patterns as far\n\t\t    // to the right as possible, even if it increases the number\n\t\t    // of patterns that we have to process.\n\t\t    preprocess(globParts) {\n\t\t        // if we're not in globstar mode, then turn all ** into *\n\t\t        if (this.options.noglobstar) {\n\t\t            for (let i = 0; i < globParts.length; i++) {\n\t\t                for (let j = 0; j < globParts[i].length; j++) {\n\t\t                    if (globParts[i][j] === '**') {\n\t\t                        globParts[i][j] = '*';\n\t\t                    }\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t        const { optimizationLevel = 1 } = this.options;\n\t\t        if (optimizationLevel >= 2) {\n\t\t            // aggressive optimization for the purpose of fs walking\n\t\t            globParts = this.firstPhasePreProcess(globParts);\n\t\t            globParts = this.secondPhasePreProcess(globParts);\n\t\t        }\n\t\t        else if (optimizationLevel >= 1) {\n\t\t            // just basic optimizations to remove some .. parts\n\t\t            globParts = this.levelOneOptimize(globParts);\n\t\t        }\n\t\t        else {\n\t\t            // just collapse multiple ** portions into one\n\t\t            globParts = this.adjascentGlobstarOptimize(globParts);\n\t\t        }\n\t\t        return globParts;\n\t\t    }\n\t\t    // just get rid of adjascent ** portions\n\t\t    adjascentGlobstarOptimize(globParts) {\n\t\t        return globParts.map(parts => {\n\t\t            let gs = -1;\n\t\t            while (-1 !== (gs = parts.indexOf('**', gs + 1))) {\n\t\t                let i = gs;\n\t\t                while (parts[i + 1] === '**') {\n\t\t                    i++;\n\t\t                }\n\t\t                if (i !== gs) {\n\t\t                    parts.splice(gs, i - gs);\n\t\t                }\n\t\t            }\n\t\t            return parts;\n\t\t        });\n\t\t    }\n\t\t    // get rid of adjascent ** and resolve .. portions\n\t\t    levelOneOptimize(globParts) {\n\t\t        return globParts.map(parts => {\n\t\t            parts = parts.reduce((set, part) => {\n\t\t                const prev = set[set.length - 1];\n\t\t                if (part === '**' && prev === '**') {\n\t\t                    return set;\n\t\t                }\n\t\t                if (part === '..') {\n\t\t                    if (prev && prev !== '..' && prev !== '.' && prev !== '**') {\n\t\t                        set.pop();\n\t\t                        return set;\n\t\t                    }\n\t\t                }\n\t\t                set.push(part);\n\t\t                return set;\n\t\t            }, []);\n\t\t            return parts.length === 0 ? [''] : parts;\n\t\t        });\n\t\t    }\n\t\t    levelTwoFileOptimize(parts) {\n\t\t        if (!Array.isArray(parts)) {\n\t\t            parts = this.slashSplit(parts);\n\t\t        }\n\t\t        let didSomething = false;\n\t\t        do {\n\t\t            didSomething = false;\n\t\t            // <pre>/<e>/<rest> -> <pre>/<rest>\n\t\t            if (!this.preserveMultipleSlashes) {\n\t\t                for (let i = 1; i < parts.length - 1; i++) {\n\t\t                    const p = parts[i];\n\t\t                    // don't squeeze out UNC patterns\n\t\t                    if (i === 1 && p === '' && parts[0] === '')\n\t\t                        continue;\n\t\t                    if (p === '.' || p === '') {\n\t\t                        didSomething = true;\n\t\t                        parts.splice(i, 1);\n\t\t                        i--;\n\t\t                    }\n\t\t                }\n\t\t                if (parts[0] === '.' &&\n\t\t                    parts.length === 2 &&\n\t\t                    (parts[1] === '.' || parts[1] === '')) {\n\t\t                    didSomething = true;\n\t\t                    parts.pop();\n\t\t                }\n\t\t            }\n\t\t            // <pre>/<p>/../<rest> -> <pre>/<rest>\n\t\t            let dd = 0;\n\t\t            while (-1 !== (dd = parts.indexOf('..', dd + 1))) {\n\t\t                const p = parts[dd - 1];\n\t\t                if (p && p !== '.' && p !== '..' && p !== '**') {\n\t\t                    didSomething = true;\n\t\t                    parts.splice(dd - 1, 2);\n\t\t                    dd -= 2;\n\t\t                }\n\t\t            }\n\t\t        } while (didSomething);\n\t\t        return parts.length === 0 ? [''] : parts;\n\t\t    }\n\t\t    // First phase: single-pattern processing\n\t\t    // <pre> is 1 or more portions\n\t\t    // <rest> is 1 or more portions\n\t\t    // <p> is any portion other than ., .., '', or **\n\t\t    // <e> is . or ''\n\t\t    //\n\t\t    // **/.. is *brutal* for filesystem walking performance, because\n\t\t    // it effectively resets the recursive walk each time it occurs,\n\t\t    // and ** cannot be reduced out by a .. pattern part like a regexp\n\t\t    // or most strings (other than .., ., and '') can be.\n\t\t    //\n\t\t    // <pre>/**/../<p>/<p>/<rest> -> {<pre>/../<p>/<p>/<rest>,<pre>/**/<p>/<p>/<rest>}\n\t\t    // <pre>/<e>/<rest> -> <pre>/<rest>\n\t\t    // <pre>/<p>/../<rest> -> <pre>/<rest>\n\t\t    // **/**/<rest> -> **/<rest>\n\t\t    //\n\t\t    // **/*/<rest> -> */**/<rest> <== not valid because ** doesn't follow\n\t\t    // this WOULD be allowed if ** did follow symlinks, or * didn't\n\t\t    firstPhasePreProcess(globParts) {\n\t\t        let didSomething = false;\n\t\t        do {\n\t\t            didSomething = false;\n\t\t            // <pre>/**/../<p>/<p>/<rest> -> {<pre>/../<p>/<p>/<rest>,<pre>/**/<p>/<p>/<rest>}\n\t\t            for (let parts of globParts) {\n\t\t                let gs = -1;\n\t\t                while (-1 !== (gs = parts.indexOf('**', gs + 1))) {\n\t\t                    let gss = gs;\n\t\t                    while (parts[gss + 1] === '**') {\n\t\t                        // <pre>/**/**/<rest> -> <pre>/**/<rest>\n\t\t                        gss++;\n\t\t                    }\n\t\t                    // eg, if gs is 2 and gss is 4, that means we have 3 **\n\t\t                    // parts, and can remove 2 of them.\n\t\t                    if (gss > gs) {\n\t\t                        parts.splice(gs + 1, gss - gs);\n\t\t                    }\n\t\t                    let next = parts[gs + 1];\n\t\t                    const p = parts[gs + 2];\n\t\t                    const p2 = parts[gs + 3];\n\t\t                    if (next !== '..')\n\t\t                        continue;\n\t\t                    if (!p ||\n\t\t                        p === '.' ||\n\t\t                        p === '..' ||\n\t\t                        !p2 ||\n\t\t                        p2 === '.' ||\n\t\t                        p2 === '..') {\n\t\t                        continue;\n\t\t                    }\n\t\t                    didSomething = true;\n\t\t                    // edit parts in place, and push the new one\n\t\t                    parts.splice(gs, 1);\n\t\t                    const other = parts.slice(0);\n\t\t                    other[gs] = '**';\n\t\t                    globParts.push(other);\n\t\t                    gs--;\n\t\t                }\n\t\t                // <pre>/<e>/<rest> -> <pre>/<rest>\n\t\t                if (!this.preserveMultipleSlashes) {\n\t\t                    for (let i = 1; i < parts.length - 1; i++) {\n\t\t                        const p = parts[i];\n\t\t                        // don't squeeze out UNC patterns\n\t\t                        if (i === 1 && p === '' && parts[0] === '')\n\t\t                            continue;\n\t\t                        if (p === '.' || p === '') {\n\t\t                            didSomething = true;\n\t\t                            parts.splice(i, 1);\n\t\t                            i--;\n\t\t                        }\n\t\t                    }\n\t\t                    if (parts[0] === '.' &&\n\t\t                        parts.length === 2 &&\n\t\t                        (parts[1] === '.' || parts[1] === '')) {\n\t\t                        didSomething = true;\n\t\t                        parts.pop();\n\t\t                    }\n\t\t                }\n\t\t                // <pre>/<p>/../<rest> -> <pre>/<rest>\n\t\t                let dd = 0;\n\t\t                while (-1 !== (dd = parts.indexOf('..', dd + 1))) {\n\t\t                    const p = parts[dd - 1];\n\t\t                    if (p && p !== '.' && p !== '..' && p !== '**') {\n\t\t                        didSomething = true;\n\t\t                        const needDot = dd === 1 && parts[dd + 1] === '**';\n\t\t                        const splin = needDot ? ['.'] : [];\n\t\t                        parts.splice(dd - 1, 2, ...splin);\n\t\t                        if (parts.length === 0)\n\t\t                            parts.push('');\n\t\t                        dd -= 2;\n\t\t                    }\n\t\t                }\n\t\t            }\n\t\t        } while (didSomething);\n\t\t        return globParts;\n\t\t    }\n\t\t    // second phase: multi-pattern dedupes\n\t\t    // {<pre>/*/<rest>,<pre>/<p>/<rest>} -> <pre>/*/<rest>\n\t\t    // {<pre>/<rest>,<pre>/<rest>} -> <pre>/<rest>\n\t\t    // {<pre>/**/<rest>,<pre>/<rest>} -> <pre>/**/<rest>\n\t\t    //\n\t\t    // {<pre>/**/<rest>,<pre>/**/<p>/<rest>} -> <pre>/**/<rest>\n\t\t    // ^-- not valid because ** doens't follow symlinks\n\t\t    secondPhasePreProcess(globParts) {\n\t\t        for (let i = 0; i < globParts.length - 1; i++) {\n\t\t            for (let j = i + 1; j < globParts.length; j++) {\n\t\t                const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);\n\t\t                if (matched) {\n\t\t                    globParts[i] = [];\n\t\t                    globParts[j] = matched;\n\t\t                    break;\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t        return globParts.filter(gs => gs.length);\n\t\t    }\n\t\t    partsMatch(a, b, emptyGSMatch = false) {\n\t\t        let ai = 0;\n\t\t        let bi = 0;\n\t\t        let result = [];\n\t\t        let which = '';\n\t\t        while (ai < a.length && bi < b.length) {\n\t\t            if (a[ai] === b[bi]) {\n\t\t                result.push(which === 'b' ? b[bi] : a[ai]);\n\t\t                ai++;\n\t\t                bi++;\n\t\t            }\n\t\t            else if (emptyGSMatch && a[ai] === '**' && b[bi] === a[ai + 1]) {\n\t\t                result.push(a[ai]);\n\t\t                ai++;\n\t\t            }\n\t\t            else if (emptyGSMatch && b[bi] === '**' && a[ai] === b[bi + 1]) {\n\t\t                result.push(b[bi]);\n\t\t                bi++;\n\t\t            }\n\t\t            else if (a[ai] === '*' &&\n\t\t                b[bi] &&\n\t\t                (this.options.dot || !b[bi].startsWith('.')) &&\n\t\t                b[bi] !== '**') {\n\t\t                if (which === 'b')\n\t\t                    return false;\n\t\t                which = 'a';\n\t\t                result.push(a[ai]);\n\t\t                ai++;\n\t\t                bi++;\n\t\t            }\n\t\t            else if (b[bi] === '*' &&\n\t\t                a[ai] &&\n\t\t                (this.options.dot || !a[ai].startsWith('.')) &&\n\t\t                a[ai] !== '**') {\n\t\t                if (which === 'a')\n\t\t                    return false;\n\t\t                which = 'b';\n\t\t                result.push(b[bi]);\n\t\t                ai++;\n\t\t                bi++;\n\t\t            }\n\t\t            else {\n\t\t                return false;\n\t\t            }\n\t\t        }\n\t\t        // if we fall out of the loop, it means they two are identical\n\t\t        // as long as their lengths match\n\t\t        return a.length === b.length && result;\n\t\t    }\n\t\t    parseNegate() {\n\t\t        if (this.nonegate)\n\t\t            return;\n\t\t        const pattern = this.pattern;\n\t\t        let negate = false;\n\t\t        let negateOffset = 0;\n\t\t        for (let i = 0; i < pattern.length && pattern.charAt(i) === '!'; i++) {\n\t\t            negate = !negate;\n\t\t            negateOffset++;\n\t\t        }\n\t\t        if (negateOffset)\n\t\t            this.pattern = pattern.slice(negateOffset);\n\t\t        this.negate = negate;\n\t\t    }\n\t\t    // set partial to true to test if, for example,\n\t\t    // \"/a/b\" matches the start of \"/*/b/*/d\"\n\t\t    // Partial means, if you run out of file before you run\n\t\t    // out of pattern, then that's fine, as long as all\n\t\t    // the parts match.\n\t\t    matchOne(file, pattern, partial = false) {\n\t\t        const options = this.options;\n\t\t        // UNC paths like //?/X:/... can match X:/... and vice versa\n\t\t        // Drive letters in absolute drive or unc paths are always compared\n\t\t        // case-insensitively.\n\t\t        if (this.isWindows) {\n\t\t            const fileDrive = typeof file[0] === 'string' && /^[a-z]:$/i.test(file[0]);\n\t\t            const fileUNC = !fileDrive &&\n\t\t                file[0] === '' &&\n\t\t                file[1] === '' &&\n\t\t                file[2] === '?' &&\n\t\t                /^[a-z]:$/i.test(file[3]);\n\t\t            const patternDrive = typeof pattern[0] === 'string' && /^[a-z]:$/i.test(pattern[0]);\n\t\t            const patternUNC = !patternDrive &&\n\t\t                pattern[0] === '' &&\n\t\t                pattern[1] === '' &&\n\t\t                pattern[2] === '?' &&\n\t\t                typeof pattern[3] === 'string' &&\n\t\t                /^[a-z]:$/i.test(pattern[3]);\n\t\t            const fdi = fileUNC ? 3 : fileDrive ? 0 : undefined;\n\t\t            const pdi = patternUNC ? 3 : patternDrive ? 0 : undefined;\n\t\t            if (typeof fdi === 'number' && typeof pdi === 'number') {\n\t\t                const [fd, pd] = [file[fdi], pattern[pdi]];\n\t\t                if (fd.toLowerCase() === pd.toLowerCase()) {\n\t\t                    pattern[pdi] = fd;\n\t\t                    if (pdi > fdi) {\n\t\t                        pattern = pattern.slice(pdi);\n\t\t                    }\n\t\t                    else if (fdi > pdi) {\n\t\t                        file = file.slice(fdi);\n\t\t                    }\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t        // resolve and reduce . and .. portions in the file as well.\n\t\t        // dont' need to do the second phase, because it's only one string[]\n\t\t        const { optimizationLevel = 1 } = this.options;\n\t\t        if (optimizationLevel >= 2) {\n\t\t            file = this.levelTwoFileOptimize(file);\n\t\t        }\n\t\t        this.debug('matchOne', this, { file, pattern });\n\t\t        this.debug('matchOne', file.length, pattern.length);\n\t\t        for (var fi = 0, pi = 0, fl = file.length, pl = pattern.length; fi < fl && pi < pl; fi++, pi++) {\n\t\t            this.debug('matchOne loop');\n\t\t            var p = pattern[pi];\n\t\t            var f = file[fi];\n\t\t            this.debug(pattern, p, f);\n\t\t            // should be impossible.\n\t\t            // some invalid regexp stuff in the set.\n\t\t            /* c8 ignore start */\n\t\t            if (p === false) {\n\t\t                return false;\n\t\t            }\n\t\t            /* c8 ignore stop */\n\t\t            if (p === exports.GLOBSTAR) {\n\t\t                this.debug('GLOBSTAR', [pattern, p, f]);\n\t\t                // \"**\"\n\t\t                // a/**/b/**/c would match the following:\n\t\t                // a/b/x/y/z/c\n\t\t                // a/x/y/z/b/c\n\t\t                // a/b/x/b/x/c\n\t\t                // a/b/c\n\t\t                // To do this, take the rest of the pattern after\n\t\t                // the **, and see if it would match the file remainder.\n\t\t                // If so, return success.\n\t\t                // If not, the ** \"swallows\" a segment, and try again.\n\t\t                // This is recursively awful.\n\t\t                //\n\t\t                // a/**/b/**/c matching a/b/x/y/z/c\n\t\t                // - a matches a\n\t\t                // - doublestar\n\t\t                //   - matchOne(b/x/y/z/c, b/**/c)\n\t\t                //     - b matches b\n\t\t                //     - doublestar\n\t\t                //       - matchOne(x/y/z/c, c) -> no\n\t\t                //       - matchOne(y/z/c, c) -> no\n\t\t                //       - matchOne(z/c, c) -> no\n\t\t                //       - matchOne(c, c) yes, hit\n\t\t                var fr = fi;\n\t\t                var pr = pi + 1;\n\t\t                if (pr === pl) {\n\t\t                    this.debug('** at the end');\n\t\t                    // a ** at the end will just swallow the rest.\n\t\t                    // We have found a match.\n\t\t                    // however, it will not swallow /.x, unless\n\t\t                    // options.dot is set.\n\t\t                    // . and .. are *never* matched by **, for explosively\n\t\t                    // exponential reasons.\n\t\t                    for (; fi < fl; fi++) {\n\t\t                        if (file[fi] === '.' ||\n\t\t                            file[fi] === '..' ||\n\t\t                            (!options.dot && file[fi].charAt(0) === '.'))\n\t\t                            return false;\n\t\t                    }\n\t\t                    return true;\n\t\t                }\n\t\t                // ok, let's see if we can swallow whatever we can.\n\t\t                while (fr < fl) {\n\t\t                    var swallowee = file[fr];\n\t\t                    this.debug('\\nglobstar while', file, fr, pattern, pr, swallowee);\n\t\t                    // XXX remove this slice.  Just pass the start index.\n\t\t                    if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {\n\t\t                        this.debug('globstar found match!', fr, fl, swallowee);\n\t\t                        // found a match.\n\t\t                        return true;\n\t\t                    }\n\t\t                    else {\n\t\t                        // can't swallow \".\" or \"..\" ever.\n\t\t                        // can only swallow \".foo\" when explicitly asked.\n\t\t                        if (swallowee === '.' ||\n\t\t                            swallowee === '..' ||\n\t\t                            (!options.dot && swallowee.charAt(0) === '.')) {\n\t\t                            this.debug('dot detected!', file, fr, pattern, pr);\n\t\t                            break;\n\t\t                        }\n\t\t                        // ** swallows a segment, and continue.\n\t\t                        this.debug('globstar swallow a segment, and continue');\n\t\t                        fr++;\n\t\t                    }\n\t\t                }\n\t\t                // no match was found.\n\t\t                // However, in partial mode, we can't say this is necessarily over.\n\t\t                /* c8 ignore start */\n\t\t                if (partial) {\n\t\t                    // ran out of file\n\t\t                    this.debug('\\n>>> no match, partial?', file, fr, pattern, pr);\n\t\t                    if (fr === fl) {\n\t\t                        return true;\n\t\t                    }\n\t\t                }\n\t\t                /* c8 ignore stop */\n\t\t                return false;\n\t\t            }\n\t\t            // something other than **\n\t\t            // non-magic patterns just have to match exactly\n\t\t            // patterns with magic have been turned into regexps.\n\t\t            let hit;\n\t\t            if (typeof p === 'string') {\n\t\t                hit = f === p;\n\t\t                this.debug('string match', p, f, hit);\n\t\t            }\n\t\t            else {\n\t\t                hit = p.test(f);\n\t\t                this.debug('pattern match', p, f, hit);\n\t\t            }\n\t\t            if (!hit)\n\t\t                return false;\n\t\t        }\n\t\t        // Note: ending in / means that we'll get a final \"\"\n\t\t        // at the end of the pattern.  This can only match a\n\t\t        // corresponding \"\" at the end of the file.\n\t\t        // If the file ends in /, then it can only match a\n\t\t        // a pattern that ends in /, unless the pattern just\n\t\t        // doesn't have any more for it. But, a/b/ should *not*\n\t\t        // match \"a/b/*\", even though \"\" matches against the\n\t\t        // [^/]*? pattern, except in partial mode, where it might\n\t\t        // simply not be reached yet.\n\t\t        // However, a/b/ should still satisfy a/*\n\t\t        // now either we fell off the end of the pattern, or we're done.\n\t\t        if (fi === fl && pi === pl) {\n\t\t            // ran out of pattern and filename at the same time.\n\t\t            // an exact hit!\n\t\t            return true;\n\t\t        }\n\t\t        else if (fi === fl) {\n\t\t            // ran out of file, but still had pattern left.\n\t\t            // this is ok if we're doing the match as part of\n\t\t            // a glob fs traversal.\n\t\t            return partial;\n\t\t        }\n\t\t        else if (pi === pl) {\n\t\t            // ran out of pattern, still have file left.\n\t\t            // this is only acceptable if we're on the very last\n\t\t            // empty segment of a file with a trailing slash.\n\t\t            // a/* should match a/b/\n\t\t            return fi === fl - 1 && file[fi] === '';\n\t\t            /* c8 ignore start */\n\t\t        }\n\t\t        else {\n\t\t            // should be unreachable.\n\t\t            throw new Error('wtf?');\n\t\t        }\n\t\t        /* c8 ignore stop */\n\t\t    }\n\t\t    braceExpand() {\n\t\t        return (0, exports.braceExpand)(this.pattern, this.options);\n\t\t    }\n\t\t    parse(pattern) {\n\t\t        (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);\n\t\t        const options = this.options;\n\t\t        // shortcuts\n\t\t        if (pattern === '**')\n\t\t            return exports.GLOBSTAR;\n\t\t        if (pattern === '')\n\t\t            return '';\n\t\t        // far and away, the most common glob pattern parts are\n\t\t        // *, *.*, and *.<ext>  Add a fast check method for those.\n\t\t        let m;\n\t\t        let fastTest = null;\n\t\t        if ((m = pattern.match(starRE))) {\n\t\t            fastTest = options.dot ? starTestDot : starTest;\n\t\t        }\n\t\t        else if ((m = pattern.match(starDotExtRE))) {\n\t\t            fastTest = (options.nocase\n\t\t                ? options.dot\n\t\t                    ? starDotExtTestNocaseDot\n\t\t                    : starDotExtTestNocase\n\t\t                : options.dot\n\t\t                    ? starDotExtTestDot\n\t\t                    : starDotExtTest)(m[1]);\n\t\t        }\n\t\t        else if ((m = pattern.match(qmarksRE))) {\n\t\t            fastTest = (options.nocase\n\t\t                ? options.dot\n\t\t                    ? qmarksTestNocaseDot\n\t\t                    : qmarksTestNocase\n\t\t                : options.dot\n\t\t                    ? qmarksTestDot\n\t\t                    : qmarksTest)(m);\n\t\t        }\n\t\t        else if ((m = pattern.match(starDotStarRE))) {\n\t\t            fastTest = options.dot ? starDotStarTestDot : starDotStarTest;\n\t\t        }\n\t\t        else if ((m = pattern.match(dotStarRE))) {\n\t\t            fastTest = dotStarTest;\n\t\t        }\n\t\t        const re = ast_js_1.AST.fromGlob(pattern, this.options).toMMPattern();\n\t\t        if (fastTest && typeof re === 'object') {\n\t\t            // Avoids overriding in frozen environments\n\t\t            Reflect.defineProperty(re, 'test', { value: fastTest });\n\t\t        }\n\t\t        return re;\n\t\t    }\n\t\t    makeRe() {\n\t\t        if (this.regexp || this.regexp === false)\n\t\t            return this.regexp;\n\t\t        // at this point, this.set is a 2d array of partial\n\t\t        // pattern strings, or \"**\".\n\t\t        //\n\t\t        // It's better to use .match().  This function shouldn't\n\t\t        // be used, really, but it's pretty convenient sometimes,\n\t\t        // when you just want to work with a regex.\n\t\t        const set = this.set;\n\t\t        if (!set.length) {\n\t\t            this.regexp = false;\n\t\t            return this.regexp;\n\t\t        }\n\t\t        const options = this.options;\n\t\t        const twoStar = options.noglobstar\n\t\t            ? star\n\t\t            : options.dot\n\t\t                ? twoStarDot\n\t\t                : twoStarNoDot;\n\t\t        const flags = new Set(options.nocase ? ['i'] : []);\n\t\t        // regexpify non-globstar patterns\n\t\t        // if ** is only item, then we just do one twoStar\n\t\t        // if ** is first, and there are more, prepend (\\/|twoStar\\/)? to next\n\t\t        // if ** is last, append (\\/twoStar|) to previous\n\t\t        // if ** is in the middle, append (\\/|\\/twoStar\\/) to previous\n\t\t        // then filter out GLOBSTAR symbols\n\t\t        let re = set\n\t\t            .map(pattern => {\n\t\t            const pp = pattern.map(p => {\n\t\t                if (p instanceof RegExp) {\n\t\t                    for (const f of p.flags.split(''))\n\t\t                        flags.add(f);\n\t\t                }\n\t\t                return typeof p === 'string'\n\t\t                    ? regExpEscape(p)\n\t\t                    : p === exports.GLOBSTAR\n\t\t                        ? exports.GLOBSTAR\n\t\t                        : p._src;\n\t\t            });\n\t\t            pp.forEach((p, i) => {\n\t\t                const next = pp[i + 1];\n\t\t                const prev = pp[i - 1];\n\t\t                if (p !== exports.GLOBSTAR || prev === exports.GLOBSTAR) {\n\t\t                    return;\n\t\t                }\n\t\t                if (prev === undefined) {\n\t\t                    if (next !== undefined && next !== exports.GLOBSTAR) {\n\t\t                        pp[i + 1] = '(?:\\\\/|' + twoStar + '\\\\/)?' + next;\n\t\t                    }\n\t\t                    else {\n\t\t                        pp[i] = twoStar;\n\t\t                    }\n\t\t                }\n\t\t                else if (next === undefined) {\n\t\t                    pp[i - 1] = prev + '(?:\\\\/|' + twoStar + ')?';\n\t\t                }\n\t\t                else if (next !== exports.GLOBSTAR) {\n\t\t                    pp[i - 1] = prev + '(?:\\\\/|\\\\/' + twoStar + '\\\\/)' + next;\n\t\t                    pp[i + 1] = exports.GLOBSTAR;\n\t\t                }\n\t\t            });\n\t\t            return pp.filter(p => p !== exports.GLOBSTAR).join('/');\n\t\t        })\n\t\t            .join('|');\n\t\t        // need to wrap in parens if we had more than one thing with |,\n\t\t        // otherwise only the first will be anchored to ^ and the last to $\n\t\t        const [open, close] = set.length > 1 ? ['(?:', ')'] : ['', ''];\n\t\t        // must match entire pattern\n\t\t        // ending in a * or ** will make it less strict.\n\t\t        re = '^' + open + re + close + '$';\n\t\t        // can match anything, as long as it's not this.\n\t\t        if (this.negate)\n\t\t            re = '^(?!' + re + ').+$';\n\t\t        try {\n\t\t            this.regexp = new RegExp(re, [...flags].join(''));\n\t\t            /* c8 ignore start */\n\t\t        }\n\t\t        catch (ex) {\n\t\t            // should be impossible\n\t\t            this.regexp = false;\n\t\t        }\n\t\t        /* c8 ignore stop */\n\t\t        return this.regexp;\n\t\t    }\n\t\t    slashSplit(p) {\n\t\t        // if p starts with // on windows, we preserve that\n\t\t        // so that UNC paths aren't broken.  Otherwise, any number of\n\t\t        // / characters are coalesced into one, unless\n\t\t        // preserveMultipleSlashes is set to true.\n\t\t        if (this.preserveMultipleSlashes) {\n\t\t            return p.split('/');\n\t\t        }\n\t\t        else if (this.isWindows && /^\\/\\/[^\\/]+/.test(p)) {\n\t\t            // add an extra '' for the one we lose\n\t\t            return ['', ...p.split(/\\/+/)];\n\t\t        }\n\t\t        else {\n\t\t            return p.split(/\\/+/);\n\t\t        }\n\t\t    }\n\t\t    match(f, partial = this.partial) {\n\t\t        this.debug('match', f, this.pattern);\n\t\t        // short-circuit in the case of busted things.\n\t\t        // comments, etc.\n\t\t        if (this.comment) {\n\t\t            return false;\n\t\t        }\n\t\t        if (this.empty) {\n\t\t            return f === '';\n\t\t        }\n\t\t        if (f === '/' && partial) {\n\t\t            return true;\n\t\t        }\n\t\t        const options = this.options;\n\t\t        // windows: need to use /, not \\\n\t\t        if (this.isWindows) {\n\t\t            f = f.split('\\\\').join('/');\n\t\t        }\n\t\t        // treat the test path as a set of pathparts.\n\t\t        const ff = this.slashSplit(f);\n\t\t        this.debug(this.pattern, 'split', ff);\n\t\t        // just ONE of the pattern sets in this.set needs to match\n\t\t        // in order for it to be valid.  If negating, then just one\n\t\t        // match means that we have failed.\n\t\t        // Either way, return on the first hit.\n\t\t        const set = this.set;\n\t\t        this.debug(this.pattern, 'set', set);\n\t\t        // Find the basename of the path by looking for the last non-empty segment\n\t\t        let filename = ff[ff.length - 1];\n\t\t        if (!filename) {\n\t\t            for (let i = ff.length - 2; !filename && i >= 0; i--) {\n\t\t                filename = ff[i];\n\t\t            }\n\t\t        }\n\t\t        for (let i = 0; i < set.length; i++) {\n\t\t            const pattern = set[i];\n\t\t            let file = ff;\n\t\t            if (options.matchBase && pattern.length === 1) {\n\t\t                file = [filename];\n\t\t            }\n\t\t            const hit = this.matchOne(file, pattern, partial);\n\t\t            if (hit) {\n\t\t                if (options.flipNegate) {\n\t\t                    return true;\n\t\t                }\n\t\t                return !this.negate;\n\t\t            }\n\t\t        }\n\t\t        // didn't get any hits.  this is success if it's a negative\n\t\t        // pattern, failure otherwise.\n\t\t        if (options.flipNegate) {\n\t\t            return false;\n\t\t        }\n\t\t        return this.negate;\n\t\t    }\n\t\t    static defaults(def) {\n\t\t        return exports.minimatch.defaults(def).Minimatch;\n\t\t    }\n\t\t}\n\t\texports.Minimatch = Minimatch;\n\t\t/* c8 ignore start */\n\t\tvar ast_js_2 = requireAst();\n\t\tObject.defineProperty(exports, \"AST\", { enumerable: true, get: function () { return ast_js_2.AST; } });\n\t\tvar escape_js_2 = require_escape();\n\t\tObject.defineProperty(exports, \"escape\", { enumerable: true, get: function () { return escape_js_2.escape; } });\n\t\tvar unescape_js_2 = require_unescape();\n\t\tObject.defineProperty(exports, \"unescape\", { enumerable: true, get: function () { return unescape_js_2.unescape; } });\n\t\t/* c8 ignore stop */\n\t\texports.minimatch.AST = ast_js_1.AST;\n\t\texports.minimatch.Minimatch = Minimatch;\n\t\texports.minimatch.escape = escape_js_1.escape;\n\t\texports.minimatch.unescape = unescape_js_1.unescape;\n\t\t\n\t} (commonjs$3));\n\treturn commonjs$3;\n}\n\nvar glob = {};\n\nvar commonjs$2 = {};\n\nvar commonjs$1 = {};\n\nvar hasRequiredCommonjs$3;\n\nfunction requireCommonjs$3 () {\n\tif (hasRequiredCommonjs$3) return commonjs$1;\n\thasRequiredCommonjs$3 = 1;\n\t/**\n\t * @module LRUCache\n\t */\n\tObject.defineProperty(commonjs$1, \"__esModule\", { value: true });\n\tcommonjs$1.LRUCache = void 0;\n\tconst perf = typeof performance === 'object' &&\n\t    performance &&\n\t    typeof performance.now === 'function'\n\t    ? performance\n\t    : Date;\n\tconst warned = new Set();\n\t/* c8 ignore start */\n\tconst PROCESS = (typeof process === 'object' && !!process ? process : {});\n\t/* c8 ignore start */\n\tconst emitWarning = (msg, type, code, fn) => {\n\t    typeof PROCESS.emitWarning === 'function'\n\t        ? PROCESS.emitWarning(msg, type, code, fn)\n\t        : console.error(`[${code}] ${type}: ${msg}`);\n\t};\n\tlet AC = globalThis.AbortController;\n\tlet AS = globalThis.AbortSignal;\n\t/* c8 ignore start */\n\tif (typeof AC === 'undefined') {\n\t    //@ts-ignore\n\t    AS = class AbortSignal {\n\t        onabort;\n\t        _onabort = [];\n\t        reason;\n\t        aborted = false;\n\t        addEventListener(_, fn) {\n\t            this._onabort.push(fn);\n\t        }\n\t    };\n\t    //@ts-ignore\n\t    AC = class AbortController {\n\t        constructor() {\n\t            warnACPolyfill();\n\t        }\n\t        signal = new AS();\n\t        abort(reason) {\n\t            if (this.signal.aborted)\n\t                return;\n\t            //@ts-ignore\n\t            this.signal.reason = reason;\n\t            //@ts-ignore\n\t            this.signal.aborted = true;\n\t            //@ts-ignore\n\t            for (const fn of this.signal._onabort) {\n\t                fn(reason);\n\t            }\n\t            this.signal.onabort?.(reason);\n\t        }\n\t    };\n\t    let printACPolyfillWarning = PROCESS.env?.LRU_CACHE_IGNORE_AC_WARNING !== '1';\n\t    const warnACPolyfill = () => {\n\t        if (!printACPolyfillWarning)\n\t            return;\n\t        printACPolyfillWarning = false;\n\t        emitWarning('AbortController is not defined. If using lru-cache in ' +\n\t            'node 14, load an AbortController polyfill from the ' +\n\t            '`node-abort-controller` package. A minimal polyfill is ' +\n\t            'provided for use by LRUCache.fetch(), but it should not be ' +\n\t            'relied upon in other contexts (eg, passing it to other APIs that ' +\n\t            'use AbortController/AbortSignal might have undesirable effects). ' +\n\t            'You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.', 'NO_ABORT_CONTROLLER', 'ENOTSUP', warnACPolyfill);\n\t    };\n\t}\n\t/* c8 ignore stop */\n\tconst shouldWarn = (code) => !warned.has(code);\n\tconst isPosInt = (n) => n && n === Math.floor(n) && n > 0 && isFinite(n);\n\t/* c8 ignore start */\n\t// This is a little bit ridiculous, tbh.\n\t// The maximum array length is 2^32-1 or thereabouts on most JS impls.\n\t// And well before that point, you're caching the entire world, I mean,\n\t// that's ~32GB of just integers for the next/prev links, plus whatever\n\t// else to hold that many keys and values.  Just filling the memory with\n\t// zeroes at init time is brutal when you get that big.\n\t// But why not be complete?\n\t// Maybe in the future, these limits will have expanded.\n\tconst getUintArray = (max) => !isPosInt(max)\n\t    ? null\n\t    : max <= Math.pow(2, 8)\n\t        ? Uint8Array\n\t        : max <= Math.pow(2, 16)\n\t            ? Uint16Array\n\t            : max <= Math.pow(2, 32)\n\t                ? Uint32Array\n\t                : max <= Number.MAX_SAFE_INTEGER\n\t                    ? ZeroArray\n\t                    : null;\n\t/* c8 ignore stop */\n\tclass ZeroArray extends Array {\n\t    constructor(size) {\n\t        super(size);\n\t        this.fill(0);\n\t    }\n\t}\n\tclass Stack {\n\t    heap;\n\t    length;\n\t    // private constructor\n\t    static #constructing = false;\n\t    static create(max) {\n\t        const HeapCls = getUintArray(max);\n\t        if (!HeapCls)\n\t            return [];\n\t        Stack.#constructing = true;\n\t        const s = new Stack(max, HeapCls);\n\t        Stack.#constructing = false;\n\t        return s;\n\t    }\n\t    constructor(max, HeapCls) {\n\t        /* c8 ignore start */\n\t        if (!Stack.#constructing) {\n\t            throw new TypeError('instantiate Stack using Stack.create(n)');\n\t        }\n\t        /* c8 ignore stop */\n\t        this.heap = new HeapCls(max);\n\t        this.length = 0;\n\t    }\n\t    push(n) {\n\t        this.heap[this.length++] = n;\n\t    }\n\t    pop() {\n\t        return this.heap[--this.length];\n\t    }\n\t}\n\t/**\n\t * Default export, the thing you're using this module to get.\n\t *\n\t * The `K` and `V` types define the key and value types, respectively. The\n\t * optional `FC` type defines the type of the `context` object passed to\n\t * `cache.fetch()` and `cache.memo()`.\n\t *\n\t * Keys and values **must not** be `null` or `undefined`.\n\t *\n\t * All properties from the options object (with the exception of `max`,\n\t * `maxSize`, `fetchMethod`, `memoMethod`, `dispose` and `disposeAfter`) are\n\t * added as normal public members. (The listed options are read-only getters.)\n\t *\n\t * Changing any of these will alter the defaults for subsequent method calls.\n\t */\n\tclass LRUCache {\n\t    // options that cannot be changed without disaster\n\t    #max;\n\t    #maxSize;\n\t    #dispose;\n\t    #disposeAfter;\n\t    #fetchMethod;\n\t    #memoMethod;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.ttl}\n\t     */\n\t    ttl;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.ttlResolution}\n\t     */\n\t    ttlResolution;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.ttlAutopurge}\n\t     */\n\t    ttlAutopurge;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.updateAgeOnGet}\n\t     */\n\t    updateAgeOnGet;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.updateAgeOnHas}\n\t     */\n\t    updateAgeOnHas;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.allowStale}\n\t     */\n\t    allowStale;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.noDisposeOnSet}\n\t     */\n\t    noDisposeOnSet;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.noUpdateTTL}\n\t     */\n\t    noUpdateTTL;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.maxEntrySize}\n\t     */\n\t    maxEntrySize;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.sizeCalculation}\n\t     */\n\t    sizeCalculation;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.noDeleteOnFetchRejection}\n\t     */\n\t    noDeleteOnFetchRejection;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.noDeleteOnStaleGet}\n\t     */\n\t    noDeleteOnStaleGet;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.allowStaleOnFetchAbort}\n\t     */\n\t    allowStaleOnFetchAbort;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.allowStaleOnFetchRejection}\n\t     */\n\t    allowStaleOnFetchRejection;\n\t    /**\n\t     * {@link LRUCache.OptionsBase.ignoreFetchAbort}\n\t     */\n\t    ignoreFetchAbort;\n\t    // computed properties\n\t    #size;\n\t    #calculatedSize;\n\t    #keyMap;\n\t    #keyList;\n\t    #valList;\n\t    #next;\n\t    #prev;\n\t    #head;\n\t    #tail;\n\t    #free;\n\t    #disposed;\n\t    #sizes;\n\t    #starts;\n\t    #ttls;\n\t    #hasDispose;\n\t    #hasFetchMethod;\n\t    #hasDisposeAfter;\n\t    /**\n\t     * Do not call this method unless you need to inspect the\n\t     * inner workings of the cache.  If anything returned by this\n\t     * object is modified in any way, strange breakage may occur.\n\t     *\n\t     * These fields are private for a reason!\n\t     *\n\t     * @internal\n\t     */\n\t    static unsafeExposeInternals(c) {\n\t        return {\n\t            // properties\n\t            starts: c.#starts,\n\t            ttls: c.#ttls,\n\t            sizes: c.#sizes,\n\t            keyMap: c.#keyMap,\n\t            keyList: c.#keyList,\n\t            valList: c.#valList,\n\t            next: c.#next,\n\t            prev: c.#prev,\n\t            get head() {\n\t                return c.#head;\n\t            },\n\t            get tail() {\n\t                return c.#tail;\n\t            },\n\t            free: c.#free,\n\t            // methods\n\t            isBackgroundFetch: (p) => c.#isBackgroundFetch(p),\n\t            backgroundFetch: (k, index, options, context) => c.#backgroundFetch(k, index, options, context),\n\t            moveToTail: (index) => c.#moveToTail(index),\n\t            indexes: (options) => c.#indexes(options),\n\t            rindexes: (options) => c.#rindexes(options),\n\t            isStale: (index) => c.#isStale(index),\n\t        };\n\t    }\n\t    // Protected read-only members\n\t    /**\n\t     * {@link LRUCache.OptionsBase.max} (read-only)\n\t     */\n\t    get max() {\n\t        return this.#max;\n\t    }\n\t    /**\n\t     * {@link LRUCache.OptionsBase.maxSize} (read-only)\n\t     */\n\t    get maxSize() {\n\t        return this.#maxSize;\n\t    }\n\t    /**\n\t     * The total computed size of items in the cache (read-only)\n\t     */\n\t    get calculatedSize() {\n\t        return this.#calculatedSize;\n\t    }\n\t    /**\n\t     * The number of items stored in the cache (read-only)\n\t     */\n\t    get size() {\n\t        return this.#size;\n\t    }\n\t    /**\n\t     * {@link LRUCache.OptionsBase.fetchMethod} (read-only)\n\t     */\n\t    get fetchMethod() {\n\t        return this.#fetchMethod;\n\t    }\n\t    get memoMethod() {\n\t        return this.#memoMethod;\n\t    }\n\t    /**\n\t     * {@link LRUCache.OptionsBase.dispose} (read-only)\n\t     */\n\t    get dispose() {\n\t        return this.#dispose;\n\t    }\n\t    /**\n\t     * {@link LRUCache.OptionsBase.disposeAfter} (read-only)\n\t     */\n\t    get disposeAfter() {\n\t        return this.#disposeAfter;\n\t    }\n\t    constructor(options) {\n\t        const { max = 0, ttl, ttlResolution = 1, ttlAutopurge, updateAgeOnGet, updateAgeOnHas, allowStale, dispose, disposeAfter, noDisposeOnSet, noUpdateTTL, maxSize = 0, maxEntrySize = 0, sizeCalculation, fetchMethod, memoMethod, noDeleteOnFetchRejection, noDeleteOnStaleGet, allowStaleOnFetchRejection, allowStaleOnFetchAbort, ignoreFetchAbort, } = options;\n\t        if (max !== 0 && !isPosInt(max)) {\n\t            throw new TypeError('max option must be a nonnegative integer');\n\t        }\n\t        const UintArray = max ? getUintArray(max) : Array;\n\t        if (!UintArray) {\n\t            throw new Error('invalid max value: ' + max);\n\t        }\n\t        this.#max = max;\n\t        this.#maxSize = maxSize;\n\t        this.maxEntrySize = maxEntrySize || this.#maxSize;\n\t        this.sizeCalculation = sizeCalculation;\n\t        if (this.sizeCalculation) {\n\t            if (!this.#maxSize && !this.maxEntrySize) {\n\t                throw new TypeError('cannot set sizeCalculation without setting maxSize or maxEntrySize');\n\t            }\n\t            if (typeof this.sizeCalculation !== 'function') {\n\t                throw new TypeError('sizeCalculation set to non-function');\n\t            }\n\t        }\n\t        if (memoMethod !== undefined &&\n\t            typeof memoMethod !== 'function') {\n\t            throw new TypeError('memoMethod must be a function if defined');\n\t        }\n\t        this.#memoMethod = memoMethod;\n\t        if (fetchMethod !== undefined &&\n\t            typeof fetchMethod !== 'function') {\n\t            throw new TypeError('fetchMethod must be a function if specified');\n\t        }\n\t        this.#fetchMethod = fetchMethod;\n\t        this.#hasFetchMethod = !!fetchMethod;\n\t        this.#keyMap = new Map();\n\t        this.#keyList = new Array(max).fill(undefined);\n\t        this.#valList = new Array(max).fill(undefined);\n\t        this.#next = new UintArray(max);\n\t        this.#prev = new UintArray(max);\n\t        this.#head = 0;\n\t        this.#tail = 0;\n\t        this.#free = Stack.create(max);\n\t        this.#size = 0;\n\t        this.#calculatedSize = 0;\n\t        if (typeof dispose === 'function') {\n\t            this.#dispose = dispose;\n\t        }\n\t        if (typeof disposeAfter === 'function') {\n\t            this.#disposeAfter = disposeAfter;\n\t            this.#disposed = [];\n\t        }\n\t        else {\n\t            this.#disposeAfter = undefined;\n\t            this.#disposed = undefined;\n\t        }\n\t        this.#hasDispose = !!this.#dispose;\n\t        this.#hasDisposeAfter = !!this.#disposeAfter;\n\t        this.noDisposeOnSet = !!noDisposeOnSet;\n\t        this.noUpdateTTL = !!noUpdateTTL;\n\t        this.noDeleteOnFetchRejection = !!noDeleteOnFetchRejection;\n\t        this.allowStaleOnFetchRejection = !!allowStaleOnFetchRejection;\n\t        this.allowStaleOnFetchAbort = !!allowStaleOnFetchAbort;\n\t        this.ignoreFetchAbort = !!ignoreFetchAbort;\n\t        // NB: maxEntrySize is set to maxSize if it's set\n\t        if (this.maxEntrySize !== 0) {\n\t            if (this.#maxSize !== 0) {\n\t                if (!isPosInt(this.#maxSize)) {\n\t                    throw new TypeError('maxSize must be a positive integer if specified');\n\t                }\n\t            }\n\t            if (!isPosInt(this.maxEntrySize)) {\n\t                throw new TypeError('maxEntrySize must be a positive integer if specified');\n\t            }\n\t            this.#initializeSizeTracking();\n\t        }\n\t        this.allowStale = !!allowStale;\n\t        this.noDeleteOnStaleGet = !!noDeleteOnStaleGet;\n\t        this.updateAgeOnGet = !!updateAgeOnGet;\n\t        this.updateAgeOnHas = !!updateAgeOnHas;\n\t        this.ttlResolution =\n\t            isPosInt(ttlResolution) || ttlResolution === 0\n\t                ? ttlResolution\n\t                : 1;\n\t        this.ttlAutopurge = !!ttlAutopurge;\n\t        this.ttl = ttl || 0;\n\t        if (this.ttl) {\n\t            if (!isPosInt(this.ttl)) {\n\t                throw new TypeError('ttl must be a positive integer if specified');\n\t            }\n\t            this.#initializeTTLTracking();\n\t        }\n\t        // do not allow completely unbounded caches\n\t        if (this.#max === 0 && this.ttl === 0 && this.#maxSize === 0) {\n\t            throw new TypeError('At least one of max, maxSize, or ttl is required');\n\t        }\n\t        if (!this.ttlAutopurge && !this.#max && !this.#maxSize) {\n\t            const code = 'LRU_CACHE_UNBOUNDED';\n\t            if (shouldWarn(code)) {\n\t                warned.add(code);\n\t                const msg = 'TTL caching without ttlAutopurge, max, or maxSize can ' +\n\t                    'result in unbounded memory consumption.';\n\t                emitWarning(msg, 'UnboundedCacheWarning', code, LRUCache);\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Return the number of ms left in the item's TTL. If item is not in cache,\n\t     * returns `0`. Returns `Infinity` if item is in cache without a defined TTL.\n\t     */\n\t    getRemainingTTL(key) {\n\t        return this.#keyMap.has(key) ? Infinity : 0;\n\t    }\n\t    #initializeTTLTracking() {\n\t        const ttls = new ZeroArray(this.#max);\n\t        const starts = new ZeroArray(this.#max);\n\t        this.#ttls = ttls;\n\t        this.#starts = starts;\n\t        this.#setItemTTL = (index, ttl, start = perf.now()) => {\n\t            starts[index] = ttl !== 0 ? start : 0;\n\t            ttls[index] = ttl;\n\t            if (ttl !== 0 && this.ttlAutopurge) {\n\t                const t = setTimeout(() => {\n\t                    if (this.#isStale(index)) {\n\t                        this.#delete(this.#keyList[index], 'expire');\n\t                    }\n\t                }, ttl + 1);\n\t                // unref() not supported on all platforms\n\t                /* c8 ignore start */\n\t                if (t.unref) {\n\t                    t.unref();\n\t                }\n\t                /* c8 ignore stop */\n\t            }\n\t        };\n\t        this.#updateItemAge = index => {\n\t            starts[index] = ttls[index] !== 0 ? perf.now() : 0;\n\t        };\n\t        this.#statusTTL = (status, index) => {\n\t            if (ttls[index]) {\n\t                const ttl = ttls[index];\n\t                const start = starts[index];\n\t                /* c8 ignore next */\n\t                if (!ttl || !start)\n\t                    return;\n\t                status.ttl = ttl;\n\t                status.start = start;\n\t                status.now = cachedNow || getNow();\n\t                const age = status.now - start;\n\t                status.remainingTTL = ttl - age;\n\t            }\n\t        };\n\t        // debounce calls to perf.now() to 1s so we're not hitting\n\t        // that costly call repeatedly.\n\t        let cachedNow = 0;\n\t        const getNow = () => {\n\t            const n = perf.now();\n\t            if (this.ttlResolution > 0) {\n\t                cachedNow = n;\n\t                const t = setTimeout(() => (cachedNow = 0), this.ttlResolution);\n\t                // not available on all platforms\n\t                /* c8 ignore start */\n\t                if (t.unref) {\n\t                    t.unref();\n\t                }\n\t                /* c8 ignore stop */\n\t            }\n\t            return n;\n\t        };\n\t        this.getRemainingTTL = key => {\n\t            const index = this.#keyMap.get(key);\n\t            if (index === undefined) {\n\t                return 0;\n\t            }\n\t            const ttl = ttls[index];\n\t            const start = starts[index];\n\t            if (!ttl || !start) {\n\t                return Infinity;\n\t            }\n\t            const age = (cachedNow || getNow()) - start;\n\t            return ttl - age;\n\t        };\n\t        this.#isStale = index => {\n\t            const s = starts[index];\n\t            const t = ttls[index];\n\t            return !!t && !!s && (cachedNow || getNow()) - s > t;\n\t        };\n\t    }\n\t    // conditionally set private methods related to TTL\n\t    #updateItemAge = () => { };\n\t    #statusTTL = () => { };\n\t    #setItemTTL = () => { };\n\t    /* c8 ignore stop */\n\t    #isStale = () => false;\n\t    #initializeSizeTracking() {\n\t        const sizes = new ZeroArray(this.#max);\n\t        this.#calculatedSize = 0;\n\t        this.#sizes = sizes;\n\t        this.#removeItemSize = index => {\n\t            this.#calculatedSize -= sizes[index];\n\t            sizes[index] = 0;\n\t        };\n\t        this.#requireSize = (k, v, size, sizeCalculation) => {\n\t            // provisionally accept background fetches.\n\t            // actual value size will be checked when they return.\n\t            if (this.#isBackgroundFetch(v)) {\n\t                return 0;\n\t            }\n\t            if (!isPosInt(size)) {\n\t                if (sizeCalculation) {\n\t                    if (typeof sizeCalculation !== 'function') {\n\t                        throw new TypeError('sizeCalculation must be a function');\n\t                    }\n\t                    size = sizeCalculation(v, k);\n\t                    if (!isPosInt(size)) {\n\t                        throw new TypeError('sizeCalculation return invalid (expect positive integer)');\n\t                    }\n\t                }\n\t                else {\n\t                    throw new TypeError('invalid size value (must be positive integer). ' +\n\t                        'When maxSize or maxEntrySize is used, sizeCalculation ' +\n\t                        'or size must be set.');\n\t                }\n\t            }\n\t            return size;\n\t        };\n\t        this.#addItemSize = (index, size, status) => {\n\t            sizes[index] = size;\n\t            if (this.#maxSize) {\n\t                const maxSize = this.#maxSize - sizes[index];\n\t                while (this.#calculatedSize > maxSize) {\n\t                    this.#evict(true);\n\t                }\n\t            }\n\t            this.#calculatedSize += sizes[index];\n\t            if (status) {\n\t                status.entrySize = size;\n\t                status.totalCalculatedSize = this.#calculatedSize;\n\t            }\n\t        };\n\t    }\n\t    #removeItemSize = _i => { };\n\t    #addItemSize = (_i, _s, _st) => { };\n\t    #requireSize = (_k, _v, size, sizeCalculation) => {\n\t        if (size || sizeCalculation) {\n\t            throw new TypeError('cannot set size without setting maxSize or maxEntrySize on cache');\n\t        }\n\t        return 0;\n\t    };\n\t    *#indexes({ allowStale = this.allowStale } = {}) {\n\t        if (this.#size) {\n\t            for (let i = this.#tail; true;) {\n\t                if (!this.#isValidIndex(i)) {\n\t                    break;\n\t                }\n\t                if (allowStale || !this.#isStale(i)) {\n\t                    yield i;\n\t                }\n\t                if (i === this.#head) {\n\t                    break;\n\t                }\n\t                else {\n\t                    i = this.#prev[i];\n\t                }\n\t            }\n\t        }\n\t    }\n\t    *#rindexes({ allowStale = this.allowStale } = {}) {\n\t        if (this.#size) {\n\t            for (let i = this.#head; true;) {\n\t                if (!this.#isValidIndex(i)) {\n\t                    break;\n\t                }\n\t                if (allowStale || !this.#isStale(i)) {\n\t                    yield i;\n\t                }\n\t                if (i === this.#tail) {\n\t                    break;\n\t                }\n\t                else {\n\t                    i = this.#next[i];\n\t                }\n\t            }\n\t        }\n\t    }\n\t    #isValidIndex(index) {\n\t        return (index !== undefined &&\n\t            this.#keyMap.get(this.#keyList[index]) === index);\n\t    }\n\t    /**\n\t     * Return a generator yielding `[key, value]` pairs,\n\t     * in order from most recently used to least recently used.\n\t     */\n\t    *entries() {\n\t        for (const i of this.#indexes()) {\n\t            if (this.#valList[i] !== undefined &&\n\t                this.#keyList[i] !== undefined &&\n\t                !this.#isBackgroundFetch(this.#valList[i])) {\n\t                yield [this.#keyList[i], this.#valList[i]];\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Inverse order version of {@link LRUCache.entries}\n\t     *\n\t     * Return a generator yielding `[key, value]` pairs,\n\t     * in order from least recently used to most recently used.\n\t     */\n\t    *rentries() {\n\t        for (const i of this.#rindexes()) {\n\t            if (this.#valList[i] !== undefined &&\n\t                this.#keyList[i] !== undefined &&\n\t                !this.#isBackgroundFetch(this.#valList[i])) {\n\t                yield [this.#keyList[i], this.#valList[i]];\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Return a generator yielding the keys in the cache,\n\t     * in order from most recently used to least recently used.\n\t     */\n\t    *keys() {\n\t        for (const i of this.#indexes()) {\n\t            const k = this.#keyList[i];\n\t            if (k !== undefined &&\n\t                !this.#isBackgroundFetch(this.#valList[i])) {\n\t                yield k;\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Inverse order version of {@link LRUCache.keys}\n\t     *\n\t     * Return a generator yielding the keys in the cache,\n\t     * in order from least recently used to most recently used.\n\t     */\n\t    *rkeys() {\n\t        for (const i of this.#rindexes()) {\n\t            const k = this.#keyList[i];\n\t            if (k !== undefined &&\n\t                !this.#isBackgroundFetch(this.#valList[i])) {\n\t                yield k;\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Return a generator yielding the values in the cache,\n\t     * in order from most recently used to least recently used.\n\t     */\n\t    *values() {\n\t        for (const i of this.#indexes()) {\n\t            const v = this.#valList[i];\n\t            if (v !== undefined &&\n\t                !this.#isBackgroundFetch(this.#valList[i])) {\n\t                yield this.#valList[i];\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Inverse order version of {@link LRUCache.values}\n\t     *\n\t     * Return a generator yielding the values in the cache,\n\t     * in order from least recently used to most recently used.\n\t     */\n\t    *rvalues() {\n\t        for (const i of this.#rindexes()) {\n\t            const v = this.#valList[i];\n\t            if (v !== undefined &&\n\t                !this.#isBackgroundFetch(this.#valList[i])) {\n\t                yield this.#valList[i];\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Iterating over the cache itself yields the same results as\n\t     * {@link LRUCache.entries}\n\t     */\n\t    [Symbol.iterator]() {\n\t        return this.entries();\n\t    }\n\t    /**\n\t     * A String value that is used in the creation of the default string\n\t     * description of an object. Called by the built-in method\n\t     * `Object.prototype.toString`.\n\t     */\n\t    [Symbol.toStringTag] = 'LRUCache';\n\t    /**\n\t     * Find a value for which the supplied fn method returns a truthy value,\n\t     * similar to `Array.find()`. fn is called as `fn(value, key, cache)`.\n\t     */\n\t    find(fn, getOptions = {}) {\n\t        for (const i of this.#indexes()) {\n\t            const v = this.#valList[i];\n\t            const value = this.#isBackgroundFetch(v)\n\t                ? v.__staleWhileFetching\n\t                : v;\n\t            if (value === undefined)\n\t                continue;\n\t            if (fn(value, this.#keyList[i], this)) {\n\t                return this.get(this.#keyList[i], getOptions);\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * Call the supplied function on each item in the cache, in order from most\n\t     * recently used to least recently used.\n\t     *\n\t     * `fn` is called as `fn(value, key, cache)`.\n\t     *\n\t     * If `thisp` is provided, function will be called in the `this`-context of\n\t     * the provided object, or the cache if no `thisp` object is provided.\n\t     *\n\t     * Does not update age or recenty of use, or iterate over stale values.\n\t     */\n\t    forEach(fn, thisp = this) {\n\t        for (const i of this.#indexes()) {\n\t            const v = this.#valList[i];\n\t            const value = this.#isBackgroundFetch(v)\n\t                ? v.__staleWhileFetching\n\t                : v;\n\t            if (value === undefined)\n\t                continue;\n\t            fn.call(thisp, value, this.#keyList[i], this);\n\t        }\n\t    }\n\t    /**\n\t     * The same as {@link LRUCache.forEach} but items are iterated over in\n\t     * reverse order.  (ie, less recently used items are iterated over first.)\n\t     */\n\t    rforEach(fn, thisp = this) {\n\t        for (const i of this.#rindexes()) {\n\t            const v = this.#valList[i];\n\t            const value = this.#isBackgroundFetch(v)\n\t                ? v.__staleWhileFetching\n\t                : v;\n\t            if (value === undefined)\n\t                continue;\n\t            fn.call(thisp, value, this.#keyList[i], this);\n\t        }\n\t    }\n\t    /**\n\t     * Delete any stale entries. Returns true if anything was removed,\n\t     * false otherwise.\n\t     */\n\t    purgeStale() {\n\t        let deleted = false;\n\t        for (const i of this.#rindexes({ allowStale: true })) {\n\t            if (this.#isStale(i)) {\n\t                this.#delete(this.#keyList[i], 'expire');\n\t                deleted = true;\n\t            }\n\t        }\n\t        return deleted;\n\t    }\n\t    /**\n\t     * Get the extended info about a given entry, to get its value, size, and\n\t     * TTL info simultaneously. Returns `undefined` if the key is not present.\n\t     *\n\t     * Unlike {@link LRUCache#dump}, which is designed to be portable and survive\n\t     * serialization, the `start` value is always the current timestamp, and the\n\t     * `ttl` is a calculated remaining time to live (negative if expired).\n\t     *\n\t     * Always returns stale values, if their info is found in the cache, so be\n\t     * sure to check for expirations (ie, a negative {@link LRUCache.Entry#ttl})\n\t     * if relevant.\n\t     */\n\t    info(key) {\n\t        const i = this.#keyMap.get(key);\n\t        if (i === undefined)\n\t            return undefined;\n\t        const v = this.#valList[i];\n\t        const value = this.#isBackgroundFetch(v)\n\t            ? v.__staleWhileFetching\n\t            : v;\n\t        if (value === undefined)\n\t            return undefined;\n\t        const entry = { value };\n\t        if (this.#ttls && this.#starts) {\n\t            const ttl = this.#ttls[i];\n\t            const start = this.#starts[i];\n\t            if (ttl && start) {\n\t                const remain = ttl - (perf.now() - start);\n\t                entry.ttl = remain;\n\t                entry.start = Date.now();\n\t            }\n\t        }\n\t        if (this.#sizes) {\n\t            entry.size = this.#sizes[i];\n\t        }\n\t        return entry;\n\t    }\n\t    /**\n\t     * Return an array of [key, {@link LRUCache.Entry}] tuples which can be\n\t     * passed to {@link LRLUCache#load}.\n\t     *\n\t     * The `start` fields are calculated relative to a portable `Date.now()`\n\t     * timestamp, even if `performance.now()` is available.\n\t     *\n\t     * Stale entries are always included in the `dump`, even if\n\t     * {@link LRUCache.OptionsBase.allowStale} is false.\n\t     *\n\t     * Note: this returns an actual array, not a generator, so it can be more\n\t     * easily passed around.\n\t     */\n\t    dump() {\n\t        const arr = [];\n\t        for (const i of this.#indexes({ allowStale: true })) {\n\t            const key = this.#keyList[i];\n\t            const v = this.#valList[i];\n\t            const value = this.#isBackgroundFetch(v)\n\t                ? v.__staleWhileFetching\n\t                : v;\n\t            if (value === undefined || key === undefined)\n\t                continue;\n\t            const entry = { value };\n\t            if (this.#ttls && this.#starts) {\n\t                entry.ttl = this.#ttls[i];\n\t                // always dump the start relative to a portable timestamp\n\t                // it's ok for this to be a bit slow, it's a rare operation.\n\t                const age = perf.now() - this.#starts[i];\n\t                entry.start = Math.floor(Date.now() - age);\n\t            }\n\t            if (this.#sizes) {\n\t                entry.size = this.#sizes[i];\n\t            }\n\t            arr.unshift([key, entry]);\n\t        }\n\t        return arr;\n\t    }\n\t    /**\n\t     * Reset the cache and load in the items in entries in the order listed.\n\t     *\n\t     * The shape of the resulting cache may be different if the same options are\n\t     * not used in both caches.\n\t     *\n\t     * The `start` fields are assumed to be calculated relative to a portable\n\t     * `Date.now()` timestamp, even if `performance.now()` is available.\n\t     */\n\t    load(arr) {\n\t        this.clear();\n\t        for (const [key, entry] of arr) {\n\t            if (entry.start) {\n\t                // entry.start is a portable timestamp, but we may be using\n\t                // node's performance.now(), so calculate the offset, so that\n\t                // we get the intended remaining TTL, no matter how long it's\n\t                // been on ice.\n\t                //\n\t                // it's ok for this to be a bit slow, it's a rare operation.\n\t                const age = Date.now() - entry.start;\n\t                entry.start = perf.now() - age;\n\t            }\n\t            this.set(key, entry.value, entry);\n\t        }\n\t    }\n\t    /**\n\t     * Add a value to the cache.\n\t     *\n\t     * Note: if `undefined` is specified as a value, this is an alias for\n\t     * {@link LRUCache#delete}\n\t     *\n\t     * Fields on the {@link LRUCache.SetOptions} options param will override\n\t     * their corresponding values in the constructor options for the scope\n\t     * of this single `set()` operation.\n\t     *\n\t     * If `start` is provided, then that will set the effective start\n\t     * time for the TTL calculation. Note that this must be a previous\n\t     * value of `performance.now()` if supported, or a previous value of\n\t     * `Date.now()` if not.\n\t     *\n\t     * Options object may also include `size`, which will prevent\n\t     * calling the `sizeCalculation` function and just use the specified\n\t     * number if it is a positive integer, and `noDisposeOnSet` which\n\t     * will prevent calling a `dispose` function in the case of\n\t     * overwrites.\n\t     *\n\t     * If the `size` (or return value of `sizeCalculation`) for a given\n\t     * entry is greater than `maxEntrySize`, then the item will not be\n\t     * added to the cache.\n\t     *\n\t     * Will update the recency of the entry.\n\t     *\n\t     * If the value is `undefined`, then this is an alias for\n\t     * `cache.delete(key)`. `undefined` is never stored in the cache.\n\t     */\n\t    set(k, v, setOptions = {}) {\n\t        if (v === undefined) {\n\t            this.delete(k);\n\t            return this;\n\t        }\n\t        const { ttl = this.ttl, start, noDisposeOnSet = this.noDisposeOnSet, sizeCalculation = this.sizeCalculation, status, } = setOptions;\n\t        let { noUpdateTTL = this.noUpdateTTL } = setOptions;\n\t        const size = this.#requireSize(k, v, setOptions.size || 0, sizeCalculation);\n\t        // if the item doesn't fit, don't do anything\n\t        // NB: maxEntrySize set to maxSize by default\n\t        if (this.maxEntrySize && size > this.maxEntrySize) {\n\t            if (status) {\n\t                status.set = 'miss';\n\t                status.maxEntrySizeExceeded = true;\n\t            }\n\t            // have to delete, in case something is there already.\n\t            this.#delete(k, 'set');\n\t            return this;\n\t        }\n\t        let index = this.#size === 0 ? undefined : this.#keyMap.get(k);\n\t        if (index === undefined) {\n\t            // addition\n\t            index = (this.#size === 0\n\t                ? this.#tail\n\t                : this.#free.length !== 0\n\t                    ? this.#free.pop()\n\t                    : this.#size === this.#max\n\t                        ? this.#evict(false)\n\t                        : this.#size);\n\t            this.#keyList[index] = k;\n\t            this.#valList[index] = v;\n\t            this.#keyMap.set(k, index);\n\t            this.#next[this.#tail] = index;\n\t            this.#prev[index] = this.#tail;\n\t            this.#tail = index;\n\t            this.#size++;\n\t            this.#addItemSize(index, size, status);\n\t            if (status)\n\t                status.set = 'add';\n\t            noUpdateTTL = false;\n\t        }\n\t        else {\n\t            // update\n\t            this.#moveToTail(index);\n\t            const oldVal = this.#valList[index];\n\t            if (v !== oldVal) {\n\t                if (this.#hasFetchMethod && this.#isBackgroundFetch(oldVal)) {\n\t                    oldVal.__abortController.abort(new Error('replaced'));\n\t                    const { __staleWhileFetching: s } = oldVal;\n\t                    if (s !== undefined && !noDisposeOnSet) {\n\t                        if (this.#hasDispose) {\n\t                            this.#dispose?.(s, k, 'set');\n\t                        }\n\t                        if (this.#hasDisposeAfter) {\n\t                            this.#disposed?.push([s, k, 'set']);\n\t                        }\n\t                    }\n\t                }\n\t                else if (!noDisposeOnSet) {\n\t                    if (this.#hasDispose) {\n\t                        this.#dispose?.(oldVal, k, 'set');\n\t                    }\n\t                    if (this.#hasDisposeAfter) {\n\t                        this.#disposed?.push([oldVal, k, 'set']);\n\t                    }\n\t                }\n\t                this.#removeItemSize(index);\n\t                this.#addItemSize(index, size, status);\n\t                this.#valList[index] = v;\n\t                if (status) {\n\t                    status.set = 'replace';\n\t                    const oldValue = oldVal && this.#isBackgroundFetch(oldVal)\n\t                        ? oldVal.__staleWhileFetching\n\t                        : oldVal;\n\t                    if (oldValue !== undefined)\n\t                        status.oldValue = oldValue;\n\t                }\n\t            }\n\t            else if (status) {\n\t                status.set = 'update';\n\t            }\n\t        }\n\t        if (ttl !== 0 && !this.#ttls) {\n\t            this.#initializeTTLTracking();\n\t        }\n\t        if (this.#ttls) {\n\t            if (!noUpdateTTL) {\n\t                this.#setItemTTL(index, ttl, start);\n\t            }\n\t            if (status)\n\t                this.#statusTTL(status, index);\n\t        }\n\t        if (!noDisposeOnSet && this.#hasDisposeAfter && this.#disposed) {\n\t            const dt = this.#disposed;\n\t            let task;\n\t            while ((task = dt?.shift())) {\n\t                this.#disposeAfter?.(...task);\n\t            }\n\t        }\n\t        return this;\n\t    }\n\t    /**\n\t     * Evict the least recently used item, returning its value or\n\t     * `undefined` if cache is empty.\n\t     */\n\t    pop() {\n\t        try {\n\t            while (this.#size) {\n\t                const val = this.#valList[this.#head];\n\t                this.#evict(true);\n\t                if (this.#isBackgroundFetch(val)) {\n\t                    if (val.__staleWhileFetching) {\n\t                        return val.__staleWhileFetching;\n\t                    }\n\t                }\n\t                else if (val !== undefined) {\n\t                    return val;\n\t                }\n\t            }\n\t        }\n\t        finally {\n\t            if (this.#hasDisposeAfter && this.#disposed) {\n\t                const dt = this.#disposed;\n\t                let task;\n\t                while ((task = dt?.shift())) {\n\t                    this.#disposeAfter?.(...task);\n\t                }\n\t            }\n\t        }\n\t    }\n\t    #evict(free) {\n\t        const head = this.#head;\n\t        const k = this.#keyList[head];\n\t        const v = this.#valList[head];\n\t        if (this.#hasFetchMethod && this.#isBackgroundFetch(v)) {\n\t            v.__abortController.abort(new Error('evicted'));\n\t        }\n\t        else if (this.#hasDispose || this.#hasDisposeAfter) {\n\t            if (this.#hasDispose) {\n\t                this.#dispose?.(v, k, 'evict');\n\t            }\n\t            if (this.#hasDisposeAfter) {\n\t                this.#disposed?.push([v, k, 'evict']);\n\t            }\n\t        }\n\t        this.#removeItemSize(head);\n\t        // if we aren't about to use the index, then null these out\n\t        if (free) {\n\t            this.#keyList[head] = undefined;\n\t            this.#valList[head] = undefined;\n\t            this.#free.push(head);\n\t        }\n\t        if (this.#size === 1) {\n\t            this.#head = this.#tail = 0;\n\t            this.#free.length = 0;\n\t        }\n\t        else {\n\t            this.#head = this.#next[head];\n\t        }\n\t        this.#keyMap.delete(k);\n\t        this.#size--;\n\t        return head;\n\t    }\n\t    /**\n\t     * Check if a key is in the cache, without updating the recency of use.\n\t     * Will return false if the item is stale, even though it is technically\n\t     * in the cache.\n\t     *\n\t     * Check if a key is in the cache, without updating the recency of\n\t     * use. Age is updated if {@link LRUCache.OptionsBase.updateAgeOnHas} is set\n\t     * to `true` in either the options or the constructor.\n\t     *\n\t     * Will return `false` if the item is stale, even though it is technically in\n\t     * the cache. The difference can be determined (if it matters) by using a\n\t     * `status` argument, and inspecting the `has` field.\n\t     *\n\t     * Will not update item age unless\n\t     * {@link LRUCache.OptionsBase.updateAgeOnHas} is set.\n\t     */\n\t    has(k, hasOptions = {}) {\n\t        const { updateAgeOnHas = this.updateAgeOnHas, status } = hasOptions;\n\t        const index = this.#keyMap.get(k);\n\t        if (index !== undefined) {\n\t            const v = this.#valList[index];\n\t            if (this.#isBackgroundFetch(v) &&\n\t                v.__staleWhileFetching === undefined) {\n\t                return false;\n\t            }\n\t            if (!this.#isStale(index)) {\n\t                if (updateAgeOnHas) {\n\t                    this.#updateItemAge(index);\n\t                }\n\t                if (status) {\n\t                    status.has = 'hit';\n\t                    this.#statusTTL(status, index);\n\t                }\n\t                return true;\n\t            }\n\t            else if (status) {\n\t                status.has = 'stale';\n\t                this.#statusTTL(status, index);\n\t            }\n\t        }\n\t        else if (status) {\n\t            status.has = 'miss';\n\t        }\n\t        return false;\n\t    }\n\t    /**\n\t     * Like {@link LRUCache#get} but doesn't update recency or delete stale\n\t     * items.\n\t     *\n\t     * Returns `undefined` if the item is stale, unless\n\t     * {@link LRUCache.OptionsBase.allowStale} is set.\n\t     */\n\t    peek(k, peekOptions = {}) {\n\t        const { allowStale = this.allowStale } = peekOptions;\n\t        const index = this.#keyMap.get(k);\n\t        if (index === undefined ||\n\t            (!allowStale && this.#isStale(index))) {\n\t            return;\n\t        }\n\t        const v = this.#valList[index];\n\t        // either stale and allowed, or forcing a refresh of non-stale value\n\t        return this.#isBackgroundFetch(v) ? v.__staleWhileFetching : v;\n\t    }\n\t    #backgroundFetch(k, index, options, context) {\n\t        const v = index === undefined ? undefined : this.#valList[index];\n\t        if (this.#isBackgroundFetch(v)) {\n\t            return v;\n\t        }\n\t        const ac = new AC();\n\t        const { signal } = options;\n\t        // when/if our AC signals, then stop listening to theirs.\n\t        signal?.addEventListener('abort', () => ac.abort(signal.reason), {\n\t            signal: ac.signal,\n\t        });\n\t        const fetchOpts = {\n\t            signal: ac.signal,\n\t            options,\n\t            context,\n\t        };\n\t        const cb = (v, updateCache = false) => {\n\t            const { aborted } = ac.signal;\n\t            const ignoreAbort = options.ignoreFetchAbort && v !== undefined;\n\t            if (options.status) {\n\t                if (aborted && !updateCache) {\n\t                    options.status.fetchAborted = true;\n\t                    options.status.fetchError = ac.signal.reason;\n\t                    if (ignoreAbort)\n\t                        options.status.fetchAbortIgnored = true;\n\t                }\n\t                else {\n\t                    options.status.fetchResolved = true;\n\t                }\n\t            }\n\t            if (aborted && !ignoreAbort && !updateCache) {\n\t                return fetchFail(ac.signal.reason);\n\t            }\n\t            // either we didn't abort, and are still here, or we did, and ignored\n\t            const bf = p;\n\t            if (this.#valList[index] === p) {\n\t                if (v === undefined) {\n\t                    if (bf.__staleWhileFetching) {\n\t                        this.#valList[index] = bf.__staleWhileFetching;\n\t                    }\n\t                    else {\n\t                        this.#delete(k, 'fetch');\n\t                    }\n\t                }\n\t                else {\n\t                    if (options.status)\n\t                        options.status.fetchUpdated = true;\n\t                    this.set(k, v, fetchOpts.options);\n\t                }\n\t            }\n\t            return v;\n\t        };\n\t        const eb = (er) => {\n\t            if (options.status) {\n\t                options.status.fetchRejected = true;\n\t                options.status.fetchError = er;\n\t            }\n\t            return fetchFail(er);\n\t        };\n\t        const fetchFail = (er) => {\n\t            const { aborted } = ac.signal;\n\t            const allowStaleAborted = aborted && options.allowStaleOnFetchAbort;\n\t            const allowStale = allowStaleAborted || options.allowStaleOnFetchRejection;\n\t            const noDelete = allowStale || options.noDeleteOnFetchRejection;\n\t            const bf = p;\n\t            if (this.#valList[index] === p) {\n\t                // if we allow stale on fetch rejections, then we need to ensure that\n\t                // the stale value is not removed from the cache when the fetch fails.\n\t                const del = !noDelete || bf.__staleWhileFetching === undefined;\n\t                if (del) {\n\t                    this.#delete(k, 'fetch');\n\t                }\n\t                else if (!allowStaleAborted) {\n\t                    // still replace the *promise* with the stale value,\n\t                    // since we are done with the promise at this point.\n\t                    // leave it untouched if we're still waiting for an\n\t                    // aborted background fetch that hasn't yet returned.\n\t                    this.#valList[index] = bf.__staleWhileFetching;\n\t                }\n\t            }\n\t            if (allowStale) {\n\t                if (options.status && bf.__staleWhileFetching !== undefined) {\n\t                    options.status.returnedStale = true;\n\t                }\n\t                return bf.__staleWhileFetching;\n\t            }\n\t            else if (bf.__returned === bf) {\n\t                throw er;\n\t            }\n\t        };\n\t        const pcall = (res, rej) => {\n\t            const fmp = this.#fetchMethod?.(k, v, fetchOpts);\n\t            if (fmp && fmp instanceof Promise) {\n\t                fmp.then(v => res(v === undefined ? undefined : v), rej);\n\t            }\n\t            // ignored, we go until we finish, regardless.\n\t            // defer check until we are actually aborting,\n\t            // so fetchMethod can override.\n\t            ac.signal.addEventListener('abort', () => {\n\t                if (!options.ignoreFetchAbort ||\n\t                    options.allowStaleOnFetchAbort) {\n\t                    res(undefined);\n\t                    // when it eventually resolves, update the cache.\n\t                    if (options.allowStaleOnFetchAbort) {\n\t                        res = v => cb(v, true);\n\t                    }\n\t                }\n\t            });\n\t        };\n\t        if (options.status)\n\t            options.status.fetchDispatched = true;\n\t        const p = new Promise(pcall).then(cb, eb);\n\t        const bf = Object.assign(p, {\n\t            __abortController: ac,\n\t            __staleWhileFetching: v,\n\t            __returned: undefined,\n\t        });\n\t        if (index === undefined) {\n\t            // internal, don't expose status.\n\t            this.set(k, bf, { ...fetchOpts.options, status: undefined });\n\t            index = this.#keyMap.get(k);\n\t        }\n\t        else {\n\t            this.#valList[index] = bf;\n\t        }\n\t        return bf;\n\t    }\n\t    #isBackgroundFetch(p) {\n\t        if (!this.#hasFetchMethod)\n\t            return false;\n\t        const b = p;\n\t        return (!!b &&\n\t            b instanceof Promise &&\n\t            b.hasOwnProperty('__staleWhileFetching') &&\n\t            b.__abortController instanceof AC);\n\t    }\n\t    async fetch(k, fetchOptions = {}) {\n\t        const { \n\t        // get options\n\t        allowStale = this.allowStale, updateAgeOnGet = this.updateAgeOnGet, noDeleteOnStaleGet = this.noDeleteOnStaleGet, \n\t        // set options\n\t        ttl = this.ttl, noDisposeOnSet = this.noDisposeOnSet, size = 0, sizeCalculation = this.sizeCalculation, noUpdateTTL = this.noUpdateTTL, \n\t        // fetch exclusive options\n\t        noDeleteOnFetchRejection = this.noDeleteOnFetchRejection, allowStaleOnFetchRejection = this.allowStaleOnFetchRejection, ignoreFetchAbort = this.ignoreFetchAbort, allowStaleOnFetchAbort = this.allowStaleOnFetchAbort, context, forceRefresh = false, status, signal, } = fetchOptions;\n\t        if (!this.#hasFetchMethod) {\n\t            if (status)\n\t                status.fetch = 'get';\n\t            return this.get(k, {\n\t                allowStale,\n\t                updateAgeOnGet,\n\t                noDeleteOnStaleGet,\n\t                status,\n\t            });\n\t        }\n\t        const options = {\n\t            allowStale,\n\t            updateAgeOnGet,\n\t            noDeleteOnStaleGet,\n\t            ttl,\n\t            noDisposeOnSet,\n\t            size,\n\t            sizeCalculation,\n\t            noUpdateTTL,\n\t            noDeleteOnFetchRejection,\n\t            allowStaleOnFetchRejection,\n\t            allowStaleOnFetchAbort,\n\t            ignoreFetchAbort,\n\t            status,\n\t            signal,\n\t        };\n\t        let index = this.#keyMap.get(k);\n\t        if (index === undefined) {\n\t            if (status)\n\t                status.fetch = 'miss';\n\t            const p = this.#backgroundFetch(k, index, options, context);\n\t            return (p.__returned = p);\n\t        }\n\t        else {\n\t            // in cache, maybe already fetching\n\t            const v = this.#valList[index];\n\t            if (this.#isBackgroundFetch(v)) {\n\t                const stale = allowStale && v.__staleWhileFetching !== undefined;\n\t                if (status) {\n\t                    status.fetch = 'inflight';\n\t                    if (stale)\n\t                        status.returnedStale = true;\n\t                }\n\t                return stale ? v.__staleWhileFetching : (v.__returned = v);\n\t            }\n\t            // if we force a refresh, that means do NOT serve the cached value,\n\t            // unless we are already in the process of refreshing the cache.\n\t            const isStale = this.#isStale(index);\n\t            if (!forceRefresh && !isStale) {\n\t                if (status)\n\t                    status.fetch = 'hit';\n\t                this.#moveToTail(index);\n\t                if (updateAgeOnGet) {\n\t                    this.#updateItemAge(index);\n\t                }\n\t                if (status)\n\t                    this.#statusTTL(status, index);\n\t                return v;\n\t            }\n\t            // ok, it is stale or a forced refresh, and not already fetching.\n\t            // refresh the cache.\n\t            const p = this.#backgroundFetch(k, index, options, context);\n\t            const hasStale = p.__staleWhileFetching !== undefined;\n\t            const staleVal = hasStale && allowStale;\n\t            if (status) {\n\t                status.fetch = isStale ? 'stale' : 'refresh';\n\t                if (staleVal && isStale)\n\t                    status.returnedStale = true;\n\t            }\n\t            return staleVal ? p.__staleWhileFetching : (p.__returned = p);\n\t        }\n\t    }\n\t    async forceFetch(k, fetchOptions = {}) {\n\t        const v = await this.fetch(k, fetchOptions);\n\t        if (v === undefined)\n\t            throw new Error('fetch() returned undefined');\n\t        return v;\n\t    }\n\t    memo(k, memoOptions = {}) {\n\t        const memoMethod = this.#memoMethod;\n\t        if (!memoMethod) {\n\t            throw new Error('no memoMethod provided to constructor');\n\t        }\n\t        const { context, forceRefresh, ...options } = memoOptions;\n\t        const v = this.get(k, options);\n\t        if (!forceRefresh && v !== undefined)\n\t            return v;\n\t        const vv = memoMethod(k, v, {\n\t            options,\n\t            context,\n\t        });\n\t        this.set(k, vv, options);\n\t        return vv;\n\t    }\n\t    /**\n\t     * Return a value from the cache. Will update the recency of the cache\n\t     * entry found.\n\t     *\n\t     * If the key is not found, get() will return `undefined`.\n\t     */\n\t    get(k, getOptions = {}) {\n\t        const { allowStale = this.allowStale, updateAgeOnGet = this.updateAgeOnGet, noDeleteOnStaleGet = this.noDeleteOnStaleGet, status, } = getOptions;\n\t        const index = this.#keyMap.get(k);\n\t        if (index !== undefined) {\n\t            const value = this.#valList[index];\n\t            const fetching = this.#isBackgroundFetch(value);\n\t            if (status)\n\t                this.#statusTTL(status, index);\n\t            if (this.#isStale(index)) {\n\t                if (status)\n\t                    status.get = 'stale';\n\t                // delete only if not an in-flight background fetch\n\t                if (!fetching) {\n\t                    if (!noDeleteOnStaleGet) {\n\t                        this.#delete(k, 'expire');\n\t                    }\n\t                    if (status && allowStale)\n\t                        status.returnedStale = true;\n\t                    return allowStale ? value : undefined;\n\t                }\n\t                else {\n\t                    if (status &&\n\t                        allowStale &&\n\t                        value.__staleWhileFetching !== undefined) {\n\t                        status.returnedStale = true;\n\t                    }\n\t                    return allowStale ? value.__staleWhileFetching : undefined;\n\t                }\n\t            }\n\t            else {\n\t                if (status)\n\t                    status.get = 'hit';\n\t                // if we're currently fetching it, we don't actually have it yet\n\t                // it's not stale, which means this isn't a staleWhileRefetching.\n\t                // If it's not stale, and fetching, AND has a __staleWhileFetching\n\t                // value, then that means the user fetched with {forceRefresh:true},\n\t                // so it's safe to return that value.\n\t                if (fetching) {\n\t                    return value.__staleWhileFetching;\n\t                }\n\t                this.#moveToTail(index);\n\t                if (updateAgeOnGet) {\n\t                    this.#updateItemAge(index);\n\t                }\n\t                return value;\n\t            }\n\t        }\n\t        else if (status) {\n\t            status.get = 'miss';\n\t        }\n\t    }\n\t    #connect(p, n) {\n\t        this.#prev[n] = p;\n\t        this.#next[p] = n;\n\t    }\n\t    #moveToTail(index) {\n\t        // if tail already, nothing to do\n\t        // if head, move head to next[index]\n\t        // else\n\t        //   move next[prev[index]] to next[index] (head has no prev)\n\t        //   move prev[next[index]] to prev[index]\n\t        // prev[index] = tail\n\t        // next[tail] = index\n\t        // tail = index\n\t        if (index !== this.#tail) {\n\t            if (index === this.#head) {\n\t                this.#head = this.#next[index];\n\t            }\n\t            else {\n\t                this.#connect(this.#prev[index], this.#next[index]);\n\t            }\n\t            this.#connect(this.#tail, index);\n\t            this.#tail = index;\n\t        }\n\t    }\n\t    /**\n\t     * Deletes a key out of the cache.\n\t     *\n\t     * Returns true if the key was deleted, false otherwise.\n\t     */\n\t    delete(k) {\n\t        return this.#delete(k, 'delete');\n\t    }\n\t    #delete(k, reason) {\n\t        let deleted = false;\n\t        if (this.#size !== 0) {\n\t            const index = this.#keyMap.get(k);\n\t            if (index !== undefined) {\n\t                deleted = true;\n\t                if (this.#size === 1) {\n\t                    this.#clear(reason);\n\t                }\n\t                else {\n\t                    this.#removeItemSize(index);\n\t                    const v = this.#valList[index];\n\t                    if (this.#isBackgroundFetch(v)) {\n\t                        v.__abortController.abort(new Error('deleted'));\n\t                    }\n\t                    else if (this.#hasDispose || this.#hasDisposeAfter) {\n\t                        if (this.#hasDispose) {\n\t                            this.#dispose?.(v, k, reason);\n\t                        }\n\t                        if (this.#hasDisposeAfter) {\n\t                            this.#disposed?.push([v, k, reason]);\n\t                        }\n\t                    }\n\t                    this.#keyMap.delete(k);\n\t                    this.#keyList[index] = undefined;\n\t                    this.#valList[index] = undefined;\n\t                    if (index === this.#tail) {\n\t                        this.#tail = this.#prev[index];\n\t                    }\n\t                    else if (index === this.#head) {\n\t                        this.#head = this.#next[index];\n\t                    }\n\t                    else {\n\t                        const pi = this.#prev[index];\n\t                        this.#next[pi] = this.#next[index];\n\t                        const ni = this.#next[index];\n\t                        this.#prev[ni] = this.#prev[index];\n\t                    }\n\t                    this.#size--;\n\t                    this.#free.push(index);\n\t                }\n\t            }\n\t        }\n\t        if (this.#hasDisposeAfter && this.#disposed?.length) {\n\t            const dt = this.#disposed;\n\t            let task;\n\t            while ((task = dt?.shift())) {\n\t                this.#disposeAfter?.(...task);\n\t            }\n\t        }\n\t        return deleted;\n\t    }\n\t    /**\n\t     * Clear the cache entirely, throwing away all values.\n\t     */\n\t    clear() {\n\t        return this.#clear('delete');\n\t    }\n\t    #clear(reason) {\n\t        for (const index of this.#rindexes({ allowStale: true })) {\n\t            const v = this.#valList[index];\n\t            if (this.#isBackgroundFetch(v)) {\n\t                v.__abortController.abort(new Error('deleted'));\n\t            }\n\t            else {\n\t                const k = this.#keyList[index];\n\t                if (this.#hasDispose) {\n\t                    this.#dispose?.(v, k, reason);\n\t                }\n\t                if (this.#hasDisposeAfter) {\n\t                    this.#disposed?.push([v, k, reason]);\n\t                }\n\t            }\n\t        }\n\t        this.#keyMap.clear();\n\t        this.#valList.fill(undefined);\n\t        this.#keyList.fill(undefined);\n\t        if (this.#ttls && this.#starts) {\n\t            this.#ttls.fill(0);\n\t            this.#starts.fill(0);\n\t        }\n\t        if (this.#sizes) {\n\t            this.#sizes.fill(0);\n\t        }\n\t        this.#head = 0;\n\t        this.#tail = 0;\n\t        this.#free.length = 0;\n\t        this.#calculatedSize = 0;\n\t        this.#size = 0;\n\t        if (this.#hasDisposeAfter && this.#disposed) {\n\t            const dt = this.#disposed;\n\t            let task;\n\t            while ((task = dt?.shift())) {\n\t                this.#disposeAfter?.(...task);\n\t            }\n\t        }\n\t    }\n\t}\n\tcommonjs$1.LRUCache = LRUCache;\n\t\n\treturn commonjs$1;\n}\n\nvar commonjs = {};\n\nvar hasRequiredCommonjs$2;\n\nfunction requireCommonjs$2 () {\n\tif (hasRequiredCommonjs$2) return commonjs;\n\thasRequiredCommonjs$2 = 1;\n\t(function (exports) {\n\t\tvar __importDefault = (commonjs && commonjs.__importDefault) || function (mod) {\n\t\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.Minipass = exports.isWritable = exports.isReadable = exports.isStream = void 0;\n\t\tconst proc = typeof process === 'object' && process\n\t\t    ? process\n\t\t    : {\n\t\t        stdout: null,\n\t\t        stderr: null,\n\t\t    };\n\t\tconst node_events_1 = require$$0$c;\n\t\tconst node_stream_1 = __importDefault(require$$0$d);\n\t\tconst node_string_decoder_1 = require$$2$6;\n\t\t/**\n\t\t * Return true if the argument is a Minipass stream, Node stream, or something\n\t\t * else that Minipass can interact with.\n\t\t */\n\t\tconst isStream = (s) => !!s &&\n\t\t    typeof s === 'object' &&\n\t\t    (s instanceof Minipass ||\n\t\t        s instanceof node_stream_1.default ||\n\t\t        (0, exports.isReadable)(s) ||\n\t\t        (0, exports.isWritable)(s));\n\t\texports.isStream = isStream;\n\t\t/**\n\t\t * Return true if the argument is a valid {@link Minipass.Readable}\n\t\t */\n\t\tconst isReadable = (s) => !!s &&\n\t\t    typeof s === 'object' &&\n\t\t    s instanceof node_events_1.EventEmitter &&\n\t\t    typeof s.pipe === 'function' &&\n\t\t    // node core Writable streams have a pipe() method, but it throws\n\t\t    s.pipe !== node_stream_1.default.Writable.prototype.pipe;\n\t\texports.isReadable = isReadable;\n\t\t/**\n\t\t * Return true if the argument is a valid {@link Minipass.Writable}\n\t\t */\n\t\tconst isWritable = (s) => !!s &&\n\t\t    typeof s === 'object' &&\n\t\t    s instanceof node_events_1.EventEmitter &&\n\t\t    typeof s.write === 'function' &&\n\t\t    typeof s.end === 'function';\n\t\texports.isWritable = isWritable;\n\t\tconst EOF = Symbol('EOF');\n\t\tconst MAYBE_EMIT_END = Symbol('maybeEmitEnd');\n\t\tconst EMITTED_END = Symbol('emittedEnd');\n\t\tconst EMITTING_END = Symbol('emittingEnd');\n\t\tconst EMITTED_ERROR = Symbol('emittedError');\n\t\tconst CLOSED = Symbol('closed');\n\t\tconst READ = Symbol('read');\n\t\tconst FLUSH = Symbol('flush');\n\t\tconst FLUSHCHUNK = Symbol('flushChunk');\n\t\tconst ENCODING = Symbol('encoding');\n\t\tconst DECODER = Symbol('decoder');\n\t\tconst FLOWING = Symbol('flowing');\n\t\tconst PAUSED = Symbol('paused');\n\t\tconst RESUME = Symbol('resume');\n\t\tconst BUFFER = Symbol('buffer');\n\t\tconst PIPES = Symbol('pipes');\n\t\tconst BUFFERLENGTH = Symbol('bufferLength');\n\t\tconst BUFFERPUSH = Symbol('bufferPush');\n\t\tconst BUFFERSHIFT = Symbol('bufferShift');\n\t\tconst OBJECTMODE = Symbol('objectMode');\n\t\t// internal event when stream is destroyed\n\t\tconst DESTROYED = Symbol('destroyed');\n\t\t// internal event when stream has an error\n\t\tconst ERROR = Symbol('error');\n\t\tconst EMITDATA = Symbol('emitData');\n\t\tconst EMITEND = Symbol('emitEnd');\n\t\tconst EMITEND2 = Symbol('emitEnd2');\n\t\tconst ASYNC = Symbol('async');\n\t\tconst ABORT = Symbol('abort');\n\t\tconst ABORTED = Symbol('aborted');\n\t\tconst SIGNAL = Symbol('signal');\n\t\tconst DATALISTENERS = Symbol('dataListeners');\n\t\tconst DISCARDED = Symbol('discarded');\n\t\tconst defer = (fn) => Promise.resolve().then(fn);\n\t\tconst nodefer = (fn) => fn();\n\t\tconst isEndish = (ev) => ev === 'end' || ev === 'finish' || ev === 'prefinish';\n\t\tconst isArrayBufferLike = (b) => b instanceof ArrayBuffer ||\n\t\t    (!!b &&\n\t\t        typeof b === 'object' &&\n\t\t        b.constructor &&\n\t\t        b.constructor.name === 'ArrayBuffer' &&\n\t\t        b.byteLength >= 0);\n\t\tconst isArrayBufferView = (b) => !Buffer.isBuffer(b) && ArrayBuffer.isView(b);\n\t\t/**\n\t\t * Internal class representing a pipe to a destination stream.\n\t\t *\n\t\t * @internal\n\t\t */\n\t\tclass Pipe {\n\t\t    src;\n\t\t    dest;\n\t\t    opts;\n\t\t    ondrain;\n\t\t    constructor(src, dest, opts) {\n\t\t        this.src = src;\n\t\t        this.dest = dest;\n\t\t        this.opts = opts;\n\t\t        this.ondrain = () => src[RESUME]();\n\t\t        this.dest.on('drain', this.ondrain);\n\t\t    }\n\t\t    unpipe() {\n\t\t        this.dest.removeListener('drain', this.ondrain);\n\t\t    }\n\t\t    // only here for the prototype\n\t\t    /* c8 ignore start */\n\t\t    proxyErrors(_er) { }\n\t\t    /* c8 ignore stop */\n\t\t    end() {\n\t\t        this.unpipe();\n\t\t        if (this.opts.end)\n\t\t            this.dest.end();\n\t\t    }\n\t\t}\n\t\t/**\n\t\t * Internal class representing a pipe to a destination stream where\n\t\t * errors are proxied.\n\t\t *\n\t\t * @internal\n\t\t */\n\t\tclass PipeProxyErrors extends Pipe {\n\t\t    unpipe() {\n\t\t        this.src.removeListener('error', this.proxyErrors);\n\t\t        super.unpipe();\n\t\t    }\n\t\t    constructor(src, dest, opts) {\n\t\t        super(src, dest, opts);\n\t\t        this.proxyErrors = er => dest.emit('error', er);\n\t\t        src.on('error', this.proxyErrors);\n\t\t    }\n\t\t}\n\t\tconst isObjectModeOptions = (o) => !!o.objectMode;\n\t\tconst isEncodingOptions = (o) => !o.objectMode && !!o.encoding && o.encoding !== 'buffer';\n\t\t/**\n\t\t * Main export, the Minipass class\n\t\t *\n\t\t * `RType` is the type of data emitted, defaults to Buffer\n\t\t *\n\t\t * `WType` is the type of data to be written, if RType is buffer or string,\n\t\t * then any {@link Minipass.ContiguousData} is allowed.\n\t\t *\n\t\t * `Events` is the set of event handler signatures that this object\n\t\t * will emit, see {@link Minipass.Events}\n\t\t */\n\t\tclass Minipass extends node_events_1.EventEmitter {\n\t\t    [FLOWING] = false;\n\t\t    [PAUSED] = false;\n\t\t    [PIPES] = [];\n\t\t    [BUFFER] = [];\n\t\t    [OBJECTMODE];\n\t\t    [ENCODING];\n\t\t    [ASYNC];\n\t\t    [DECODER];\n\t\t    [EOF] = false;\n\t\t    [EMITTED_END] = false;\n\t\t    [EMITTING_END] = false;\n\t\t    [CLOSED] = false;\n\t\t    [EMITTED_ERROR] = null;\n\t\t    [BUFFERLENGTH] = 0;\n\t\t    [DESTROYED] = false;\n\t\t    [SIGNAL];\n\t\t    [ABORTED] = false;\n\t\t    [DATALISTENERS] = 0;\n\t\t    [DISCARDED] = false;\n\t\t    /**\n\t\t     * true if the stream can be written\n\t\t     */\n\t\t    writable = true;\n\t\t    /**\n\t\t     * true if the stream can be read\n\t\t     */\n\t\t    readable = true;\n\t\t    /**\n\t\t     * If `RType` is Buffer, then options do not need to be provided.\n\t\t     * Otherwise, an options object must be provided to specify either\n\t\t     * {@link Minipass.SharedOptions.objectMode} or\n\t\t     * {@link Minipass.SharedOptions.encoding}, as appropriate.\n\t\t     */\n\t\t    constructor(...args) {\n\t\t        const options = (args[0] ||\n\t\t            {});\n\t\t        super();\n\t\t        if (options.objectMode && typeof options.encoding === 'string') {\n\t\t            throw new TypeError('Encoding and objectMode may not be used together');\n\t\t        }\n\t\t        if (isObjectModeOptions(options)) {\n\t\t            this[OBJECTMODE] = true;\n\t\t            this[ENCODING] = null;\n\t\t        }\n\t\t        else if (isEncodingOptions(options)) {\n\t\t            this[ENCODING] = options.encoding;\n\t\t            this[OBJECTMODE] = false;\n\t\t        }\n\t\t        else {\n\t\t            this[OBJECTMODE] = false;\n\t\t            this[ENCODING] = null;\n\t\t        }\n\t\t        this[ASYNC] = !!options.async;\n\t\t        this[DECODER] = this[ENCODING]\n\t\t            ? new node_string_decoder_1.StringDecoder(this[ENCODING])\n\t\t            : null;\n\t\t        //@ts-ignore - private option for debugging and testing\n\t\t        if (options && options.debugExposeBuffer === true) {\n\t\t            Object.defineProperty(this, 'buffer', { get: () => this[BUFFER] });\n\t\t        }\n\t\t        //@ts-ignore - private option for debugging and testing\n\t\t        if (options && options.debugExposePipes === true) {\n\t\t            Object.defineProperty(this, 'pipes', { get: () => this[PIPES] });\n\t\t        }\n\t\t        const { signal } = options;\n\t\t        if (signal) {\n\t\t            this[SIGNAL] = signal;\n\t\t            if (signal.aborted) {\n\t\t                this[ABORT]();\n\t\t            }\n\t\t            else {\n\t\t                signal.addEventListener('abort', () => this[ABORT]());\n\t\t            }\n\t\t        }\n\t\t    }\n\t\t    /**\n\t\t     * The amount of data stored in the buffer waiting to be read.\n\t\t     *\n\t\t     * For Buffer strings, this will be the total byte length.\n\t\t     * For string encoding streams, this will be the string character length,\n\t\t     * according to JavaScript's `string.length` logic.\n\t\t     * For objectMode streams, this is a count of the items waiting to be\n\t\t     * emitted.\n\t\t     */\n\t\t    get bufferLength() {\n\t\t        return this[BUFFERLENGTH];\n\t\t    }\n\t\t    /**\n\t\t     * The `BufferEncoding` currently in use, or `null`\n\t\t     */\n\t\t    get encoding() {\n\t\t        return this[ENCODING];\n\t\t    }\n\t\t    /**\n\t\t     * @deprecated - This is a read only property\n\t\t     */\n\t\t    set encoding(_enc) {\n\t\t        throw new Error('Encoding must be set at instantiation time');\n\t\t    }\n\t\t    /**\n\t\t     * @deprecated - Encoding may only be set at instantiation time\n\t\t     */\n\t\t    setEncoding(_enc) {\n\t\t        throw new Error('Encoding must be set at instantiation time');\n\t\t    }\n\t\t    /**\n\t\t     * True if this is an objectMode stream\n\t\t     */\n\t\t    get objectMode() {\n\t\t        return this[OBJECTMODE];\n\t\t    }\n\t\t    /**\n\t\t     * @deprecated - This is a read-only property\n\t\t     */\n\t\t    set objectMode(_om) {\n\t\t        throw new Error('objectMode must be set at instantiation time');\n\t\t    }\n\t\t    /**\n\t\t     * true if this is an async stream\n\t\t     */\n\t\t    get ['async']() {\n\t\t        return this[ASYNC];\n\t\t    }\n\t\t    /**\n\t\t     * Set to true to make this stream async.\n\t\t     *\n\t\t     * Once set, it cannot be unset, as this would potentially cause incorrect\n\t\t     * behavior.  Ie, a sync stream can be made async, but an async stream\n\t\t     * cannot be safely made sync.\n\t\t     */\n\t\t    set ['async'](a) {\n\t\t        this[ASYNC] = this[ASYNC] || !!a;\n\t\t    }\n\t\t    // drop everything and get out of the flow completely\n\t\t    [ABORT]() {\n\t\t        this[ABORTED] = true;\n\t\t        this.emit('abort', this[SIGNAL]?.reason);\n\t\t        this.destroy(this[SIGNAL]?.reason);\n\t\t    }\n\t\t    /**\n\t\t     * True if the stream has been aborted.\n\t\t     */\n\t\t    get aborted() {\n\t\t        return this[ABORTED];\n\t\t    }\n\t\t    /**\n\t\t     * No-op setter. Stream aborted status is set via the AbortSignal provided\n\t\t     * in the constructor options.\n\t\t     */\n\t\t    set aborted(_) { }\n\t\t    write(chunk, encoding, cb) {\n\t\t        if (this[ABORTED])\n\t\t            return false;\n\t\t        if (this[EOF])\n\t\t            throw new Error('write after end');\n\t\t        if (this[DESTROYED]) {\n\t\t            this.emit('error', Object.assign(new Error('Cannot call write after a stream was destroyed'), { code: 'ERR_STREAM_DESTROYED' }));\n\t\t            return true;\n\t\t        }\n\t\t        if (typeof encoding === 'function') {\n\t\t            cb = encoding;\n\t\t            encoding = 'utf8';\n\t\t        }\n\t\t        if (!encoding)\n\t\t            encoding = 'utf8';\n\t\t        const fn = this[ASYNC] ? defer : nodefer;\n\t\t        // convert array buffers and typed array views into buffers\n\t\t        // at some point in the future, we may want to do the opposite!\n\t\t        // leave strings and buffers as-is\n\t\t        // anything is only allowed if in object mode, so throw\n\t\t        if (!this[OBJECTMODE] && !Buffer.isBuffer(chunk)) {\n\t\t            if (isArrayBufferView(chunk)) {\n\t\t                //@ts-ignore - sinful unsafe type changing\n\t\t                chunk = Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength);\n\t\t            }\n\t\t            else if (isArrayBufferLike(chunk)) {\n\t\t                //@ts-ignore - sinful unsafe type changing\n\t\t                chunk = Buffer.from(chunk);\n\t\t            }\n\t\t            else if (typeof chunk !== 'string') {\n\t\t                throw new Error('Non-contiguous data written to non-objectMode stream');\n\t\t            }\n\t\t        }\n\t\t        // handle object mode up front, since it's simpler\n\t\t        // this yields better performance, fewer checks later.\n\t\t        if (this[OBJECTMODE]) {\n\t\t            // maybe impossible?\n\t\t            /* c8 ignore start */\n\t\t            if (this[FLOWING] && this[BUFFERLENGTH] !== 0)\n\t\t                this[FLUSH](true);\n\t\t            /* c8 ignore stop */\n\t\t            if (this[FLOWING])\n\t\t                this.emit('data', chunk);\n\t\t            else\n\t\t                this[BUFFERPUSH](chunk);\n\t\t            if (this[BUFFERLENGTH] !== 0)\n\t\t                this.emit('readable');\n\t\t            if (cb)\n\t\t                fn(cb);\n\t\t            return this[FLOWING];\n\t\t        }\n\t\t        // at this point the chunk is a buffer or string\n\t\t        // don't buffer it up or send it to the decoder\n\t\t        if (!chunk.length) {\n\t\t            if (this[BUFFERLENGTH] !== 0)\n\t\t                this.emit('readable');\n\t\t            if (cb)\n\t\t                fn(cb);\n\t\t            return this[FLOWING];\n\t\t        }\n\t\t        // fast-path writing strings of same encoding to a stream with\n\t\t        // an empty buffer, skipping the buffer/decoder dance\n\t\t        if (typeof chunk === 'string' &&\n\t\t            // unless it is a string already ready for us to use\n\t\t            !(encoding === this[ENCODING] && !this[DECODER]?.lastNeed)) {\n\t\t            //@ts-ignore - sinful unsafe type change\n\t\t            chunk = Buffer.from(chunk, encoding);\n\t\t        }\n\t\t        if (Buffer.isBuffer(chunk) && this[ENCODING]) {\n\t\t            //@ts-ignore - sinful unsafe type change\n\t\t            chunk = this[DECODER].write(chunk);\n\t\t        }\n\t\t        // Note: flushing CAN potentially switch us into not-flowing mode\n\t\t        if (this[FLOWING] && this[BUFFERLENGTH] !== 0)\n\t\t            this[FLUSH](true);\n\t\t        if (this[FLOWING])\n\t\t            this.emit('data', chunk);\n\t\t        else\n\t\t            this[BUFFERPUSH](chunk);\n\t\t        if (this[BUFFERLENGTH] !== 0)\n\t\t            this.emit('readable');\n\t\t        if (cb)\n\t\t            fn(cb);\n\t\t        return this[FLOWING];\n\t\t    }\n\t\t    /**\n\t\t     * Low-level explicit read method.\n\t\t     *\n\t\t     * In objectMode, the argument is ignored, and one item is returned if\n\t\t     * available.\n\t\t     *\n\t\t     * `n` is the number of bytes (or in the case of encoding streams,\n\t\t     * characters) to consume. If `n` is not provided, then the entire buffer\n\t\t     * is returned, or `null` is returned if no data is available.\n\t\t     *\n\t\t     * If `n` is greater that the amount of data in the internal buffer,\n\t\t     * then `null` is returned.\n\t\t     */\n\t\t    read(n) {\n\t\t        if (this[DESTROYED])\n\t\t            return null;\n\t\t        this[DISCARDED] = false;\n\t\t        if (this[BUFFERLENGTH] === 0 ||\n\t\t            n === 0 ||\n\t\t            (n && n > this[BUFFERLENGTH])) {\n\t\t            this[MAYBE_EMIT_END]();\n\t\t            return null;\n\t\t        }\n\t\t        if (this[OBJECTMODE])\n\t\t            n = null;\n\t\t        if (this[BUFFER].length > 1 && !this[OBJECTMODE]) {\n\t\t            // not object mode, so if we have an encoding, then RType is string\n\t\t            // otherwise, must be Buffer\n\t\t            this[BUFFER] = [\n\t\t                (this[ENCODING]\n\t\t                    ? this[BUFFER].join('')\n\t\t                    : Buffer.concat(this[BUFFER], this[BUFFERLENGTH])),\n\t\t            ];\n\t\t        }\n\t\t        const ret = this[READ](n || null, this[BUFFER][0]);\n\t\t        this[MAYBE_EMIT_END]();\n\t\t        return ret;\n\t\t    }\n\t\t    [READ](n, chunk) {\n\t\t        if (this[OBJECTMODE])\n\t\t            this[BUFFERSHIFT]();\n\t\t        else {\n\t\t            const c = chunk;\n\t\t            if (n === c.length || n === null)\n\t\t                this[BUFFERSHIFT]();\n\t\t            else if (typeof c === 'string') {\n\t\t                this[BUFFER][0] = c.slice(n);\n\t\t                chunk = c.slice(0, n);\n\t\t                this[BUFFERLENGTH] -= n;\n\t\t            }\n\t\t            else {\n\t\t                this[BUFFER][0] = c.subarray(n);\n\t\t                chunk = c.subarray(0, n);\n\t\t                this[BUFFERLENGTH] -= n;\n\t\t            }\n\t\t        }\n\t\t        this.emit('data', chunk);\n\t\t        if (!this[BUFFER].length && !this[EOF])\n\t\t            this.emit('drain');\n\t\t        return chunk;\n\t\t    }\n\t\t    end(chunk, encoding, cb) {\n\t\t        if (typeof chunk === 'function') {\n\t\t            cb = chunk;\n\t\t            chunk = undefined;\n\t\t        }\n\t\t        if (typeof encoding === 'function') {\n\t\t            cb = encoding;\n\t\t            encoding = 'utf8';\n\t\t        }\n\t\t        if (chunk !== undefined)\n\t\t            this.write(chunk, encoding);\n\t\t        if (cb)\n\t\t            this.once('end', cb);\n\t\t        this[EOF] = true;\n\t\t        this.writable = false;\n\t\t        // if we haven't written anything, then go ahead and emit,\n\t\t        // even if we're not reading.\n\t\t        // we'll re-emit if a new 'end' listener is added anyway.\n\t\t        // This makes MP more suitable to write-only use cases.\n\t\t        if (this[FLOWING] || !this[PAUSED])\n\t\t            this[MAYBE_EMIT_END]();\n\t\t        return this;\n\t\t    }\n\t\t    // don't let the internal resume be overwritten\n\t\t    [RESUME]() {\n\t\t        if (this[DESTROYED])\n\t\t            return;\n\t\t        if (!this[DATALISTENERS] && !this[PIPES].length) {\n\t\t            this[DISCARDED] = true;\n\t\t        }\n\t\t        this[PAUSED] = false;\n\t\t        this[FLOWING] = true;\n\t\t        this.emit('resume');\n\t\t        if (this[BUFFER].length)\n\t\t            this[FLUSH]();\n\t\t        else if (this[EOF])\n\t\t            this[MAYBE_EMIT_END]();\n\t\t        else\n\t\t            this.emit('drain');\n\t\t    }\n\t\t    /**\n\t\t     * Resume the stream if it is currently in a paused state\n\t\t     *\n\t\t     * If called when there are no pipe destinations or `data` event listeners,\n\t\t     * this will place the stream in a \"discarded\" state, where all data will\n\t\t     * be thrown away. The discarded state is removed if a pipe destination or\n\t\t     * data handler is added, if pause() is called, or if any synchronous or\n\t\t     * asynchronous iteration is started.\n\t\t     */\n\t\t    resume() {\n\t\t        return this[RESUME]();\n\t\t    }\n\t\t    /**\n\t\t     * Pause the stream\n\t\t     */\n\t\t    pause() {\n\t\t        this[FLOWING] = false;\n\t\t        this[PAUSED] = true;\n\t\t        this[DISCARDED] = false;\n\t\t    }\n\t\t    /**\n\t\t     * true if the stream has been forcibly destroyed\n\t\t     */\n\t\t    get destroyed() {\n\t\t        return this[DESTROYED];\n\t\t    }\n\t\t    /**\n\t\t     * true if the stream is currently in a flowing state, meaning that\n\t\t     * any writes will be immediately emitted.\n\t\t     */\n\t\t    get flowing() {\n\t\t        return this[FLOWING];\n\t\t    }\n\t\t    /**\n\t\t     * true if the stream is currently in a paused state\n\t\t     */\n\t\t    get paused() {\n\t\t        return this[PAUSED];\n\t\t    }\n\t\t    [BUFFERPUSH](chunk) {\n\t\t        if (this[OBJECTMODE])\n\t\t            this[BUFFERLENGTH] += 1;\n\t\t        else\n\t\t            this[BUFFERLENGTH] += chunk.length;\n\t\t        this[BUFFER].push(chunk);\n\t\t    }\n\t\t    [BUFFERSHIFT]() {\n\t\t        if (this[OBJECTMODE])\n\t\t            this[BUFFERLENGTH] -= 1;\n\t\t        else\n\t\t            this[BUFFERLENGTH] -= this[BUFFER][0].length;\n\t\t        return this[BUFFER].shift();\n\t\t    }\n\t\t    [FLUSH](noDrain = false) {\n\t\t        do { } while (this[FLUSHCHUNK](this[BUFFERSHIFT]()) &&\n\t\t            this[BUFFER].length);\n\t\t        if (!noDrain && !this[BUFFER].length && !this[EOF])\n\t\t            this.emit('drain');\n\t\t    }\n\t\t    [FLUSHCHUNK](chunk) {\n\t\t        this.emit('data', chunk);\n\t\t        return this[FLOWING];\n\t\t    }\n\t\t    /**\n\t\t     * Pipe all data emitted by this stream into the destination provided.\n\t\t     *\n\t\t     * Triggers the flow of data.\n\t\t     */\n\t\t    pipe(dest, opts) {\n\t\t        if (this[DESTROYED])\n\t\t            return dest;\n\t\t        this[DISCARDED] = false;\n\t\t        const ended = this[EMITTED_END];\n\t\t        opts = opts || {};\n\t\t        if (dest === proc.stdout || dest === proc.stderr)\n\t\t            opts.end = false;\n\t\t        else\n\t\t            opts.end = opts.end !== false;\n\t\t        opts.proxyErrors = !!opts.proxyErrors;\n\t\t        // piping an ended stream ends immediately\n\t\t        if (ended) {\n\t\t            if (opts.end)\n\t\t                dest.end();\n\t\t        }\n\t\t        else {\n\t\t            // \"as\" here just ignores the WType, which pipes don't care about,\n\t\t            // since they're only consuming from us, and writing to the dest\n\t\t            this[PIPES].push(!opts.proxyErrors\n\t\t                ? new Pipe(this, dest, opts)\n\t\t                : new PipeProxyErrors(this, dest, opts));\n\t\t            if (this[ASYNC])\n\t\t                defer(() => this[RESUME]());\n\t\t            else\n\t\t                this[RESUME]();\n\t\t        }\n\t\t        return dest;\n\t\t    }\n\t\t    /**\n\t\t     * Fully unhook a piped destination stream.\n\t\t     *\n\t\t     * If the destination stream was the only consumer of this stream (ie,\n\t\t     * there are no other piped destinations or `'data'` event listeners)\n\t\t     * then the flow of data will stop until there is another consumer or\n\t\t     * {@link Minipass#resume} is explicitly called.\n\t\t     */\n\t\t    unpipe(dest) {\n\t\t        const p = this[PIPES].find(p => p.dest === dest);\n\t\t        if (p) {\n\t\t            if (this[PIPES].length === 1) {\n\t\t                if (this[FLOWING] && this[DATALISTENERS] === 0) {\n\t\t                    this[FLOWING] = false;\n\t\t                }\n\t\t                this[PIPES] = [];\n\t\t            }\n\t\t            else\n\t\t                this[PIPES].splice(this[PIPES].indexOf(p), 1);\n\t\t            p.unpipe();\n\t\t        }\n\t\t    }\n\t\t    /**\n\t\t     * Alias for {@link Minipass#on}\n\t\t     */\n\t\t    addListener(ev, handler) {\n\t\t        return this.on(ev, handler);\n\t\t    }\n\t\t    /**\n\t\t     * Mostly identical to `EventEmitter.on`, with the following\n\t\t     * behavior differences to prevent data loss and unnecessary hangs:\n\t\t     *\n\t\t     * - Adding a 'data' event handler will trigger the flow of data\n\t\t     *\n\t\t     * - Adding a 'readable' event handler when there is data waiting to be read\n\t\t     *   will cause 'readable' to be emitted immediately.\n\t\t     *\n\t\t     * - Adding an 'endish' event handler ('end', 'finish', etc.) which has\n\t\t     *   already passed will cause the event to be emitted immediately and all\n\t\t     *   handlers removed.\n\t\t     *\n\t\t     * - Adding an 'error' event handler after an error has been emitted will\n\t\t     *   cause the event to be re-emitted immediately with the error previously\n\t\t     *   raised.\n\t\t     */\n\t\t    on(ev, handler) {\n\t\t        const ret = super.on(ev, handler);\n\t\t        if (ev === 'data') {\n\t\t            this[DISCARDED] = false;\n\t\t            this[DATALISTENERS]++;\n\t\t            if (!this[PIPES].length && !this[FLOWING]) {\n\t\t                this[RESUME]();\n\t\t            }\n\t\t        }\n\t\t        else if (ev === 'readable' && this[BUFFERLENGTH] !== 0) {\n\t\t            super.emit('readable');\n\t\t        }\n\t\t        else if (isEndish(ev) && this[EMITTED_END]) {\n\t\t            super.emit(ev);\n\t\t            this.removeAllListeners(ev);\n\t\t        }\n\t\t        else if (ev === 'error' && this[EMITTED_ERROR]) {\n\t\t            const h = handler;\n\t\t            if (this[ASYNC])\n\t\t                defer(() => h.call(this, this[EMITTED_ERROR]));\n\t\t            else\n\t\t                h.call(this, this[EMITTED_ERROR]);\n\t\t        }\n\t\t        return ret;\n\t\t    }\n\t\t    /**\n\t\t     * Alias for {@link Minipass#off}\n\t\t     */\n\t\t    removeListener(ev, handler) {\n\t\t        return this.off(ev, handler);\n\t\t    }\n\t\t    /**\n\t\t     * Mostly identical to `EventEmitter.off`\n\t\t     *\n\t\t     * If a 'data' event handler is removed, and it was the last consumer\n\t\t     * (ie, there are no pipe destinations or other 'data' event listeners),\n\t\t     * then the flow of data will stop until there is another consumer or\n\t\t     * {@link Minipass#resume} is explicitly called.\n\t\t     */\n\t\t    off(ev, handler) {\n\t\t        const ret = super.off(ev, handler);\n\t\t        // if we previously had listeners, and now we don't, and we don't\n\t\t        // have any pipes, then stop the flow, unless it's been explicitly\n\t\t        // put in a discarded flowing state via stream.resume().\n\t\t        if (ev === 'data') {\n\t\t            this[DATALISTENERS] = this.listeners('data').length;\n\t\t            if (this[DATALISTENERS] === 0 &&\n\t\t                !this[DISCARDED] &&\n\t\t                !this[PIPES].length) {\n\t\t                this[FLOWING] = false;\n\t\t            }\n\t\t        }\n\t\t        return ret;\n\t\t    }\n\t\t    /**\n\t\t     * Mostly identical to `EventEmitter.removeAllListeners`\n\t\t     *\n\t\t     * If all 'data' event handlers are removed, and they were the last consumer\n\t\t     * (ie, there are no pipe destinations), then the flow of data will stop\n\t\t     * until there is another consumer or {@link Minipass#resume} is explicitly\n\t\t     * called.\n\t\t     */\n\t\t    removeAllListeners(ev) {\n\t\t        const ret = super.removeAllListeners(ev);\n\t\t        if (ev === 'data' || ev === undefined) {\n\t\t            this[DATALISTENERS] = 0;\n\t\t            if (!this[DISCARDED] && !this[PIPES].length) {\n\t\t                this[FLOWING] = false;\n\t\t            }\n\t\t        }\n\t\t        return ret;\n\t\t    }\n\t\t    /**\n\t\t     * true if the 'end' event has been emitted\n\t\t     */\n\t\t    get emittedEnd() {\n\t\t        return this[EMITTED_END];\n\t\t    }\n\t\t    [MAYBE_EMIT_END]() {\n\t\t        if (!this[EMITTING_END] &&\n\t\t            !this[EMITTED_END] &&\n\t\t            !this[DESTROYED] &&\n\t\t            this[BUFFER].length === 0 &&\n\t\t            this[EOF]) {\n\t\t            this[EMITTING_END] = true;\n\t\t            this.emit('end');\n\t\t            this.emit('prefinish');\n\t\t            this.emit('finish');\n\t\t            if (this[CLOSED])\n\t\t                this.emit('close');\n\t\t            this[EMITTING_END] = false;\n\t\t        }\n\t\t    }\n\t\t    /**\n\t\t     * Mostly identical to `EventEmitter.emit`, with the following\n\t\t     * behavior differences to prevent data loss and unnecessary hangs:\n\t\t     *\n\t\t     * If the stream has been destroyed, and the event is something other\n\t\t     * than 'close' or 'error', then `false` is returned and no handlers\n\t\t     * are called.\n\t\t     *\n\t\t     * If the event is 'end', and has already been emitted, then the event\n\t\t     * is ignored. If the stream is in a paused or non-flowing state, then\n\t\t     * the event will be deferred until data flow resumes. If the stream is\n\t\t     * async, then handlers will be called on the next tick rather than\n\t\t     * immediately.\n\t\t     *\n\t\t     * If the event is 'close', and 'end' has not yet been emitted, then\n\t\t     * the event will be deferred until after 'end' is emitted.\n\t\t     *\n\t\t     * If the event is 'error', and an AbortSignal was provided for the stream,\n\t\t     * and there are no listeners, then the event is ignored, matching the\n\t\t     * behavior of node core streams in the presense of an AbortSignal.\n\t\t     *\n\t\t     * If the event is 'finish' or 'prefinish', then all listeners will be\n\t\t     * removed after emitting the event, to prevent double-firing.\n\t\t     */\n\t\t    emit(ev, ...args) {\n\t\t        const data = args[0];\n\t\t        // error and close are only events allowed after calling destroy()\n\t\t        if (ev !== 'error' &&\n\t\t            ev !== 'close' &&\n\t\t            ev !== DESTROYED &&\n\t\t            this[DESTROYED]) {\n\t\t            return false;\n\t\t        }\n\t\t        else if (ev === 'data') {\n\t\t            return !this[OBJECTMODE] && !data\n\t\t                ? false\n\t\t                : this[ASYNC]\n\t\t                    ? (defer(() => this[EMITDATA](data)), true)\n\t\t                    : this[EMITDATA](data);\n\t\t        }\n\t\t        else if (ev === 'end') {\n\t\t            return this[EMITEND]();\n\t\t        }\n\t\t        else if (ev === 'close') {\n\t\t            this[CLOSED] = true;\n\t\t            // don't emit close before 'end' and 'finish'\n\t\t            if (!this[EMITTED_END] && !this[DESTROYED])\n\t\t                return false;\n\t\t            const ret = super.emit('close');\n\t\t            this.removeAllListeners('close');\n\t\t            return ret;\n\t\t        }\n\t\t        else if (ev === 'error') {\n\t\t            this[EMITTED_ERROR] = data;\n\t\t            super.emit(ERROR, data);\n\t\t            const ret = !this[SIGNAL] || this.listeners('error').length\n\t\t                ? super.emit('error', data)\n\t\t                : false;\n\t\t            this[MAYBE_EMIT_END]();\n\t\t            return ret;\n\t\t        }\n\t\t        else if (ev === 'resume') {\n\t\t            const ret = super.emit('resume');\n\t\t            this[MAYBE_EMIT_END]();\n\t\t            return ret;\n\t\t        }\n\t\t        else if (ev === 'finish' || ev === 'prefinish') {\n\t\t            const ret = super.emit(ev);\n\t\t            this.removeAllListeners(ev);\n\t\t            return ret;\n\t\t        }\n\t\t        // Some other unknown event\n\t\t        const ret = super.emit(ev, ...args);\n\t\t        this[MAYBE_EMIT_END]();\n\t\t        return ret;\n\t\t    }\n\t\t    [EMITDATA](data) {\n\t\t        for (const p of this[PIPES]) {\n\t\t            if (p.dest.write(data) === false)\n\t\t                this.pause();\n\t\t        }\n\t\t        const ret = this[DISCARDED] ? false : super.emit('data', data);\n\t\t        this[MAYBE_EMIT_END]();\n\t\t        return ret;\n\t\t    }\n\t\t    [EMITEND]() {\n\t\t        if (this[EMITTED_END])\n\t\t            return false;\n\t\t        this[EMITTED_END] = true;\n\t\t        this.readable = false;\n\t\t        return this[ASYNC]\n\t\t            ? (defer(() => this[EMITEND2]()), true)\n\t\t            : this[EMITEND2]();\n\t\t    }\n\t\t    [EMITEND2]() {\n\t\t        if (this[DECODER]) {\n\t\t            const data = this[DECODER].end();\n\t\t            if (data) {\n\t\t                for (const p of this[PIPES]) {\n\t\t                    p.dest.write(data);\n\t\t                }\n\t\t                if (!this[DISCARDED])\n\t\t                    super.emit('data', data);\n\t\t            }\n\t\t        }\n\t\t        for (const p of this[PIPES]) {\n\t\t            p.end();\n\t\t        }\n\t\t        const ret = super.emit('end');\n\t\t        this.removeAllListeners('end');\n\t\t        return ret;\n\t\t    }\n\t\t    /**\n\t\t     * Return a Promise that resolves to an array of all emitted data once\n\t\t     * the stream ends.\n\t\t     */\n\t\t    async collect() {\n\t\t        const buf = Object.assign([], {\n\t\t            dataLength: 0,\n\t\t        });\n\t\t        if (!this[OBJECTMODE])\n\t\t            buf.dataLength = 0;\n\t\t        // set the promise first, in case an error is raised\n\t\t        // by triggering the flow here.\n\t\t        const p = this.promise();\n\t\t        this.on('data', c => {\n\t\t            buf.push(c);\n\t\t            if (!this[OBJECTMODE])\n\t\t                buf.dataLength += c.length;\n\t\t        });\n\t\t        await p;\n\t\t        return buf;\n\t\t    }\n\t\t    /**\n\t\t     * Return a Promise that resolves to the concatenation of all emitted data\n\t\t     * once the stream ends.\n\t\t     *\n\t\t     * Not allowed on objectMode streams.\n\t\t     */\n\t\t    async concat() {\n\t\t        if (this[OBJECTMODE]) {\n\t\t            throw new Error('cannot concat in objectMode');\n\t\t        }\n\t\t        const buf = await this.collect();\n\t\t        return (this[ENCODING]\n\t\t            ? buf.join('')\n\t\t            : Buffer.concat(buf, buf.dataLength));\n\t\t    }\n\t\t    /**\n\t\t     * Return a void Promise that resolves once the stream ends.\n\t\t     */\n\t\t    async promise() {\n\t\t        return new Promise((resolve, reject) => {\n\t\t            this.on(DESTROYED, () => reject(new Error('stream destroyed')));\n\t\t            this.on('error', er => reject(er));\n\t\t            this.on('end', () => resolve());\n\t\t        });\n\t\t    }\n\t\t    /**\n\t\t     * Asynchronous `for await of` iteration.\n\t\t     *\n\t\t     * This will continue emitting all chunks until the stream terminates.\n\t\t     */\n\t\t    [Symbol.asyncIterator]() {\n\t\t        // set this up front, in case the consumer doesn't call next()\n\t\t        // right away.\n\t\t        this[DISCARDED] = false;\n\t\t        let stopped = false;\n\t\t        const stop = async () => {\n\t\t            this.pause();\n\t\t            stopped = true;\n\t\t            return { value: undefined, done: true };\n\t\t        };\n\t\t        const next = () => {\n\t\t            if (stopped)\n\t\t                return stop();\n\t\t            const res = this.read();\n\t\t            if (res !== null)\n\t\t                return Promise.resolve({ done: false, value: res });\n\t\t            if (this[EOF])\n\t\t                return stop();\n\t\t            let resolve;\n\t\t            let reject;\n\t\t            const onerr = (er) => {\n\t\t                this.off('data', ondata);\n\t\t                this.off('end', onend);\n\t\t                this.off(DESTROYED, ondestroy);\n\t\t                stop();\n\t\t                reject(er);\n\t\t            };\n\t\t            const ondata = (value) => {\n\t\t                this.off('error', onerr);\n\t\t                this.off('end', onend);\n\t\t                this.off(DESTROYED, ondestroy);\n\t\t                this.pause();\n\t\t                resolve({ value, done: !!this[EOF] });\n\t\t            };\n\t\t            const onend = () => {\n\t\t                this.off('error', onerr);\n\t\t                this.off('data', ondata);\n\t\t                this.off(DESTROYED, ondestroy);\n\t\t                stop();\n\t\t                resolve({ done: true, value: undefined });\n\t\t            };\n\t\t            const ondestroy = () => onerr(new Error('stream destroyed'));\n\t\t            return new Promise((res, rej) => {\n\t\t                reject = rej;\n\t\t                resolve = res;\n\t\t                this.once(DESTROYED, ondestroy);\n\t\t                this.once('error', onerr);\n\t\t                this.once('end', onend);\n\t\t                this.once('data', ondata);\n\t\t            });\n\t\t        };\n\t\t        return {\n\t\t            next,\n\t\t            throw: stop,\n\t\t            return: stop,\n\t\t            [Symbol.asyncIterator]() {\n\t\t                return this;\n\t\t            },\n\t\t        };\n\t\t    }\n\t\t    /**\n\t\t     * Synchronous `for of` iteration.\n\t\t     *\n\t\t     * The iteration will terminate when the internal buffer runs out, even\n\t\t     * if the stream has not yet terminated.\n\t\t     */\n\t\t    [Symbol.iterator]() {\n\t\t        // set this up front, in case the consumer doesn't call next()\n\t\t        // right away.\n\t\t        this[DISCARDED] = false;\n\t\t        let stopped = false;\n\t\t        const stop = () => {\n\t\t            this.pause();\n\t\t            this.off(ERROR, stop);\n\t\t            this.off(DESTROYED, stop);\n\t\t            this.off('end', stop);\n\t\t            stopped = true;\n\t\t            return { done: true, value: undefined };\n\t\t        };\n\t\t        const next = () => {\n\t\t            if (stopped)\n\t\t                return stop();\n\t\t            const value = this.read();\n\t\t            return value === null ? stop() : { done: false, value };\n\t\t        };\n\t\t        this.once('end', stop);\n\t\t        this.once(ERROR, stop);\n\t\t        this.once(DESTROYED, stop);\n\t\t        return {\n\t\t            next,\n\t\t            throw: stop,\n\t\t            return: stop,\n\t\t            [Symbol.iterator]() {\n\t\t                return this;\n\t\t            },\n\t\t        };\n\t\t    }\n\t\t    /**\n\t\t     * Destroy a stream, preventing it from being used for any further purpose.\n\t\t     *\n\t\t     * If the stream has a `close()` method, then it will be called on\n\t\t     * destruction.\n\t\t     *\n\t\t     * After destruction, any attempt to write data, read data, or emit most\n\t\t     * events will be ignored.\n\t\t     *\n\t\t     * If an error argument is provided, then it will be emitted in an\n\t\t     * 'error' event.\n\t\t     */\n\t\t    destroy(er) {\n\t\t        if (this[DESTROYED]) {\n\t\t            if (er)\n\t\t                this.emit('error', er);\n\t\t            else\n\t\t                this.emit(DESTROYED);\n\t\t            return this;\n\t\t        }\n\t\t        this[DESTROYED] = true;\n\t\t        this[DISCARDED] = true;\n\t\t        // throw away all buffered data, it's never coming out\n\t\t        this[BUFFER].length = 0;\n\t\t        this[BUFFERLENGTH] = 0;\n\t\t        const wc = this;\n\t\t        if (typeof wc.close === 'function' && !this[CLOSED])\n\t\t            wc.close();\n\t\t        if (er)\n\t\t            this.emit('error', er);\n\t\t        // if no error to emit, still reject pending promises\n\t\t        else\n\t\t            this.emit(DESTROYED);\n\t\t        return this;\n\t\t    }\n\t\t    /**\n\t\t     * Alias for {@link isStream}\n\t\t     *\n\t\t     * Former export location, maintained for backwards compatibility.\n\t\t     *\n\t\t     * @deprecated\n\t\t     */\n\t\t    static get isStream() {\n\t\t        return exports.isStream;\n\t\t    }\n\t\t}\n\t\texports.Minipass = Minipass;\n\t\t\n\t} (commonjs));\n\treturn commonjs;\n}\n\nvar hasRequiredCommonjs$1;\n\nfunction requireCommonjs$1 () {\n\tif (hasRequiredCommonjs$1) return commonjs$2;\n\thasRequiredCommonjs$1 = 1;\n\tvar __createBinding = (commonjs$2 && commonjs$2.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (commonjs$2 && commonjs$2.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (commonjs$2 && commonjs$2.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(commonjs$2, \"__esModule\", { value: true });\n\tcommonjs$2.PathScurry = commonjs$2.Path = commonjs$2.PathScurryDarwin = commonjs$2.PathScurryPosix = commonjs$2.PathScurryWin32 = commonjs$2.PathScurryBase = commonjs$2.PathPosix = commonjs$2.PathWin32 = commonjs$2.PathBase = commonjs$2.ChildrenCache = commonjs$2.ResolveCache = void 0;\n\tconst lru_cache_1 = /*@__PURE__*/ requireCommonjs$3();\n\tconst node_path_1 = require$$1$9;\n\tconst node_url_1 = require$$2$7;\n\tconst fs_1 = fs__default;\n\tconst actualFS = __importStar(require$$4$2);\n\tconst realpathSync = fs_1.realpathSync.native;\n\t// TODO: test perf of fs/promises realpath vs realpathCB,\n\t// since the promises one uses realpath.native\n\tconst promises_1 = require$$5$2;\n\tconst minipass_1 = requireCommonjs$2();\n\tconst defaultFS = {\n\t    lstatSync: fs_1.lstatSync,\n\t    readdir: fs_1.readdir,\n\t    readdirSync: fs_1.readdirSync,\n\t    readlinkSync: fs_1.readlinkSync,\n\t    realpathSync,\n\t    promises: {\n\t        lstat: promises_1.lstat,\n\t        readdir: promises_1.readdir,\n\t        readlink: promises_1.readlink,\n\t        realpath: promises_1.realpath,\n\t    },\n\t};\n\t// if they just gave us require('fs') then use our default\n\tconst fsFromOption = (fsOption) => !fsOption || fsOption === defaultFS || fsOption === actualFS ?\n\t    defaultFS\n\t    : {\n\t        ...defaultFS,\n\t        ...fsOption,\n\t        promises: {\n\t            ...defaultFS.promises,\n\t            ...(fsOption.promises || {}),\n\t        },\n\t    };\n\t// turn something like //?/c:/ into c:\\\n\tconst uncDriveRegexp = /^\\\\\\\\\\?\\\\([a-z]:)\\\\?$/i;\n\tconst uncToDrive = (rootPath) => rootPath.replace(/\\//g, '\\\\').replace(uncDriveRegexp, '$1\\\\');\n\t// windows paths are separated by either / or \\\n\tconst eitherSep = /[\\\\\\/]/;\n\tconst UNKNOWN = 0; // may not even exist, for all we know\n\tconst IFIFO = 0b0001;\n\tconst IFCHR = 0b0010;\n\tconst IFDIR = 0b0100;\n\tconst IFBLK = 0b0110;\n\tconst IFREG = 0b1000;\n\tconst IFLNK = 0b1010;\n\tconst IFSOCK = 0b1100;\n\tconst IFMT = 0b1111;\n\t// mask to unset low 4 bits\n\tconst IFMT_UNKNOWN = -16;\n\t// set after successfully calling readdir() and getting entries.\n\tconst READDIR_CALLED = 0b0000_0001_0000;\n\t// set after a successful lstat()\n\tconst LSTAT_CALLED = 0b0000_0010_0000;\n\t// set if an entry (or one of its parents) is definitely not a dir\n\tconst ENOTDIR = 0b0000_0100_0000;\n\t// set if an entry (or one of its parents) does not exist\n\t// (can also be set on lstat errors like EACCES or ENAMETOOLONG)\n\tconst ENOENT = 0b0000_1000_0000;\n\t// cannot have child entries -- also verify &IFMT is either IFDIR or IFLNK\n\t// set if we fail to readlink\n\tconst ENOREADLINK = 0b0001_0000_0000;\n\t// set if we know realpath() will fail\n\tconst ENOREALPATH = 0b0010_0000_0000;\n\tconst ENOCHILD = ENOTDIR | ENOENT | ENOREALPATH;\n\tconst TYPEMASK = 0b0011_1111_1111;\n\tconst entToType = (s) => s.isFile() ? IFREG\n\t    : s.isDirectory() ? IFDIR\n\t        : s.isSymbolicLink() ? IFLNK\n\t            : s.isCharacterDevice() ? IFCHR\n\t                : s.isBlockDevice() ? IFBLK\n\t                    : s.isSocket() ? IFSOCK\n\t                        : s.isFIFO() ? IFIFO\n\t                            : UNKNOWN;\n\t// normalize unicode path names\n\tconst normalizeCache = new Map();\n\tconst normalize = (s) => {\n\t    const c = normalizeCache.get(s);\n\t    if (c)\n\t        return c;\n\t    const n = s.normalize('NFKD');\n\t    normalizeCache.set(s, n);\n\t    return n;\n\t};\n\tconst normalizeNocaseCache = new Map();\n\tconst normalizeNocase = (s) => {\n\t    const c = normalizeNocaseCache.get(s);\n\t    if (c)\n\t        return c;\n\t    const n = normalize(s.toLowerCase());\n\t    normalizeNocaseCache.set(s, n);\n\t    return n;\n\t};\n\t/**\n\t * An LRUCache for storing resolved path strings or Path objects.\n\t * @internal\n\t */\n\tclass ResolveCache extends lru_cache_1.LRUCache {\n\t    constructor() {\n\t        super({ max: 256 });\n\t    }\n\t}\n\tcommonjs$2.ResolveCache = ResolveCache;\n\t// In order to prevent blowing out the js heap by allocating hundreds of\n\t// thousands of Path entries when walking extremely large trees, the \"children\"\n\t// in this tree are represented by storing an array of Path entries in an\n\t// LRUCache, indexed by the parent.  At any time, Path.children() may return an\n\t// empty array, indicating that it doesn't know about any of its children, and\n\t// thus has to rebuild that cache.  This is fine, it just means that we don't\n\t// benefit as much from having the cached entries, but huge directory walks\n\t// don't blow out the stack, and smaller ones are still as fast as possible.\n\t//\n\t//It does impose some complexity when building up the readdir data, because we\n\t//need to pass a reference to the children array that we started with.\n\t/**\n\t * an LRUCache for storing child entries.\n\t * @internal\n\t */\n\tclass ChildrenCache extends lru_cache_1.LRUCache {\n\t    constructor(maxSize = 16 * 1024) {\n\t        super({\n\t            maxSize,\n\t            // parent + children\n\t            sizeCalculation: a => a.length + 1,\n\t        });\n\t    }\n\t}\n\tcommonjs$2.ChildrenCache = ChildrenCache;\n\tconst setAsCwd = Symbol('PathScurry setAsCwd');\n\t/**\n\t * Path objects are sort of like a super-powered\n\t * {@link https://nodejs.org/docs/latest/api/fs.html#class-fsdirent fs.Dirent}\n\t *\n\t * Each one represents a single filesystem entry on disk, which may or may not\n\t * exist. It includes methods for reading various types of information via\n\t * lstat, readlink, and readdir, and caches all information to the greatest\n\t * degree possible.\n\t *\n\t * Note that fs operations that would normally throw will instead return an\n\t * \"empty\" value. This is in order to prevent excessive overhead from error\n\t * stack traces.\n\t */\n\tclass PathBase {\n\t    /**\n\t     * the basename of this path\n\t     *\n\t     * **Important**: *always* test the path name against any test string\n\t     * usingthe {@link isNamed} method, and not by directly comparing this\n\t     * string. Otherwise, unicode path strings that the system sees as identical\n\t     * will not be properly treated as the same path, leading to incorrect\n\t     * behavior and possible security issues.\n\t     */\n\t    name;\n\t    /**\n\t     * the Path entry corresponding to the path root.\n\t     *\n\t     * @internal\n\t     */\n\t    root;\n\t    /**\n\t     * All roots found within the current PathScurry family\n\t     *\n\t     * @internal\n\t     */\n\t    roots;\n\t    /**\n\t     * a reference to the parent path, or undefined in the case of root entries\n\t     *\n\t     * @internal\n\t     */\n\t    parent;\n\t    /**\n\t     * boolean indicating whether paths are compared case-insensitively\n\t     * @internal\n\t     */\n\t    nocase;\n\t    /**\n\t     * boolean indicating that this path is the current working directory\n\t     * of the PathScurry collection that contains it.\n\t     */\n\t    isCWD = false;\n\t    // potential default fs override\n\t    #fs;\n\t    // Stats fields\n\t    #dev;\n\t    get dev() {\n\t        return this.#dev;\n\t    }\n\t    #mode;\n\t    get mode() {\n\t        return this.#mode;\n\t    }\n\t    #nlink;\n\t    get nlink() {\n\t        return this.#nlink;\n\t    }\n\t    #uid;\n\t    get uid() {\n\t        return this.#uid;\n\t    }\n\t    #gid;\n\t    get gid() {\n\t        return this.#gid;\n\t    }\n\t    #rdev;\n\t    get rdev() {\n\t        return this.#rdev;\n\t    }\n\t    #blksize;\n\t    get blksize() {\n\t        return this.#blksize;\n\t    }\n\t    #ino;\n\t    get ino() {\n\t        return this.#ino;\n\t    }\n\t    #size;\n\t    get size() {\n\t        return this.#size;\n\t    }\n\t    #blocks;\n\t    get blocks() {\n\t        return this.#blocks;\n\t    }\n\t    #atimeMs;\n\t    get atimeMs() {\n\t        return this.#atimeMs;\n\t    }\n\t    #mtimeMs;\n\t    get mtimeMs() {\n\t        return this.#mtimeMs;\n\t    }\n\t    #ctimeMs;\n\t    get ctimeMs() {\n\t        return this.#ctimeMs;\n\t    }\n\t    #birthtimeMs;\n\t    get birthtimeMs() {\n\t        return this.#birthtimeMs;\n\t    }\n\t    #atime;\n\t    get atime() {\n\t        return this.#atime;\n\t    }\n\t    #mtime;\n\t    get mtime() {\n\t        return this.#mtime;\n\t    }\n\t    #ctime;\n\t    get ctime() {\n\t        return this.#ctime;\n\t    }\n\t    #birthtime;\n\t    get birthtime() {\n\t        return this.#birthtime;\n\t    }\n\t    #matchName;\n\t    #depth;\n\t    #fullpath;\n\t    #fullpathPosix;\n\t    #relative;\n\t    #relativePosix;\n\t    #type;\n\t    #children;\n\t    #linkTarget;\n\t    #realpath;\n\t    /**\n\t     * This property is for compatibility with the Dirent class as of\n\t     * Node v20, where Dirent['parentPath'] refers to the path of the\n\t     * directory that was passed to readdir. For root entries, it's the path\n\t     * to the entry itself.\n\t     */\n\t    get parentPath() {\n\t        return (this.parent || this).fullpath();\n\t    }\n\t    /**\n\t     * Deprecated alias for Dirent['parentPath'] Somewhat counterintuitively,\n\t     * this property refers to the *parent* path, not the path object itself.\n\t     */\n\t    get path() {\n\t        return this.parentPath;\n\t    }\n\t    /**\n\t     * Do not create new Path objects directly.  They should always be accessed\n\t     * via the PathScurry class or other methods on the Path class.\n\t     *\n\t     * @internal\n\t     */\n\t    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {\n\t        this.name = name;\n\t        this.#matchName = nocase ? normalizeNocase(name) : normalize(name);\n\t        this.#type = type & TYPEMASK;\n\t        this.nocase = nocase;\n\t        this.roots = roots;\n\t        this.root = root || this;\n\t        this.#children = children;\n\t        this.#fullpath = opts.fullpath;\n\t        this.#relative = opts.relative;\n\t        this.#relativePosix = opts.relativePosix;\n\t        this.parent = opts.parent;\n\t        if (this.parent) {\n\t            this.#fs = this.parent.#fs;\n\t        }\n\t        else {\n\t            this.#fs = fsFromOption(opts.fs);\n\t        }\n\t    }\n\t    /**\n\t     * Returns the depth of the Path object from its root.\n\t     *\n\t     * For example, a path at `/foo/bar` would have a depth of 2.\n\t     */\n\t    depth() {\n\t        if (this.#depth !== undefined)\n\t            return this.#depth;\n\t        if (!this.parent)\n\t            return (this.#depth = 0);\n\t        return (this.#depth = this.parent.depth() + 1);\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    childrenCache() {\n\t        return this.#children;\n\t    }\n\t    /**\n\t     * Get the Path object referenced by the string path, resolved from this Path\n\t     */\n\t    resolve(path) {\n\t        if (!path) {\n\t            return this;\n\t        }\n\t        const rootPath = this.getRootString(path);\n\t        const dir = path.substring(rootPath.length);\n\t        const dirParts = dir.split(this.splitSep);\n\t        const result = rootPath ?\n\t            this.getRoot(rootPath).#resolveParts(dirParts)\n\t            : this.#resolveParts(dirParts);\n\t        return result;\n\t    }\n\t    #resolveParts(dirParts) {\n\t        let p = this;\n\t        for (const part of dirParts) {\n\t            p = p.child(part);\n\t        }\n\t        return p;\n\t    }\n\t    /**\n\t     * Returns the cached children Path objects, if still available.  If they\n\t     * have fallen out of the cache, then returns an empty array, and resets the\n\t     * READDIR_CALLED bit, so that future calls to readdir() will require an fs\n\t     * lookup.\n\t     *\n\t     * @internal\n\t     */\n\t    children() {\n\t        const cached = this.#children.get(this);\n\t        if (cached) {\n\t            return cached;\n\t        }\n\t        const children = Object.assign([], { provisional: 0 });\n\t        this.#children.set(this, children);\n\t        this.#type &= -17;\n\t        return children;\n\t    }\n\t    /**\n\t     * Resolves a path portion and returns or creates the child Path.\n\t     *\n\t     * Returns `this` if pathPart is `''` or `'.'`, or `parent` if pathPart is\n\t     * `'..'`.\n\t     *\n\t     * This should not be called directly.  If `pathPart` contains any path\n\t     * separators, it will lead to unsafe undefined behavior.\n\t     *\n\t     * Use `Path.resolve()` instead.\n\t     *\n\t     * @internal\n\t     */\n\t    child(pathPart, opts) {\n\t        if (pathPart === '' || pathPart === '.') {\n\t            return this;\n\t        }\n\t        if (pathPart === '..') {\n\t            return this.parent || this;\n\t        }\n\t        // find the child\n\t        const children = this.children();\n\t        const name = this.nocase ? normalizeNocase(pathPart) : normalize(pathPart);\n\t        for (const p of children) {\n\t            if (p.#matchName === name) {\n\t                return p;\n\t            }\n\t        }\n\t        // didn't find it, create provisional child, since it might not\n\t        // actually exist.  If we know the parent isn't a dir, then\n\t        // in fact it CAN'T exist.\n\t        const s = this.parent ? this.sep : '';\n\t        const fullpath = this.#fullpath ? this.#fullpath + s + pathPart : undefined;\n\t        const pchild = this.newChild(pathPart, UNKNOWN, {\n\t            ...opts,\n\t            parent: this,\n\t            fullpath,\n\t        });\n\t        if (!this.canReaddir()) {\n\t            pchild.#type |= ENOENT;\n\t        }\n\t        // don't have to update provisional, because if we have real children,\n\t        // then provisional is set to children.length, otherwise a lower number\n\t        children.push(pchild);\n\t        return pchild;\n\t    }\n\t    /**\n\t     * The relative path from the cwd. If it does not share an ancestor with\n\t     * the cwd, then this ends up being equivalent to the fullpath()\n\t     */\n\t    relative() {\n\t        if (this.isCWD)\n\t            return '';\n\t        if (this.#relative !== undefined) {\n\t            return this.#relative;\n\t        }\n\t        const name = this.name;\n\t        const p = this.parent;\n\t        if (!p) {\n\t            return (this.#relative = this.name);\n\t        }\n\t        const pv = p.relative();\n\t        return pv + (!pv || !p.parent ? '' : this.sep) + name;\n\t    }\n\t    /**\n\t     * The relative path from the cwd, using / as the path separator.\n\t     * If it does not share an ancestor with\n\t     * the cwd, then this ends up being equivalent to the fullpathPosix()\n\t     * On posix systems, this is identical to relative().\n\t     */\n\t    relativePosix() {\n\t        if (this.sep === '/')\n\t            return this.relative();\n\t        if (this.isCWD)\n\t            return '';\n\t        if (this.#relativePosix !== undefined)\n\t            return this.#relativePosix;\n\t        const name = this.name;\n\t        const p = this.parent;\n\t        if (!p) {\n\t            return (this.#relativePosix = this.fullpathPosix());\n\t        }\n\t        const pv = p.relativePosix();\n\t        return pv + (!pv || !p.parent ? '' : '/') + name;\n\t    }\n\t    /**\n\t     * The fully resolved path string for this Path entry\n\t     */\n\t    fullpath() {\n\t        if (this.#fullpath !== undefined) {\n\t            return this.#fullpath;\n\t        }\n\t        const name = this.name;\n\t        const p = this.parent;\n\t        if (!p) {\n\t            return (this.#fullpath = this.name);\n\t        }\n\t        const pv = p.fullpath();\n\t        const fp = pv + (!p.parent ? '' : this.sep) + name;\n\t        return (this.#fullpath = fp);\n\t    }\n\t    /**\n\t     * On platforms other than windows, this is identical to fullpath.\n\t     *\n\t     * On windows, this is overridden to return the forward-slash form of the\n\t     * full UNC path.\n\t     */\n\t    fullpathPosix() {\n\t        if (this.#fullpathPosix !== undefined)\n\t            return this.#fullpathPosix;\n\t        if (this.sep === '/')\n\t            return (this.#fullpathPosix = this.fullpath());\n\t        if (!this.parent) {\n\t            const p = this.fullpath().replace(/\\\\/g, '/');\n\t            if (/^[a-z]:\\//i.test(p)) {\n\t                return (this.#fullpathPosix = `//?/${p}`);\n\t            }\n\t            else {\n\t                return (this.#fullpathPosix = p);\n\t            }\n\t        }\n\t        const p = this.parent;\n\t        const pfpp = p.fullpathPosix();\n\t        const fpp = pfpp + (!pfpp || !p.parent ? '' : '/') + this.name;\n\t        return (this.#fullpathPosix = fpp);\n\t    }\n\t    /**\n\t     * Is the Path of an unknown type?\n\t     *\n\t     * Note that we might know *something* about it if there has been a previous\n\t     * filesystem operation, for example that it does not exist, or is not a\n\t     * link, or whether it has child entries.\n\t     */\n\t    isUnknown() {\n\t        return (this.#type & IFMT) === UNKNOWN;\n\t    }\n\t    isType(type) {\n\t        return this[`is${type}`]();\n\t    }\n\t    getType() {\n\t        return (this.isUnknown() ? 'Unknown'\n\t            : this.isDirectory() ? 'Directory'\n\t                : this.isFile() ? 'File'\n\t                    : this.isSymbolicLink() ? 'SymbolicLink'\n\t                        : this.isFIFO() ? 'FIFO'\n\t                            : this.isCharacterDevice() ? 'CharacterDevice'\n\t                                : this.isBlockDevice() ? 'BlockDevice'\n\t                                    : /* c8 ignore start */ this.isSocket() ? 'Socket'\n\t                                        : 'Unknown');\n\t        /* c8 ignore stop */\n\t    }\n\t    /**\n\t     * Is the Path a regular file?\n\t     */\n\t    isFile() {\n\t        return (this.#type & IFMT) === IFREG;\n\t    }\n\t    /**\n\t     * Is the Path a directory?\n\t     */\n\t    isDirectory() {\n\t        return (this.#type & IFMT) === IFDIR;\n\t    }\n\t    /**\n\t     * Is the path a character device?\n\t     */\n\t    isCharacterDevice() {\n\t        return (this.#type & IFMT) === IFCHR;\n\t    }\n\t    /**\n\t     * Is the path a block device?\n\t     */\n\t    isBlockDevice() {\n\t        return (this.#type & IFMT) === IFBLK;\n\t    }\n\t    /**\n\t     * Is the path a FIFO pipe?\n\t     */\n\t    isFIFO() {\n\t        return (this.#type & IFMT) === IFIFO;\n\t    }\n\t    /**\n\t     * Is the path a socket?\n\t     */\n\t    isSocket() {\n\t        return (this.#type & IFMT) === IFSOCK;\n\t    }\n\t    /**\n\t     * Is the path a symbolic link?\n\t     */\n\t    isSymbolicLink() {\n\t        return (this.#type & IFLNK) === IFLNK;\n\t    }\n\t    /**\n\t     * Return the entry if it has been subject of a successful lstat, or\n\t     * undefined otherwise.\n\t     *\n\t     * Does not read the filesystem, so an undefined result *could* simply\n\t     * mean that we haven't called lstat on it.\n\t     */\n\t    lstatCached() {\n\t        return this.#type & LSTAT_CALLED ? this : undefined;\n\t    }\n\t    /**\n\t     * Return the cached link target if the entry has been the subject of a\n\t     * successful readlink, or undefined otherwise.\n\t     *\n\t     * Does not read the filesystem, so an undefined result *could* just mean we\n\t     * don't have any cached data. Only use it if you are very sure that a\n\t     * readlink() has been called at some point.\n\t     */\n\t    readlinkCached() {\n\t        return this.#linkTarget;\n\t    }\n\t    /**\n\t     * Returns the cached realpath target if the entry has been the subject\n\t     * of a successful realpath, or undefined otherwise.\n\t     *\n\t     * Does not read the filesystem, so an undefined result *could* just mean we\n\t     * don't have any cached data. Only use it if you are very sure that a\n\t     * realpath() has been called at some point.\n\t     */\n\t    realpathCached() {\n\t        return this.#realpath;\n\t    }\n\t    /**\n\t     * Returns the cached child Path entries array if the entry has been the\n\t     * subject of a successful readdir(), or [] otherwise.\n\t     *\n\t     * Does not read the filesystem, so an empty array *could* just mean we\n\t     * don't have any cached data. Only use it if you are very sure that a\n\t     * readdir() has been called recently enough to still be valid.\n\t     */\n\t    readdirCached() {\n\t        const children = this.children();\n\t        return children.slice(0, children.provisional);\n\t    }\n\t    /**\n\t     * Return true if it's worth trying to readlink.  Ie, we don't (yet) have\n\t     * any indication that readlink will definitely fail.\n\t     *\n\t     * Returns false if the path is known to not be a symlink, if a previous\n\t     * readlink failed, or if the entry does not exist.\n\t     */\n\t    canReadlink() {\n\t        if (this.#linkTarget)\n\t            return true;\n\t        if (!this.parent)\n\t            return false;\n\t        // cases where it cannot possibly succeed\n\t        const ifmt = this.#type & IFMT;\n\t        return !((ifmt !== UNKNOWN && ifmt !== IFLNK) ||\n\t            this.#type & ENOREADLINK ||\n\t            this.#type & ENOENT);\n\t    }\n\t    /**\n\t     * Return true if readdir has previously been successfully called on this\n\t     * path, indicating that cachedReaddir() is likely valid.\n\t     */\n\t    calledReaddir() {\n\t        return !!(this.#type & READDIR_CALLED);\n\t    }\n\t    /**\n\t     * Returns true if the path is known to not exist. That is, a previous lstat\n\t     * or readdir failed to verify its existence when that would have been\n\t     * expected, or a parent entry was marked either enoent or enotdir.\n\t     */\n\t    isENOENT() {\n\t        return !!(this.#type & ENOENT);\n\t    }\n\t    /**\n\t     * Return true if the path is a match for the given path name.  This handles\n\t     * case sensitivity and unicode normalization.\n\t     *\n\t     * Note: even on case-sensitive systems, it is **not** safe to test the\n\t     * equality of the `.name` property to determine whether a given pathname\n\t     * matches, due to unicode normalization mismatches.\n\t     *\n\t     * Always use this method instead of testing the `path.name` property\n\t     * directly.\n\t     */\n\t    isNamed(n) {\n\t        return !this.nocase ?\n\t            this.#matchName === normalize(n)\n\t            : this.#matchName === normalizeNocase(n);\n\t    }\n\t    /**\n\t     * Return the Path object corresponding to the target of a symbolic link.\n\t     *\n\t     * If the Path is not a symbolic link, or if the readlink call fails for any\n\t     * reason, `undefined` is returned.\n\t     *\n\t     * Result is cached, and thus may be outdated if the filesystem is mutated.\n\t     */\n\t    async readlink() {\n\t        const target = this.#linkTarget;\n\t        if (target) {\n\t            return target;\n\t        }\n\t        if (!this.canReadlink()) {\n\t            return undefined;\n\t        }\n\t        /* c8 ignore start */\n\t        // already covered by the canReadlink test, here for ts grumples\n\t        if (!this.parent) {\n\t            return undefined;\n\t        }\n\t        /* c8 ignore stop */\n\t        try {\n\t            const read = await this.#fs.promises.readlink(this.fullpath());\n\t            const linkTarget = (await this.parent.realpath())?.resolve(read);\n\t            if (linkTarget) {\n\t                return (this.#linkTarget = linkTarget);\n\t            }\n\t        }\n\t        catch (er) {\n\t            this.#readlinkFail(er.code);\n\t            return undefined;\n\t        }\n\t    }\n\t    /**\n\t     * Synchronous {@link PathBase.readlink}\n\t     */\n\t    readlinkSync() {\n\t        const target = this.#linkTarget;\n\t        if (target) {\n\t            return target;\n\t        }\n\t        if (!this.canReadlink()) {\n\t            return undefined;\n\t        }\n\t        /* c8 ignore start */\n\t        // already covered by the canReadlink test, here for ts grumples\n\t        if (!this.parent) {\n\t            return undefined;\n\t        }\n\t        /* c8 ignore stop */\n\t        try {\n\t            const read = this.#fs.readlinkSync(this.fullpath());\n\t            const linkTarget = this.parent.realpathSync()?.resolve(read);\n\t            if (linkTarget) {\n\t                return (this.#linkTarget = linkTarget);\n\t            }\n\t        }\n\t        catch (er) {\n\t            this.#readlinkFail(er.code);\n\t            return undefined;\n\t        }\n\t    }\n\t    #readdirSuccess(children) {\n\t        // succeeded, mark readdir called bit\n\t        this.#type |= READDIR_CALLED;\n\t        // mark all remaining provisional children as ENOENT\n\t        for (let p = children.provisional; p < children.length; p++) {\n\t            const c = children[p];\n\t            if (c)\n\t                c.#markENOENT();\n\t        }\n\t    }\n\t    #markENOENT() {\n\t        // mark as UNKNOWN and ENOENT\n\t        if (this.#type & ENOENT)\n\t            return;\n\t        this.#type = (this.#type | ENOENT) & IFMT_UNKNOWN;\n\t        this.#markChildrenENOENT();\n\t    }\n\t    #markChildrenENOENT() {\n\t        // all children are provisional and do not exist\n\t        const children = this.children();\n\t        children.provisional = 0;\n\t        for (const p of children) {\n\t            p.#markENOENT();\n\t        }\n\t    }\n\t    #markENOREALPATH() {\n\t        this.#type |= ENOREALPATH;\n\t        this.#markENOTDIR();\n\t    }\n\t    // save the information when we know the entry is not a dir\n\t    #markENOTDIR() {\n\t        // entry is not a directory, so any children can't exist.\n\t        // this *should* be impossible, since any children created\n\t        // after it's been marked ENOTDIR should be marked ENOENT,\n\t        // so it won't even get to this point.\n\t        /* c8 ignore start */\n\t        if (this.#type & ENOTDIR)\n\t            return;\n\t        /* c8 ignore stop */\n\t        let t = this.#type;\n\t        // this could happen if we stat a dir, then delete it,\n\t        // then try to read it or one of its children.\n\t        if ((t & IFMT) === IFDIR)\n\t            t &= IFMT_UNKNOWN;\n\t        this.#type = t | ENOTDIR;\n\t        this.#markChildrenENOENT();\n\t    }\n\t    #readdirFail(code = '') {\n\t        // markENOTDIR and markENOENT also set provisional=0\n\t        if (code === 'ENOTDIR' || code === 'EPERM') {\n\t            this.#markENOTDIR();\n\t        }\n\t        else if (code === 'ENOENT') {\n\t            this.#markENOENT();\n\t        }\n\t        else {\n\t            this.children().provisional = 0;\n\t        }\n\t    }\n\t    #lstatFail(code = '') {\n\t        // Windows just raises ENOENT in this case, disable for win CI\n\t        /* c8 ignore start */\n\t        if (code === 'ENOTDIR') {\n\t            // already know it has a parent by this point\n\t            const p = this.parent;\n\t            p.#markENOTDIR();\n\t        }\n\t        else if (code === 'ENOENT') {\n\t            /* c8 ignore stop */\n\t            this.#markENOENT();\n\t        }\n\t    }\n\t    #readlinkFail(code = '') {\n\t        let ter = this.#type;\n\t        ter |= ENOREADLINK;\n\t        if (code === 'ENOENT')\n\t            ter |= ENOENT;\n\t        // windows gets a weird error when you try to readlink a file\n\t        if (code === 'EINVAL' || code === 'UNKNOWN') {\n\t            // exists, but not a symlink, we don't know WHAT it is, so remove\n\t            // all IFMT bits.\n\t            ter &= IFMT_UNKNOWN;\n\t        }\n\t        this.#type = ter;\n\t        // windows just gets ENOENT in this case.  We do cover the case,\n\t        // just disabled because it's impossible on Windows CI\n\t        /* c8 ignore start */\n\t        if (code === 'ENOTDIR' && this.parent) {\n\t            this.parent.#markENOTDIR();\n\t        }\n\t        /* c8 ignore stop */\n\t    }\n\t    #readdirAddChild(e, c) {\n\t        return (this.#readdirMaybePromoteChild(e, c) ||\n\t            this.#readdirAddNewChild(e, c));\n\t    }\n\t    #readdirAddNewChild(e, c) {\n\t        // alloc new entry at head, so it's never provisional\n\t        const type = entToType(e);\n\t        const child = this.newChild(e.name, type, { parent: this });\n\t        const ifmt = child.#type & IFMT;\n\t        if (ifmt !== IFDIR && ifmt !== IFLNK && ifmt !== UNKNOWN) {\n\t            child.#type |= ENOTDIR;\n\t        }\n\t        c.unshift(child);\n\t        c.provisional++;\n\t        return child;\n\t    }\n\t    #readdirMaybePromoteChild(e, c) {\n\t        for (let p = c.provisional; p < c.length; p++) {\n\t            const pchild = c[p];\n\t            const name = this.nocase ? normalizeNocase(e.name) : normalize(e.name);\n\t            if (name !== pchild.#matchName) {\n\t                continue;\n\t            }\n\t            return this.#readdirPromoteChild(e, pchild, p, c);\n\t        }\n\t    }\n\t    #readdirPromoteChild(e, p, index, c) {\n\t        const v = p.name;\n\t        // retain any other flags, but set ifmt from dirent\n\t        p.#type = (p.#type & IFMT_UNKNOWN) | entToType(e);\n\t        // case sensitivity fixing when we learn the true name.\n\t        if (v !== e.name)\n\t            p.name = e.name;\n\t        // just advance provisional index (potentially off the list),\n\t        // otherwise we have to splice/pop it out and re-insert at head\n\t        if (index !== c.provisional) {\n\t            if (index === c.length - 1)\n\t                c.pop();\n\t            else\n\t                c.splice(index, 1);\n\t            c.unshift(p);\n\t        }\n\t        c.provisional++;\n\t        return p;\n\t    }\n\t    /**\n\t     * Call lstat() on this Path, and update all known information that can be\n\t     * determined.\n\t     *\n\t     * Note that unlike `fs.lstat()`, the returned value does not contain some\n\t     * information, such as `mode`, `dev`, `nlink`, and `ino`.  If that\n\t     * information is required, you will need to call `fs.lstat` yourself.\n\t     *\n\t     * If the Path refers to a nonexistent file, or if the lstat call fails for\n\t     * any reason, `undefined` is returned.  Otherwise the updated Path object is\n\t     * returned.\n\t     *\n\t     * Results are cached, and thus may be out of date if the filesystem is\n\t     * mutated.\n\t     */\n\t    async lstat() {\n\t        if ((this.#type & ENOENT) === 0) {\n\t            try {\n\t                this.#applyStat(await this.#fs.promises.lstat(this.fullpath()));\n\t                return this;\n\t            }\n\t            catch (er) {\n\t                this.#lstatFail(er.code);\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * synchronous {@link PathBase.lstat}\n\t     */\n\t    lstatSync() {\n\t        if ((this.#type & ENOENT) === 0) {\n\t            try {\n\t                this.#applyStat(this.#fs.lstatSync(this.fullpath()));\n\t                return this;\n\t            }\n\t            catch (er) {\n\t                this.#lstatFail(er.code);\n\t            }\n\t        }\n\t    }\n\t    #applyStat(st) {\n\t        const { atime, atimeMs, birthtime, birthtimeMs, blksize, blocks, ctime, ctimeMs, dev, gid, ino, mode, mtime, mtimeMs, nlink, rdev, size, uid, } = st;\n\t        this.#atime = atime;\n\t        this.#atimeMs = atimeMs;\n\t        this.#birthtime = birthtime;\n\t        this.#birthtimeMs = birthtimeMs;\n\t        this.#blksize = blksize;\n\t        this.#blocks = blocks;\n\t        this.#ctime = ctime;\n\t        this.#ctimeMs = ctimeMs;\n\t        this.#dev = dev;\n\t        this.#gid = gid;\n\t        this.#ino = ino;\n\t        this.#mode = mode;\n\t        this.#mtime = mtime;\n\t        this.#mtimeMs = mtimeMs;\n\t        this.#nlink = nlink;\n\t        this.#rdev = rdev;\n\t        this.#size = size;\n\t        this.#uid = uid;\n\t        const ifmt = entToType(st);\n\t        // retain any other flags, but set the ifmt\n\t        this.#type = (this.#type & IFMT_UNKNOWN) | ifmt | LSTAT_CALLED;\n\t        if (ifmt !== UNKNOWN && ifmt !== IFDIR && ifmt !== IFLNK) {\n\t            this.#type |= ENOTDIR;\n\t        }\n\t    }\n\t    #onReaddirCB = [];\n\t    #readdirCBInFlight = false;\n\t    #callOnReaddirCB(children) {\n\t        this.#readdirCBInFlight = false;\n\t        const cbs = this.#onReaddirCB.slice();\n\t        this.#onReaddirCB.length = 0;\n\t        cbs.forEach(cb => cb(null, children));\n\t    }\n\t    /**\n\t     * Standard node-style callback interface to get list of directory entries.\n\t     *\n\t     * If the Path cannot or does not contain any children, then an empty array\n\t     * is returned.\n\t     *\n\t     * Results are cached, and thus may be out of date if the filesystem is\n\t     * mutated.\n\t     *\n\t     * @param cb The callback called with (er, entries).  Note that the `er`\n\t     * param is somewhat extraneous, as all readdir() errors are handled and\n\t     * simply result in an empty set of entries being returned.\n\t     * @param allowZalgo Boolean indicating that immediately known results should\n\t     * *not* be deferred with `queueMicrotask`. Defaults to `false`. Release\n\t     * zalgo at your peril, the dark pony lord is devious and unforgiving.\n\t     */\n\t    readdirCB(cb, allowZalgo = false) {\n\t        if (!this.canReaddir()) {\n\t            if (allowZalgo)\n\t                cb(null, []);\n\t            else\n\t                queueMicrotask(() => cb(null, []));\n\t            return;\n\t        }\n\t        const children = this.children();\n\t        if (this.calledReaddir()) {\n\t            const c = children.slice(0, children.provisional);\n\t            if (allowZalgo)\n\t                cb(null, c);\n\t            else\n\t                queueMicrotask(() => cb(null, c));\n\t            return;\n\t        }\n\t        // don't have to worry about zalgo at this point.\n\t        this.#onReaddirCB.push(cb);\n\t        if (this.#readdirCBInFlight) {\n\t            return;\n\t        }\n\t        this.#readdirCBInFlight = true;\n\t        // else read the directory, fill up children\n\t        // de-provisionalize any provisional children.\n\t        const fullpath = this.fullpath();\n\t        this.#fs.readdir(fullpath, { withFileTypes: true }, (er, entries) => {\n\t            if (er) {\n\t                this.#readdirFail(er.code);\n\t                children.provisional = 0;\n\t            }\n\t            else {\n\t                // if we didn't get an error, we always get entries.\n\t                //@ts-ignore\n\t                for (const e of entries) {\n\t                    this.#readdirAddChild(e, children);\n\t                }\n\t                this.#readdirSuccess(children);\n\t            }\n\t            this.#callOnReaddirCB(children.slice(0, children.provisional));\n\t            return;\n\t        });\n\t    }\n\t    #asyncReaddirInFlight;\n\t    /**\n\t     * Return an array of known child entries.\n\t     *\n\t     * If the Path cannot or does not contain any children, then an empty array\n\t     * is returned.\n\t     *\n\t     * Results are cached, and thus may be out of date if the filesystem is\n\t     * mutated.\n\t     */\n\t    async readdir() {\n\t        if (!this.canReaddir()) {\n\t            return [];\n\t        }\n\t        const children = this.children();\n\t        if (this.calledReaddir()) {\n\t            return children.slice(0, children.provisional);\n\t        }\n\t        // else read the directory, fill up children\n\t        // de-provisionalize any provisional children.\n\t        const fullpath = this.fullpath();\n\t        if (this.#asyncReaddirInFlight) {\n\t            await this.#asyncReaddirInFlight;\n\t        }\n\t        else {\n\t            /* c8 ignore start */\n\t            let resolve = () => { };\n\t            /* c8 ignore stop */\n\t            this.#asyncReaddirInFlight = new Promise(res => (resolve = res));\n\t            try {\n\t                for (const e of await this.#fs.promises.readdir(fullpath, {\n\t                    withFileTypes: true,\n\t                })) {\n\t                    this.#readdirAddChild(e, children);\n\t                }\n\t                this.#readdirSuccess(children);\n\t            }\n\t            catch (er) {\n\t                this.#readdirFail(er.code);\n\t                children.provisional = 0;\n\t            }\n\t            this.#asyncReaddirInFlight = undefined;\n\t            resolve();\n\t        }\n\t        return children.slice(0, children.provisional);\n\t    }\n\t    /**\n\t     * synchronous {@link PathBase.readdir}\n\t     */\n\t    readdirSync() {\n\t        if (!this.canReaddir()) {\n\t            return [];\n\t        }\n\t        const children = this.children();\n\t        if (this.calledReaddir()) {\n\t            return children.slice(0, children.provisional);\n\t        }\n\t        // else read the directory, fill up children\n\t        // de-provisionalize any provisional children.\n\t        const fullpath = this.fullpath();\n\t        try {\n\t            for (const e of this.#fs.readdirSync(fullpath, {\n\t                withFileTypes: true,\n\t            })) {\n\t                this.#readdirAddChild(e, children);\n\t            }\n\t            this.#readdirSuccess(children);\n\t        }\n\t        catch (er) {\n\t            this.#readdirFail(er.code);\n\t            children.provisional = 0;\n\t        }\n\t        return children.slice(0, children.provisional);\n\t    }\n\t    canReaddir() {\n\t        if (this.#type & ENOCHILD)\n\t            return false;\n\t        const ifmt = IFMT & this.#type;\n\t        // we always set ENOTDIR when setting IFMT, so should be impossible\n\t        /* c8 ignore start */\n\t        if (!(ifmt === UNKNOWN || ifmt === IFDIR || ifmt === IFLNK)) {\n\t            return false;\n\t        }\n\t        /* c8 ignore stop */\n\t        return true;\n\t    }\n\t    shouldWalk(dirs, walkFilter) {\n\t        return ((this.#type & IFDIR) === IFDIR &&\n\t            !(this.#type & ENOCHILD) &&\n\t            !dirs.has(this) &&\n\t            (!walkFilter || walkFilter(this)));\n\t    }\n\t    /**\n\t     * Return the Path object corresponding to path as resolved\n\t     * by realpath(3).\n\t     *\n\t     * If the realpath call fails for any reason, `undefined` is returned.\n\t     *\n\t     * Result is cached, and thus may be outdated if the filesystem is mutated.\n\t     * On success, returns a Path object.\n\t     */\n\t    async realpath() {\n\t        if (this.#realpath)\n\t            return this.#realpath;\n\t        if ((ENOREALPATH | ENOREADLINK | ENOENT) & this.#type)\n\t            return undefined;\n\t        try {\n\t            const rp = await this.#fs.promises.realpath(this.fullpath());\n\t            return (this.#realpath = this.resolve(rp));\n\t        }\n\t        catch (_) {\n\t            this.#markENOREALPATH();\n\t        }\n\t    }\n\t    /**\n\t     * Synchronous {@link realpath}\n\t     */\n\t    realpathSync() {\n\t        if (this.#realpath)\n\t            return this.#realpath;\n\t        if ((ENOREALPATH | ENOREADLINK | ENOENT) & this.#type)\n\t            return undefined;\n\t        try {\n\t            const rp = this.#fs.realpathSync(this.fullpath());\n\t            return (this.#realpath = this.resolve(rp));\n\t        }\n\t        catch (_) {\n\t            this.#markENOREALPATH();\n\t        }\n\t    }\n\t    /**\n\t     * Internal method to mark this Path object as the scurry cwd,\n\t     * called by {@link PathScurry#chdir}\n\t     *\n\t     * @internal\n\t     */\n\t    [setAsCwd](oldCwd) {\n\t        if (oldCwd === this)\n\t            return;\n\t        oldCwd.isCWD = false;\n\t        this.isCWD = true;\n\t        const changed = new Set([]);\n\t        let rp = [];\n\t        let p = this;\n\t        while (p && p.parent) {\n\t            changed.add(p);\n\t            p.#relative = rp.join(this.sep);\n\t            p.#relativePosix = rp.join('/');\n\t            p = p.parent;\n\t            rp.push('..');\n\t        }\n\t        // now un-memoize parents of old cwd\n\t        p = oldCwd;\n\t        while (p && p.parent && !changed.has(p)) {\n\t            p.#relative = undefined;\n\t            p.#relativePosix = undefined;\n\t            p = p.parent;\n\t        }\n\t    }\n\t}\n\tcommonjs$2.PathBase = PathBase;\n\t/**\n\t * Path class used on win32 systems\n\t *\n\t * Uses `'\\\\'` as the path separator for returned paths, either `'\\\\'` or `'/'`\n\t * as the path separator for parsing paths.\n\t */\n\tclass PathWin32 extends PathBase {\n\t    /**\n\t     * Separator for generating path strings.\n\t     */\n\t    sep = '\\\\';\n\t    /**\n\t     * Separator for parsing path strings.\n\t     */\n\t    splitSep = eitherSep;\n\t    /**\n\t     * Do not create new Path objects directly.  They should always be accessed\n\t     * via the PathScurry class or other methods on the Path class.\n\t     *\n\t     * @internal\n\t     */\n\t    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {\n\t        super(name, type, root, roots, nocase, children, opts);\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    newChild(name, type = UNKNOWN, opts = {}) {\n\t        return new PathWin32(name, type, this.root, this.roots, this.nocase, this.childrenCache(), opts);\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    getRootString(path) {\n\t        return node_path_1.win32.parse(path).root;\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    getRoot(rootPath) {\n\t        rootPath = uncToDrive(rootPath.toUpperCase());\n\t        if (rootPath === this.root.name) {\n\t            return this.root;\n\t        }\n\t        // ok, not that one, check if it matches another we know about\n\t        for (const [compare, root] of Object.entries(this.roots)) {\n\t            if (this.sameRoot(rootPath, compare)) {\n\t                return (this.roots[rootPath] = root);\n\t            }\n\t        }\n\t        // otherwise, have to create a new one.\n\t        return (this.roots[rootPath] = new PathScurryWin32(rootPath, this).root);\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    sameRoot(rootPath, compare = this.root.name) {\n\t        // windows can (rarely) have case-sensitive filesystem, but\n\t        // UNC and drive letters are always case-insensitive, and canonically\n\t        // represented uppercase.\n\t        rootPath = rootPath\n\t            .toUpperCase()\n\t            .replace(/\\//g, '\\\\')\n\t            .replace(uncDriveRegexp, '$1\\\\');\n\t        return rootPath === compare;\n\t    }\n\t}\n\tcommonjs$2.PathWin32 = PathWin32;\n\t/**\n\t * Path class used on all posix systems.\n\t *\n\t * Uses `'/'` as the path separator.\n\t */\n\tclass PathPosix extends PathBase {\n\t    /**\n\t     * separator for parsing path strings\n\t     */\n\t    splitSep = '/';\n\t    /**\n\t     * separator for generating path strings\n\t     */\n\t    sep = '/';\n\t    /**\n\t     * Do not create new Path objects directly.  They should always be accessed\n\t     * via the PathScurry class or other methods on the Path class.\n\t     *\n\t     * @internal\n\t     */\n\t    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {\n\t        super(name, type, root, roots, nocase, children, opts);\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    getRootString(path) {\n\t        return path.startsWith('/') ? '/' : '';\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    getRoot(_rootPath) {\n\t        return this.root;\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    newChild(name, type = UNKNOWN, opts = {}) {\n\t        return new PathPosix(name, type, this.root, this.roots, this.nocase, this.childrenCache(), opts);\n\t    }\n\t}\n\tcommonjs$2.PathPosix = PathPosix;\n\t/**\n\t * The base class for all PathScurry classes, providing the interface for path\n\t * resolution and filesystem operations.\n\t *\n\t * Typically, you should *not* instantiate this class directly, but rather one\n\t * of the platform-specific classes, or the exported {@link PathScurry} which\n\t * defaults to the current platform.\n\t */\n\tclass PathScurryBase {\n\t    /**\n\t     * The root Path entry for the current working directory of this Scurry\n\t     */\n\t    root;\n\t    /**\n\t     * The string path for the root of this Scurry's current working directory\n\t     */\n\t    rootPath;\n\t    /**\n\t     * A collection of all roots encountered, referenced by rootPath\n\t     */\n\t    roots;\n\t    /**\n\t     * The Path entry corresponding to this PathScurry's current working directory.\n\t     */\n\t    cwd;\n\t    #resolveCache;\n\t    #resolvePosixCache;\n\t    #children;\n\t    /**\n\t     * Perform path comparisons case-insensitively.\n\t     *\n\t     * Defaults true on Darwin and Windows systems, false elsewhere.\n\t     */\n\t    nocase;\n\t    #fs;\n\t    /**\n\t     * This class should not be instantiated directly.\n\t     *\n\t     * Use PathScurryWin32, PathScurryDarwin, PathScurryPosix, or PathScurry\n\t     *\n\t     * @internal\n\t     */\n\t    constructor(cwd = process.cwd(), pathImpl, sep, { nocase, childrenCacheSize = 16 * 1024, fs = defaultFS, } = {}) {\n\t        this.#fs = fsFromOption(fs);\n\t        if (cwd instanceof URL || cwd.startsWith('file://')) {\n\t            cwd = (0, node_url_1.fileURLToPath)(cwd);\n\t        }\n\t        // resolve and split root, and then add to the store.\n\t        // this is the only time we call path.resolve()\n\t        const cwdPath = pathImpl.resolve(cwd);\n\t        this.roots = Object.create(null);\n\t        this.rootPath = this.parseRootPath(cwdPath);\n\t        this.#resolveCache = new ResolveCache();\n\t        this.#resolvePosixCache = new ResolveCache();\n\t        this.#children = new ChildrenCache(childrenCacheSize);\n\t        const split = cwdPath.substring(this.rootPath.length).split(sep);\n\t        // resolve('/') leaves '', splits to [''], we don't want that.\n\t        if (split.length === 1 && !split[0]) {\n\t            split.pop();\n\t        }\n\t        /* c8 ignore start */\n\t        if (nocase === undefined) {\n\t            throw new TypeError('must provide nocase setting to PathScurryBase ctor');\n\t        }\n\t        /* c8 ignore stop */\n\t        this.nocase = nocase;\n\t        this.root = this.newRoot(this.#fs);\n\t        this.roots[this.rootPath] = this.root;\n\t        let prev = this.root;\n\t        let len = split.length - 1;\n\t        const joinSep = pathImpl.sep;\n\t        let abs = this.rootPath;\n\t        let sawFirst = false;\n\t        for (const part of split) {\n\t            const l = len--;\n\t            prev = prev.child(part, {\n\t                relative: new Array(l).fill('..').join(joinSep),\n\t                relativePosix: new Array(l).fill('..').join('/'),\n\t                fullpath: (abs += (sawFirst ? '' : joinSep) + part),\n\t            });\n\t            sawFirst = true;\n\t        }\n\t        this.cwd = prev;\n\t    }\n\t    /**\n\t     * Get the depth of a provided path, string, or the cwd\n\t     */\n\t    depth(path = this.cwd) {\n\t        if (typeof path === 'string') {\n\t            path = this.cwd.resolve(path);\n\t        }\n\t        return path.depth();\n\t    }\n\t    /**\n\t     * Return the cache of child entries.  Exposed so subclasses can create\n\t     * child Path objects in a platform-specific way.\n\t     *\n\t     * @internal\n\t     */\n\t    childrenCache() {\n\t        return this.#children;\n\t    }\n\t    /**\n\t     * Resolve one or more path strings to a resolved string\n\t     *\n\t     * Same interface as require('path').resolve.\n\t     *\n\t     * Much faster than path.resolve() when called multiple times for the same\n\t     * path, because the resolved Path objects are cached.  Much slower\n\t     * otherwise.\n\t     */\n\t    resolve(...paths) {\n\t        // first figure out the minimum number of paths we have to test\n\t        // we always start at cwd, but any absolutes will bump the start\n\t        let r = '';\n\t        for (let i = paths.length - 1; i >= 0; i--) {\n\t            const p = paths[i];\n\t            if (!p || p === '.')\n\t                continue;\n\t            r = r ? `${p}/${r}` : p;\n\t            if (this.isAbsolute(p)) {\n\t                break;\n\t            }\n\t        }\n\t        const cached = this.#resolveCache.get(r);\n\t        if (cached !== undefined) {\n\t            return cached;\n\t        }\n\t        const result = this.cwd.resolve(r).fullpath();\n\t        this.#resolveCache.set(r, result);\n\t        return result;\n\t    }\n\t    /**\n\t     * Resolve one or more path strings to a resolved string, returning\n\t     * the posix path.  Identical to .resolve() on posix systems, but on\n\t     * windows will return a forward-slash separated UNC path.\n\t     *\n\t     * Same interface as require('path').resolve.\n\t     *\n\t     * Much faster than path.resolve() when called multiple times for the same\n\t     * path, because the resolved Path objects are cached.  Much slower\n\t     * otherwise.\n\t     */\n\t    resolvePosix(...paths) {\n\t        // first figure out the minimum number of paths we have to test\n\t        // we always start at cwd, but any absolutes will bump the start\n\t        let r = '';\n\t        for (let i = paths.length - 1; i >= 0; i--) {\n\t            const p = paths[i];\n\t            if (!p || p === '.')\n\t                continue;\n\t            r = r ? `${p}/${r}` : p;\n\t            if (this.isAbsolute(p)) {\n\t                break;\n\t            }\n\t        }\n\t        const cached = this.#resolvePosixCache.get(r);\n\t        if (cached !== undefined) {\n\t            return cached;\n\t        }\n\t        const result = this.cwd.resolve(r).fullpathPosix();\n\t        this.#resolvePosixCache.set(r, result);\n\t        return result;\n\t    }\n\t    /**\n\t     * find the relative path from the cwd to the supplied path string or entry\n\t     */\n\t    relative(entry = this.cwd) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        return entry.relative();\n\t    }\n\t    /**\n\t     * find the relative path from the cwd to the supplied path string or\n\t     * entry, using / as the path delimiter, even on Windows.\n\t     */\n\t    relativePosix(entry = this.cwd) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        return entry.relativePosix();\n\t    }\n\t    /**\n\t     * Return the basename for the provided string or Path object\n\t     */\n\t    basename(entry = this.cwd) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        return entry.name;\n\t    }\n\t    /**\n\t     * Return the dirname for the provided string or Path object\n\t     */\n\t    dirname(entry = this.cwd) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        return (entry.parent || entry).fullpath();\n\t    }\n\t    async readdir(entry = this.cwd, opts = {\n\t        withFileTypes: true,\n\t    }) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            opts = entry;\n\t            entry = this.cwd;\n\t        }\n\t        const { withFileTypes } = opts;\n\t        if (!entry.canReaddir()) {\n\t            return [];\n\t        }\n\t        else {\n\t            const p = await entry.readdir();\n\t            return withFileTypes ? p : p.map(e => e.name);\n\t        }\n\t    }\n\t    readdirSync(entry = this.cwd, opts = {\n\t        withFileTypes: true,\n\t    }) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            opts = entry;\n\t            entry = this.cwd;\n\t        }\n\t        const { withFileTypes = true } = opts;\n\t        if (!entry.canReaddir()) {\n\t            return [];\n\t        }\n\t        else if (withFileTypes) {\n\t            return entry.readdirSync();\n\t        }\n\t        else {\n\t            return entry.readdirSync().map(e => e.name);\n\t        }\n\t    }\n\t    /**\n\t     * Call lstat() on the string or Path object, and update all known\n\t     * information that can be determined.\n\t     *\n\t     * Note that unlike `fs.lstat()`, the returned value does not contain some\n\t     * information, such as `mode`, `dev`, `nlink`, and `ino`.  If that\n\t     * information is required, you will need to call `fs.lstat` yourself.\n\t     *\n\t     * If the Path refers to a nonexistent file, or if the lstat call fails for\n\t     * any reason, `undefined` is returned.  Otherwise the updated Path object is\n\t     * returned.\n\t     *\n\t     * Results are cached, and thus may be out of date if the filesystem is\n\t     * mutated.\n\t     */\n\t    async lstat(entry = this.cwd) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        return entry.lstat();\n\t    }\n\t    /**\n\t     * synchronous {@link PathScurryBase.lstat}\n\t     */\n\t    lstatSync(entry = this.cwd) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        return entry.lstatSync();\n\t    }\n\t    async readlink(entry = this.cwd, { withFileTypes } = {\n\t        withFileTypes: false,\n\t    }) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            withFileTypes = entry.withFileTypes;\n\t            entry = this.cwd;\n\t        }\n\t        const e = await entry.readlink();\n\t        return withFileTypes ? e : e?.fullpath();\n\t    }\n\t    readlinkSync(entry = this.cwd, { withFileTypes } = {\n\t        withFileTypes: false,\n\t    }) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            withFileTypes = entry.withFileTypes;\n\t            entry = this.cwd;\n\t        }\n\t        const e = entry.readlinkSync();\n\t        return withFileTypes ? e : e?.fullpath();\n\t    }\n\t    async realpath(entry = this.cwd, { withFileTypes } = {\n\t        withFileTypes: false,\n\t    }) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            withFileTypes = entry.withFileTypes;\n\t            entry = this.cwd;\n\t        }\n\t        const e = await entry.realpath();\n\t        return withFileTypes ? e : e?.fullpath();\n\t    }\n\t    realpathSync(entry = this.cwd, { withFileTypes } = {\n\t        withFileTypes: false,\n\t    }) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            withFileTypes = entry.withFileTypes;\n\t            entry = this.cwd;\n\t        }\n\t        const e = entry.realpathSync();\n\t        return withFileTypes ? e : e?.fullpath();\n\t    }\n\t    async walk(entry = this.cwd, opts = {}) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            opts = entry;\n\t            entry = this.cwd;\n\t        }\n\t        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;\n\t        const results = [];\n\t        if (!filter || filter(entry)) {\n\t            results.push(withFileTypes ? entry : entry.fullpath());\n\t        }\n\t        const dirs = new Set();\n\t        const walk = (dir, cb) => {\n\t            dirs.add(dir);\n\t            dir.readdirCB((er, entries) => {\n\t                /* c8 ignore start */\n\t                if (er) {\n\t                    return cb(er);\n\t                }\n\t                /* c8 ignore stop */\n\t                let len = entries.length;\n\t                if (!len)\n\t                    return cb();\n\t                const next = () => {\n\t                    if (--len === 0) {\n\t                        cb();\n\t                    }\n\t                };\n\t                for (const e of entries) {\n\t                    if (!filter || filter(e)) {\n\t                        results.push(withFileTypes ? e : e.fullpath());\n\t                    }\n\t                    if (follow && e.isSymbolicLink()) {\n\t                        e.realpath()\n\t                            .then(r => (r?.isUnknown() ? r.lstat() : r))\n\t                            .then(r => r?.shouldWalk(dirs, walkFilter) ? walk(r, next) : next());\n\t                    }\n\t                    else {\n\t                        if (e.shouldWalk(dirs, walkFilter)) {\n\t                            walk(e, next);\n\t                        }\n\t                        else {\n\t                            next();\n\t                        }\n\t                    }\n\t                }\n\t            }, true); // zalgooooooo\n\t        };\n\t        const start = entry;\n\t        return new Promise((res, rej) => {\n\t            walk(start, er => {\n\t                /* c8 ignore start */\n\t                if (er)\n\t                    return rej(er);\n\t                /* c8 ignore stop */\n\t                res(results);\n\t            });\n\t        });\n\t    }\n\t    walkSync(entry = this.cwd, opts = {}) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            opts = entry;\n\t            entry = this.cwd;\n\t        }\n\t        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;\n\t        const results = [];\n\t        if (!filter || filter(entry)) {\n\t            results.push(withFileTypes ? entry : entry.fullpath());\n\t        }\n\t        const dirs = new Set([entry]);\n\t        for (const dir of dirs) {\n\t            const entries = dir.readdirSync();\n\t            for (const e of entries) {\n\t                if (!filter || filter(e)) {\n\t                    results.push(withFileTypes ? e : e.fullpath());\n\t                }\n\t                let r = e;\n\t                if (e.isSymbolicLink()) {\n\t                    if (!(follow && (r = e.realpathSync())))\n\t                        continue;\n\t                    if (r.isUnknown())\n\t                        r.lstatSync();\n\t                }\n\t                if (r.shouldWalk(dirs, walkFilter)) {\n\t                    dirs.add(r);\n\t                }\n\t            }\n\t        }\n\t        return results;\n\t    }\n\t    /**\n\t     * Support for `for await`\n\t     *\n\t     * Alias for {@link PathScurryBase.iterate}\n\t     *\n\t     * Note: As of Node 19, this is very slow, compared to other methods of\n\t     * walking.  Consider using {@link PathScurryBase.stream} if memory overhead\n\t     * and backpressure are concerns, or {@link PathScurryBase.walk} if not.\n\t     */\n\t    [Symbol.asyncIterator]() {\n\t        return this.iterate();\n\t    }\n\t    iterate(entry = this.cwd, options = {}) {\n\t        // iterating async over the stream is significantly more performant,\n\t        // especially in the warm-cache scenario, because it buffers up directory\n\t        // entries in the background instead of waiting for a yield for each one.\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            options = entry;\n\t            entry = this.cwd;\n\t        }\n\t        return this.stream(entry, options)[Symbol.asyncIterator]();\n\t    }\n\t    /**\n\t     * Iterating over a PathScurry performs a synchronous walk.\n\t     *\n\t     * Alias for {@link PathScurryBase.iterateSync}\n\t     */\n\t    [Symbol.iterator]() {\n\t        return this.iterateSync();\n\t    }\n\t    *iterateSync(entry = this.cwd, opts = {}) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            opts = entry;\n\t            entry = this.cwd;\n\t        }\n\t        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;\n\t        if (!filter || filter(entry)) {\n\t            yield withFileTypes ? entry : entry.fullpath();\n\t        }\n\t        const dirs = new Set([entry]);\n\t        for (const dir of dirs) {\n\t            const entries = dir.readdirSync();\n\t            for (const e of entries) {\n\t                if (!filter || filter(e)) {\n\t                    yield withFileTypes ? e : e.fullpath();\n\t                }\n\t                let r = e;\n\t                if (e.isSymbolicLink()) {\n\t                    if (!(follow && (r = e.realpathSync())))\n\t                        continue;\n\t                    if (r.isUnknown())\n\t                        r.lstatSync();\n\t                }\n\t                if (r.shouldWalk(dirs, walkFilter)) {\n\t                    dirs.add(r);\n\t                }\n\t            }\n\t        }\n\t    }\n\t    stream(entry = this.cwd, opts = {}) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            opts = entry;\n\t            entry = this.cwd;\n\t        }\n\t        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;\n\t        const results = new minipass_1.Minipass({ objectMode: true });\n\t        if (!filter || filter(entry)) {\n\t            results.write(withFileTypes ? entry : entry.fullpath());\n\t        }\n\t        const dirs = new Set();\n\t        const queue = [entry];\n\t        let processing = 0;\n\t        const process = () => {\n\t            let paused = false;\n\t            while (!paused) {\n\t                const dir = queue.shift();\n\t                if (!dir) {\n\t                    if (processing === 0)\n\t                        results.end();\n\t                    return;\n\t                }\n\t                processing++;\n\t                dirs.add(dir);\n\t                const onReaddir = (er, entries, didRealpaths = false) => {\n\t                    /* c8 ignore start */\n\t                    if (er)\n\t                        return results.emit('error', er);\n\t                    /* c8 ignore stop */\n\t                    if (follow && !didRealpaths) {\n\t                        const promises = [];\n\t                        for (const e of entries) {\n\t                            if (e.isSymbolicLink()) {\n\t                                promises.push(e\n\t                                    .realpath()\n\t                                    .then((r) => r?.isUnknown() ? r.lstat() : r));\n\t                            }\n\t                        }\n\t                        if (promises.length) {\n\t                            Promise.all(promises).then(() => onReaddir(null, entries, true));\n\t                            return;\n\t                        }\n\t                    }\n\t                    for (const e of entries) {\n\t                        if (e && (!filter || filter(e))) {\n\t                            if (!results.write(withFileTypes ? e : e.fullpath())) {\n\t                                paused = true;\n\t                            }\n\t                        }\n\t                    }\n\t                    processing--;\n\t                    for (const e of entries) {\n\t                        const r = e.realpathCached() || e;\n\t                        if (r.shouldWalk(dirs, walkFilter)) {\n\t                            queue.push(r);\n\t                        }\n\t                    }\n\t                    if (paused && !results.flowing) {\n\t                        results.once('drain', process);\n\t                    }\n\t                    else if (!sync) {\n\t                        process();\n\t                    }\n\t                };\n\t                // zalgo containment\n\t                let sync = true;\n\t                dir.readdirCB(onReaddir, true);\n\t                sync = false;\n\t            }\n\t        };\n\t        process();\n\t        return results;\n\t    }\n\t    streamSync(entry = this.cwd, opts = {}) {\n\t        if (typeof entry === 'string') {\n\t            entry = this.cwd.resolve(entry);\n\t        }\n\t        else if (!(entry instanceof PathBase)) {\n\t            opts = entry;\n\t            entry = this.cwd;\n\t        }\n\t        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;\n\t        const results = new minipass_1.Minipass({ objectMode: true });\n\t        const dirs = new Set();\n\t        if (!filter || filter(entry)) {\n\t            results.write(withFileTypes ? entry : entry.fullpath());\n\t        }\n\t        const queue = [entry];\n\t        let processing = 0;\n\t        const process = () => {\n\t            let paused = false;\n\t            while (!paused) {\n\t                const dir = queue.shift();\n\t                if (!dir) {\n\t                    if (processing === 0)\n\t                        results.end();\n\t                    return;\n\t                }\n\t                processing++;\n\t                dirs.add(dir);\n\t                const entries = dir.readdirSync();\n\t                for (const e of entries) {\n\t                    if (!filter || filter(e)) {\n\t                        if (!results.write(withFileTypes ? e : e.fullpath())) {\n\t                            paused = true;\n\t                        }\n\t                    }\n\t                }\n\t                processing--;\n\t                for (const e of entries) {\n\t                    let r = e;\n\t                    if (e.isSymbolicLink()) {\n\t                        if (!(follow && (r = e.realpathSync())))\n\t                            continue;\n\t                        if (r.isUnknown())\n\t                            r.lstatSync();\n\t                    }\n\t                    if (r.shouldWalk(dirs, walkFilter)) {\n\t                        queue.push(r);\n\t                    }\n\t                }\n\t            }\n\t            if (paused && !results.flowing)\n\t                results.once('drain', process);\n\t        };\n\t        process();\n\t        return results;\n\t    }\n\t    chdir(path = this.cwd) {\n\t        const oldCwd = this.cwd;\n\t        this.cwd = typeof path === 'string' ? this.cwd.resolve(path) : path;\n\t        this.cwd[setAsCwd](oldCwd);\n\t    }\n\t}\n\tcommonjs$2.PathScurryBase = PathScurryBase;\n\t/**\n\t * Windows implementation of {@link PathScurryBase}\n\t *\n\t * Defaults to case insensitve, uses `'\\\\'` to generate path strings.  Uses\n\t * {@link PathWin32} for Path objects.\n\t */\n\tclass PathScurryWin32 extends PathScurryBase {\n\t    /**\n\t     * separator for generating path strings\n\t     */\n\t    sep = '\\\\';\n\t    constructor(cwd = process.cwd(), opts = {}) {\n\t        const { nocase = true } = opts;\n\t        super(cwd, node_path_1.win32, '\\\\', { ...opts, nocase });\n\t        this.nocase = nocase;\n\t        for (let p = this.cwd; p; p = p.parent) {\n\t            p.nocase = this.nocase;\n\t        }\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    parseRootPath(dir) {\n\t        // if the path starts with a single separator, it's not a UNC, and we'll\n\t        // just get separator as the root, and driveFromUNC will return \\\n\t        // In that case, mount \\ on the root from the cwd.\n\t        return node_path_1.win32.parse(dir).root.toUpperCase();\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    newRoot(fs) {\n\t        return new PathWin32(this.rootPath, IFDIR, undefined, this.roots, this.nocase, this.childrenCache(), { fs });\n\t    }\n\t    /**\n\t     * Return true if the provided path string is an absolute path\n\t     */\n\t    isAbsolute(p) {\n\t        return (p.startsWith('/') || p.startsWith('\\\\') || /^[a-z]:(\\/|\\\\)/i.test(p));\n\t    }\n\t}\n\tcommonjs$2.PathScurryWin32 = PathScurryWin32;\n\t/**\n\t * {@link PathScurryBase} implementation for all posix systems other than Darwin.\n\t *\n\t * Defaults to case-sensitive matching, uses `'/'` to generate path strings.\n\t *\n\t * Uses {@link PathPosix} for Path objects.\n\t */\n\tclass PathScurryPosix extends PathScurryBase {\n\t    /**\n\t     * separator for generating path strings\n\t     */\n\t    sep = '/';\n\t    constructor(cwd = process.cwd(), opts = {}) {\n\t        const { nocase = false } = opts;\n\t        super(cwd, node_path_1.posix, '/', { ...opts, nocase });\n\t        this.nocase = nocase;\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    parseRootPath(_dir) {\n\t        return '/';\n\t    }\n\t    /**\n\t     * @internal\n\t     */\n\t    newRoot(fs) {\n\t        return new PathPosix(this.rootPath, IFDIR, undefined, this.roots, this.nocase, this.childrenCache(), { fs });\n\t    }\n\t    /**\n\t     * Return true if the provided path string is an absolute path\n\t     */\n\t    isAbsolute(p) {\n\t        return p.startsWith('/');\n\t    }\n\t}\n\tcommonjs$2.PathScurryPosix = PathScurryPosix;\n\t/**\n\t * {@link PathScurryBase} implementation for Darwin (macOS) systems.\n\t *\n\t * Defaults to case-insensitive matching, uses `'/'` for generating path\n\t * strings.\n\t *\n\t * Uses {@link PathPosix} for Path objects.\n\t */\n\tclass PathScurryDarwin extends PathScurryPosix {\n\t    constructor(cwd = process.cwd(), opts = {}) {\n\t        const { nocase = true } = opts;\n\t        super(cwd, { ...opts, nocase });\n\t    }\n\t}\n\tcommonjs$2.PathScurryDarwin = PathScurryDarwin;\n\t/**\n\t * Default {@link PathBase} implementation for the current platform.\n\t *\n\t * {@link PathWin32} on Windows systems, {@link PathPosix} on all others.\n\t */\n\tcommonjs$2.Path = process.platform === 'win32' ? PathWin32 : PathPosix;\n\t/**\n\t * Default {@link PathScurryBase} implementation for the current platform.\n\t *\n\t * {@link PathScurryWin32} on Windows systems, {@link PathScurryDarwin} on\n\t * Darwin (macOS) systems, {@link PathScurryPosix} on all others.\n\t */\n\tcommonjs$2.PathScurry = process.platform === 'win32' ? PathScurryWin32\n\t    : process.platform === 'darwin' ? PathScurryDarwin\n\t        : PathScurryPosix;\n\t\n\treturn commonjs$2;\n}\n\nvar pattern = {};\n\nvar hasRequiredPattern;\n\nfunction requirePattern () {\n\tif (hasRequiredPattern) return pattern;\n\thasRequiredPattern = 1;\n\t// this is just a very light wrapper around 2 arrays with an offset index\n\tObject.defineProperty(pattern, \"__esModule\", { value: true });\n\tpattern.Pattern = void 0;\n\tconst minimatch_1 = requireCommonjs$4();\n\tconst isPatternList = (pl) => pl.length >= 1;\n\tconst isGlobList = (gl) => gl.length >= 1;\n\t/**\n\t * An immutable-ish view on an array of glob parts and their parsed\n\t * results\n\t */\n\tclass Pattern {\n\t    #patternList;\n\t    #globList;\n\t    #index;\n\t    length;\n\t    #platform;\n\t    #rest;\n\t    #globString;\n\t    #isDrive;\n\t    #isUNC;\n\t    #isAbsolute;\n\t    #followGlobstar = true;\n\t    constructor(patternList, globList, index, platform) {\n\t        if (!isPatternList(patternList)) {\n\t            throw new TypeError('empty pattern list');\n\t        }\n\t        if (!isGlobList(globList)) {\n\t            throw new TypeError('empty glob list');\n\t        }\n\t        if (globList.length !== patternList.length) {\n\t            throw new TypeError('mismatched pattern list and glob list lengths');\n\t        }\n\t        this.length = patternList.length;\n\t        if (index < 0 || index >= this.length) {\n\t            throw new TypeError('index out of range');\n\t        }\n\t        this.#patternList = patternList;\n\t        this.#globList = globList;\n\t        this.#index = index;\n\t        this.#platform = platform;\n\t        // normalize root entries of absolute patterns on initial creation.\n\t        if (this.#index === 0) {\n\t            // c: => ['c:/']\n\t            // C:/ => ['C:/']\n\t            // C:/x => ['C:/', 'x']\n\t            // //host/share => ['//host/share/']\n\t            // //host/share/ => ['//host/share/']\n\t            // //host/share/x => ['//host/share/', 'x']\n\t            // /etc => ['/', 'etc']\n\t            // / => ['/']\n\t            if (this.isUNC()) {\n\t                // '' / '' / 'host' / 'share'\n\t                const [p0, p1, p2, p3, ...prest] = this.#patternList;\n\t                const [g0, g1, g2, g3, ...grest] = this.#globList;\n\t                if (prest[0] === '') {\n\t                    // ends in /\n\t                    prest.shift();\n\t                    grest.shift();\n\t                }\n\t                const p = [p0, p1, p2, p3, ''].join('/');\n\t                const g = [g0, g1, g2, g3, ''].join('/');\n\t                this.#patternList = [p, ...prest];\n\t                this.#globList = [g, ...grest];\n\t                this.length = this.#patternList.length;\n\t            }\n\t            else if (this.isDrive() || this.isAbsolute()) {\n\t                const [p1, ...prest] = this.#patternList;\n\t                const [g1, ...grest] = this.#globList;\n\t                if (prest[0] === '') {\n\t                    // ends in /\n\t                    prest.shift();\n\t                    grest.shift();\n\t                }\n\t                const p = p1 + '/';\n\t                const g = g1 + '/';\n\t                this.#patternList = [p, ...prest];\n\t                this.#globList = [g, ...grest];\n\t                this.length = this.#patternList.length;\n\t            }\n\t        }\n\t    }\n\t    /**\n\t     * The first entry in the parsed list of patterns\n\t     */\n\t    pattern() {\n\t        return this.#patternList[this.#index];\n\t    }\n\t    /**\n\t     * true of if pattern() returns a string\n\t     */\n\t    isString() {\n\t        return typeof this.#patternList[this.#index] === 'string';\n\t    }\n\t    /**\n\t     * true of if pattern() returns GLOBSTAR\n\t     */\n\t    isGlobstar() {\n\t        return this.#patternList[this.#index] === minimatch_1.GLOBSTAR;\n\t    }\n\t    /**\n\t     * true if pattern() returns a regexp\n\t     */\n\t    isRegExp() {\n\t        return this.#patternList[this.#index] instanceof RegExp;\n\t    }\n\t    /**\n\t     * The /-joined set of glob parts that make up this pattern\n\t     */\n\t    globString() {\n\t        return (this.#globString =\n\t            this.#globString ||\n\t                (this.#index === 0 ?\n\t                    this.isAbsolute() ?\n\t                        this.#globList[0] + this.#globList.slice(1).join('/')\n\t                        : this.#globList.join('/')\n\t                    : this.#globList.slice(this.#index).join('/')));\n\t    }\n\t    /**\n\t     * true if there are more pattern parts after this one\n\t     */\n\t    hasMore() {\n\t        return this.length > this.#index + 1;\n\t    }\n\t    /**\n\t     * The rest of the pattern after this part, or null if this is the end\n\t     */\n\t    rest() {\n\t        if (this.#rest !== undefined)\n\t            return this.#rest;\n\t        if (!this.hasMore())\n\t            return (this.#rest = null);\n\t        this.#rest = new Pattern(this.#patternList, this.#globList, this.#index + 1, this.#platform);\n\t        this.#rest.#isAbsolute = this.#isAbsolute;\n\t        this.#rest.#isUNC = this.#isUNC;\n\t        this.#rest.#isDrive = this.#isDrive;\n\t        return this.#rest;\n\t    }\n\t    /**\n\t     * true if the pattern represents a //unc/path/ on windows\n\t     */\n\t    isUNC() {\n\t        const pl = this.#patternList;\n\t        return this.#isUNC !== undefined ?\n\t            this.#isUNC\n\t            : (this.#isUNC =\n\t                this.#platform === 'win32' &&\n\t                    this.#index === 0 &&\n\t                    pl[0] === '' &&\n\t                    pl[1] === '' &&\n\t                    typeof pl[2] === 'string' &&\n\t                    !!pl[2] &&\n\t                    typeof pl[3] === 'string' &&\n\t                    !!pl[3]);\n\t    }\n\t    // pattern like C:/...\n\t    // split = ['C:', ...]\n\t    // XXX: would be nice to handle patterns like `c:*` to test the cwd\n\t    // in c: for *, but I don't know of a way to even figure out what that\n\t    // cwd is without actually chdir'ing into it?\n\t    /**\n\t     * True if the pattern starts with a drive letter on Windows\n\t     */\n\t    isDrive() {\n\t        const pl = this.#patternList;\n\t        return this.#isDrive !== undefined ?\n\t            this.#isDrive\n\t            : (this.#isDrive =\n\t                this.#platform === 'win32' &&\n\t                    this.#index === 0 &&\n\t                    this.length > 1 &&\n\t                    typeof pl[0] === 'string' &&\n\t                    /^[a-z]:$/i.test(pl[0]));\n\t    }\n\t    // pattern = '/' or '/...' or '/x/...'\n\t    // split = ['', ''] or ['', ...] or ['', 'x', ...]\n\t    // Drive and UNC both considered absolute on windows\n\t    /**\n\t     * True if the pattern is rooted on an absolute path\n\t     */\n\t    isAbsolute() {\n\t        const pl = this.#patternList;\n\t        return this.#isAbsolute !== undefined ?\n\t            this.#isAbsolute\n\t            : (this.#isAbsolute =\n\t                (pl[0] === '' && pl.length > 1) ||\n\t                    this.isDrive() ||\n\t                    this.isUNC());\n\t    }\n\t    /**\n\t     * consume the root of the pattern, and return it\n\t     */\n\t    root() {\n\t        const p = this.#patternList[0];\n\t        return (typeof p === 'string' && this.isAbsolute() && this.#index === 0) ?\n\t            p\n\t            : '';\n\t    }\n\t    /**\n\t     * Check to see if the current globstar pattern is allowed to follow\n\t     * a symbolic link.\n\t     */\n\t    checkFollowGlobstar() {\n\t        return !(this.#index === 0 ||\n\t            !this.isGlobstar() ||\n\t            !this.#followGlobstar);\n\t    }\n\t    /**\n\t     * Mark that the current globstar pattern is following a symbolic link\n\t     */\n\t    markFollowGlobstar() {\n\t        if (this.#index === 0 || !this.isGlobstar() || !this.#followGlobstar)\n\t            return false;\n\t        this.#followGlobstar = false;\n\t        return true;\n\t    }\n\t}\n\tpattern.Pattern = Pattern;\n\t\n\treturn pattern;\n}\n\nvar walker = {};\n\nvar ignore = {};\n\nvar hasRequiredIgnore;\n\nfunction requireIgnore () {\n\tif (hasRequiredIgnore) return ignore;\n\thasRequiredIgnore = 1;\n\t// give it a pattern, and it'll be able to tell you if\n\t// a given path should be ignored.\n\t// Ignoring a path ignores its children if the pattern ends in /**\n\t// Ignores are always parsed in dot:true mode\n\tObject.defineProperty(ignore, \"__esModule\", { value: true });\n\tignore.Ignore = void 0;\n\tconst minimatch_1 = requireCommonjs$4();\n\tconst pattern_js_1 = requirePattern();\n\tconst defaultPlatform = (typeof process === 'object' &&\n\t    process &&\n\t    typeof process.platform === 'string') ?\n\t    process.platform\n\t    : 'linux';\n\t/**\n\t * Class used to process ignored patterns\n\t */\n\tclass Ignore {\n\t    relative;\n\t    relativeChildren;\n\t    absolute;\n\t    absoluteChildren;\n\t    platform;\n\t    mmopts;\n\t    constructor(ignored, { nobrace, nocase, noext, noglobstar, platform = defaultPlatform, }) {\n\t        this.relative = [];\n\t        this.absolute = [];\n\t        this.relativeChildren = [];\n\t        this.absoluteChildren = [];\n\t        this.platform = platform;\n\t        this.mmopts = {\n\t            dot: true,\n\t            nobrace,\n\t            nocase,\n\t            noext,\n\t            noglobstar,\n\t            optimizationLevel: 2,\n\t            platform,\n\t            nocomment: true,\n\t            nonegate: true,\n\t        };\n\t        for (const ign of ignored)\n\t            this.add(ign);\n\t    }\n\t    add(ign) {\n\t        // this is a little weird, but it gives us a clean set of optimized\n\t        // minimatch matchers, without getting tripped up if one of them\n\t        // ends in /** inside a brace section, and it's only inefficient at\n\t        // the start of the walk, not along it.\n\t        // It'd be nice if the Pattern class just had a .test() method, but\n\t        // handling globstars is a bit of a pita, and that code already lives\n\t        // in minimatch anyway.\n\t        // Another way would be if maybe Minimatch could take its set/globParts\n\t        // as an option, and then we could at least just use Pattern to test\n\t        // for absolute-ness.\n\t        // Yet another way, Minimatch could take an array of glob strings, and\n\t        // a cwd option, and do the right thing.\n\t        const mm = new minimatch_1.Minimatch(ign, this.mmopts);\n\t        for (let i = 0; i < mm.set.length; i++) {\n\t            const parsed = mm.set[i];\n\t            const globParts = mm.globParts[i];\n\t            /* c8 ignore start */\n\t            if (!parsed || !globParts) {\n\t                throw new Error('invalid pattern object');\n\t            }\n\t            // strip off leading ./ portions\n\t            // https://github.com/isaacs/node-glob/issues/570\n\t            while (parsed[0] === '.' && globParts[0] === '.') {\n\t                parsed.shift();\n\t                globParts.shift();\n\t            }\n\t            /* c8 ignore stop */\n\t            const p = new pattern_js_1.Pattern(parsed, globParts, 0, this.platform);\n\t            const m = new minimatch_1.Minimatch(p.globString(), this.mmopts);\n\t            const children = globParts[globParts.length - 1] === '**';\n\t            const absolute = p.isAbsolute();\n\t            if (absolute)\n\t                this.absolute.push(m);\n\t            else\n\t                this.relative.push(m);\n\t            if (children) {\n\t                if (absolute)\n\t                    this.absoluteChildren.push(m);\n\t                else\n\t                    this.relativeChildren.push(m);\n\t            }\n\t        }\n\t    }\n\t    ignored(p) {\n\t        const fullpath = p.fullpath();\n\t        const fullpaths = `${fullpath}/`;\n\t        const relative = p.relative() || '.';\n\t        const relatives = `${relative}/`;\n\t        for (const m of this.relative) {\n\t            if (m.match(relative) || m.match(relatives))\n\t                return true;\n\t        }\n\t        for (const m of this.absolute) {\n\t            if (m.match(fullpath) || m.match(fullpaths))\n\t                return true;\n\t        }\n\t        return false;\n\t    }\n\t    childrenIgnored(p) {\n\t        const fullpath = p.fullpath() + '/';\n\t        const relative = (p.relative() || '.') + '/';\n\t        for (const m of this.relativeChildren) {\n\t            if (m.match(relative))\n\t                return true;\n\t        }\n\t        for (const m of this.absoluteChildren) {\n\t            if (m.match(fullpath))\n\t                return true;\n\t        }\n\t        return false;\n\t    }\n\t}\n\tignore.Ignore = Ignore;\n\t\n\treturn ignore;\n}\n\nvar processor = {};\n\nvar hasRequiredProcessor;\n\nfunction requireProcessor () {\n\tif (hasRequiredProcessor) return processor;\n\thasRequiredProcessor = 1;\n\t// synchronous utility for filtering entries and calculating subwalks\n\tObject.defineProperty(processor, \"__esModule\", { value: true });\n\tprocessor.Processor = processor.SubWalks = processor.MatchRecord = processor.HasWalkedCache = void 0;\n\tconst minimatch_1 = requireCommonjs$4();\n\t/**\n\t * A cache of which patterns have been processed for a given Path\n\t */\n\tclass HasWalkedCache {\n\t    store;\n\t    constructor(store = new Map()) {\n\t        this.store = store;\n\t    }\n\t    copy() {\n\t        return new HasWalkedCache(new Map(this.store));\n\t    }\n\t    hasWalked(target, pattern) {\n\t        return this.store.get(target.fullpath())?.has(pattern.globString());\n\t    }\n\t    storeWalked(target, pattern) {\n\t        const fullpath = target.fullpath();\n\t        const cached = this.store.get(fullpath);\n\t        if (cached)\n\t            cached.add(pattern.globString());\n\t        else\n\t            this.store.set(fullpath, new Set([pattern.globString()]));\n\t    }\n\t}\n\tprocessor.HasWalkedCache = HasWalkedCache;\n\t/**\n\t * A record of which paths have been matched in a given walk step,\n\t * and whether they only are considered a match if they are a directory,\n\t * and whether their absolute or relative path should be returned.\n\t */\n\tclass MatchRecord {\n\t    store = new Map();\n\t    add(target, absolute, ifDir) {\n\t        const n = (absolute ? 2 : 0) | (ifDir ? 1 : 0);\n\t        const current = this.store.get(target);\n\t        this.store.set(target, current === undefined ? n : n & current);\n\t    }\n\t    // match, absolute, ifdir\n\t    entries() {\n\t        return [...this.store.entries()].map(([path, n]) => [\n\t            path,\n\t            !!(n & 2),\n\t            !!(n & 1),\n\t        ]);\n\t    }\n\t}\n\tprocessor.MatchRecord = MatchRecord;\n\t/**\n\t * A collection of patterns that must be processed in a subsequent step\n\t * for a given path.\n\t */\n\tclass SubWalks {\n\t    store = new Map();\n\t    add(target, pattern) {\n\t        if (!target.canReaddir()) {\n\t            return;\n\t        }\n\t        const subs = this.store.get(target);\n\t        if (subs) {\n\t            if (!subs.find(p => p.globString() === pattern.globString())) {\n\t                subs.push(pattern);\n\t            }\n\t        }\n\t        else\n\t            this.store.set(target, [pattern]);\n\t    }\n\t    get(target) {\n\t        const subs = this.store.get(target);\n\t        /* c8 ignore start */\n\t        if (!subs) {\n\t            throw new Error('attempting to walk unknown path');\n\t        }\n\t        /* c8 ignore stop */\n\t        return subs;\n\t    }\n\t    entries() {\n\t        return this.keys().map(k => [k, this.store.get(k)]);\n\t    }\n\t    keys() {\n\t        return [...this.store.keys()].filter(t => t.canReaddir());\n\t    }\n\t}\n\tprocessor.SubWalks = SubWalks;\n\t/**\n\t * The class that processes patterns for a given path.\n\t *\n\t * Handles child entry filtering, and determining whether a path's\n\t * directory contents must be read.\n\t */\n\tclass Processor {\n\t    hasWalkedCache;\n\t    matches = new MatchRecord();\n\t    subwalks = new SubWalks();\n\t    patterns;\n\t    follow;\n\t    dot;\n\t    opts;\n\t    constructor(opts, hasWalkedCache) {\n\t        this.opts = opts;\n\t        this.follow = !!opts.follow;\n\t        this.dot = !!opts.dot;\n\t        this.hasWalkedCache =\n\t            hasWalkedCache ? hasWalkedCache.copy() : new HasWalkedCache();\n\t    }\n\t    processPatterns(target, patterns) {\n\t        this.patterns = patterns;\n\t        const processingSet = patterns.map(p => [target, p]);\n\t        // map of paths to the magic-starting subwalks they need to walk\n\t        // first item in patterns is the filter\n\t        for (let [t, pattern] of processingSet) {\n\t            this.hasWalkedCache.storeWalked(t, pattern);\n\t            const root = pattern.root();\n\t            const absolute = pattern.isAbsolute() && this.opts.absolute !== false;\n\t            // start absolute patterns at root\n\t            if (root) {\n\t                t = t.resolve(root === '/' && this.opts.root !== undefined ?\n\t                    this.opts.root\n\t                    : root);\n\t                const rest = pattern.rest();\n\t                if (!rest) {\n\t                    this.matches.add(t, true, false);\n\t                    continue;\n\t                }\n\t                else {\n\t                    pattern = rest;\n\t                }\n\t            }\n\t            if (t.isENOENT())\n\t                continue;\n\t            let p;\n\t            let rest;\n\t            let changed = false;\n\t            while (typeof (p = pattern.pattern()) === 'string' &&\n\t                (rest = pattern.rest())) {\n\t                const c = t.resolve(p);\n\t                t = c;\n\t                pattern = rest;\n\t                changed = true;\n\t            }\n\t            p = pattern.pattern();\n\t            rest = pattern.rest();\n\t            if (changed) {\n\t                if (this.hasWalkedCache.hasWalked(t, pattern))\n\t                    continue;\n\t                this.hasWalkedCache.storeWalked(t, pattern);\n\t            }\n\t            // now we have either a final string for a known entry,\n\t            // more strings for an unknown entry,\n\t            // or a pattern starting with magic, mounted on t.\n\t            if (typeof p === 'string') {\n\t                // must not be final entry, otherwise we would have\n\t                // concatenated it earlier.\n\t                const ifDir = p === '..' || p === '' || p === '.';\n\t                this.matches.add(t.resolve(p), absolute, ifDir);\n\t                continue;\n\t            }\n\t            else if (p === minimatch_1.GLOBSTAR) {\n\t                // if no rest, match and subwalk pattern\n\t                // if rest, process rest and subwalk pattern\n\t                // if it's a symlink, but we didn't get here by way of a\n\t                // globstar match (meaning it's the first time THIS globstar\n\t                // has traversed a symlink), then we follow it. Otherwise, stop.\n\t                if (!t.isSymbolicLink() ||\n\t                    this.follow ||\n\t                    pattern.checkFollowGlobstar()) {\n\t                    this.subwalks.add(t, pattern);\n\t                }\n\t                const rp = rest?.pattern();\n\t                const rrest = rest?.rest();\n\t                if (!rest || ((rp === '' || rp === '.') && !rrest)) {\n\t                    // only HAS to be a dir if it ends in **/ or **/.\n\t                    // but ending in ** will match files as well.\n\t                    this.matches.add(t, absolute, rp === '' || rp === '.');\n\t                }\n\t                else {\n\t                    if (rp === '..') {\n\t                        // this would mean you're matching **/.. at the fs root,\n\t                        // and no thanks, I'm not gonna test that specific case.\n\t                        /* c8 ignore start */\n\t                        const tp = t.parent || t;\n\t                        /* c8 ignore stop */\n\t                        if (!rrest)\n\t                            this.matches.add(tp, absolute, true);\n\t                        else if (!this.hasWalkedCache.hasWalked(tp, rrest)) {\n\t                            this.subwalks.add(tp, rrest);\n\t                        }\n\t                    }\n\t                }\n\t            }\n\t            else if (p instanceof RegExp) {\n\t                this.subwalks.add(t, pattern);\n\t            }\n\t        }\n\t        return this;\n\t    }\n\t    subwalkTargets() {\n\t        return this.subwalks.keys();\n\t    }\n\t    child() {\n\t        return new Processor(this.opts, this.hasWalkedCache);\n\t    }\n\t    // return a new Processor containing the subwalks for each\n\t    // child entry, and a set of matches, and\n\t    // a hasWalkedCache that's a copy of this one\n\t    // then we're going to call\n\t    filterEntries(parent, entries) {\n\t        const patterns = this.subwalks.get(parent);\n\t        // put matches and entry walks into the results processor\n\t        const results = this.child();\n\t        for (const e of entries) {\n\t            for (const pattern of patterns) {\n\t                const absolute = pattern.isAbsolute();\n\t                const p = pattern.pattern();\n\t                const rest = pattern.rest();\n\t                if (p === minimatch_1.GLOBSTAR) {\n\t                    results.testGlobstar(e, pattern, rest, absolute);\n\t                }\n\t                else if (p instanceof RegExp) {\n\t                    results.testRegExp(e, p, rest, absolute);\n\t                }\n\t                else {\n\t                    results.testString(e, p, rest, absolute);\n\t                }\n\t            }\n\t        }\n\t        return results;\n\t    }\n\t    testGlobstar(e, pattern, rest, absolute) {\n\t        if (this.dot || !e.name.startsWith('.')) {\n\t            if (!pattern.hasMore()) {\n\t                this.matches.add(e, absolute, false);\n\t            }\n\t            if (e.canReaddir()) {\n\t                // if we're in follow mode or it's not a symlink, just keep\n\t                // testing the same pattern. If there's more after the globstar,\n\t                // then this symlink consumes the globstar. If not, then we can\n\t                // follow at most ONE symlink along the way, so we mark it, which\n\t                // also checks to ensure that it wasn't already marked.\n\t                if (this.follow || !e.isSymbolicLink()) {\n\t                    this.subwalks.add(e, pattern);\n\t                }\n\t                else if (e.isSymbolicLink()) {\n\t                    if (rest && pattern.checkFollowGlobstar()) {\n\t                        this.subwalks.add(e, rest);\n\t                    }\n\t                    else if (pattern.markFollowGlobstar()) {\n\t                        this.subwalks.add(e, pattern);\n\t                    }\n\t                }\n\t            }\n\t        }\n\t        // if the NEXT thing matches this entry, then also add\n\t        // the rest.\n\t        if (rest) {\n\t            const rp = rest.pattern();\n\t            if (typeof rp === 'string' &&\n\t                // dots and empty were handled already\n\t                rp !== '..' &&\n\t                rp !== '' &&\n\t                rp !== '.') {\n\t                this.testString(e, rp, rest.rest(), absolute);\n\t            }\n\t            else if (rp === '..') {\n\t                /* c8 ignore start */\n\t                const ep = e.parent || e;\n\t                /* c8 ignore stop */\n\t                this.subwalks.add(ep, rest);\n\t            }\n\t            else if (rp instanceof RegExp) {\n\t                this.testRegExp(e, rp, rest.rest(), absolute);\n\t            }\n\t        }\n\t    }\n\t    testRegExp(e, p, rest, absolute) {\n\t        if (!p.test(e.name))\n\t            return;\n\t        if (!rest) {\n\t            this.matches.add(e, absolute, false);\n\t        }\n\t        else {\n\t            this.subwalks.add(e, rest);\n\t        }\n\t    }\n\t    testString(e, p, rest, absolute) {\n\t        // should never happen?\n\t        if (!e.isNamed(p))\n\t            return;\n\t        if (!rest) {\n\t            this.matches.add(e, absolute, false);\n\t        }\n\t        else {\n\t            this.subwalks.add(e, rest);\n\t        }\n\t    }\n\t}\n\tprocessor.Processor = Processor;\n\t\n\treturn processor;\n}\n\nvar hasRequiredWalker;\n\nfunction requireWalker () {\n\tif (hasRequiredWalker) return walker;\n\thasRequiredWalker = 1;\n\tObject.defineProperty(walker, \"__esModule\", { value: true });\n\twalker.GlobStream = walker.GlobWalker = walker.GlobUtil = void 0;\n\t/**\n\t * Single-use utility classes to provide functionality to the {@link Glob}\n\t * methods.\n\t *\n\t * @module\n\t */\n\tconst minipass_1 = requireCommonjs$2();\n\tconst ignore_js_1 = requireIgnore();\n\tconst processor_js_1 = requireProcessor();\n\tconst makeIgnore = (ignore, opts) => typeof ignore === 'string' ? new ignore_js_1.Ignore([ignore], opts)\n\t    : Array.isArray(ignore) ? new ignore_js_1.Ignore(ignore, opts)\n\t        : ignore;\n\t/**\n\t * basic walking utilities that all the glob walker types use\n\t */\n\tclass GlobUtil {\n\t    path;\n\t    patterns;\n\t    opts;\n\t    seen = new Set();\n\t    paused = false;\n\t    aborted = false;\n\t    #onResume = [];\n\t    #ignore;\n\t    #sep;\n\t    signal;\n\t    maxDepth;\n\t    includeChildMatches;\n\t    constructor(patterns, path, opts) {\n\t        this.patterns = patterns;\n\t        this.path = path;\n\t        this.opts = opts;\n\t        this.#sep = !opts.posix && opts.platform === 'win32' ? '\\\\' : '/';\n\t        this.includeChildMatches = opts.includeChildMatches !== false;\n\t        if (opts.ignore || !this.includeChildMatches) {\n\t            this.#ignore = makeIgnore(opts.ignore ?? [], opts);\n\t            if (!this.includeChildMatches &&\n\t                typeof this.#ignore.add !== 'function') {\n\t                const m = 'cannot ignore child matches, ignore lacks add() method.';\n\t                throw new Error(m);\n\t            }\n\t        }\n\t        // ignore, always set with maxDepth, but it's optional on the\n\t        // GlobOptions type\n\t        /* c8 ignore start */\n\t        this.maxDepth = opts.maxDepth || Infinity;\n\t        /* c8 ignore stop */\n\t        if (opts.signal) {\n\t            this.signal = opts.signal;\n\t            this.signal.addEventListener('abort', () => {\n\t                this.#onResume.length = 0;\n\t            });\n\t        }\n\t    }\n\t    #ignored(path) {\n\t        return this.seen.has(path) || !!this.#ignore?.ignored?.(path);\n\t    }\n\t    #childrenIgnored(path) {\n\t        return !!this.#ignore?.childrenIgnored?.(path);\n\t    }\n\t    // backpressure mechanism\n\t    pause() {\n\t        this.paused = true;\n\t    }\n\t    resume() {\n\t        /* c8 ignore start */\n\t        if (this.signal?.aborted)\n\t            return;\n\t        /* c8 ignore stop */\n\t        this.paused = false;\n\t        let fn = undefined;\n\t        while (!this.paused && (fn = this.#onResume.shift())) {\n\t            fn();\n\t        }\n\t    }\n\t    onResume(fn) {\n\t        if (this.signal?.aborted)\n\t            return;\n\t        /* c8 ignore start */\n\t        if (!this.paused) {\n\t            fn();\n\t        }\n\t        else {\n\t            /* c8 ignore stop */\n\t            this.#onResume.push(fn);\n\t        }\n\t    }\n\t    // do the requisite realpath/stat checking, and return the path\n\t    // to add or undefined to filter it out.\n\t    async matchCheck(e, ifDir) {\n\t        if (ifDir && this.opts.nodir)\n\t            return undefined;\n\t        let rpc;\n\t        if (this.opts.realpath) {\n\t            rpc = e.realpathCached() || (await e.realpath());\n\t            if (!rpc)\n\t                return undefined;\n\t            e = rpc;\n\t        }\n\t        const needStat = e.isUnknown() || this.opts.stat;\n\t        const s = needStat ? await e.lstat() : e;\n\t        if (this.opts.follow && this.opts.nodir && s?.isSymbolicLink()) {\n\t            const target = await s.realpath();\n\t            /* c8 ignore start */\n\t            if (target && (target.isUnknown() || this.opts.stat)) {\n\t                await target.lstat();\n\t            }\n\t            /* c8 ignore stop */\n\t        }\n\t        return this.matchCheckTest(s, ifDir);\n\t    }\n\t    matchCheckTest(e, ifDir) {\n\t        return (e &&\n\t            (this.maxDepth === Infinity || e.depth() <= this.maxDepth) &&\n\t            (!ifDir || e.canReaddir()) &&\n\t            (!this.opts.nodir || !e.isDirectory()) &&\n\t            (!this.opts.nodir ||\n\t                !this.opts.follow ||\n\t                !e.isSymbolicLink() ||\n\t                !e.realpathCached()?.isDirectory()) &&\n\t            !this.#ignored(e)) ?\n\t            e\n\t            : undefined;\n\t    }\n\t    matchCheckSync(e, ifDir) {\n\t        if (ifDir && this.opts.nodir)\n\t            return undefined;\n\t        let rpc;\n\t        if (this.opts.realpath) {\n\t            rpc = e.realpathCached() || e.realpathSync();\n\t            if (!rpc)\n\t                return undefined;\n\t            e = rpc;\n\t        }\n\t        const needStat = e.isUnknown() || this.opts.stat;\n\t        const s = needStat ? e.lstatSync() : e;\n\t        if (this.opts.follow && this.opts.nodir && s?.isSymbolicLink()) {\n\t            const target = s.realpathSync();\n\t            if (target && (target?.isUnknown() || this.opts.stat)) {\n\t                target.lstatSync();\n\t            }\n\t        }\n\t        return this.matchCheckTest(s, ifDir);\n\t    }\n\t    matchFinish(e, absolute) {\n\t        if (this.#ignored(e))\n\t            return;\n\t        // we know we have an ignore if this is false, but TS doesn't\n\t        if (!this.includeChildMatches && this.#ignore?.add) {\n\t            const ign = `${e.relativePosix()}/**`;\n\t            this.#ignore.add(ign);\n\t        }\n\t        const abs = this.opts.absolute === undefined ? absolute : this.opts.absolute;\n\t        this.seen.add(e);\n\t        const mark = this.opts.mark && e.isDirectory() ? this.#sep : '';\n\t        // ok, we have what we need!\n\t        if (this.opts.withFileTypes) {\n\t            this.matchEmit(e);\n\t        }\n\t        else if (abs) {\n\t            const abs = this.opts.posix ? e.fullpathPosix() : e.fullpath();\n\t            this.matchEmit(abs + mark);\n\t        }\n\t        else {\n\t            const rel = this.opts.posix ? e.relativePosix() : e.relative();\n\t            const pre = this.opts.dotRelative && !rel.startsWith('..' + this.#sep) ?\n\t                '.' + this.#sep\n\t                : '';\n\t            this.matchEmit(!rel ? '.' + mark : pre + rel + mark);\n\t        }\n\t    }\n\t    async match(e, absolute, ifDir) {\n\t        const p = await this.matchCheck(e, ifDir);\n\t        if (p)\n\t            this.matchFinish(p, absolute);\n\t    }\n\t    matchSync(e, absolute, ifDir) {\n\t        const p = this.matchCheckSync(e, ifDir);\n\t        if (p)\n\t            this.matchFinish(p, absolute);\n\t    }\n\t    walkCB(target, patterns, cb) {\n\t        /* c8 ignore start */\n\t        if (this.signal?.aborted)\n\t            cb();\n\t        /* c8 ignore stop */\n\t        this.walkCB2(target, patterns, new processor_js_1.Processor(this.opts), cb);\n\t    }\n\t    walkCB2(target, patterns, processor, cb) {\n\t        if (this.#childrenIgnored(target))\n\t            return cb();\n\t        if (this.signal?.aborted)\n\t            cb();\n\t        if (this.paused) {\n\t            this.onResume(() => this.walkCB2(target, patterns, processor, cb));\n\t            return;\n\t        }\n\t        processor.processPatterns(target, patterns);\n\t        // done processing.  all of the above is sync, can be abstracted out.\n\t        // subwalks is a map of paths to the entry filters they need\n\t        // matches is a map of paths to [absolute, ifDir] tuples.\n\t        let tasks = 1;\n\t        const next = () => {\n\t            if (--tasks === 0)\n\t                cb();\n\t        };\n\t        for (const [m, absolute, ifDir] of processor.matches.entries()) {\n\t            if (this.#ignored(m))\n\t                continue;\n\t            tasks++;\n\t            this.match(m, absolute, ifDir).then(() => next());\n\t        }\n\t        for (const t of processor.subwalkTargets()) {\n\t            if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {\n\t                continue;\n\t            }\n\t            tasks++;\n\t            const childrenCached = t.readdirCached();\n\t            if (t.calledReaddir())\n\t                this.walkCB3(t, childrenCached, processor, next);\n\t            else {\n\t                t.readdirCB((_, entries) => this.walkCB3(t, entries, processor, next), true);\n\t            }\n\t        }\n\t        next();\n\t    }\n\t    walkCB3(target, entries, processor, cb) {\n\t        processor = processor.filterEntries(target, entries);\n\t        let tasks = 1;\n\t        const next = () => {\n\t            if (--tasks === 0)\n\t                cb();\n\t        };\n\t        for (const [m, absolute, ifDir] of processor.matches.entries()) {\n\t            if (this.#ignored(m))\n\t                continue;\n\t            tasks++;\n\t            this.match(m, absolute, ifDir).then(() => next());\n\t        }\n\t        for (const [target, patterns] of processor.subwalks.entries()) {\n\t            tasks++;\n\t            this.walkCB2(target, patterns, processor.child(), next);\n\t        }\n\t        next();\n\t    }\n\t    walkCBSync(target, patterns, cb) {\n\t        /* c8 ignore start */\n\t        if (this.signal?.aborted)\n\t            cb();\n\t        /* c8 ignore stop */\n\t        this.walkCB2Sync(target, patterns, new processor_js_1.Processor(this.opts), cb);\n\t    }\n\t    walkCB2Sync(target, patterns, processor, cb) {\n\t        if (this.#childrenIgnored(target))\n\t            return cb();\n\t        if (this.signal?.aborted)\n\t            cb();\n\t        if (this.paused) {\n\t            this.onResume(() => this.walkCB2Sync(target, patterns, processor, cb));\n\t            return;\n\t        }\n\t        processor.processPatterns(target, patterns);\n\t        // done processing.  all of the above is sync, can be abstracted out.\n\t        // subwalks is a map of paths to the entry filters they need\n\t        // matches is a map of paths to [absolute, ifDir] tuples.\n\t        let tasks = 1;\n\t        const next = () => {\n\t            if (--tasks === 0)\n\t                cb();\n\t        };\n\t        for (const [m, absolute, ifDir] of processor.matches.entries()) {\n\t            if (this.#ignored(m))\n\t                continue;\n\t            this.matchSync(m, absolute, ifDir);\n\t        }\n\t        for (const t of processor.subwalkTargets()) {\n\t            if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {\n\t                continue;\n\t            }\n\t            tasks++;\n\t            const children = t.readdirSync();\n\t            this.walkCB3Sync(t, children, processor, next);\n\t        }\n\t        next();\n\t    }\n\t    walkCB3Sync(target, entries, processor, cb) {\n\t        processor = processor.filterEntries(target, entries);\n\t        let tasks = 1;\n\t        const next = () => {\n\t            if (--tasks === 0)\n\t                cb();\n\t        };\n\t        for (const [m, absolute, ifDir] of processor.matches.entries()) {\n\t            if (this.#ignored(m))\n\t                continue;\n\t            this.matchSync(m, absolute, ifDir);\n\t        }\n\t        for (const [target, patterns] of processor.subwalks.entries()) {\n\t            tasks++;\n\t            this.walkCB2Sync(target, patterns, processor.child(), next);\n\t        }\n\t        next();\n\t    }\n\t}\n\twalker.GlobUtil = GlobUtil;\n\tclass GlobWalker extends GlobUtil {\n\t    matches = new Set();\n\t    constructor(patterns, path, opts) {\n\t        super(patterns, path, opts);\n\t    }\n\t    matchEmit(e) {\n\t        this.matches.add(e);\n\t    }\n\t    async walk() {\n\t        if (this.signal?.aborted)\n\t            throw this.signal.reason;\n\t        if (this.path.isUnknown()) {\n\t            await this.path.lstat();\n\t        }\n\t        await new Promise((res, rej) => {\n\t            this.walkCB(this.path, this.patterns, () => {\n\t                if (this.signal?.aborted) {\n\t                    rej(this.signal.reason);\n\t                }\n\t                else {\n\t                    res(this.matches);\n\t                }\n\t            });\n\t        });\n\t        return this.matches;\n\t    }\n\t    walkSync() {\n\t        if (this.signal?.aborted)\n\t            throw this.signal.reason;\n\t        if (this.path.isUnknown()) {\n\t            this.path.lstatSync();\n\t        }\n\t        // nothing for the callback to do, because this never pauses\n\t        this.walkCBSync(this.path, this.patterns, () => {\n\t            if (this.signal?.aborted)\n\t                throw this.signal.reason;\n\t        });\n\t        return this.matches;\n\t    }\n\t}\n\twalker.GlobWalker = GlobWalker;\n\tclass GlobStream extends GlobUtil {\n\t    results;\n\t    constructor(patterns, path, opts) {\n\t        super(patterns, path, opts);\n\t        this.results = new minipass_1.Minipass({\n\t            signal: this.signal,\n\t            objectMode: true,\n\t        });\n\t        this.results.on('drain', () => this.resume());\n\t        this.results.on('resume', () => this.resume());\n\t    }\n\t    matchEmit(e) {\n\t        this.results.write(e);\n\t        if (!this.results.flowing)\n\t            this.pause();\n\t    }\n\t    stream() {\n\t        const target = this.path;\n\t        if (target.isUnknown()) {\n\t            target.lstat().then(() => {\n\t                this.walkCB(target, this.patterns, () => this.results.end());\n\t            });\n\t        }\n\t        else {\n\t            this.walkCB(target, this.patterns, () => this.results.end());\n\t        }\n\t        return this.results;\n\t    }\n\t    streamSync() {\n\t        if (this.path.isUnknown()) {\n\t            this.path.lstatSync();\n\t        }\n\t        this.walkCBSync(this.path, this.patterns, () => this.results.end());\n\t        return this.results;\n\t    }\n\t}\n\twalker.GlobStream = GlobStream;\n\t\n\treturn walker;\n}\n\nvar hasRequiredGlob;\n\nfunction requireGlob () {\n\tif (hasRequiredGlob) return glob;\n\thasRequiredGlob = 1;\n\tObject.defineProperty(glob, \"__esModule\", { value: true });\n\tglob.Glob = void 0;\n\tconst minimatch_1 = requireCommonjs$4();\n\tconst node_url_1 = require$$2$7;\n\tconst path_scurry_1 = requireCommonjs$1();\n\tconst pattern_js_1 = requirePattern();\n\tconst walker_js_1 = requireWalker();\n\t// if no process global, just call it linux.\n\t// so we default to case-sensitive, / separators\n\tconst defaultPlatform = (typeof process === 'object' &&\n\t    process &&\n\t    typeof process.platform === 'string') ?\n\t    process.platform\n\t    : 'linux';\n\t/**\n\t * An object that can perform glob pattern traversals.\n\t */\n\tclass Glob {\n\t    absolute;\n\t    cwd;\n\t    root;\n\t    dot;\n\t    dotRelative;\n\t    follow;\n\t    ignore;\n\t    magicalBraces;\n\t    mark;\n\t    matchBase;\n\t    maxDepth;\n\t    nobrace;\n\t    nocase;\n\t    nodir;\n\t    noext;\n\t    noglobstar;\n\t    pattern;\n\t    platform;\n\t    realpath;\n\t    scurry;\n\t    stat;\n\t    signal;\n\t    windowsPathsNoEscape;\n\t    withFileTypes;\n\t    includeChildMatches;\n\t    /**\n\t     * The options provided to the constructor.\n\t     */\n\t    opts;\n\t    /**\n\t     * An array of parsed immutable {@link Pattern} objects.\n\t     */\n\t    patterns;\n\t    /**\n\t     * All options are stored as properties on the `Glob` object.\n\t     *\n\t     * See {@link GlobOptions} for full options descriptions.\n\t     *\n\t     * Note that a previous `Glob` object can be passed as the\n\t     * `GlobOptions` to another `Glob` instantiation to re-use settings\n\t     * and caches with a new pattern.\n\t     *\n\t     * Traversal functions can be called multiple times to run the walk\n\t     * again.\n\t     */\n\t    constructor(pattern, opts) {\n\t        /* c8 ignore start */\n\t        if (!opts)\n\t            throw new TypeError('glob options required');\n\t        /* c8 ignore stop */\n\t        this.withFileTypes = !!opts.withFileTypes;\n\t        this.signal = opts.signal;\n\t        this.follow = !!opts.follow;\n\t        this.dot = !!opts.dot;\n\t        this.dotRelative = !!opts.dotRelative;\n\t        this.nodir = !!opts.nodir;\n\t        this.mark = !!opts.mark;\n\t        if (!opts.cwd) {\n\t            this.cwd = '';\n\t        }\n\t        else if (opts.cwd instanceof URL || opts.cwd.startsWith('file://')) {\n\t            opts.cwd = (0, node_url_1.fileURLToPath)(opts.cwd);\n\t        }\n\t        this.cwd = opts.cwd || '';\n\t        this.root = opts.root;\n\t        this.magicalBraces = !!opts.magicalBraces;\n\t        this.nobrace = !!opts.nobrace;\n\t        this.noext = !!opts.noext;\n\t        this.realpath = !!opts.realpath;\n\t        this.absolute = opts.absolute;\n\t        this.includeChildMatches = opts.includeChildMatches !== false;\n\t        this.noglobstar = !!opts.noglobstar;\n\t        this.matchBase = !!opts.matchBase;\n\t        this.maxDepth =\n\t            typeof opts.maxDepth === 'number' ? opts.maxDepth : Infinity;\n\t        this.stat = !!opts.stat;\n\t        this.ignore = opts.ignore;\n\t        if (this.withFileTypes && this.absolute !== undefined) {\n\t            throw new Error('cannot set absolute and withFileTypes:true');\n\t        }\n\t        if (typeof pattern === 'string') {\n\t            pattern = [pattern];\n\t        }\n\t        this.windowsPathsNoEscape =\n\t            !!opts.windowsPathsNoEscape ||\n\t                opts.allowWindowsEscape ===\n\t                    false;\n\t        if (this.windowsPathsNoEscape) {\n\t            pattern = pattern.map(p => p.replace(/\\\\/g, '/'));\n\t        }\n\t        if (this.matchBase) {\n\t            if (opts.noglobstar) {\n\t                throw new TypeError('base matching requires globstar');\n\t            }\n\t            pattern = pattern.map(p => (p.includes('/') ? p : `./**/${p}`));\n\t        }\n\t        this.pattern = pattern;\n\t        this.platform = opts.platform || defaultPlatform;\n\t        this.opts = { ...opts, platform: this.platform };\n\t        if (opts.scurry) {\n\t            this.scurry = opts.scurry;\n\t            if (opts.nocase !== undefined &&\n\t                opts.nocase !== opts.scurry.nocase) {\n\t                throw new Error('nocase option contradicts provided scurry option');\n\t            }\n\t        }\n\t        else {\n\t            const Scurry = opts.platform === 'win32' ? path_scurry_1.PathScurryWin32\n\t                : opts.platform === 'darwin' ? path_scurry_1.PathScurryDarwin\n\t                    : opts.platform ? path_scurry_1.PathScurryPosix\n\t                        : path_scurry_1.PathScurry;\n\t            this.scurry = new Scurry(this.cwd, {\n\t                nocase: opts.nocase,\n\t                fs: opts.fs,\n\t            });\n\t        }\n\t        this.nocase = this.scurry.nocase;\n\t        // If you do nocase:true on a case-sensitive file system, then\n\t        // we need to use regexps instead of strings for non-magic\n\t        // path portions, because statting `aBc` won't return results\n\t        // for the file `AbC` for example.\n\t        const nocaseMagicOnly = this.platform === 'darwin' || this.platform === 'win32';\n\t        const mmo = {\n\t            // default nocase based on platform\n\t            ...opts,\n\t            dot: this.dot,\n\t            matchBase: this.matchBase,\n\t            nobrace: this.nobrace,\n\t            nocase: this.nocase,\n\t            nocaseMagicOnly,\n\t            nocomment: true,\n\t            noext: this.noext,\n\t            nonegate: true,\n\t            optimizationLevel: 2,\n\t            platform: this.platform,\n\t            windowsPathsNoEscape: this.windowsPathsNoEscape,\n\t            debug: !!this.opts.debug,\n\t        };\n\t        const mms = this.pattern.map(p => new minimatch_1.Minimatch(p, mmo));\n\t        const [matchSet, globParts] = mms.reduce((set, m) => {\n\t            set[0].push(...m.set);\n\t            set[1].push(...m.globParts);\n\t            return set;\n\t        }, [[], []]);\n\t        this.patterns = matchSet.map((set, i) => {\n\t            const g = globParts[i];\n\t            /* c8 ignore start */\n\t            if (!g)\n\t                throw new Error('invalid pattern object');\n\t            /* c8 ignore stop */\n\t            return new pattern_js_1.Pattern(set, g, 0, this.platform);\n\t        });\n\t    }\n\t    async walk() {\n\t        // Walkers always return array of Path objects, so we just have to\n\t        // coerce them into the right shape.  It will have already called\n\t        // realpath() if the option was set to do so, so we know that's cached.\n\t        // start out knowing the cwd, at least\n\t        return [\n\t            ...(await new walker_js_1.GlobWalker(this.patterns, this.scurry.cwd, {\n\t                ...this.opts,\n\t                maxDepth: this.maxDepth !== Infinity ?\n\t                    this.maxDepth + this.scurry.cwd.depth()\n\t                    : Infinity,\n\t                platform: this.platform,\n\t                nocase: this.nocase,\n\t                includeChildMatches: this.includeChildMatches,\n\t            }).walk()),\n\t        ];\n\t    }\n\t    walkSync() {\n\t        return [\n\t            ...new walker_js_1.GlobWalker(this.patterns, this.scurry.cwd, {\n\t                ...this.opts,\n\t                maxDepth: this.maxDepth !== Infinity ?\n\t                    this.maxDepth + this.scurry.cwd.depth()\n\t                    : Infinity,\n\t                platform: this.platform,\n\t                nocase: this.nocase,\n\t                includeChildMatches: this.includeChildMatches,\n\t            }).walkSync(),\n\t        ];\n\t    }\n\t    stream() {\n\t        return new walker_js_1.GlobStream(this.patterns, this.scurry.cwd, {\n\t            ...this.opts,\n\t            maxDepth: this.maxDepth !== Infinity ?\n\t                this.maxDepth + this.scurry.cwd.depth()\n\t                : Infinity,\n\t            platform: this.platform,\n\t            nocase: this.nocase,\n\t            includeChildMatches: this.includeChildMatches,\n\t        }).stream();\n\t    }\n\t    streamSync() {\n\t        return new walker_js_1.GlobStream(this.patterns, this.scurry.cwd, {\n\t            ...this.opts,\n\t            maxDepth: this.maxDepth !== Infinity ?\n\t                this.maxDepth + this.scurry.cwd.depth()\n\t                : Infinity,\n\t            platform: this.platform,\n\t            nocase: this.nocase,\n\t            includeChildMatches: this.includeChildMatches,\n\t        }).streamSync();\n\t    }\n\t    /**\n\t     * Default sync iteration function. Returns a Generator that\n\t     * iterates over the results.\n\t     */\n\t    iterateSync() {\n\t        return this.streamSync()[Symbol.iterator]();\n\t    }\n\t    [Symbol.iterator]() {\n\t        return this.iterateSync();\n\t    }\n\t    /**\n\t     * Default async iteration function. Returns an AsyncGenerator that\n\t     * iterates over the results.\n\t     */\n\t    iterate() {\n\t        return this.stream()[Symbol.asyncIterator]();\n\t    }\n\t    [Symbol.asyncIterator]() {\n\t        return this.iterate();\n\t    }\n\t}\n\tglob.Glob = Glob;\n\t\n\treturn glob;\n}\n\nvar hasMagic = {};\n\nvar hasRequiredHasMagic;\n\nfunction requireHasMagic () {\n\tif (hasRequiredHasMagic) return hasMagic;\n\thasRequiredHasMagic = 1;\n\tObject.defineProperty(hasMagic, \"__esModule\", { value: true });\n\thasMagic.hasMagic = void 0;\n\tconst minimatch_1 = requireCommonjs$4();\n\t/**\n\t * Return true if the patterns provided contain any magic glob characters,\n\t * given the options provided.\n\t *\n\t * Brace expansion is not considered \"magic\" unless the `magicalBraces` option\n\t * is set, as brace expansion just turns one string into an array of strings.\n\t * So a pattern like `'x{a,b}y'` would return `false`, because `'xay'` and\n\t * `'xby'` both do not contain any magic glob characters, and it's treated the\n\t * same as if you had called it on `['xay', 'xby']`. When `magicalBraces:true`\n\t * is in the options, brace expansion _is_ treated as a pattern having magic.\n\t */\n\tconst hasMagic$1 = (pattern, options = {}) => {\n\t    if (!Array.isArray(pattern)) {\n\t        pattern = [pattern];\n\t    }\n\t    for (const p of pattern) {\n\t        if (new minimatch_1.Minimatch(p, options).hasMagic())\n\t            return true;\n\t    }\n\t    return false;\n\t};\n\thasMagic.hasMagic = hasMagic$1;\n\t\n\treturn hasMagic;\n}\n\nvar hasRequiredCommonjs;\n\nfunction requireCommonjs () {\n\tif (hasRequiredCommonjs) return commonjs$4;\n\thasRequiredCommonjs = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.glob = exports.sync = exports.iterate = exports.iterateSync = exports.stream = exports.streamSync = exports.Ignore = exports.hasMagic = exports.Glob = exports.unescape = exports.escape = void 0;\n\t\texports.globStreamSync = globStreamSync;\n\t\texports.globStream = globStream;\n\t\texports.globSync = globSync;\n\t\texports.globIterateSync = globIterateSync;\n\t\texports.globIterate = globIterate;\n\t\tconst minimatch_1 = requireCommonjs$4();\n\t\tconst glob_js_1 = requireGlob();\n\t\tconst has_magic_js_1 = requireHasMagic();\n\t\tvar minimatch_2 = requireCommonjs$4();\n\t\tObject.defineProperty(exports, \"escape\", { enumerable: true, get: function () { return minimatch_2.escape; } });\n\t\tObject.defineProperty(exports, \"unescape\", { enumerable: true, get: function () { return minimatch_2.unescape; } });\n\t\tvar glob_js_2 = requireGlob();\n\t\tObject.defineProperty(exports, \"Glob\", { enumerable: true, get: function () { return glob_js_2.Glob; } });\n\t\tvar has_magic_js_2 = requireHasMagic();\n\t\tObject.defineProperty(exports, \"hasMagic\", { enumerable: true, get: function () { return has_magic_js_2.hasMagic; } });\n\t\tvar ignore_js_1 = requireIgnore();\n\t\tObject.defineProperty(exports, \"Ignore\", { enumerable: true, get: function () { return ignore_js_1.Ignore; } });\n\t\tfunction globStreamSync(pattern, options = {}) {\n\t\t    return new glob_js_1.Glob(pattern, options).streamSync();\n\t\t}\n\t\tfunction globStream(pattern, options = {}) {\n\t\t    return new glob_js_1.Glob(pattern, options).stream();\n\t\t}\n\t\tfunction globSync(pattern, options = {}) {\n\t\t    return new glob_js_1.Glob(pattern, options).walkSync();\n\t\t}\n\t\tasync function glob_(pattern, options = {}) {\n\t\t    return new glob_js_1.Glob(pattern, options).walk();\n\t\t}\n\t\tfunction globIterateSync(pattern, options = {}) {\n\t\t    return new glob_js_1.Glob(pattern, options).iterateSync();\n\t\t}\n\t\tfunction globIterate(pattern, options = {}) {\n\t\t    return new glob_js_1.Glob(pattern, options).iterate();\n\t\t}\n\t\t// aliases: glob.sync.stream() glob.stream.sync() glob.sync() etc\n\t\texports.streamSync = globStreamSync;\n\t\texports.stream = Object.assign(globStream, { sync: globStreamSync });\n\t\texports.iterateSync = globIterateSync;\n\t\texports.iterate = Object.assign(globIterate, {\n\t\t    sync: globIterateSync,\n\t\t});\n\t\texports.sync = Object.assign(globSync, {\n\t\t    stream: globStreamSync,\n\t\t    iterate: globIterateSync,\n\t\t});\n\t\texports.glob = Object.assign(glob_, {\n\t\t    glob: glob_,\n\t\t    globSync,\n\t\t    sync: exports.sync,\n\t\t    globStream,\n\t\t    stream: exports.stream,\n\t\t    globStreamSync,\n\t\t    streamSync: exports.streamSync,\n\t\t    globIterate,\n\t\t    iterate: exports.iterate,\n\t\t    globIterateSync,\n\t\t    iterateSync: exports.iterateSync,\n\t\t    Glob: glob_js_1.Glob,\n\t\t    hasMagic: has_magic_js_1.hasMagic,\n\t\t    escape: minimatch_1.escape,\n\t\t    unescape: minimatch_1.unescape,\n\t\t});\n\t\texports.glob.glob = exports.glob;\n\t\t\n\t} (commonjs$4));\n\treturn commonjs$4;\n}\n\n/**\n * archiver-utils\n *\n * Copyright (c) 2012-2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-archiver/blob/master/LICENSE-MIT\n */\n\nvar hasRequiredFile;\n\nfunction requireFile () {\n\tif (hasRequiredFile) return file.exports;\n\thasRequiredFile = 1;\n\tvar fs = requireGracefulFs();\n\tvar path = require$$1__default;\n\n\tvar flatten = requireFlatten();\n\tvar difference = requireDifference();\n\tvar union = requireUnion();\n\tvar isPlainObject = requireIsPlainObject();\n\n\tvar glob = requireCommonjs();\n\n\tvar file$1 = file.exports = {};\n\n\tvar pathSeparatorRe = /[\\/\\\\]/g;\n\n\t// Process specified wildcard glob patterns or filenames against a\n\t// callback, excluding and uniquing files in the result set.\n\tvar processPatterns = function(patterns, fn) {\n\t  // Filepaths to return.\n\t  var result = [];\n\t  // Iterate over flattened patterns array.\n\t  flatten(patterns).forEach(function(pattern) {\n\t    // If the first character is ! it should be omitted\n\t    var exclusion = pattern.indexOf('!') === 0;\n\t    // If the pattern is an exclusion, remove the !\n\t    if (exclusion) { pattern = pattern.slice(1); }\n\t    // Find all matching files for this pattern.\n\t    var matches = fn(pattern);\n\t    if (exclusion) {\n\t      // If an exclusion, remove matching files.\n\t      result = difference(result, matches);\n\t    } else {\n\t      // Otherwise add matching files.\n\t      result = union(result, matches);\n\t    }\n\t  });\n\t  return result;\n\t};\n\n\t// True if the file path exists.\n\tfile$1.exists = function() {\n\t  var filepath = path.join.apply(path, arguments);\n\t  return fs.existsSync(filepath);\n\t};\n\n\t// Return an array of all file paths that match the given wildcard patterns.\n\tfile$1.expand = function(...args) {\n\t  // If the first argument is an options object, save those options to pass\n\t  // into the File.prototype.glob.sync method.\n\t  var options = isPlainObject(args[0]) ? args.shift() : {};\n\t  // Use the first argument if it's an Array, otherwise convert the arguments\n\t  // object to an array and use that.\n\t  var patterns = Array.isArray(args[0]) ? args[0] : args;\n\t  // Return empty set if there are no patterns or filepaths.\n\t  if (patterns.length === 0) { return []; }\n\t  // Return all matching filepaths.\n\t  var matches = processPatterns(patterns, function(pattern) {\n\t    // Find all matching files for this pattern.\n\t    return glob.sync(pattern, options);\n\t  });\n\t  // Filter result set?\n\t  if (options.filter) {\n\t    matches = matches.filter(function(filepath) {\n\t      filepath = path.join(options.cwd || '', filepath);\n\t      try {\n\t        if (typeof options.filter === 'function') {\n\t          return options.filter(filepath);\n\t        } else {\n\t          // If the file is of the right type and exists, this should work.\n\t          return fs.statSync(filepath)[options.filter]();\n\t        }\n\t      } catch(e) {\n\t        // Otherwise, it's probably not the right type.\n\t        return false;\n\t      }\n\t    });\n\t  }\n\t  return matches;\n\t};\n\n\t// Build a multi task \"files\" object dynamically.\n\tfile$1.expandMapping = function(patterns, destBase, options) {\n\t  options = Object.assign({\n\t    rename: function(destBase, destPath) {\n\t      return path.join(destBase || '', destPath);\n\t    }\n\t  }, options);\n\t  var files = [];\n\t  var fileByDest = {};\n\t  // Find all files matching pattern, using passed-in options.\n\t  file$1.expand(options, patterns).forEach(function(src) {\n\t    var destPath = src;\n\t    // Flatten?\n\t    if (options.flatten) {\n\t      destPath = path.basename(destPath);\n\t    }\n\t    // Change the extension?\n\t    if (options.ext) {\n\t      destPath = destPath.replace(/(\\.[^\\/]*)?$/, options.ext);\n\t    }\n\t    // Generate destination filename.\n\t    var dest = options.rename(destBase, destPath, options);\n\t    // Prepend cwd to src path if necessary.\n\t    if (options.cwd) { src = path.join(options.cwd, src); }\n\t    // Normalize filepaths to be unix-style.\n\t    dest = dest.replace(pathSeparatorRe, '/');\n\t    src = src.replace(pathSeparatorRe, '/');\n\t    // Map correct src path to dest path.\n\t    if (fileByDest[dest]) {\n\t      // If dest already exists, push this src onto that dest's src array.\n\t      fileByDest[dest].src.push(src);\n\t    } else {\n\t      // Otherwise create a new src-dest file mapping object.\n\t      files.push({\n\t        src: [src],\n\t        dest: dest,\n\t      });\n\t      // And store a reference for later use.\n\t      fileByDest[dest] = files[files.length - 1];\n\t    }\n\t  });\n\t  return files;\n\t};\n\n\t// reusing bits of grunt's multi-task source normalization\n\tfile$1.normalizeFilesArray = function(data) {\n\t  var files = [];\n\n\t  data.forEach(function(obj) {\n\t    if ('src' in obj || 'dest' in obj) {\n\t      files.push(obj);\n\t    }\n\t  });\n\n\t  if (files.length === 0) {\n\t    return [];\n\t  }\n\n\t  files = _(files).chain().forEach(function(obj) {\n\t    if (!('src' in obj) || !obj.src) { return; }\n\t    // Normalize .src properties to flattened array.\n\t    if (Array.isArray(obj.src)) {\n\t      obj.src = flatten(obj.src);\n\t    } else {\n\t      obj.src = [obj.src];\n\t    }\n\t  }).map(function(obj) {\n\t    // Build options object, removing unwanted properties.\n\t    var expandOptions = Object.assign({}, obj);\n\t    delete expandOptions.src;\n\t    delete expandOptions.dest;\n\n\t    // Expand file mappings.\n\t    if (obj.expand) {\n\t      return file$1.expandMapping(obj.src, obj.dest, expandOptions).map(function(mapObj) {\n\t        // Copy obj properties to result.\n\t        var result = Object.assign({}, obj);\n\t        // Make a clone of the orig obj available.\n\t        result.orig = Object.assign({}, obj);\n\t        // Set .src and .dest, processing both as templates.\n\t        result.src = mapObj.src;\n\t        result.dest = mapObj.dest;\n\t        // Remove unwanted properties.\n\t        ['expand', 'cwd', 'flatten', 'rename', 'ext'].forEach(function(prop) {\n\t          delete result[prop];\n\t        });\n\t        return result;\n\t      });\n\t    }\n\n\t    // Copy obj properties to result, adding an .orig property.\n\t    var result = Object.assign({}, obj);\n\t    // Make a clone of the orig obj available.\n\t    result.orig = Object.assign({}, obj);\n\n\t    if ('src' in result) {\n\t      // Expose an expand-on-demand getter method as .src.\n\t      Object.defineProperty(result, 'src', {\n\t        enumerable: true,\n\t        get: function fn() {\n\t          var src;\n\t          if (!('result' in fn)) {\n\t            src = obj.src;\n\t            // If src is an array, flatten it. Otherwise, make it into an array.\n\t            src = Array.isArray(src) ? flatten(src) : [src];\n\t            // Expand src files, memoizing result.\n\t            fn.result = file$1.expand(expandOptions, src);\n\t          }\n\t          return fn.result;\n\t        }\n\t      });\n\t    }\n\n\t    if ('dest' in result) {\n\t      result.dest = obj.dest;\n\t    }\n\n\t    return result;\n\t  }).flatten().value();\n\n\t  return files;\n\t};\n\treturn file.exports;\n}\n\n/**\n * archiver-utils\n *\n * Copyright (c) 2015 Chris Talkington.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/archiver-utils/blob/master/LICENSE\n */\n\nvar hasRequiredArchiverUtils;\n\nfunction requireArchiverUtils () {\n\tif (hasRequiredArchiverUtils) return archiverUtils.exports;\n\thasRequiredArchiverUtils = 1;\n\tvar fs = requireGracefulFs();\n\tvar path = require$$1__default;\n\tvar isStream = requireIsStream();\n\tvar lazystream = requireLazystream();\n\tvar normalizePath = requireNormalizePath();\n\tvar defaults = requireDefaults();\n\n\trequire$$0$b.Stream;\n\tvar PassThrough = requireOurs().PassThrough;\n\n\tvar utils = archiverUtils.exports = {};\n\tutils.file = requireFile();\n\n\tutils.collectStream = function(source, callback) {\n\t  var collection = [];\n\t  var size = 0;\n\n\t  source.on('error', callback);\n\n\t  source.on('data', function(chunk) {\n\t    collection.push(chunk);\n\t    size += chunk.length;\n\t  });\n\n\t  source.on('end', function() {\n\t    var buf = Buffer.alloc(size);\n\t    var offset = 0;\n\n\t    collection.forEach(function(data) {\n\t      data.copy(buf, offset);\n\t      offset += data.length;\n\t    });\n\n\t    callback(null, buf);\n\t  });\n\t};\n\n\tutils.dateify = function(dateish) {\n\t  dateish = dateish || new Date();\n\n\t  if (dateish instanceof Date) {\n\t    dateish = dateish;\n\t  } else if (typeof dateish === 'string') {\n\t    dateish = new Date(dateish);\n\t  } else {\n\t    dateish = new Date();\n\t  }\n\n\t  return dateish;\n\t};\n\n\t// this is slightly different from lodash version\n\tutils.defaults = function(object, source, guard) {\n\t  var args = arguments;\n\t  args[0] = args[0] || {};\n\n\t  return defaults(...args);\n\t};\n\n\tutils.isStream = function(source) {\n\t  return isStream(source);\n\t};\n\n\tutils.lazyReadStream = function(filepath) {\n\t  return new lazystream.Readable(function() {\n\t    return fs.createReadStream(filepath);\n\t  });\n\t};\n\n\tutils.normalizeInputSource = function(source) {\n\t  if (source === null) {\n\t    return Buffer.alloc(0);\n\t  } else if (typeof source === 'string') {\n\t    return Buffer.from(source);\n\t  } else if (utils.isStream(source)) {\n\t    // Always pipe through a PassThrough stream to guarantee pausing the stream if it's already flowing,\n\t    // since it will only be processed in a (distant) future iteration of the event loop, and will lose\n\t    // data if already flowing now.\n\t    return source.pipe(new PassThrough());\n\t  }\n\n\t  return source;\n\t};\n\n\tutils.sanitizePath = function(filepath) {\n\t  return normalizePath(filepath, false).replace(/^\\w+:/, '').replace(/^(\\.\\.\\/|\\/)+/, '');\n\t};\n\n\tutils.trailingSlashIt = function(str) {\n\t  return str.slice(-1) !== '/' ? str + '/' : str;\n\t};\n\n\tutils.unixifyPath = function(filepath) {\n\t  return normalizePath(filepath, false).replace(/^\\w+:/, '');\n\t};\n\n\tutils.walkdir = function(dirpath, base, callback) {\n\t  var results = [];\n\n\t  if (typeof base === 'function') {\n\t    callback = base;\n\t    base = dirpath;\n\t  }\n\n\t  fs.readdir(dirpath, function(err, list) {\n\t    var i = 0;\n\t    var file;\n\t    var filepath;\n\n\t    if (err) {\n\t      return callback(err);\n\t    }\n\n\t    (function next() {\n\t      file = list[i++];\n\n\t      if (!file) {\n\t        return callback(null, results);\n\t      }\n\n\t      filepath = path.join(dirpath, file);\n\n\t      fs.stat(filepath, function(err, stats) {\n\t        results.push({\n\t          path: filepath,\n\t          relative: path.relative(base, filepath).replace(/\\\\/g, '/'),\n\t          stats: stats\n\t        });\n\n\t        if (stats && stats.isDirectory()) {\n\t          utils.walkdir(filepath, base, function(err, res) {\n\t\t    if(err){\n\t\t      return callback(err);\n\t\t    }\n\n\t            res.forEach(function(dirEntry) {\n\t              results.push(dirEntry);\n\t            });\n\t\t\t  \n\t            next();  \n\t          });\n\t        } else {\n\t          next();\n\t        }\n\t      });\n\t    })();\n\t  });\n\t};\n\treturn archiverUtils.exports;\n}\n\nvar error = {exports: {}};\n\n/**\n * Archiver Core\n *\n * @ignore\n * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}\n * @copyright (c) 2012-2014 Chris Talkington, contributors.\n */\n\nvar hasRequiredError;\n\nfunction requireError () {\n\tif (hasRequiredError) return error.exports;\n\thasRequiredError = 1;\n\t(function (module, exports) {\n\t\tvar util = require$$0__default$1;\n\n\t\tconst ERROR_CODES = {\n\t\t  'ABORTED': 'archive was aborted',\n\t\t  'DIRECTORYDIRPATHREQUIRED': 'diretory dirpath argument must be a non-empty string value',\n\t\t  'DIRECTORYFUNCTIONINVALIDDATA': 'invalid data returned by directory custom data function',\n\t\t  'ENTRYNAMEREQUIRED': 'entry name must be a non-empty string value',\n\t\t  'FILEFILEPATHREQUIRED': 'file filepath argument must be a non-empty string value',\n\t\t  'FINALIZING': 'archive already finalizing',\n\t\t  'QUEUECLOSED': 'queue closed',\n\t\t  'NOENDMETHOD': 'no suitable finalize/end method defined by module',\n\t\t  'DIRECTORYNOTSUPPORTED': 'support for directory entries not defined by module',\n\t\t  'FORMATSET': 'archive format already set',\n\t\t  'INPUTSTEAMBUFFERREQUIRED': 'input source must be valid Stream or Buffer instance',\n\t\t  'MODULESET': 'module already set',\n\t\t  'SYMLINKNOTSUPPORTED': 'support for symlink entries not defined by module',\n\t\t  'SYMLINKFILEPATHREQUIRED': 'symlink filepath argument must be a non-empty string value',\n\t\t  'SYMLINKTARGETREQUIRED': 'symlink target argument must be a non-empty string value',\n\t\t  'ENTRYNOTSUPPORTED': 'entry not supported'\n\t\t};\n\n\t\tfunction ArchiverError(code, data) {\n\t\t  Error.captureStackTrace(this, this.constructor);\n\t\t  //this.name = this.constructor.name;\n\t\t  this.message = ERROR_CODES[code] || code;\n\t\t  this.code = code;\n\t\t  this.data = data;\n\t\t}\n\n\t\tutil.inherits(ArchiverError, Error);\n\n\t\tmodule.exports = ArchiverError; \n\t} (error));\n\treturn error.exports;\n}\n\n/**\n * Archiver Core\n *\n * @ignore\n * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}\n * @copyright (c) 2012-2014 Chris Talkington, contributors.\n */\n\nvar core;\nvar hasRequiredCore;\n\nfunction requireCore () {\n\tif (hasRequiredCore) return core;\n\thasRequiredCore = 1;\n\tvar fs = fs__default;\n\tvar glob = requireReaddirGlob();\n\tvar async = require$$2$1;\n\tvar path = require$$1__default;\n\tvar util = requireArchiverUtils();\n\n\tvar inherits = require$$0__default$1.inherits;\n\tvar ArchiverError = requireError();\n\tvar Transform = requireOurs().Transform;\n\n\tvar win32 = process.platform === 'win32';\n\n\t/**\n\t * @constructor\n\t * @param {String} format The archive format to use.\n\t * @param {(CoreOptions|TransformOptions)} options See also {@link ZipOptions} and {@link TarOptions}.\n\t */\n\tvar Archiver = function(format, options) {\n\t  if (!(this instanceof Archiver)) {\n\t    return new Archiver(format, options);\n\t  }\n\n\t  if (typeof format !== 'string') {\n\t    options = format;\n\t    format = 'zip';\n\t  }\n\n\t  options = this.options = util.defaults(options, {\n\t    highWaterMark: 1024 * 1024,\n\t    statConcurrency: 4\n\t  });\n\n\t  Transform.call(this, options);\n\n\t  this._format = false;\n\t  this._module = false;\n\t  this._pending = 0;\n\t  this._pointer = 0;\n\n\t  this._entriesCount = 0;\n\t  this._entriesProcessedCount = 0;\n\t  this._fsEntriesTotalBytes = 0;\n\t  this._fsEntriesProcessedBytes = 0;\n\n\t  this._queue = async.queue(this._onQueueTask.bind(this), 1);\n\t  this._queue.drain(this._onQueueDrain.bind(this));\n\n\t  this._statQueue = async.queue(this._onStatQueueTask.bind(this), options.statConcurrency);\n\t  this._statQueue.drain(this._onQueueDrain.bind(this));\n\n\t  this._state = {\n\t    aborted: false,\n\t    finalize: false,\n\t    finalizing: false,\n\t    finalized: false,\n\t    modulePiped: false\n\t  };\n\n\t  this._streams = [];\n\t};\n\n\tinherits(Archiver, Transform);\n\n\t/**\n\t * Internal logic for `abort`.\n\t *\n\t * @private\n\t * @return void\n\t */\n\tArchiver.prototype._abort = function() {\n\t  this._state.aborted = true;\n\t  this._queue.kill();\n\t  this._statQueue.kill();\n\n\t  if (this._queue.idle()) {\n\t    this._shutdown();\n\t  }\n\t};\n\n\t/**\n\t * Internal helper for appending files.\n\t *\n\t * @private\n\t * @param  {String} filepath The source filepath.\n\t * @param  {EntryData} data The entry data.\n\t * @return void\n\t */\n\tArchiver.prototype._append = function(filepath, data) {\n\t  data = data || {};\n\n\t  var task = {\n\t    source: null,\n\t    filepath: filepath\n\t  };\n\n\t  if (!data.name) {\n\t    data.name = filepath;\n\t  }\n\n\t  data.sourcePath = filepath;\n\t  task.data = data;\n\t  this._entriesCount++;\n\n\t  if (data.stats && data.stats instanceof fs.Stats) {\n\t    task = this._updateQueueTaskWithStats(task, data.stats);\n\t    if (task) {\n\t      if (data.stats.size) {\n\t        this._fsEntriesTotalBytes += data.stats.size;\n\t      }\n\n\t      this._queue.push(task);\n\t    }\n\t  } else {\n\t    this._statQueue.push(task);\n\t  }\n\t};\n\n\t/**\n\t * Internal logic for `finalize`.\n\t *\n\t * @private\n\t * @return void\n\t */\n\tArchiver.prototype._finalize = function() {\n\t  if (this._state.finalizing || this._state.finalized || this._state.aborted) {\n\t    return;\n\t  }\n\n\t  this._state.finalizing = true;\n\n\t  this._moduleFinalize();\n\n\t  this._state.finalizing = false;\n\t  this._state.finalized = true;\n\t};\n\n\t/**\n\t * Checks the various state variables to determine if we can `finalize`.\n\t *\n\t * @private\n\t * @return {Boolean}\n\t */\n\tArchiver.prototype._maybeFinalize = function() {\n\t  if (this._state.finalizing || this._state.finalized || this._state.aborted) {\n\t    return false;\n\t  }\n\n\t  if (this._state.finalize && this._pending === 0 && this._queue.idle() && this._statQueue.idle()) {\n\t    this._finalize();\n\t    return true;\n\t  }\n\n\t  return false;\n\t};\n\n\t/**\n\t * Appends an entry to the module.\n\t *\n\t * @private\n\t * @fires  Archiver#entry\n\t * @param  {(Buffer|Stream)} source\n\t * @param  {EntryData} data\n\t * @param  {Function} callback\n\t * @return void\n\t */\n\tArchiver.prototype._moduleAppend = function(source, data, callback) {\n\t  if (this._state.aborted) {\n\t    callback();\n\t    return;\n\t  }\n\n\t  this._module.append(source, data, function(err) {\n\t    this._task = null;\n\n\t    if (this._state.aborted) {\n\t      this._shutdown();\n\t      return;\n\t    }\n\n\t    if (err) {\n\t      this.emit('error', err);\n\t      setImmediate(callback);\n\t      return;\n\t    }\n\n\t    /**\n\t     * Fires when the entry's input has been processed and appended to the archive.\n\t     *\n\t     * @event Archiver#entry\n\t     * @type {EntryData}\n\t     */\n\t    this.emit('entry', data);\n\t    this._entriesProcessedCount++;\n\n\t    if (data.stats && data.stats.size) {\n\t      this._fsEntriesProcessedBytes += data.stats.size;\n\t    }\n\n\t    /**\n\t     * @event Archiver#progress\n\t     * @type {ProgressData}\n\t     */\n\t    this.emit('progress', {\n\t      entries: {\n\t        total: this._entriesCount,\n\t        processed: this._entriesProcessedCount\n\t      },\n\t      fs: {\n\t        totalBytes: this._fsEntriesTotalBytes,\n\t        processedBytes: this._fsEntriesProcessedBytes\n\t      }\n\t    });\n\n\t    setImmediate(callback);\n\t  }.bind(this));\n\t};\n\n\t/**\n\t * Finalizes the module.\n\t *\n\t * @private\n\t * @return void\n\t */\n\tArchiver.prototype._moduleFinalize = function() {\n\t  if (typeof this._module.finalize === 'function') {\n\t    this._module.finalize();\n\t  } else if (typeof this._module.end === 'function') {\n\t    this._module.end();\n\t  } else {\n\t    this.emit('error', new ArchiverError('NOENDMETHOD'));\n\t  }\n\t};\n\n\t/**\n\t * Pipes the module to our internal stream with error bubbling.\n\t *\n\t * @private\n\t * @return void\n\t */\n\tArchiver.prototype._modulePipe = function() {\n\t  this._module.on('error', this._onModuleError.bind(this));\n\t  this._module.pipe(this);\n\t  this._state.modulePiped = true;\n\t};\n\n\t/**\n\t * Determines if the current module supports a defined feature.\n\t *\n\t * @private\n\t * @param  {String} key\n\t * @return {Boolean}\n\t */\n\tArchiver.prototype._moduleSupports = function(key) {\n\t  if (!this._module.supports || !this._module.supports[key]) {\n\t    return false;\n\t  }\n\n\t  return this._module.supports[key];\n\t};\n\n\t/**\n\t * Unpipes the module from our internal stream.\n\t *\n\t * @private\n\t * @return void\n\t */\n\tArchiver.prototype._moduleUnpipe = function() {\n\t  this._module.unpipe(this);\n\t  this._state.modulePiped = false;\n\t};\n\n\t/**\n\t * Normalizes entry data with fallbacks for key properties.\n\t *\n\t * @private\n\t * @param  {Object} data\n\t * @param  {fs.Stats} stats\n\t * @return {Object}\n\t */\n\tArchiver.prototype._normalizeEntryData = function(data, stats) {\n\t  data = util.defaults(data, {\n\t    type: 'file',\n\t    name: null,\n\t    date: null,\n\t    mode: null,\n\t    prefix: null,\n\t    sourcePath: null,\n\t    stats: false\n\t  });\n\n\t  if (stats && data.stats === false) {\n\t    data.stats = stats;\n\t  }\n\n\t  var isDir = data.type === 'directory';\n\n\t  if (data.name) {\n\t    if (typeof data.prefix === 'string' && '' !== data.prefix) {\n\t      data.name = data.prefix + '/' + data.name;\n\t      data.prefix = null;\n\t    }\n\n\t    data.name = util.sanitizePath(data.name);\n\n\t    if (data.type !== 'symlink' && data.name.slice(-1) === '/') {\n\t      isDir = true;\n\t      data.type = 'directory';\n\t    } else if (isDir) {\n\t      data.name += '/';\n\t    }\n\t  }\n\n\t  // 511 === 0777; 493 === 0755; 438 === 0666; 420 === 0644\n\t  if (typeof data.mode === 'number') {\n\t    if (win32) {\n\t      data.mode &= 511;\n\t    } else {\n\t      data.mode &= 4095;\n\t    }\n\t  } else if (data.stats && data.mode === null) {\n\t    if (win32) {\n\t      data.mode = data.stats.mode & 511;\n\t    } else {\n\t      data.mode = data.stats.mode & 4095;\n\t    }\n\n\t    // stat isn't reliable on windows; force 0755 for dir\n\t    if (win32 && isDir) {\n\t      data.mode = 493;\n\t    }\n\t  } else if (data.mode === null) {\n\t    data.mode = isDir ? 493 : 420;\n\t  }\n\n\t  if (data.stats && data.date === null) {\n\t    data.date = data.stats.mtime;\n\t  } else {\n\t    data.date = util.dateify(data.date);\n\t  }\n\n\t  return data;\n\t};\n\n\t/**\n\t * Error listener that re-emits error on to our internal stream.\n\t *\n\t * @private\n\t * @param  {Error} err\n\t * @return void\n\t */\n\tArchiver.prototype._onModuleError = function(err) {\n\t  /**\n\t   * @event Archiver#error\n\t   * @type {ErrorData}\n\t   */\n\t  this.emit('error', err);\n\t};\n\n\t/**\n\t * Checks the various state variables after queue has drained to determine if\n\t * we need to `finalize`.\n\t *\n\t * @private\n\t * @return void\n\t */\n\tArchiver.prototype._onQueueDrain = function() {\n\t  if (this._state.finalizing || this._state.finalized || this._state.aborted) {\n\t    return;\n\t  }\n\n\t  if (this._state.finalize && this._pending === 0 && this._queue.idle() && this._statQueue.idle()) {\n\t    this._finalize();\n\t  }\n\t};\n\n\t/**\n\t * Appends each queue task to the module.\n\t *\n\t * @private\n\t * @param  {Object} task\n\t * @param  {Function} callback\n\t * @return void\n\t */\n\tArchiver.prototype._onQueueTask = function(task, callback) {\n\t  var fullCallback = () => {\n\t    if(task.data.callback) {\n\t      task.data.callback();\n\t    }\n\t    callback();\n\t  };\n\n\t  if (this._state.finalizing || this._state.finalized || this._state.aborted) {\n\t    fullCallback();\n\t    return;\n\t  }\n\n\t  this._task = task;\n\t  this._moduleAppend(task.source, task.data, fullCallback);\n\t};\n\n\t/**\n\t * Performs a file stat and reinjects the task back into the queue.\n\t *\n\t * @private\n\t * @param  {Object} task\n\t * @param  {Function} callback\n\t * @return void\n\t */\n\tArchiver.prototype._onStatQueueTask = function(task, callback) {\n\t  if (this._state.finalizing || this._state.finalized || this._state.aborted) {\n\t    callback();\n\t    return;\n\t  }\n\n\t  fs.lstat(task.filepath, function(err, stats) {\n\t    if (this._state.aborted) {\n\t      setImmediate(callback);\n\t      return;\n\t    }\n\n\t    if (err) {\n\t      this._entriesCount--;\n\n\t      /**\n\t       * @event Archiver#warning\n\t       * @type {ErrorData}\n\t       */\n\t      this.emit('warning', err);\n\t      setImmediate(callback);\n\t      return;\n\t    }\n\n\t    task = this._updateQueueTaskWithStats(task, stats);\n\n\t    if (task) {\n\t      if (stats.size) {\n\t        this._fsEntriesTotalBytes += stats.size;\n\t      }\n\n\t      this._queue.push(task);\n\t    }\n\n\t    setImmediate(callback);\n\t  }.bind(this));\n\t};\n\n\t/**\n\t * Unpipes the module and ends our internal stream.\n\t *\n\t * @private\n\t * @return void\n\t */\n\tArchiver.prototype._shutdown = function() {\n\t  this._moduleUnpipe();\n\t  this.end();\n\t};\n\n\t/**\n\t * Tracks the bytes emitted by our internal stream.\n\t *\n\t * @private\n\t * @param  {Buffer} chunk\n\t * @param  {String} encoding\n\t * @param  {Function} callback\n\t * @return void\n\t */\n\tArchiver.prototype._transform = function(chunk, encoding, callback) {\n\t  if (chunk) {\n\t    this._pointer += chunk.length;\n\t  }\n\n\t  callback(null, chunk);\n\t};\n\n\t/**\n\t * Updates and normalizes a queue task using stats data.\n\t *\n\t * @private\n\t * @param  {Object} task\n\t * @param  {fs.Stats} stats\n\t * @return {Object}\n\t */\n\tArchiver.prototype._updateQueueTaskWithStats = function(task, stats) {\n\t  if (stats.isFile()) {\n\t    task.data.type = 'file';\n\t    task.data.sourceType = 'stream';\n\t    task.source = util.lazyReadStream(task.filepath);\n\t  } else if (stats.isDirectory() && this._moduleSupports('directory')) {\n\t    task.data.name = util.trailingSlashIt(task.data.name);\n\t    task.data.type = 'directory';\n\t    task.data.sourcePath = util.trailingSlashIt(task.filepath);\n\t    task.data.sourceType = 'buffer';\n\t    task.source = Buffer.concat([]);\n\t  } else if (stats.isSymbolicLink() && this._moduleSupports('symlink')) {\n\t    var linkPath = fs.readlinkSync(task.filepath);\n\t    var dirName = path.dirname(task.filepath);\n\t    task.data.type = 'symlink';\n\t    task.data.linkname = path.relative(dirName, path.resolve(dirName, linkPath));\n\t    task.data.sourceType = 'buffer';\n\t    task.source = Buffer.concat([]);\n\t  } else {\n\t    if (stats.isDirectory()) {\n\t      this.emit('warning', new ArchiverError('DIRECTORYNOTSUPPORTED', task.data));\n\t    } else if (stats.isSymbolicLink()) {\n\t      this.emit('warning', new ArchiverError('SYMLINKNOTSUPPORTED', task.data));\n\t    } else {\n\t      this.emit('warning', new ArchiverError('ENTRYNOTSUPPORTED', task.data));\n\t    }\n\n\t    return null;\n\t  }\n\n\t  task.data = this._normalizeEntryData(task.data, stats);\n\n\t  return task;\n\t};\n\n\t/**\n\t * Aborts the archiving process, taking a best-effort approach, by:\n\t *\n\t * - removing any pending queue tasks\n\t * - allowing any active queue workers to finish\n\t * - detaching internal module pipes\n\t * - ending both sides of the Transform stream\n\t *\n\t * It will NOT drain any remaining sources.\n\t *\n\t * @return {this}\n\t */\n\tArchiver.prototype.abort = function() {\n\t  if (this._state.aborted || this._state.finalized) {\n\t    return this;\n\t  }\n\n\t  this._abort();\n\n\t  return this;\n\t};\n\n\t/**\n\t * Appends an input source (text string, buffer, or stream) to the instance.\n\t *\n\t * When the instance has received, processed, and emitted the input, the `entry`\n\t * event is fired.\n\t *\n\t * @fires  Archiver#entry\n\t * @param  {(Buffer|Stream|String)} source The input source.\n\t * @param  {EntryData} data See also {@link ZipEntryData} and {@link TarEntryData}.\n\t * @return {this}\n\t */\n\tArchiver.prototype.append = function(source, data) {\n\t  if (this._state.finalize || this._state.aborted) {\n\t    this.emit('error', new ArchiverError('QUEUECLOSED'));\n\t    return this;\n\t  }\n\n\t  data = this._normalizeEntryData(data);\n\n\t  if (typeof data.name !== 'string' || data.name.length === 0) {\n\t    this.emit('error', new ArchiverError('ENTRYNAMEREQUIRED'));\n\t    return this;\n\t  }\n\n\t  if (data.type === 'directory' && !this._moduleSupports('directory')) {\n\t    this.emit('error', new ArchiverError('DIRECTORYNOTSUPPORTED', { name: data.name }));\n\t    return this;\n\t  }\n\n\t  source = util.normalizeInputSource(source);\n\n\t  if (Buffer.isBuffer(source)) {\n\t    data.sourceType = 'buffer';\n\t  } else if (util.isStream(source)) {\n\t    data.sourceType = 'stream';\n\t  } else {\n\t    this.emit('error', new ArchiverError('INPUTSTEAMBUFFERREQUIRED', { name: data.name }));\n\t    return this;\n\t  }\n\n\t  this._entriesCount++;\n\t  this._queue.push({\n\t    data: data,\n\t    source: source\n\t  });\n\n\t  return this;\n\t};\n\n\t/**\n\t * Appends a directory and its files, recursively, given its dirpath.\n\t *\n\t * @param  {String} dirpath The source directory path.\n\t * @param  {String} destpath The destination path within the archive.\n\t * @param  {(EntryData|Function)} data See also [ZipEntryData]{@link ZipEntryData} and\n\t * [TarEntryData]{@link TarEntryData}.\n\t * @return {this}\n\t */\n\tArchiver.prototype.directory = function(dirpath, destpath, data) {\n\t  if (this._state.finalize || this._state.aborted) {\n\t    this.emit('error', new ArchiverError('QUEUECLOSED'));\n\t    return this;\n\t  }\n\n\t  if (typeof dirpath !== 'string' || dirpath.length === 0) {\n\t    this.emit('error', new ArchiverError('DIRECTORYDIRPATHREQUIRED'));\n\t    return this;\n\t  }\n\n\t  this._pending++;\n\n\t  if (destpath === false) {\n\t    destpath = '';\n\t  } else if (typeof destpath !== 'string'){\n\t    destpath = dirpath;\n\t  }\n\n\t  var dataFunction = false;\n\t  if (typeof data === 'function') {\n\t    dataFunction = data;\n\t    data = {};\n\t  } else if (typeof data !== 'object') {\n\t    data = {};\n\t  }\n\n\t  var globOptions = {\n\t    stat: true,\n\t    dot: true\n\t  };\n\n\t  function onGlobEnd() {\n\t    this._pending--;\n\t    this._maybeFinalize();\n\t  }\n\n\t  function onGlobError(err) {\n\t    this.emit('error', err);\n\t  }\n\n\t  function onGlobMatch(match){\n\t    globber.pause();\n\n\t    var ignoreMatch = false;\n\t    var entryData = Object.assign({}, data);\n\t    entryData.name = match.relative;\n\t    entryData.prefix = destpath;\n\t    entryData.stats = match.stat;\n\t    entryData.callback = globber.resume.bind(globber);\n\n\t    try {\n\t      if (dataFunction) {\n\t        entryData = dataFunction(entryData);\n\n\t        if (entryData === false) {\n\t          ignoreMatch = true;\n\t        } else if (typeof entryData !== 'object') {\n\t          throw new ArchiverError('DIRECTORYFUNCTIONINVALIDDATA', { dirpath: dirpath });\n\t        }\n\t      }\n\t    } catch(e) {\n\t      this.emit('error', e);\n\t      return;\n\t    }\n\n\t    if (ignoreMatch) {\n\t      globber.resume();\n\t      return;\n\t    }\n\n\t    this._append(match.absolute, entryData);\n\t  }\n\n\t  var globber = glob(dirpath, globOptions);\n\t  globber.on('error', onGlobError.bind(this));\n\t  globber.on('match', onGlobMatch.bind(this));\n\t  globber.on('end', onGlobEnd.bind(this));\n\n\t  return this;\n\t};\n\n\t/**\n\t * Appends a file given its filepath using a\n\t * [lazystream]{@link https://github.com/jpommerening/node-lazystream} wrapper to\n\t * prevent issues with open file limits.\n\t *\n\t * When the instance has received, processed, and emitted the file, the `entry`\n\t * event is fired.\n\t *\n\t * @param  {String} filepath The source filepath.\n\t * @param  {EntryData} data See also [ZipEntryData]{@link ZipEntryData} and\n\t * [TarEntryData]{@link TarEntryData}.\n\t * @return {this}\n\t */\n\tArchiver.prototype.file = function(filepath, data) {\n\t  if (this._state.finalize || this._state.aborted) {\n\t    this.emit('error', new ArchiverError('QUEUECLOSED'));\n\t    return this;\n\t  }\n\n\t  if (typeof filepath !== 'string' || filepath.length === 0) {\n\t    this.emit('error', new ArchiverError('FILEFILEPATHREQUIRED'));\n\t    return this;\n\t  }\n\n\t  this._append(filepath, data);\n\n\t  return this;\n\t};\n\n\t/**\n\t * Appends multiple files that match a glob pattern.\n\t *\n\t * @param  {String} pattern The [glob pattern]{@link https://github.com/isaacs/minimatch} to match.\n\t * @param  {Object} options See [node-readdir-glob]{@link https://github.com/yqnn/node-readdir-glob#options}.\n\t * @param  {EntryData} data See also [ZipEntryData]{@link ZipEntryData} and\n\t * [TarEntryData]{@link TarEntryData}.\n\t * @return {this}\n\t */\n\tArchiver.prototype.glob = function(pattern, options, data) {\n\t  this._pending++;\n\n\t  options = util.defaults(options, {\n\t    stat: true,\n\t    pattern: pattern\n\t  });\n\n\t  function onGlobEnd() {\n\t    this._pending--;\n\t    this._maybeFinalize();\n\t  }\n\n\t  function onGlobError(err) {\n\t    this.emit('error', err);\n\t  }\n\n\t  function onGlobMatch(match){\n\t    globber.pause();\n\t    var entryData = Object.assign({}, data);\n\t    entryData.callback = globber.resume.bind(globber);\n\t    entryData.stats = match.stat;\n\t    entryData.name = match.relative;\n\n\t    this._append(match.absolute, entryData);\n\t  }\n\n\t  var globber = glob(options.cwd || '.', options);\n\t  globber.on('error', onGlobError.bind(this));\n\t  globber.on('match', onGlobMatch.bind(this));\n\t  globber.on('end', onGlobEnd.bind(this));\n\n\t  return this;\n\t};\n\n\t/**\n\t * Finalizes the instance and prevents further appending to the archive\n\t * structure (queue will continue til drained).\n\t *\n\t * The `end`, `close` or `finish` events on the destination stream may fire\n\t * right after calling this method so you should set listeners beforehand to\n\t * properly detect stream completion.\n\t *\n\t * @return {Promise}\n\t */\n\tArchiver.prototype.finalize = function() {\n\t  if (this._state.aborted) {\n\t    var abortedError = new ArchiverError('ABORTED');\n\t    this.emit('error', abortedError);\n\t    return Promise.reject(abortedError);\n\t  }\n\n\t  if (this._state.finalize) {\n\t    var finalizingError = new ArchiverError('FINALIZING');\n\t    this.emit('error', finalizingError);\n\t    return Promise.reject(finalizingError);\n\t  }\n\n\t  this._state.finalize = true;\n\n\t  if (this._pending === 0 && this._queue.idle() && this._statQueue.idle()) {\n\t    this._finalize();\n\t  }\n\n\t  var self = this;\n\n\t  return new Promise(function(resolve, reject) {\n\t    var errored;\n\n\t    self._module.on('end', function() {\n\t      if (!errored) {\n\t        resolve();\n\t      }\n\t    });\n\n\t    self._module.on('error', function(err) {\n\t      errored = true;\n\t      reject(err);\n\t    });\n\t  })\n\t};\n\n\t/**\n\t * Sets the module format name used for archiving.\n\t *\n\t * @param {String} format The name of the format.\n\t * @return {this}\n\t */\n\tArchiver.prototype.setFormat = function(format) {\n\t  if (this._format) {\n\t    this.emit('error', new ArchiverError('FORMATSET'));\n\t    return this;\n\t  }\n\n\t  this._format = format;\n\n\t  return this;\n\t};\n\n\t/**\n\t * Sets the module used for archiving.\n\t *\n\t * @param {Function} module The function for archiver to interact with.\n\t * @return {this}\n\t */\n\tArchiver.prototype.setModule = function(module) {\n\t  if (this._state.aborted) {\n\t    this.emit('error', new ArchiverError('ABORTED'));\n\t    return this;\n\t  }\n\n\t  if (this._state.module) {\n\t    this.emit('error', new ArchiverError('MODULESET'));\n\t    return this;\n\t  }\n\n\t  this._module = module;\n\t  this._modulePipe();\n\n\t  return this;\n\t};\n\n\t/**\n\t * Appends a symlink to the instance.\n\t *\n\t * This does NOT interact with filesystem and is used for programmatically creating symlinks.\n\t *\n\t * @param  {String} filepath The symlink path (within archive).\n\t * @param  {String} target The target path (within archive).\n\t * @param  {Number} mode Sets the entry permissions.\n\t * @return {this}\n\t */\n\tArchiver.prototype.symlink = function(filepath, target, mode) {\n\t  if (this._state.finalize || this._state.aborted) {\n\t    this.emit('error', new ArchiverError('QUEUECLOSED'));\n\t    return this;\n\t  }\n\n\t  if (typeof filepath !== 'string' || filepath.length === 0) {\n\t    this.emit('error', new ArchiverError('SYMLINKFILEPATHREQUIRED'));\n\t    return this;\n\t  }\n\n\t  if (typeof target !== 'string' || target.length === 0) {\n\t    this.emit('error', new ArchiverError('SYMLINKTARGETREQUIRED', { filepath: filepath }));\n\t    return this;\n\t  }\n\n\t  if (!this._moduleSupports('symlink')) {\n\t    this.emit('error', new ArchiverError('SYMLINKNOTSUPPORTED', { filepath: filepath }));\n\t    return this;\n\t  }\n\n\t  var data = {};\n\t  data.type = 'symlink';\n\t  data.name = filepath.replace(/\\\\/g, '/');\n\t  data.linkname = target.replace(/\\\\/g, '/');\n\t  data.sourceType = 'buffer';\n\n\t  if (typeof mode === \"number\") {\n\t    data.mode = mode;\n\t  }\n\n\t  this._entriesCount++;\n\t  this._queue.push({\n\t    data: data,\n\t    source: Buffer.concat([])\n\t  });\n\n\t  return this;\n\t};\n\n\t/**\n\t * Returns the current length (in bytes) that has been emitted.\n\t *\n\t * @return {Number}\n\t */\n\tArchiver.prototype.pointer = function() {\n\t  return this._pointer;\n\t};\n\n\t/**\n\t * Middleware-like helper that has yet to be fully implemented.\n\t *\n\t * @private\n\t * @param  {Function} plugin\n\t * @return {this}\n\t */\n\tArchiver.prototype.use = function(plugin) {\n\t  this._streams.push(plugin);\n\t  return this;\n\t};\n\n\tcore = Archiver;\n\n\t/**\n\t * @typedef {Object} CoreOptions\n\t * @global\n\t * @property {Number} [statConcurrency=4] Sets the number of workers used to\n\t * process the internal fs stat queue.\n\t */\n\n\t/**\n\t * @typedef {Object} TransformOptions\n\t * @property {Boolean} [allowHalfOpen=true] If set to false, then the stream\n\t * will automatically end the readable side when the writable side ends and vice\n\t * versa.\n\t * @property {Boolean} [readableObjectMode=false] Sets objectMode for readable\n\t * side of the stream. Has no effect if objectMode is true.\n\t * @property {Boolean} [writableObjectMode=false] Sets objectMode for writable\n\t * side of the stream. Has no effect if objectMode is true.\n\t * @property {Boolean} [decodeStrings=true] Whether or not to decode strings\n\t * into Buffers before passing them to _write(). `Writable`\n\t * @property {String} [encoding=NULL] If specified, then buffers will be decoded\n\t * to strings using the specified encoding. `Readable`\n\t * @property {Number} [highWaterMark=16kb] The maximum number of bytes to store\n\t * in the internal buffer before ceasing to read from the underlying resource.\n\t * `Readable` `Writable`\n\t * @property {Boolean} [objectMode=false] Whether this stream should behave as a\n\t * stream of objects. Meaning that stream.read(n) returns a single value instead\n\t * of a Buffer of size n. `Readable` `Writable`\n\t */\n\n\t/**\n\t * @typedef {Object} EntryData\n\t * @property {String} name Sets the entry name including internal path.\n\t * @property {(String|Date)} [date=NOW()] Sets the entry date.\n\t * @property {Number} [mode=D:0755/F:0644] Sets the entry permissions.\n\t * @property {String} [prefix] Sets a path prefix for the entry name. Useful\n\t * when working with methods like `directory` or `glob`.\n\t * @property {fs.Stats} [stats] Sets the fs stat data for this entry allowing\n\t * for reduction of fs stat calls when stat data is already known.\n\t */\n\n\t/**\n\t * @typedef {Object} ErrorData\n\t * @property {String} message The message of the error.\n\t * @property {String} code The error code assigned to this error.\n\t * @property {String} data Additional data provided for reporting or debugging (where available).\n\t */\n\n\t/**\n\t * @typedef {Object} ProgressData\n\t * @property {Object} entries\n\t * @property {Number} entries.total Number of entries that have been appended.\n\t * @property {Number} entries.processed Number of entries that have been processed.\n\t * @property {Object} fs\n\t * @property {Number} fs.totalBytes Number of bytes that have been appended. Calculated asynchronously and might not be accurate: it growth while entries are added. (based on fs.Stats)\n\t * @property {Number} fs.processedBytes Number of bytes that have been processed. (based on fs.Stats)\n\t */\n\treturn core;\n}\n\nvar zipStream = {exports: {}};\n\nvar archiveEntry = {exports: {}};\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar hasRequiredArchiveEntry;\n\nfunction requireArchiveEntry () {\n\tif (hasRequiredArchiveEntry) return archiveEntry.exports;\n\thasRequiredArchiveEntry = 1;\n\tvar ArchiveEntry = archiveEntry.exports = function() {};\n\n\tArchiveEntry.prototype.getName = function() {};\n\n\tArchiveEntry.prototype.getSize = function() {};\n\n\tArchiveEntry.prototype.getLastModifiedDate = function() {};\n\n\tArchiveEntry.prototype.isDirectory = function() {};\n\treturn archiveEntry.exports;\n}\n\nvar zipArchiveEntry = {exports: {}};\n\nvar generalPurposeBit = {exports: {}};\n\nvar util$1 = {exports: {}};\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar hasRequiredUtil$1;\n\nfunction requireUtil$1 () {\n\tif (hasRequiredUtil$1) return util$1.exports;\n\thasRequiredUtil$1 = 1;\n\tvar util = util$1.exports = {};\n\n\tutil.dateToDos = function(d, forceLocalTime) {\n\t  forceLocalTime = forceLocalTime || false;\n\n\t  var year = forceLocalTime ? d.getFullYear() : d.getUTCFullYear();\n\n\t  if (year < 1980) {\n\t    return 2162688; // 1980-1-1 00:00:00\n\t  } else if (year >= 2044) {\n\t    return 2141175677; // 2043-12-31 23:59:58\n\t  }\n\n\t  var val = {\n\t    year: year,\n\t    month: forceLocalTime ? d.getMonth() : d.getUTCMonth(),\n\t    date: forceLocalTime ? d.getDate() : d.getUTCDate(),\n\t    hours: forceLocalTime ? d.getHours() : d.getUTCHours(),\n\t    minutes: forceLocalTime ? d.getMinutes() : d.getUTCMinutes(),\n\t    seconds: forceLocalTime ? d.getSeconds() : d.getUTCSeconds()\n\t  };\n\n\t  return ((val.year - 1980) << 25) | ((val.month + 1) << 21) | (val.date << 16) |\n\t    (val.hours << 11) | (val.minutes << 5) | (val.seconds / 2);\n\t};\n\n\tutil.dosToDate = function(dos) {\n\t  return new Date(((dos >> 25) & 0x7f) + 1980, ((dos >> 21) & 0x0f) - 1, (dos >> 16) & 0x1f, (dos >> 11) & 0x1f, (dos >> 5) & 0x3f, (dos & 0x1f) << 1);\n\t};\n\n\tutil.fromDosTime = function(buf) {\n\t  return util.dosToDate(buf.readUInt32LE(0));\n\t};\n\n\tutil.getEightBytes = function(v) {\n\t  var buf = Buffer.alloc(8);\n\t  buf.writeUInt32LE(v % 0x0100000000, 0);\n\t  buf.writeUInt32LE((v / 0x0100000000) | 0, 4);\n\n\t  return buf;\n\t};\n\n\tutil.getShortBytes = function(v) {\n\t  var buf = Buffer.alloc(2);\n\t  buf.writeUInt16LE((v & 0xFFFF) >>> 0, 0);\n\n\t  return buf;\n\t};\n\n\tutil.getShortBytesValue = function(buf, offset) {\n\t  return buf.readUInt16LE(offset);\n\t};\n\n\tutil.getLongBytes = function(v) {\n\t  var buf = Buffer.alloc(4);\n\t  buf.writeUInt32LE((v & 0xFFFFFFFF) >>> 0, 0);\n\n\t  return buf;\n\t};\n\n\tutil.getLongBytesValue = function(buf, offset) {\n\t  return buf.readUInt32LE(offset);\n\t};\n\n\tutil.toDosTime = function(d) {\n\t  return util.getLongBytes(util.dateToDos(d));\n\t};\n\treturn util$1.exports;\n}\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar hasRequiredGeneralPurposeBit;\n\nfunction requireGeneralPurposeBit () {\n\tif (hasRequiredGeneralPurposeBit) return generalPurposeBit.exports;\n\thasRequiredGeneralPurposeBit = 1;\n\tvar zipUtil = requireUtil$1();\n\n\tvar DATA_DESCRIPTOR_FLAG = 1 << 3;\n\tvar ENCRYPTION_FLAG = 1 << 0;\n\tvar NUMBER_OF_SHANNON_FANO_TREES_FLAG = 1 << 2;\n\tvar SLIDING_DICTIONARY_SIZE_FLAG = 1 << 1;\n\tvar STRONG_ENCRYPTION_FLAG = 1 << 6;\n\tvar UFT8_NAMES_FLAG = 1 << 11;\n\n\tvar GeneralPurposeBit = generalPurposeBit.exports = function() {\n\t  if (!(this instanceof GeneralPurposeBit)) {\n\t    return new GeneralPurposeBit();\n\t  }\n\n\t  this.descriptor = false;\n\t  this.encryption = false;\n\t  this.utf8 = false;\n\t  this.numberOfShannonFanoTrees = 0;\n\t  this.strongEncryption = false;\n\t  this.slidingDictionarySize = 0;\n\n\t  return this;\n\t};\n\n\tGeneralPurposeBit.prototype.encode = function() {\n\t  return zipUtil.getShortBytes(\n\t    (this.descriptor ? DATA_DESCRIPTOR_FLAG : 0) |\n\t    (this.utf8 ? UFT8_NAMES_FLAG : 0) |\n\t    (this.encryption ? ENCRYPTION_FLAG : 0) |\n\t    (this.strongEncryption ? STRONG_ENCRYPTION_FLAG : 0)\n\t  );\n\t};\n\n\tGeneralPurposeBit.prototype.parse = function(buf, offset) {\n\t  var flag = zipUtil.getShortBytesValue(buf, offset);\n\t  var gbp = new GeneralPurposeBit();\n\n\t  gbp.useDataDescriptor((flag & DATA_DESCRIPTOR_FLAG) !== 0);\n\t  gbp.useUTF8ForNames((flag & UFT8_NAMES_FLAG) !== 0);\n\t  gbp.useStrongEncryption((flag & STRONG_ENCRYPTION_FLAG) !== 0);\n\t  gbp.useEncryption((flag & ENCRYPTION_FLAG) !== 0);\n\t  gbp.setSlidingDictionarySize((flag & SLIDING_DICTIONARY_SIZE_FLAG) !== 0 ? 8192 : 4096);\n\t  gbp.setNumberOfShannonFanoTrees((flag & NUMBER_OF_SHANNON_FANO_TREES_FLAG) !== 0 ? 3 : 2);\n\n\t  return gbp;\n\t};\n\n\tGeneralPurposeBit.prototype.setNumberOfShannonFanoTrees = function(n) {\n\t  this.numberOfShannonFanoTrees = n;\n\t};\n\n\tGeneralPurposeBit.prototype.getNumberOfShannonFanoTrees = function() {\n\t  return this.numberOfShannonFanoTrees;\n\t};\n\n\tGeneralPurposeBit.prototype.setSlidingDictionarySize = function(n) {\n\t  this.slidingDictionarySize = n;\n\t};\n\n\tGeneralPurposeBit.prototype.getSlidingDictionarySize = function() {\n\t  return this.slidingDictionarySize;\n\t};\n\n\tGeneralPurposeBit.prototype.useDataDescriptor = function(b) {\n\t  this.descriptor = b;\n\t};\n\n\tGeneralPurposeBit.prototype.usesDataDescriptor = function() {\n\t  return this.descriptor;\n\t};\n\n\tGeneralPurposeBit.prototype.useEncryption = function(b) {\n\t  this.encryption = b;\n\t};\n\n\tGeneralPurposeBit.prototype.usesEncryption = function() {\n\t  return this.encryption;\n\t};\n\n\tGeneralPurposeBit.prototype.useStrongEncryption = function(b) {\n\t  this.strongEncryption = b;\n\t};\n\n\tGeneralPurposeBit.prototype.usesStrongEncryption = function() {\n\t  return this.strongEncryption;\n\t};\n\n\tGeneralPurposeBit.prototype.useUTF8ForNames = function(b) {\n\t  this.utf8 = b;\n\t};\n\n\tGeneralPurposeBit.prototype.usesUTF8ForNames = function() {\n\t  return this.utf8;\n\t};\n\treturn generalPurposeBit.exports;\n}\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar unixStat;\nvar hasRequiredUnixStat;\n\nfunction requireUnixStat () {\n\tif (hasRequiredUnixStat) return unixStat;\n\thasRequiredUnixStat = 1;\n\tunixStat = {\n\t    /**\n\t     * Bits used for permissions (and sticky bit)\n\t     */\n\t    PERM_MASK: 4095, // 07777\n\n\t    /**\n\t     * Bits used to indicate the filesystem object type.\n\t     */\n\t    FILE_TYPE_FLAG: 61440, // 0170000\n\n\t    /**\n\t     * Indicates symbolic links.\n\t     */\n\t    LINK_FLAG: 40960, // 0120000\n\n\t    /**\n\t     * Indicates plain files.\n\t     */\n\t    FILE_FLAG: 32768, // 0100000\n\n\t    /**\n\t     * Indicates directories.\n\t     */\n\t    DIR_FLAG: 16384, // 040000\n\n\t    // ----------------------------------------------------------\n\t    // somewhat arbitrary choices that are quite common for shared\n\t    // installations\n\t    // -----------------------------------------------------------\n\n\t    /**\n\t     * Default permissions for symbolic links.\n\t     */\n\t    DEFAULT_LINK_PERM: 511, // 0777\n\n\t    /**\n\t     * Default permissions for directories.\n\t     */\n\t    DEFAULT_DIR_PERM: 493, // 0755\n\n\t    /**\n\t     * Default permissions for plain files.\n\t     */\n\t    DEFAULT_FILE_PERM: 420 // 0644\n\t};\n\treturn unixStat;\n}\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar constants$1;\nvar hasRequiredConstants$1;\n\nfunction requireConstants$1 () {\n\tif (hasRequiredConstants$1) return constants$1;\n\thasRequiredConstants$1 = 1;\n\tconstants$1 = {\n\t  WORD: 4,\n\t  DWORD: 8,\n\t  EMPTY: Buffer.alloc(0),\n\n\t  SHORT: 2,\n\t  SHORT_MASK: 0xffff,\n\t  SHORT_SHIFT: 16,\n\t  SHORT_ZERO: Buffer.from(Array(2)),\n\t  LONG: 4,\n\t  LONG_ZERO: Buffer.from(Array(4)),\n\n\t  MIN_VERSION_INITIAL: 10,\n\t  MIN_VERSION_DATA_DESCRIPTOR: 20,\n\t  MIN_VERSION_ZIP64: 45,\n\t  VERSION_MADEBY: 45,\n\n\t  METHOD_STORED: 0,\n\t  METHOD_DEFLATED: 8,\n\n\t  PLATFORM_UNIX: 3,\n\t  PLATFORM_FAT: 0,\n\n\t  SIG_LFH: 0x04034b50,\n\t  SIG_DD: 0x08074b50,\n\t  SIG_CFH: 0x02014b50,\n\t  SIG_EOCD: 0x06054b50,\n\t  SIG_ZIP64_EOCD: 0x06064B50,\n\t  SIG_ZIP64_EOCD_LOC: 0x07064B50,\n\n\t  ZIP64_MAGIC_SHORT: 0xffff,\n\t  ZIP64_MAGIC: 0xffffffff,\n\t  ZIP64_EXTRA_ID: 0x0001,\n\n\t  ZLIB_NO_COMPRESSION: 0,\n\t  ZLIB_BEST_SPEED: 1,\n\t  ZLIB_BEST_COMPRESSION: 9,\n\t  ZLIB_DEFAULT_COMPRESSION: -1,\n\n\t  MODE_MASK: 0xFFF,\n\t  DEFAULT_FILE_MODE: 33188, // 010644 = -rw-r--r-- = S_IFREG | S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH\n\t  DEFAULT_DIR_MODE: 16877,  // 040755 = drwxr-xr-x = S_IFDIR | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH\n\n\t  EXT_FILE_ATTR_DIR: 1106051088,  // 010173200020 = drwxr-xr-x = (((S_IFDIR | 0755) << 16) | S_DOS_D)\n\t  EXT_FILE_ATTR_FILE: 2175008800, // 020151000040 = -rw-r--r-- = (((S_IFREG | 0644) << 16) | S_DOS_A) >>> 0\n\n\t  // Unix file types\n\t  S_IFMT: 61440,   // 0170000 type of file mask\n\t  S_IFIFO: 4096,   // 010000 named pipe (fifo)\n\t  S_IFCHR: 8192,   // 020000 character special\n\t  S_IFDIR: 16384,  // 040000 directory\n\t  S_IFBLK: 24576,  // 060000 block special\n\t  S_IFREG: 32768,  // 0100000 regular\n\t  S_IFLNK: 40960,  // 0120000 symbolic link\n\t  S_IFSOCK: 49152, // 0140000 socket\n\n\t  // DOS file type flags\n\t  S_DOS_A: 32, // 040 Archive\n\t  S_DOS_D: 16, // 020 Directory\n\t  S_DOS_V: 8,  // 010 Volume\n\t  S_DOS_S: 4,  // 04 System\n\t  S_DOS_H: 2,  // 02 Hidden\n\t  S_DOS_R: 1   // 01 Read Only\n\t};\n\treturn constants$1;\n}\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar hasRequiredZipArchiveEntry;\n\nfunction requireZipArchiveEntry () {\n\tif (hasRequiredZipArchiveEntry) return zipArchiveEntry.exports;\n\thasRequiredZipArchiveEntry = 1;\n\tvar inherits = require$$0__default$1.inherits;\n\tvar normalizePath = requireNormalizePath();\n\n\tvar ArchiveEntry = requireArchiveEntry();\n\tvar GeneralPurposeBit = requireGeneralPurposeBit();\n\tvar UnixStat = requireUnixStat();\n\n\tvar constants = requireConstants$1();\n\tvar zipUtil = requireUtil$1();\n\n\tvar ZipArchiveEntry = zipArchiveEntry.exports = function(name) {\n\t  if (!(this instanceof ZipArchiveEntry)) {\n\t    return new ZipArchiveEntry(name);\n\t  }\n\n\t  ArchiveEntry.call(this);\n\n\t  this.platform = constants.PLATFORM_FAT;\n\t  this.method = -1;\n\n\t  this.name = null;\n\t  this.size = 0;\n\t  this.csize = 0;\n\t  this.gpb = new GeneralPurposeBit();\n\t  this.crc = 0;\n\t  this.time = -1;\n\n\t  this.minver = constants.MIN_VERSION_INITIAL;\n\t  this.mode = -1;\n\t  this.extra = null;\n\t  this.exattr = 0;\n\t  this.inattr = 0;\n\t  this.comment = null;\n\n\t  if (name) {\n\t    this.setName(name);\n\t  }\n\t};\n\n\tinherits(ZipArchiveEntry, ArchiveEntry);\n\n\t/**\n\t * Returns the extra fields related to the entry.\n\t *\n\t * @returns {Buffer}\n\t */\n\tZipArchiveEntry.prototype.getCentralDirectoryExtra = function() {\n\t  return this.getExtra();\n\t};\n\n\t/**\n\t * Returns the comment set for the entry.\n\t *\n\t * @returns {string}\n\t */\n\tZipArchiveEntry.prototype.getComment = function() {\n\t  return this.comment !== null ? this.comment : '';\n\t};\n\n\t/**\n\t * Returns the compressed size of the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getCompressedSize = function() {\n\t  return this.csize;\n\t};\n\n\t/**\n\t * Returns the CRC32 digest for the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getCrc = function() {\n\t  return this.crc;\n\t};\n\n\t/**\n\t * Returns the external file attributes for the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getExternalAttributes = function() {\n\t  return this.exattr;\n\t};\n\n\t/**\n\t * Returns the extra fields related to the entry.\n\t *\n\t * @returns {Buffer}\n\t */\n\tZipArchiveEntry.prototype.getExtra = function() {\n\t  return this.extra !== null ? this.extra : constants.EMPTY;\n\t};\n\n\t/**\n\t * Returns the general purpose bits related to the entry.\n\t *\n\t * @returns {GeneralPurposeBit}\n\t */\n\tZipArchiveEntry.prototype.getGeneralPurposeBit = function() {\n\t  return this.gpb;\n\t};\n\n\t/**\n\t * Returns the internal file attributes for the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getInternalAttributes = function() {\n\t  return this.inattr;\n\t};\n\n\t/**\n\t * Returns the last modified date of the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getLastModifiedDate = function() {\n\t  return this.getTime();\n\t};\n\n\t/**\n\t * Returns the extra fields related to the entry.\n\t *\n\t * @returns {Buffer}\n\t */\n\tZipArchiveEntry.prototype.getLocalFileDataExtra = function() {\n\t  return this.getExtra();\n\t};\n\n\t/**\n\t * Returns the compression method used on the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getMethod = function() {\n\t  return this.method;\n\t};\n\n\t/**\n\t * Returns the filename of the entry.\n\t *\n\t * @returns {string}\n\t */\n\tZipArchiveEntry.prototype.getName = function() {\n\t  return this.name;\n\t};\n\n\t/**\n\t * Returns the platform on which the entry was made.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getPlatform = function() {\n\t  return this.platform;\n\t};\n\n\t/**\n\t * Returns the size of the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getSize = function() {\n\t  return this.size;\n\t};\n\n\t/**\n\t * Returns a date object representing the last modified date of the entry.\n\t *\n\t * @returns {number|Date}\n\t */\n\tZipArchiveEntry.prototype.getTime = function() {\n\t  return this.time !== -1 ? zipUtil.dosToDate(this.time) : -1;\n\t};\n\n\t/**\n\t * Returns the DOS timestamp for the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getTimeDos = function() {\n\t  return this.time !== -1 ? this.time : 0;\n\t};\n\n\t/**\n\t * Returns the UNIX file permissions for the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getUnixMode = function() {\n\t  return this.platform !== constants.PLATFORM_UNIX ? 0 : ((this.getExternalAttributes() >> constants.SHORT_SHIFT) & constants.SHORT_MASK);\n\t};\n\n\t/**\n\t * Returns the version of ZIP needed to extract the entry.\n\t *\n\t * @returns {number}\n\t */\n\tZipArchiveEntry.prototype.getVersionNeededToExtract = function() {\n\t  return this.minver;\n\t};\n\n\t/**\n\t * Sets the comment of the entry.\n\t *\n\t * @param comment\n\t */\n\tZipArchiveEntry.prototype.setComment = function(comment) {\n\t  if (Buffer.byteLength(comment) !== comment.length) {\n\t    this.getGeneralPurposeBit().useUTF8ForNames(true);\n\t  }\n\n\t  this.comment = comment;\n\t};\n\n\t/**\n\t * Sets the compressed size of the entry.\n\t *\n\t * @param size\n\t */\n\tZipArchiveEntry.prototype.setCompressedSize = function(size) {\n\t  if (size < 0) {\n\t    throw new Error('invalid entry compressed size');\n\t  }\n\n\t  this.csize = size;\n\t};\n\n\t/**\n\t * Sets the checksum of the entry.\n\t *\n\t * @param crc\n\t */\n\tZipArchiveEntry.prototype.setCrc = function(crc) {\n\t  if (crc < 0) {\n\t    throw new Error('invalid entry crc32');\n\t  }\n\n\t  this.crc = crc;\n\t};\n\n\t/**\n\t * Sets the external file attributes of the entry.\n\t *\n\t * @param attr\n\t */\n\tZipArchiveEntry.prototype.setExternalAttributes = function(attr) {\n\t  this.exattr = attr >>> 0;\n\t};\n\n\t/**\n\t * Sets the extra fields related to the entry.\n\t *\n\t * @param extra\n\t */\n\tZipArchiveEntry.prototype.setExtra = function(extra) {\n\t  this.extra = extra;\n\t};\n\n\t/**\n\t * Sets the general purpose bits related to the entry.\n\t *\n\t * @param gpb\n\t */\n\tZipArchiveEntry.prototype.setGeneralPurposeBit = function(gpb) {\n\t  if (!(gpb instanceof GeneralPurposeBit)) {\n\t    throw new Error('invalid entry GeneralPurposeBit');\n\t  }\n\n\t  this.gpb = gpb;\n\t};\n\n\t/**\n\t * Sets the internal file attributes of the entry.\n\t *\n\t * @param attr\n\t */\n\tZipArchiveEntry.prototype.setInternalAttributes = function(attr) {\n\t  this.inattr = attr;\n\t};\n\n\t/**\n\t * Sets the compression method of the entry.\n\t *\n\t * @param method\n\t */\n\tZipArchiveEntry.prototype.setMethod = function(method) {\n\t  if (method < 0) {\n\t    throw new Error('invalid entry compression method');\n\t  }\n\n\t  this.method = method;\n\t};\n\n\t/**\n\t * Sets the name of the entry.\n\t *\n\t * @param name\n\t * @param prependSlash\n\t */\n\tZipArchiveEntry.prototype.setName = function(name, prependSlash = false) {\n\t  name = normalizePath(name, false)\n\t    .replace(/^\\w+:/, '')\n\t    .replace(/^(\\.\\.\\/|\\/)+/, '');\n\n\t  if (prependSlash) {\n\t    name = `/${name}`;\n\t  }\n\n\t  if (Buffer.byteLength(name) !== name.length) {\n\t    this.getGeneralPurposeBit().useUTF8ForNames(true);\n\t  }\n\n\t  this.name = name;\n\t};\n\n\t/**\n\t * Sets the platform on which the entry was made.\n\t *\n\t * @param platform\n\t */\n\tZipArchiveEntry.prototype.setPlatform = function(platform) {\n\t  this.platform = platform;\n\t};\n\n\t/**\n\t * Sets the size of the entry.\n\t *\n\t * @param size\n\t */\n\tZipArchiveEntry.prototype.setSize = function(size) {\n\t  if (size < 0) {\n\t    throw new Error('invalid entry size');\n\t  }\n\n\t  this.size = size;\n\t};\n\n\t/**\n\t * Sets the time of the entry.\n\t *\n\t * @param time\n\t * @param forceLocalTime\n\t */\n\tZipArchiveEntry.prototype.setTime = function(time, forceLocalTime) {\n\t  if (!(time instanceof Date)) {\n\t    throw new Error('invalid entry time');\n\t  }\n\n\t  this.time = zipUtil.dateToDos(time, forceLocalTime);\n\t};\n\n\t/**\n\t * Sets the UNIX file permissions for the entry.\n\t *\n\t * @param mode\n\t */\n\tZipArchiveEntry.prototype.setUnixMode = function(mode) {\n\t  mode |= this.isDirectory() ? constants.S_IFDIR : constants.S_IFREG;\n\n\t  var extattr = 0;\n\t  extattr |= (mode << constants.SHORT_SHIFT) | (this.isDirectory() ? constants.S_DOS_D : constants.S_DOS_A);\n\n\t  this.setExternalAttributes(extattr);\n\t  this.mode = mode & constants.MODE_MASK;\n\t  this.platform = constants.PLATFORM_UNIX;\n\t};\n\n\t/**\n\t * Sets the version of ZIP needed to extract this entry.\n\t *\n\t * @param minver\n\t */\n\tZipArchiveEntry.prototype.setVersionNeededToExtract = function(minver) {\n\t  this.minver = minver;\n\t};\n\n\t/**\n\t * Returns true if this entry represents a directory.\n\t *\n\t * @returns {boolean}\n\t */\n\tZipArchiveEntry.prototype.isDirectory = function() {\n\t  return this.getName().slice(-1) === '/';\n\t};\n\n\t/**\n\t * Returns true if this entry represents a unix symlink,\n\t * in which case the entry's content contains the target path\n\t * for the symlink.\n\t *\n\t * @returns {boolean}\n\t */\n\tZipArchiveEntry.prototype.isUnixSymlink = function() {\n\t  return (this.getUnixMode() & UnixStat.FILE_TYPE_FLAG) === UnixStat.LINK_FLAG;\n\t};\n\n\t/**\n\t * Returns true if this entry is using the ZIP64 extension of ZIP.\n\t *\n\t * @returns {boolean}\n\t */\n\tZipArchiveEntry.prototype.isZip64 = function() {\n\t  return this.csize > constants.ZIP64_MAGIC || this.size > constants.ZIP64_MAGIC;\n\t};\n\treturn zipArchiveEntry.exports;\n}\n\nvar archiveOutputStream = {exports: {}};\n\nvar util = {exports: {}};\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar hasRequiredUtil;\n\nfunction requireUtil () {\n\tif (hasRequiredUtil) return util.exports;\n\thasRequiredUtil = 1;\n\trequire$$0$b.Stream;\n\tvar PassThrough = requireOurs().PassThrough;\n\tvar isStream = requireIsStream();\n\n\tvar util$1 = util.exports = {};\n\n\tutil$1.normalizeInputSource = function(source) {\n\t  if (source === null) {\n\t    return Buffer.alloc(0);\n\t  } else if (typeof source === 'string') {\n\t    return Buffer.from(source);\n\t  } else if (isStream(source) && !source._readableState) {\n\t    var normalized = new PassThrough();\n\t    source.pipe(normalized);\n\n\t    return normalized;\n\t  }\n\n\t  return source;\n\t};\n\treturn util.exports;\n}\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar hasRequiredArchiveOutputStream;\n\nfunction requireArchiveOutputStream () {\n\tif (hasRequiredArchiveOutputStream) return archiveOutputStream.exports;\n\thasRequiredArchiveOutputStream = 1;\n\tvar inherits = require$$0__default$1.inherits;\n\tvar isStream = requireIsStream();\n\tvar Transform = requireOurs().Transform;\n\n\tvar ArchiveEntry = requireArchiveEntry();\n\tvar util = requireUtil();\n\n\tvar ArchiveOutputStream = archiveOutputStream.exports = function(options) {\n\t  if (!(this instanceof ArchiveOutputStream)) {\n\t    return new ArchiveOutputStream(options);\n\t  }\n\n\t  Transform.call(this, options);\n\n\t  this.offset = 0;\n\t  this._archive = {\n\t    finish: false,\n\t    finished: false,\n\t    processing: false\n\t  };\n\t};\n\n\tinherits(ArchiveOutputStream, Transform);\n\n\tArchiveOutputStream.prototype._appendBuffer = function(zae, source, callback) {\n\t  // scaffold only\n\t};\n\n\tArchiveOutputStream.prototype._appendStream = function(zae, source, callback) {\n\t  // scaffold only\n\t};\n\n\tArchiveOutputStream.prototype._emitErrorCallback = function(err) {\n\t  if (err) {\n\t    this.emit('error', err);\n\t  }\n\t};\n\n\tArchiveOutputStream.prototype._finish = function(ae) {\n\t  // scaffold only\n\t};\n\n\tArchiveOutputStream.prototype._normalizeEntry = function(ae) {\n\t  // scaffold only\n\t};\n\n\tArchiveOutputStream.prototype._transform = function(chunk, encoding, callback) {\n\t  callback(null, chunk);\n\t};\n\n\tArchiveOutputStream.prototype.entry = function(ae, source, callback) {\n\t  source = source || null;\n\n\t  if (typeof callback !== 'function') {\n\t    callback = this._emitErrorCallback.bind(this);\n\t  }\n\n\t  if (!(ae instanceof ArchiveEntry)) {\n\t    callback(new Error('not a valid instance of ArchiveEntry'));\n\t    return;\n\t  }\n\n\t  if (this._archive.finish || this._archive.finished) {\n\t    callback(new Error('unacceptable entry after finish'));\n\t    return;\n\t  }\n\n\t  if (this._archive.processing) {\n\t    callback(new Error('already processing an entry'));\n\t    return;\n\t  }\n\n\t  this._archive.processing = true;\n\t  this._normalizeEntry(ae);\n\t  this._entry = ae;\n\n\t  source = util.normalizeInputSource(source);\n\n\t  if (Buffer.isBuffer(source)) {\n\t    this._appendBuffer(ae, source, callback);\n\t  } else if (isStream(source)) {\n\t    this._appendStream(ae, source, callback);\n\t  } else {\n\t    this._archive.processing = false;\n\t    callback(new Error('input source must be valid Stream or Buffer instance'));\n\t    return;\n\t  }\n\n\t  return this;\n\t};\n\n\tArchiveOutputStream.prototype.finish = function() {\n\t  if (this._archive.processing) {\n\t    this._archive.finish = true;\n\t    return;\n\t  }\n\n\t  this._finish();\n\t};\n\n\tArchiveOutputStream.prototype.getBytesWritten = function() {\n\t  return this.offset;\n\t};\n\n\tArchiveOutputStream.prototype.write = function(chunk, cb) {\n\t  if (chunk) {\n\t    this.offset += chunk.length;\n\t  }\n\n\t  return Transform.prototype.write.call(this, chunk, cb);\n\t};\n\treturn archiveOutputStream.exports;\n}\n\nvar zipArchiveOutputStream = {exports: {}};\n\nvar crc32 = {};\n\n/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */\n\nvar hasRequiredCrc32;\n\nfunction requireCrc32 () {\n\tif (hasRequiredCrc32) return crc32;\n\thasRequiredCrc32 = 1;\n\t(function (exports) {\n\t\t(function (factory) {\n\t\t\t/*jshint ignore:start */\n\t\t\t/*eslint-disable */\n\t\t\tif(typeof DO_NOT_EXPORT_CRC === 'undefined') {\n\t\t\t\t{\n\t\t\t\t\tfactory(exports);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfactory({});\n\t\t\t}\n\t\t\t/*eslint-enable */\n\t\t\t/*jshint ignore:end */\n\t\t}(function(CRC32) {\n\t\tCRC32.version = '1.2.2';\n\t\t/*global Int32Array */\n\t\tfunction signed_crc_table() {\n\t\t\tvar c = 0, table = new Array(256);\n\n\t\t\tfor(var n =0; n != 256; ++n){\n\t\t\t\tc = n;\n\t\t\t\tc = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));\n\t\t\t\tc = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));\n\t\t\t\tc = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));\n\t\t\t\tc = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));\n\t\t\t\tc = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));\n\t\t\t\tc = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));\n\t\t\t\tc = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));\n\t\t\t\tc = ((c&1) ? (-306674912 ^ (c >>> 1)) : (c >>> 1));\n\t\t\t\ttable[n] = c;\n\t\t\t}\n\n\t\t\treturn typeof Int32Array !== 'undefined' ? new Int32Array(table) : table;\n\t\t}\n\n\t\tvar T0 = signed_crc_table();\n\t\tfunction slice_by_16_tables(T) {\n\t\t\tvar c = 0, v = 0, n = 0, table = typeof Int32Array !== 'undefined' ? new Int32Array(4096) : new Array(4096) ;\n\n\t\t\tfor(n = 0; n != 256; ++n) table[n] = T[n];\n\t\t\tfor(n = 0; n != 256; ++n) {\n\t\t\t\tv = T[n];\n\t\t\t\tfor(c = 256 + n; c < 4096; c += 256) v = table[c] = (v >>> 8) ^ T[v & 0xFF];\n\t\t\t}\n\t\t\tvar out = [];\n\t\t\tfor(n = 1; n != 16; ++n) out[n - 1] = typeof Int32Array !== 'undefined' ? table.subarray(n * 256, n * 256 + 256) : table.slice(n * 256, n * 256 + 256);\n\t\t\treturn out;\n\t\t}\n\t\tvar TT = slice_by_16_tables(T0);\n\t\tvar T1 = TT[0],  T2 = TT[1],  T3 = TT[2],  T4 = TT[3],  T5 = TT[4];\n\t\tvar T6 = TT[5],  T7 = TT[6],  T8 = TT[7],  T9 = TT[8],  Ta = TT[9];\n\t\tvar Tb = TT[10], Tc = TT[11], Td = TT[12], Te = TT[13], Tf = TT[14];\n\t\tfunction crc32_bstr(bstr, seed) {\n\t\t\tvar C = seed ^ -1;\n\t\t\tfor(var i = 0, L = bstr.length; i < L;) C = (C>>>8) ^ T0[(C^bstr.charCodeAt(i++))&0xFF];\n\t\t\treturn ~C;\n\t\t}\n\n\t\tfunction crc32_buf(B, seed) {\n\t\t\tvar C = seed ^ -1, L = B.length - 15, i = 0;\n\t\t\tfor(; i < L;) C =\n\t\t\t\tTf[B[i++] ^ (C & 255)] ^\n\t\t\t\tTe[B[i++] ^ ((C >> 8) & 255)] ^\n\t\t\t\tTd[B[i++] ^ ((C >> 16) & 255)] ^\n\t\t\t\tTc[B[i++] ^ (C >>> 24)] ^\n\t\t\t\tTb[B[i++]] ^ Ta[B[i++]] ^ T9[B[i++]] ^ T8[B[i++]] ^\n\t\t\t\tT7[B[i++]] ^ T6[B[i++]] ^ T5[B[i++]] ^ T4[B[i++]] ^\n\t\t\t\tT3[B[i++]] ^ T2[B[i++]] ^ T1[B[i++]] ^ T0[B[i++]];\n\t\t\tL += 15;\n\t\t\twhile(i < L) C = (C>>>8) ^ T0[(C^B[i++])&0xFF];\n\t\t\treturn ~C;\n\t\t}\n\n\t\tfunction crc32_str(str, seed) {\n\t\t\tvar C = seed ^ -1;\n\t\t\tfor(var i = 0, L = str.length, c = 0, d = 0; i < L;) {\n\t\t\t\tc = str.charCodeAt(i++);\n\t\t\t\tif(c < 0x80) {\n\t\t\t\t\tC = (C>>>8) ^ T0[(C^c)&0xFF];\n\t\t\t\t} else if(c < 0x800) {\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (192|((c>>6)&31)))&0xFF];\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];\n\t\t\t\t} else if(c >= 0xD800 && c < 0xE000) {\n\t\t\t\t\tc = (c&1023)+64; d = str.charCodeAt(i++)&1023;\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (240|((c>>8)&7)))&0xFF];\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (128|((c>>2)&63)))&0xFF];\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (128|((d>>6)&15)|((c&3)<<4)))&0xFF];\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (128|(d&63)))&0xFF];\n\t\t\t\t} else {\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (224|((c>>12)&15)))&0xFF];\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (128|((c>>6)&63)))&0xFF];\n\t\t\t\t\tC = (C>>>8) ^ T0[(C ^ (128|(c&63)))&0xFF];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn ~C;\n\t\t}\n\t\tCRC32.table = T0;\n\t\t// $FlowIgnore\n\t\tCRC32.bstr = crc32_bstr;\n\t\t// $FlowIgnore\n\t\tCRC32.buf = crc32_buf;\n\t\t// $FlowIgnore\n\t\tCRC32.str = crc32_str;\n\t\t})); \n\t} (crc32));\n\treturn crc32;\n}\n\n/**\n * node-crc32-stream\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-crc32-stream/blob/master/LICENSE-MIT\n */\n\nvar crc32Stream;\nvar hasRequiredCrc32Stream;\n\nfunction requireCrc32Stream () {\n\tif (hasRequiredCrc32Stream) return crc32Stream;\n\thasRequiredCrc32Stream = 1;\n\n\tconst {Transform} = requireOurs();\n\n\tconst crc32 = requireCrc32();\n\n\tclass CRC32Stream extends Transform {\n\t  constructor(options) {\n\t    super(options);\n\t    this.checksum = Buffer.allocUnsafe(4);\n\t    this.checksum.writeInt32BE(0, 0);\n\n\t    this.rawSize = 0;\n\t  }\n\n\t  _transform(chunk, encoding, callback) {\n\t    if (chunk) {\n\t      this.checksum = crc32.buf(chunk, this.checksum) >>> 0;\n\t      this.rawSize += chunk.length;\n\t    }\n\n\t    callback(null, chunk);\n\t  }\n\n\t  digest(encoding) {\n\t    const checksum = Buffer.allocUnsafe(4);\n\t    checksum.writeUInt32BE(this.checksum >>> 0, 0);\n\t    return encoding ? checksum.toString(encoding) : checksum;\n\t  }\n\n\t  hex() {\n\t    return this.digest('hex').toUpperCase();\n\t  }\n\n\t  size() {\n\t    return this.rawSize;\n\t  }\n\t}\n\n\tcrc32Stream = CRC32Stream;\n\treturn crc32Stream;\n}\n\n/**\n * node-crc32-stream\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-crc32-stream/blob/master/LICENSE-MIT\n */\n\nvar deflateCrc32Stream;\nvar hasRequiredDeflateCrc32Stream;\n\nfunction requireDeflateCrc32Stream () {\n\tif (hasRequiredDeflateCrc32Stream) return deflateCrc32Stream;\n\thasRequiredDeflateCrc32Stream = 1;\n\n\tconst {DeflateRaw} = zlib$1;\n\n\tconst crc32 = requireCrc32();\n\n\tclass DeflateCRC32Stream extends DeflateRaw {\n\t  constructor(options) {\n\t    super(options);\n\n\t    this.checksum = Buffer.allocUnsafe(4);\n\t    this.checksum.writeInt32BE(0, 0);\n\n\t    this.rawSize = 0;\n\t    this.compressedSize = 0;\n\t  }\n\n\t  push(chunk, encoding) {\n\t    if (chunk) {\n\t      this.compressedSize += chunk.length;\n\t    }\n\n\t    return super.push(chunk, encoding);\n\t  }\n\n\t  _transform(chunk, encoding, callback) {\n\t    if (chunk) {\n\t      this.checksum = crc32.buf(chunk, this.checksum) >>> 0;\n\t      this.rawSize += chunk.length;\n\t    }\n\n\t    super._transform(chunk, encoding, callback);\n\t  }\n\n\t  digest(encoding) {\n\t    const checksum = Buffer.allocUnsafe(4);\n\t    checksum.writeUInt32BE(this.checksum >>> 0, 0);\n\t    return encoding ? checksum.toString(encoding) : checksum;\n\t  }\n\n\t  hex() {\n\t    return this.digest('hex').toUpperCase();\n\t  }\n\n\t  size(compressed = false) {\n\t    if (compressed) {\n\t      return this.compressedSize;\n\t    } else {\n\t      return this.rawSize;\n\t    }\n\t  }\n\t}\n\n\tdeflateCrc32Stream = DeflateCRC32Stream;\n\treturn deflateCrc32Stream;\n}\n\n/**\n * node-crc32-stream\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-crc32-stream/blob/master/LICENSE-MIT\n */\n\nvar lib$1;\nvar hasRequiredLib$1;\n\nfunction requireLib$1 () {\n\tif (hasRequiredLib$1) return lib$1;\n\thasRequiredLib$1 = 1;\n\n\tlib$1 = {\n\t  CRC32Stream: requireCrc32Stream(),\n\t  DeflateCRC32Stream: requireDeflateCrc32Stream()\n\t};\n\treturn lib$1;\n}\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar hasRequiredZipArchiveOutputStream;\n\nfunction requireZipArchiveOutputStream () {\n\tif (hasRequiredZipArchiveOutputStream) return zipArchiveOutputStream.exports;\n\thasRequiredZipArchiveOutputStream = 1;\n\tvar inherits = require$$0__default$1.inherits;\n\tvar crc32 = requireCrc32();\n\tvar {CRC32Stream} = requireLib$1();\n\tvar {DeflateCRC32Stream} = requireLib$1();\n\n\tvar ArchiveOutputStream = requireArchiveOutputStream();\n\trequireZipArchiveEntry();\n\trequireGeneralPurposeBit();\n\n\tvar constants = requireConstants$1();\n\trequireUtil();\n\tvar zipUtil = requireUtil$1();\n\n\tvar ZipArchiveOutputStream = zipArchiveOutputStream.exports = function(options) {\n\t  if (!(this instanceof ZipArchiveOutputStream)) {\n\t    return new ZipArchiveOutputStream(options);\n\t  }\n\n\t  options = this.options = this._defaults(options);\n\n\t  ArchiveOutputStream.call(this, options);\n\n\t  this._entry = null;\n\t  this._entries = [];\n\t  this._archive = {\n\t    centralLength: 0,\n\t    centralOffset: 0,\n\t    comment: '',\n\t    finish: false,\n\t    finished: false,\n\t    processing: false,\n\t    forceZip64: options.forceZip64,\n\t    forceLocalTime: options.forceLocalTime\n\t  };\n\t};\n\n\tinherits(ZipArchiveOutputStream, ArchiveOutputStream);\n\n\tZipArchiveOutputStream.prototype._afterAppend = function(ae) {\n\t  this._entries.push(ae);\n\n\t  if (ae.getGeneralPurposeBit().usesDataDescriptor()) {\n\t    this._writeDataDescriptor(ae);\n\t  }\n\n\t  this._archive.processing = false;\n\t  this._entry = null;\n\n\t  if (this._archive.finish && !this._archive.finished) {\n\t    this._finish();\n\t  }\n\t};\n\n\tZipArchiveOutputStream.prototype._appendBuffer = function(ae, source, callback) {\n\t  if (source.length === 0) {\n\t    ae.setMethod(constants.METHOD_STORED);\n\t  }\n\n\t  var method = ae.getMethod();\n\n\t  if (method === constants.METHOD_STORED) {\n\t    ae.setSize(source.length);\n\t    ae.setCompressedSize(source.length);\n\t    ae.setCrc(crc32.buf(source) >>> 0);\n\t  }\n\n\t  this._writeLocalFileHeader(ae);\n\n\t  if (method === constants.METHOD_STORED) {\n\t    this.write(source);\n\t    this._afterAppend(ae);\n\t    callback(null, ae);\n\t    return;\n\t  } else if (method === constants.METHOD_DEFLATED) {\n\t    this._smartStream(ae, callback).end(source);\n\t    return;\n\t  } else {\n\t    callback(new Error('compression method ' + method + ' not implemented'));\n\t    return;\n\t  }\n\t};\n\n\tZipArchiveOutputStream.prototype._appendStream = function(ae, source, callback) {\n\t  ae.getGeneralPurposeBit().useDataDescriptor(true);\n\t  ae.setVersionNeededToExtract(constants.MIN_VERSION_DATA_DESCRIPTOR);\n\n\t  this._writeLocalFileHeader(ae);\n\n\t  var smart = this._smartStream(ae, callback);\n\t  source.once('error', function(err) {\n\t    smart.emit('error', err);\n\t    smart.end();\n\t  });\n\t  source.pipe(smart);\n\t};\n\n\tZipArchiveOutputStream.prototype._defaults = function(o) {\n\t  if (typeof o !== 'object') {\n\t    o = {};\n\t  }\n\n\t  if (typeof o.zlib !== 'object') {\n\t    o.zlib = {};\n\t  }\n\n\t  if (typeof o.zlib.level !== 'number') {\n\t    o.zlib.level = constants.ZLIB_BEST_SPEED;\n\t  }\n\n\t  o.forceZip64 = !!o.forceZip64;\n\t  o.forceLocalTime = !!o.forceLocalTime;\n\n\t  return o;\n\t};\n\n\tZipArchiveOutputStream.prototype._finish = function() {\n\t  this._archive.centralOffset = this.offset;\n\n\t  this._entries.forEach(function(ae) {\n\t    this._writeCentralFileHeader(ae);\n\t  }.bind(this));\n\n\t  this._archive.centralLength = this.offset - this._archive.centralOffset;\n\n\t  if (this.isZip64()) {\n\t    this._writeCentralDirectoryZip64();\n\t  }\n\n\t  this._writeCentralDirectoryEnd();\n\n\t  this._archive.processing = false;\n\t  this._archive.finish = true;\n\t  this._archive.finished = true;\n\t  this.end();\n\t};\n\n\tZipArchiveOutputStream.prototype._normalizeEntry = function(ae) {\n\t  if (ae.getMethod() === -1) {\n\t    ae.setMethod(constants.METHOD_DEFLATED);\n\t  }\n\n\t  if (ae.getMethod() === constants.METHOD_DEFLATED) {\n\t    ae.getGeneralPurposeBit().useDataDescriptor(true);\n\t    ae.setVersionNeededToExtract(constants.MIN_VERSION_DATA_DESCRIPTOR);\n\t  }\n\n\t  if (ae.getTime() === -1) {\n\t    ae.setTime(new Date(), this._archive.forceLocalTime);\n\t  }\n\n\t  ae._offsets = {\n\t    file: 0,\n\t    data: 0,\n\t    contents: 0,\n\t  };\n\t};\n\n\tZipArchiveOutputStream.prototype._smartStream = function(ae, callback) {\n\t  var deflate = ae.getMethod() === constants.METHOD_DEFLATED;\n\t  var process = deflate ? new DeflateCRC32Stream(this.options.zlib) : new CRC32Stream();\n\t  var error = null;\n\n\t  function handleStuff() {\n\t    var digest = process.digest().readUInt32BE(0);\n\t    ae.setCrc(digest);\n\t    ae.setSize(process.size());\n\t    ae.setCompressedSize(process.size(true));\n\t    this._afterAppend(ae);\n\t    callback(error, ae);\n\t  }\n\n\t  process.once('end', handleStuff.bind(this));\n\t  process.once('error', function(err) {\n\t    error = err;\n\t  });\n\n\t  process.pipe(this, { end: false });\n\n\t  return process;\n\t};\n\n\tZipArchiveOutputStream.prototype._writeCentralDirectoryEnd = function() {\n\t  var records = this._entries.length;\n\t  var size = this._archive.centralLength;\n\t  var offset = this._archive.centralOffset;\n\n\t  if (this.isZip64()) {\n\t    records = constants.ZIP64_MAGIC_SHORT;\n\t    size = constants.ZIP64_MAGIC;\n\t    offset = constants.ZIP64_MAGIC;\n\t  }\n\n\t  // signature\n\t  this.write(zipUtil.getLongBytes(constants.SIG_EOCD));\n\n\t  // disk numbers\n\t  this.write(constants.SHORT_ZERO);\n\t  this.write(constants.SHORT_ZERO);\n\n\t  // number of entries\n\t  this.write(zipUtil.getShortBytes(records));\n\t  this.write(zipUtil.getShortBytes(records));\n\n\t  // length and location of CD\n\t  this.write(zipUtil.getLongBytes(size));\n\t  this.write(zipUtil.getLongBytes(offset));\n\n\t  // archive comment\n\t  var comment = this.getComment();\n\t  var commentLength = Buffer.byteLength(comment);\n\t  this.write(zipUtil.getShortBytes(commentLength));\n\t  this.write(comment);\n\t};\n\n\tZipArchiveOutputStream.prototype._writeCentralDirectoryZip64 = function() {\n\t  // signature\n\t  this.write(zipUtil.getLongBytes(constants.SIG_ZIP64_EOCD));\n\n\t  // size of the ZIP64 EOCD record\n\t  this.write(zipUtil.getEightBytes(44));\n\n\t  // version made by\n\t  this.write(zipUtil.getShortBytes(constants.MIN_VERSION_ZIP64));\n\n\t  // version to extract\n\t  this.write(zipUtil.getShortBytes(constants.MIN_VERSION_ZIP64));\n\n\t  // disk numbers\n\t  this.write(constants.LONG_ZERO);\n\t  this.write(constants.LONG_ZERO);\n\n\t  // number of entries\n\t  this.write(zipUtil.getEightBytes(this._entries.length));\n\t  this.write(zipUtil.getEightBytes(this._entries.length));\n\n\t  // length and location of CD\n\t  this.write(zipUtil.getEightBytes(this._archive.centralLength));\n\t  this.write(zipUtil.getEightBytes(this._archive.centralOffset));\n\n\t  // extensible data sector\n\t  // not implemented at this time\n\n\t  // end of central directory locator\n\t  this.write(zipUtil.getLongBytes(constants.SIG_ZIP64_EOCD_LOC));\n\n\t  // disk number holding the ZIP64 EOCD record\n\t  this.write(constants.LONG_ZERO);\n\n\t  // relative offset of the ZIP64 EOCD record\n\t  this.write(zipUtil.getEightBytes(this._archive.centralOffset + this._archive.centralLength));\n\n\t  // total number of disks\n\t  this.write(zipUtil.getLongBytes(1));\n\t};\n\n\tZipArchiveOutputStream.prototype._writeCentralFileHeader = function(ae) {\n\t  var gpb = ae.getGeneralPurposeBit();\n\t  var method = ae.getMethod();\n\t  var fileOffset = ae._offsets.file;\n\n\t  var size = ae.getSize();\n\t  var compressedSize = ae.getCompressedSize();\n\n\t  if (ae.isZip64() || fileOffset > constants.ZIP64_MAGIC) {\n\t    size = constants.ZIP64_MAGIC;\n\t    compressedSize = constants.ZIP64_MAGIC;\n\t    fileOffset = constants.ZIP64_MAGIC;\n\n\t    ae.setVersionNeededToExtract(constants.MIN_VERSION_ZIP64);\n\n\t    var extraBuf = Buffer.concat([\n\t      zipUtil.getShortBytes(constants.ZIP64_EXTRA_ID),\n\t      zipUtil.getShortBytes(24),\n\t      zipUtil.getEightBytes(ae.getSize()),\n\t      zipUtil.getEightBytes(ae.getCompressedSize()),\n\t      zipUtil.getEightBytes(ae._offsets.file)\n\t    ], 28);\n\n\t    ae.setExtra(extraBuf);\n\t  }\n\n\t  // signature\n\t  this.write(zipUtil.getLongBytes(constants.SIG_CFH));\n\n\t  // version made by\n\t  this.write(zipUtil.getShortBytes((ae.getPlatform() << 8) | constants.VERSION_MADEBY));\n\n\t  // version to extract and general bit flag\n\t  this.write(zipUtil.getShortBytes(ae.getVersionNeededToExtract()));\n\t  this.write(gpb.encode());\n\n\t  // compression method\n\t  this.write(zipUtil.getShortBytes(method));\n\n\t  // datetime\n\t  this.write(zipUtil.getLongBytes(ae.getTimeDos()));\n\n\t  // crc32 checksum\n\t  this.write(zipUtil.getLongBytes(ae.getCrc()));\n\n\t  // sizes\n\t  this.write(zipUtil.getLongBytes(compressedSize));\n\t  this.write(zipUtil.getLongBytes(size));\n\n\t  var name = ae.getName();\n\t  var comment = ae.getComment();\n\t  var extra = ae.getCentralDirectoryExtra();\n\n\t  if (gpb.usesUTF8ForNames()) {\n\t    name = Buffer.from(name);\n\t    comment = Buffer.from(comment);\n\t  }\n\n\t  // name length\n\t  this.write(zipUtil.getShortBytes(name.length));\n\n\t  // extra length\n\t  this.write(zipUtil.getShortBytes(extra.length));\n\n\t  // comments length\n\t  this.write(zipUtil.getShortBytes(comment.length));\n\n\t  // disk number start\n\t  this.write(constants.SHORT_ZERO);\n\n\t  // internal attributes\n\t  this.write(zipUtil.getShortBytes(ae.getInternalAttributes()));\n\n\t  // external attributes\n\t  this.write(zipUtil.getLongBytes(ae.getExternalAttributes()));\n\n\t  // relative offset of LFH\n\t  this.write(zipUtil.getLongBytes(fileOffset));\n\n\t  // name\n\t  this.write(name);\n\n\t  // extra\n\t  this.write(extra);\n\n\t  // comment\n\t  this.write(comment);\n\t};\n\n\tZipArchiveOutputStream.prototype._writeDataDescriptor = function(ae) {\n\t  // signature\n\t  this.write(zipUtil.getLongBytes(constants.SIG_DD));\n\n\t  // crc32 checksum\n\t  this.write(zipUtil.getLongBytes(ae.getCrc()));\n\n\t  // sizes\n\t  if (ae.isZip64()) {\n\t    this.write(zipUtil.getEightBytes(ae.getCompressedSize()));\n\t    this.write(zipUtil.getEightBytes(ae.getSize()));\n\t  } else {\n\t    this.write(zipUtil.getLongBytes(ae.getCompressedSize()));\n\t    this.write(zipUtil.getLongBytes(ae.getSize()));\n\t  }\n\t};\n\n\tZipArchiveOutputStream.prototype._writeLocalFileHeader = function(ae) {\n\t  var gpb = ae.getGeneralPurposeBit();\n\t  var method = ae.getMethod();\n\t  var name = ae.getName();\n\t  var extra = ae.getLocalFileDataExtra();\n\n\t  if (ae.isZip64()) {\n\t    gpb.useDataDescriptor(true);\n\t    ae.setVersionNeededToExtract(constants.MIN_VERSION_ZIP64);\n\t  }\n\n\t  if (gpb.usesUTF8ForNames()) {\n\t    name = Buffer.from(name);\n\t  }\n\n\t  ae._offsets.file = this.offset;\n\n\t  // signature\n\t  this.write(zipUtil.getLongBytes(constants.SIG_LFH));\n\n\t  // version to extract and general bit flag\n\t  this.write(zipUtil.getShortBytes(ae.getVersionNeededToExtract()));\n\t  this.write(gpb.encode());\n\n\t  // compression method\n\t  this.write(zipUtil.getShortBytes(method));\n\n\t  // datetime\n\t  this.write(zipUtil.getLongBytes(ae.getTimeDos()));\n\n\t  ae._offsets.data = this.offset;\n\n\t  // crc32 checksum and sizes\n\t  if (gpb.usesDataDescriptor()) {\n\t    this.write(constants.LONG_ZERO);\n\t    this.write(constants.LONG_ZERO);\n\t    this.write(constants.LONG_ZERO);\n\t  } else {\n\t    this.write(zipUtil.getLongBytes(ae.getCrc()));\n\t    this.write(zipUtil.getLongBytes(ae.getCompressedSize()));\n\t    this.write(zipUtil.getLongBytes(ae.getSize()));\n\t  }\n\n\t  // name length\n\t  this.write(zipUtil.getShortBytes(name.length));\n\n\t  // extra length\n\t  this.write(zipUtil.getShortBytes(extra.length));\n\n\t  // name\n\t  this.write(name);\n\n\t  // extra\n\t  this.write(extra);\n\n\t  ae._offsets.contents = this.offset;\n\t};\n\n\tZipArchiveOutputStream.prototype.getComment = function(comment) {\n\t  return this._archive.comment !== null ? this._archive.comment : '';\n\t};\n\n\tZipArchiveOutputStream.prototype.isZip64 = function() {\n\t  return this._archive.forceZip64 || this._entries.length > constants.ZIP64_MAGIC_SHORT || this._archive.centralLength > constants.ZIP64_MAGIC || this._archive.centralOffset > constants.ZIP64_MAGIC;\n\t};\n\n\tZipArchiveOutputStream.prototype.setComment = function(comment) {\n\t  this._archive.comment = comment;\n\t};\n\treturn zipArchiveOutputStream.exports;\n}\n\n/**\n * node-compress-commons\n *\n * Copyright (c) 2014 Chris Talkington, contributors.\n * Licensed under the MIT license.\n * https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT\n */\n\nvar compressCommons;\nvar hasRequiredCompressCommons;\n\nfunction requireCompressCommons () {\n\tif (hasRequiredCompressCommons) return compressCommons;\n\thasRequiredCompressCommons = 1;\n\tcompressCommons = {\n\t  ArchiveEntry: requireArchiveEntry(),\n\t  ZipArchiveEntry: requireZipArchiveEntry(),\n\t  ArchiveOutputStream: requireArchiveOutputStream(),\n\t  ZipArchiveOutputStream: requireZipArchiveOutputStream()\n\t};\n\treturn compressCommons;\n}\n\n/**\n * ZipStream\n *\n * @ignore\n * @license [MIT]{@link https://github.com/archiverjs/node-zip-stream/blob/master/LICENSE}\n * @copyright (c) 2014 Chris Talkington, contributors.\n */\n\nvar hasRequiredZipStream;\n\nfunction requireZipStream () {\n\tif (hasRequiredZipStream) return zipStream.exports;\n\thasRequiredZipStream = 1;\n\tvar inherits = require$$0__default$1.inherits;\n\n\tvar ZipArchiveOutputStream = requireCompressCommons().ZipArchiveOutputStream;\n\tvar ZipArchiveEntry = requireCompressCommons().ZipArchiveEntry;\n\n\tvar util = requireArchiverUtils();\n\n\t/**\n\t * @constructor\n\t * @extends external:ZipArchiveOutputStream\n\t * @param {Object} [options]\n\t * @param {String} [options.comment] Sets the zip archive comment.\n\t * @param {Boolean} [options.forceLocalTime=false] Forces the archive to contain local file times instead of UTC.\n\t * @param {Boolean} [options.forceZip64=false] Forces the archive to contain ZIP64 headers.\n\t * @param {Boolean} [options.store=false] Sets the compression method to STORE.\n\t * @param {Object} [options.zlib] Passed to [zlib]{@link https://nodejs.org/api/zlib.html#zlib_class_options}\n\t * to control compression.\n\t */\n\tvar ZipStream = zipStream.exports = function(options) {\n\t  if (!(this instanceof ZipStream)) {\n\t    return new ZipStream(options);\n\t  }\n\n\t  options = this.options = options || {};\n\t  options.zlib = options.zlib || {};\n\n\t  ZipArchiveOutputStream.call(this, options);\n\n\t  if (typeof options.level === 'number' && options.level >= 0) {\n\t    options.zlib.level = options.level;\n\t    delete options.level;\n\t  }\n\n\t  if (!options.forceZip64 && typeof options.zlib.level === 'number' && options.zlib.level === 0) {\n\t    options.store = true;\n\t  }\n\n\t  options.namePrependSlash = options.namePrependSlash || false;\n\n\t  if (options.comment && options.comment.length > 0) {\n\t    this.setComment(options.comment);\n\t  }\n\t};\n\n\tinherits(ZipStream, ZipArchiveOutputStream);\n\n\t/**\n\t * Normalizes entry data with fallbacks for key properties.\n\t *\n\t * @private\n\t * @param  {Object} data\n\t * @return {Object}\n\t */\n\tZipStream.prototype._normalizeFileData = function(data) {\n\t  data = util.defaults(data, {\n\t    type: 'file',\n\t    name: null,\n\t    namePrependSlash: this.options.namePrependSlash,\n\t    linkname: null,\n\t    date: null,\n\t    mode: null,\n\t    store: this.options.store,\n\t    comment: ''\n\t  });\n\n\t  var isDir = data.type === 'directory';\n\t  var isSymlink = data.type === 'symlink';\n\n\t  if (data.name) {\n\t    data.name = util.sanitizePath(data.name);\n\n\t    if (!isSymlink && data.name.slice(-1) === '/') {\n\t      isDir = true;\n\t      data.type = 'directory';\n\t    } else if (isDir) {\n\t      data.name += '/';\n\t    }\n\t  }\n\n\t  if (isDir || isSymlink) {\n\t    data.store = true;\n\t  }\n\n\t  data.date = util.dateify(data.date);\n\n\t  return data;\n\t};\n\n\t/**\n\t * Appends an entry given an input source (text string, buffer, or stream).\n\t *\n\t * @param  {(Buffer|Stream|String)} source The input source.\n\t * @param  {Object} data\n\t * @param  {String} data.name Sets the entry name including internal path.\n\t * @param  {String} [data.comment] Sets the entry comment.\n\t * @param  {(String|Date)} [data.date=NOW()] Sets the entry date.\n\t * @param  {Number} [data.mode=D:0755/F:0644] Sets the entry permissions.\n\t * @param  {Boolean} [data.store=options.store] Sets the compression method to STORE.\n\t * @param  {String} [data.type=file] Sets the entry type. Defaults to `directory`\n\t * if name ends with trailing slash.\n\t * @param  {Function} callback\n\t * @return this\n\t */\n\tZipStream.prototype.entry = function(source, data, callback) {\n\t  if (typeof callback !== 'function') {\n\t    callback = this._emitErrorCallback.bind(this);\n\t  }\n\n\t  data = this._normalizeFileData(data);\n\n\t  if (data.type !== 'file' && data.type !== 'directory' && data.type !== 'symlink') {\n\t    callback(new Error(data.type + ' entries not currently supported'));\n\t    return;\n\t  }\n\n\t  if (typeof data.name !== 'string' || data.name.length === 0) {\n\t    callback(new Error('entry name must be a non-empty string value'));\n\t    return;\n\t  }\n\n\t  if (data.type === 'symlink' && typeof data.linkname !== 'string') {\n\t    callback(new Error('entry linkname must be a non-empty string value when type equals symlink'));\n\t    return;\n\t  }\n\n\t  var entry = new ZipArchiveEntry(data.name);\n\t  entry.setTime(data.date, this.options.forceLocalTime);\n\n\t  if (data.namePrependSlash) {\n\t    entry.setName(data.name, true);\n\t  }\n\n\t  if (data.store) {\n\t    entry.setMethod(0);\n\t  }\n\n\t  if (data.comment.length > 0) {\n\t    entry.setComment(data.comment);\n\t  }\n\n\t  if (data.type === 'symlink' && typeof data.mode !== 'number') {\n\t    data.mode = 40960; // 0120000\n\t  }\n\n\t  if (typeof data.mode === 'number') {\n\t    if (data.type === 'symlink') {\n\t      data.mode |= 40960;\n\t    }\n\n\t    entry.setUnixMode(data.mode);\n\t  }\n\n\t  if (data.type === 'symlink' && typeof data.linkname === 'string') {\n\t    source = Buffer.from(data.linkname);\n\t  }\n\n\t  return ZipArchiveOutputStream.prototype.entry.call(this, entry, source, callback);\n\t};\n\n\t/**\n\t * Finalizes the instance and prevents further appending to the archive\n\t * structure (queue will continue til drained).\n\t *\n\t * @return void\n\t */\n\tZipStream.prototype.finalize = function() {\n\t  this.finish();\n\t};\n\n\t/**\n\t * Returns the current number of bytes written to this stream.\n\t * @function ZipStream#getBytesWritten\n\t * @returns {Number}\n\t */\n\n\t/**\n\t * Compress Commons ZipArchiveOutputStream\n\t * @external ZipArchiveOutputStream\n\t * @see {@link https://github.com/archiverjs/node-compress-commons}\n\t */\n\treturn zipStream.exports;\n}\n\n/**\n * ZIP Format Plugin\n *\n * @module plugins/zip\n * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}\n * @copyright (c) 2012-2014 Chris Talkington, contributors.\n */\n\nvar zip;\nvar hasRequiredZip$1;\n\nfunction requireZip$1 () {\n\tif (hasRequiredZip$1) return zip;\n\thasRequiredZip$1 = 1;\n\tvar engine = requireZipStream();\n\tvar util = requireArchiverUtils();\n\n\t/**\n\t * @constructor\n\t * @param {ZipOptions} [options]\n\t * @param {String} [options.comment] Sets the zip archive comment.\n\t * @param {Boolean} [options.forceLocalTime=false] Forces the archive to contain local file times instead of UTC.\n\t * @param {Boolean} [options.forceZip64=false] Forces the archive to contain ZIP64 headers.\n\t * @param {Boolean} [options.namePrependSlash=false] Prepends a forward slash to archive file paths.\n\t * @param {Boolean} [options.store=false] Sets the compression method to STORE.\n\t * @param {Object} [options.zlib] Passed to [zlib]{@link https://nodejs.org/api/zlib.html#zlib_class_options}\n\t */\n\tvar Zip = function(options) {\n\t  if (!(this instanceof Zip)) {\n\t    return new Zip(options);\n\t  }\n\n\t  options = this.options = util.defaults(options, {\n\t    comment: '',\n\t    forceUTC: false,\n\t    namePrependSlash: false,\n\t    store: false\n\t  });\n\n\t  this.supports = {\n\t    directory: true,\n\t    symlink: true\n\t  };\n\n\t  this.engine = new engine(options);\n\t};\n\n\t/**\n\t * @param  {(Buffer|Stream)} source\n\t * @param  {ZipEntryData} data\n\t * @param  {String} data.name Sets the entry name including internal path.\n\t * @param  {(String|Date)} [data.date=NOW()] Sets the entry date.\n\t * @param  {Number} [data.mode=D:0755/F:0644] Sets the entry permissions.\n\t * @param  {String} [data.prefix] Sets a path prefix for the entry name. Useful\n\t * when working with methods like `directory` or `glob`.\n\t * @param  {fs.Stats} [data.stats] Sets the fs stat data for this entry allowing\n\t * for reduction of fs stat calls when stat data is already known.\n\t * @param  {Boolean} [data.store=ZipOptions.store] Sets the compression method to STORE.\n\t * @param  {Function} callback\n\t * @return void\n\t */\n\tZip.prototype.append = function(source, data, callback) {\n\t  this.engine.entry(source, data, callback);\n\t};\n\n\t/**\n\t * @return void\n\t */\n\tZip.prototype.finalize = function() {\n\t  this.engine.finalize();\n\t};\n\n\t/**\n\t * @return this.engine\n\t */\n\tZip.prototype.on = function() {\n\t  return this.engine.on.apply(this.engine, arguments);\n\t};\n\n\t/**\n\t * @return this.engine\n\t */\n\tZip.prototype.pipe = function() {\n\t  return this.engine.pipe.apply(this.engine, arguments);\n\t};\n\n\t/**\n\t * @return this.engine\n\t */\n\tZip.prototype.unpipe = function() {\n\t  return this.engine.unpipe.apply(this.engine, arguments);\n\t};\n\n\tzip = Zip;\n\n\t/**\n\t * @typedef {Object} ZipOptions\n\t * @global\n\t * @property {String} [comment] Sets the zip archive comment.\n\t * @property {Boolean} [forceLocalTime=false] Forces the archive to contain local file times instead of UTC.\n\t * @property {Boolean} [forceZip64=false] Forces the archive to contain ZIP64 headers.\n\t * @prpperty {Boolean} [namePrependSlash=false] Prepends a forward slash to archive file paths.\n\t * @property {Boolean} [store=false] Sets the compression method to STORE.\n\t * @property {Object} [zlib] Passed to [zlib]{@link https://nodejs.org/api/zlib.html#zlib_class_options}\n\t * to control compression.\n\t * @property {*} [*] See [zip-stream]{@link https://archiverjs.com/zip-stream/ZipStream.html} documentation for current list of properties.\n\t */\n\n\t/**\n\t * @typedef {Object} ZipEntryData\n\t * @global\n\t * @property {String} name Sets the entry name including internal path.\n\t * @property {(String|Date)} [date=NOW()] Sets the entry date.\n\t * @property {Number} [mode=D:0755/F:0644] Sets the entry permissions.\n\t * @property {Boolean} [namePrependSlash=ZipOptions.namePrependSlash] Prepends a forward slash to archive file paths.\n\t * @property {String} [prefix] Sets a path prefix for the entry name. Useful\n\t * when working with methods like `directory` or `glob`.\n\t * @property {fs.Stats} [stats] Sets the fs stat data for this entry allowing\n\t * for reduction of fs stat calls when stat data is already known.\n\t * @property {Boolean} [store=ZipOptions.store] Sets the compression method to STORE.\n\t */\n\n\t/**\n\t * ZipStream Module\n\t * @external ZipStream\n\t * @see {@link https://www.archiverjs.com/zip-stream/ZipStream.html}\n\t */\n\treturn zip;\n}\n\nvar tarStream = {};\n\nvar fixedSize;\nvar hasRequiredFixedSize;\n\nfunction requireFixedSize () {\n\tif (hasRequiredFixedSize) return fixedSize;\n\thasRequiredFixedSize = 1;\n\tfixedSize = class FixedFIFO {\n\t  constructor (hwm) {\n\t    if (!(hwm > 0) || ((hwm - 1) & hwm) !== 0) throw new Error('Max size for a FixedFIFO should be a power of two')\n\t    this.buffer = new Array(hwm);\n\t    this.mask = hwm - 1;\n\t    this.top = 0;\n\t    this.btm = 0;\n\t    this.next = null;\n\t  }\n\n\t  clear () {\n\t    this.top = this.btm = 0;\n\t    this.next = null;\n\t    this.buffer.fill(undefined);\n\t  }\n\n\t  push (data) {\n\t    if (this.buffer[this.top] !== undefined) return false\n\t    this.buffer[this.top] = data;\n\t    this.top = (this.top + 1) & this.mask;\n\t    return true\n\t  }\n\n\t  shift () {\n\t    const last = this.buffer[this.btm];\n\t    if (last === undefined) return undefined\n\t    this.buffer[this.btm] = undefined;\n\t    this.btm = (this.btm + 1) & this.mask;\n\t    return last\n\t  }\n\n\t  peek () {\n\t    return this.buffer[this.btm]\n\t  }\n\n\t  isEmpty () {\n\t    return this.buffer[this.btm] === undefined\n\t  }\n\t};\n\treturn fixedSize;\n}\n\nvar fastFifo;\nvar hasRequiredFastFifo;\n\nfunction requireFastFifo () {\n\tif (hasRequiredFastFifo) return fastFifo;\n\thasRequiredFastFifo = 1;\n\tconst FixedFIFO = requireFixedSize();\n\n\tfastFifo = class FastFIFO {\n\t  constructor (hwm) {\n\t    this.hwm = hwm || 16;\n\t    this.head = new FixedFIFO(this.hwm);\n\t    this.tail = this.head;\n\t    this.length = 0;\n\t  }\n\n\t  clear () {\n\t    this.head = this.tail;\n\t    this.head.clear();\n\t    this.length = 0;\n\t  }\n\n\t  push (val) {\n\t    this.length++;\n\t    if (!this.head.push(val)) {\n\t      const prev = this.head;\n\t      this.head = prev.next = new FixedFIFO(2 * this.head.buffer.length);\n\t      this.head.push(val);\n\t    }\n\t  }\n\n\t  shift () {\n\t    if (this.length !== 0) this.length--;\n\t    const val = this.tail.shift();\n\t    if (val === undefined && this.tail.next) {\n\t      const next = this.tail.next;\n\t      this.tail.next = null;\n\t      this.tail = next;\n\t      return this.tail.shift()\n\t    }\n\n\t    return val\n\t  }\n\n\t  peek () {\n\t    const val = this.tail.peek();\n\t    if (val === undefined && this.tail.next) return this.tail.next.peek()\n\t    return val\n\t  }\n\n\t  isEmpty () {\n\t    return this.length === 0\n\t  }\n\t};\n\treturn fastFifo;\n}\n\nvar b4a;\nvar hasRequiredB4a;\n\nfunction requireB4a () {\n\tif (hasRequiredB4a) return b4a;\n\thasRequiredB4a = 1;\n\tfunction isBuffer (value) {\n\t  return Buffer.isBuffer(value) || value instanceof Uint8Array\n\t}\n\n\tfunction isEncoding (encoding) {\n\t  return Buffer.isEncoding(encoding)\n\t}\n\n\tfunction alloc (size, fill, encoding) {\n\t  return Buffer.alloc(size, fill, encoding)\n\t}\n\n\tfunction allocUnsafe (size) {\n\t  return Buffer.allocUnsafe(size)\n\t}\n\n\tfunction allocUnsafeSlow (size) {\n\t  return Buffer.allocUnsafeSlow(size)\n\t}\n\n\tfunction byteLength (string, encoding) {\n\t  return Buffer.byteLength(string, encoding)\n\t}\n\n\tfunction compare (a, b) {\n\t  return Buffer.compare(a, b)\n\t}\n\n\tfunction concat (buffers, totalLength) {\n\t  return Buffer.concat(buffers, totalLength)\n\t}\n\n\tfunction copy (source, target, targetStart, start, end) {\n\t  return toBuffer(source).copy(target, targetStart, start, end)\n\t}\n\n\tfunction equals (a, b) {\n\t  return toBuffer(a).equals(b)\n\t}\n\n\tfunction fill (buffer, value, offset, end, encoding) {\n\t  return toBuffer(buffer).fill(value, offset, end, encoding)\n\t}\n\n\tfunction from (value, encodingOrOffset, length) {\n\t  return Buffer.from(value, encodingOrOffset, length)\n\t}\n\n\tfunction includes (buffer, value, byteOffset, encoding) {\n\t  return toBuffer(buffer).includes(value, byteOffset, encoding)\n\t}\n\n\tfunction indexOf (buffer, value, byfeOffset, encoding) {\n\t  return toBuffer(buffer).indexOf(value, byfeOffset, encoding)\n\t}\n\n\tfunction lastIndexOf (buffer, value, byteOffset, encoding) {\n\t  return toBuffer(buffer).lastIndexOf(value, byteOffset, encoding)\n\t}\n\n\tfunction swap16 (buffer) {\n\t  return toBuffer(buffer).swap16()\n\t}\n\n\tfunction swap32 (buffer) {\n\t  return toBuffer(buffer).swap32()\n\t}\n\n\tfunction swap64 (buffer) {\n\t  return toBuffer(buffer).swap64()\n\t}\n\n\tfunction toBuffer (buffer) {\n\t  if (Buffer.isBuffer(buffer)) return buffer\n\t  return Buffer.from(buffer.buffer, buffer.byteOffset, buffer.byteLength)\n\t}\n\n\tfunction toString (buffer, encoding, start, end) {\n\t  return toBuffer(buffer).toString(encoding, start, end)\n\t}\n\n\tfunction write (buffer, string, offset, length, encoding) {\n\t  return toBuffer(buffer).write(string, offset, length, encoding)\n\t}\n\n\tfunction writeDoubleLE (buffer, value, offset) {\n\t  return toBuffer(buffer).writeDoubleLE(value, offset)\n\t}\n\n\tfunction writeFloatLE (buffer, value, offset) {\n\t  return toBuffer(buffer).writeFloatLE(value, offset)\n\t}\n\n\tfunction writeUInt32LE (buffer, value, offset) {\n\t  return toBuffer(buffer).writeUInt32LE(value, offset)\n\t}\n\n\tfunction writeInt32LE (buffer, value, offset) {\n\t  return toBuffer(buffer).writeInt32LE(value, offset)\n\t}\n\n\tfunction readDoubleLE (buffer, offset) {\n\t  return toBuffer(buffer).readDoubleLE(offset)\n\t}\n\n\tfunction readFloatLE (buffer, offset) {\n\t  return toBuffer(buffer).readFloatLE(offset)\n\t}\n\n\tfunction readUInt32LE (buffer, offset) {\n\t  return toBuffer(buffer).readUInt32LE(offset)\n\t}\n\n\tfunction readInt32LE (buffer, offset) {\n\t  return toBuffer(buffer).readInt32LE(offset)\n\t}\n\n\tfunction writeDoubleBE (buffer, value, offset) {\n\t  return toBuffer(buffer).writeDoubleBE(value, offset)\n\t}\n\n\tfunction writeFloatBE (buffer, value, offset) {\n\t  return toBuffer(buffer).writeFloatBE(value, offset)\n\t}\n\n\tfunction writeUInt32BE (buffer, value, offset) {\n\t  return toBuffer(buffer).writeUInt32BE(value, offset)\n\t}\n\n\tfunction writeInt32BE (buffer, value, offset) {\n\t  return toBuffer(buffer).writeInt32BE(value, offset)\n\t}\n\n\tfunction readDoubleBE (buffer, offset) {\n\t  return toBuffer(buffer).readDoubleBE(offset)\n\t}\n\n\tfunction readFloatBE (buffer, offset) {\n\t  return toBuffer(buffer).readFloatBE(offset)\n\t}\n\n\tfunction readUInt32BE (buffer, offset) {\n\t  return toBuffer(buffer).readUInt32BE(offset)\n\t}\n\n\tfunction readInt32BE (buffer, offset) {\n\t  return toBuffer(buffer).readInt32BE(offset)\n\t}\n\n\tb4a = {\n\t  isBuffer,\n\t  isEncoding,\n\t  alloc,\n\t  allocUnsafe,\n\t  allocUnsafeSlow,\n\t  byteLength,\n\t  compare,\n\t  concat,\n\t  copy,\n\t  equals,\n\t  fill,\n\t  from,\n\t  includes,\n\t  indexOf,\n\t  lastIndexOf,\n\t  swap16,\n\t  swap32,\n\t  swap64,\n\t  toBuffer,\n\t  toString,\n\t  write,\n\t  writeDoubleLE,\n\t  writeFloatLE,\n\t  writeUInt32LE,\n\t  writeInt32LE,\n\t  readDoubleLE,\n\t  readFloatLE,\n\t  readUInt32LE,\n\t  readInt32LE,\n\t  writeDoubleBE,\n\t  writeFloatBE,\n\t  writeUInt32BE,\n\t  writeInt32BE,\n\t  readDoubleBE,\n\t  readFloatBE,\n\t  readUInt32BE,\n\t  readInt32BE\n\n\t};\n\treturn b4a;\n}\n\nvar passThroughDecoder;\nvar hasRequiredPassThroughDecoder;\n\nfunction requirePassThroughDecoder () {\n\tif (hasRequiredPassThroughDecoder) return passThroughDecoder;\n\thasRequiredPassThroughDecoder = 1;\n\tconst b4a = requireB4a();\n\n\tpassThroughDecoder = class PassThroughDecoder {\n\t  constructor (encoding) {\n\t    this.encoding = encoding;\n\t  }\n\n\t  get remaining () {\n\t    return 0\n\t  }\n\n\t  decode (tail) {\n\t    return b4a.toString(tail, this.encoding)\n\t  }\n\n\t  flush () {\n\t    return ''\n\t  }\n\t};\n\treturn passThroughDecoder;\n}\n\nvar utf8Decoder;\nvar hasRequiredUtf8Decoder;\n\nfunction requireUtf8Decoder () {\n\tif (hasRequiredUtf8Decoder) return utf8Decoder;\n\thasRequiredUtf8Decoder = 1;\n\tconst b4a = requireB4a();\n\n\t/**\n\t * https://encoding.spec.whatwg.org/#utf-8-decoder\n\t */\n\tutf8Decoder = class UTF8Decoder {\n\t  constructor () {\n\t    this.codePoint = 0;\n\t    this.bytesSeen = 0;\n\t    this.bytesNeeded = 0;\n\t    this.lowerBoundary = 0x80;\n\t    this.upperBoundary = 0xbf;\n\t  }\n\n\t  get remaining () {\n\t    return this.bytesSeen\n\t  }\n\n\t  decode (data) {\n\t    // If we have a fast path, just sniff if the last part is a boundary\n\t    if (this.bytesNeeded === 0) {\n\t      let isBoundary = true;\n\n\t      for (let i = Math.max(0, data.byteLength - 4), n = data.byteLength; i < n && isBoundary; i++) {\n\t        isBoundary = data[i] <= 0x7f;\n\t      }\n\n\t      if (isBoundary) return b4a.toString(data, 'utf8')\n\t    }\n\n\t    let result = '';\n\n\t    for (let i = 0, n = data.byteLength; i < n; i++) {\n\t      const byte = data[i];\n\n\t      if (this.bytesNeeded === 0) {\n\t        if (byte <= 0x7f) {\n\t          result += String.fromCharCode(byte);\n\t        } else {\n\t          this.bytesSeen = 1;\n\n\t          if (byte >= 0xc2 && byte <= 0xdf) {\n\t            this.bytesNeeded = 2;\n\t            this.codePoint = byte & 0x1f;\n\t          } else if (byte >= 0xe0 && byte <= 0xef) {\n\t            if (byte === 0xe0) this.lowerBoundary = 0xa0;\n\t            else if (byte === 0xed) this.upperBoundary = 0x9f;\n\t            this.bytesNeeded = 3;\n\t            this.codePoint = byte & 0xf;\n\t          } else if (byte >= 0xf0 && byte <= 0xf4) {\n\t            if (byte === 0xf0) this.lowerBoundary = 0x90;\n\t            if (byte === 0xf4) this.upperBoundary = 0x8f;\n\t            this.bytesNeeded = 4;\n\t            this.codePoint = byte & 0x7;\n\t          } else {\n\t            result += '\\ufffd';\n\t          }\n\t        }\n\n\t        continue\n\t      }\n\n\t      if (byte < this.lowerBoundary || byte > this.upperBoundary) {\n\t        this.codePoint = 0;\n\t        this.bytesNeeded = 0;\n\t        this.bytesSeen = 0;\n\t        this.lowerBoundary = 0x80;\n\t        this.upperBoundary = 0xbf;\n\n\t        result += '\\ufffd';\n\n\t        continue\n\t      }\n\n\t      this.lowerBoundary = 0x80;\n\t      this.upperBoundary = 0xbf;\n\n\t      this.codePoint = (this.codePoint << 6) | (byte & 0x3f);\n\t      this.bytesSeen++;\n\n\t      if (this.bytesSeen !== this.bytesNeeded) continue\n\n\t      result += String.fromCodePoint(this.codePoint);\n\n\t      this.codePoint = 0;\n\t      this.bytesNeeded = 0;\n\t      this.bytesSeen = 0;\n\t    }\n\n\t    return result\n\t  }\n\n\t  flush () {\n\t    const result = this.bytesNeeded > 0 ? '\\ufffd' : '';\n\n\t    this.codePoint = 0;\n\t    this.bytesNeeded = 0;\n\t    this.bytesSeen = 0;\n\t    this.lowerBoundary = 0x80;\n\t    this.upperBoundary = 0xbf;\n\n\t    return result\n\t  }\n\t};\n\treturn utf8Decoder;\n}\n\nvar textDecoder;\nvar hasRequiredTextDecoder;\n\nfunction requireTextDecoder () {\n\tif (hasRequiredTextDecoder) return textDecoder;\n\thasRequiredTextDecoder = 1;\n\tconst PassThroughDecoder = requirePassThroughDecoder();\n\tconst UTF8Decoder = requireUtf8Decoder();\n\n\ttextDecoder = class TextDecoder {\n\t  constructor (encoding = 'utf8') {\n\t    this.encoding = normalizeEncoding(encoding);\n\n\t    switch (this.encoding) {\n\t      case 'utf8':\n\t        this.decoder = new UTF8Decoder();\n\t        break\n\t      case 'utf16le':\n\t      case 'base64':\n\t        throw new Error('Unsupported encoding: ' + this.encoding)\n\t      default:\n\t        this.decoder = new PassThroughDecoder(this.encoding);\n\t    }\n\t  }\n\n\t  get remaining () {\n\t    return this.decoder.remaining\n\t  }\n\n\t  push (data) {\n\t    if (typeof data === 'string') return data\n\t    return this.decoder.decode(data)\n\t  }\n\n\t  // For Node.js compatibility\n\t  write (data) {\n\t    return this.push(data)\n\t  }\n\n\t  end (data) {\n\t    let result = '';\n\t    if (data) result = this.push(data);\n\t    result += this.decoder.flush();\n\t    return result\n\t  }\n\t};\n\n\tfunction normalizeEncoding (encoding) {\n\t  encoding = encoding.toLowerCase();\n\n\t  switch (encoding) {\n\t    case 'utf8':\n\t    case 'utf-8':\n\t      return 'utf8'\n\t    case 'ucs2':\n\t    case 'ucs-2':\n\t    case 'utf16le':\n\t    case 'utf-16le':\n\t      return 'utf16le'\n\t    case 'latin1':\n\t    case 'binary':\n\t      return 'latin1'\n\t    case 'base64':\n\t    case 'ascii':\n\t    case 'hex':\n\t      return encoding\n\t    default:\n\t      throw new Error('Unknown encoding: ' + encoding)\n\t  }\n\t}\treturn textDecoder;\n}\n\nvar streamx;\nvar hasRequiredStreamx;\n\nfunction requireStreamx () {\n\tif (hasRequiredStreamx) return streamx;\n\thasRequiredStreamx = 1;\n\tconst { EventEmitter } = require$$1$4;\n\tconst STREAM_DESTROYED = new Error('Stream was destroyed');\n\tconst PREMATURE_CLOSE = new Error('Premature close');\n\n\tconst FIFO = requireFastFifo();\n\tconst TextDecoder = requireTextDecoder();\n\n\t/* eslint-disable no-multi-spaces */\n\n\t// 29 bits used total (4 from shared, 14 from read, and 11 from write)\n\tconst MAX = ((1 << 29) - 1);\n\n\t// Shared state\n\tconst OPENING       = 0b0001;\n\tconst PREDESTROYING = 0b0010;\n\tconst DESTROYING    = 0b0100;\n\tconst DESTROYED     = 0b1000;\n\n\tconst NOT_OPENING = MAX ^ OPENING;\n\tconst NOT_PREDESTROYING = MAX ^ PREDESTROYING;\n\n\t// Read state (4 bit offset from shared state)\n\tconst READ_ACTIVE           = 0b00000000000001 << 4;\n\tconst READ_UPDATING         = 0b00000000000010 << 4;\n\tconst READ_PRIMARY          = 0b00000000000100 << 4;\n\tconst READ_QUEUED           = 0b00000000001000 << 4;\n\tconst READ_RESUMED          = 0b00000000010000 << 4;\n\tconst READ_PIPE_DRAINED     = 0b00000000100000 << 4;\n\tconst READ_ENDING           = 0b00000001000000 << 4;\n\tconst READ_EMIT_DATA        = 0b00000010000000 << 4;\n\tconst READ_EMIT_READABLE    = 0b00000100000000 << 4;\n\tconst READ_EMITTED_READABLE = 0b00001000000000 << 4;\n\tconst READ_DONE             = 0b00010000000000 << 4;\n\tconst READ_NEXT_TICK        = 0b00100000000000 << 4;\n\tconst READ_NEEDS_PUSH       = 0b01000000000000 << 4;\n\tconst READ_READ_AHEAD       = 0b10000000000000 << 4;\n\n\t// Combined read state\n\tconst READ_FLOWING = READ_RESUMED | READ_PIPE_DRAINED;\n\tconst READ_ACTIVE_AND_NEEDS_PUSH = READ_ACTIVE | READ_NEEDS_PUSH;\n\tconst READ_PRIMARY_AND_ACTIVE = READ_PRIMARY | READ_ACTIVE;\n\tconst READ_EMIT_READABLE_AND_QUEUED = READ_EMIT_READABLE | READ_QUEUED;\n\tconst READ_RESUMED_READ_AHEAD = READ_RESUMED | READ_READ_AHEAD;\n\n\tconst READ_NOT_ACTIVE             = MAX ^ READ_ACTIVE;\n\tconst READ_NON_PRIMARY            = MAX ^ READ_PRIMARY;\n\tconst READ_NON_PRIMARY_AND_PUSHED = MAX ^ (READ_PRIMARY | READ_NEEDS_PUSH);\n\tconst READ_PUSHED                 = MAX ^ READ_NEEDS_PUSH;\n\tconst READ_PAUSED                 = MAX ^ READ_RESUMED;\n\tconst READ_NOT_QUEUED             = MAX ^ (READ_QUEUED | READ_EMITTED_READABLE);\n\tconst READ_NOT_ENDING             = MAX ^ READ_ENDING;\n\tconst READ_PIPE_NOT_DRAINED       = MAX ^ READ_FLOWING;\n\tconst READ_NOT_NEXT_TICK          = MAX ^ READ_NEXT_TICK;\n\tconst READ_NOT_UPDATING           = MAX ^ READ_UPDATING;\n\tconst READ_NO_READ_AHEAD          = MAX ^ READ_READ_AHEAD;\n\tconst READ_PAUSED_NO_READ_AHEAD   = MAX ^ READ_RESUMED_READ_AHEAD;\n\n\t// Write state (18 bit offset, 4 bit offset from shared state and 14 from read state)\n\tconst WRITE_ACTIVE     = 0b00000000001 << 18;\n\tconst WRITE_UPDATING   = 0b00000000010 << 18;\n\tconst WRITE_PRIMARY    = 0b00000000100 << 18;\n\tconst WRITE_QUEUED     = 0b00000001000 << 18;\n\tconst WRITE_UNDRAINED  = 0b00000010000 << 18;\n\tconst WRITE_DONE       = 0b00000100000 << 18;\n\tconst WRITE_EMIT_DRAIN = 0b00001000000 << 18;\n\tconst WRITE_NEXT_TICK  = 0b00010000000 << 18;\n\tconst WRITE_WRITING    = 0b00100000000 << 18;\n\tconst WRITE_FINISHING  = 0b01000000000 << 18;\n\tconst WRITE_CORKED     = 0b10000000000 << 18;\n\n\tconst WRITE_NOT_ACTIVE    = MAX ^ (WRITE_ACTIVE | WRITE_WRITING);\n\tconst WRITE_NON_PRIMARY   = MAX ^ WRITE_PRIMARY;\n\tconst WRITE_NOT_FINISHING = MAX ^ (WRITE_ACTIVE | WRITE_FINISHING);\n\tconst WRITE_DRAINED       = MAX ^ WRITE_UNDRAINED;\n\tconst WRITE_NOT_QUEUED    = MAX ^ WRITE_QUEUED;\n\tconst WRITE_NOT_NEXT_TICK = MAX ^ WRITE_NEXT_TICK;\n\tconst WRITE_NOT_UPDATING  = MAX ^ WRITE_UPDATING;\n\tconst WRITE_NOT_CORKED    = MAX ^ WRITE_CORKED;\n\n\t// Combined shared state\n\tconst ACTIVE = READ_ACTIVE | WRITE_ACTIVE;\n\tconst NOT_ACTIVE = MAX ^ ACTIVE;\n\tconst DONE = READ_DONE | WRITE_DONE;\n\tconst DESTROY_STATUS = DESTROYING | DESTROYED | PREDESTROYING;\n\tconst OPEN_STATUS = DESTROY_STATUS | OPENING;\n\tconst AUTO_DESTROY = DESTROY_STATUS | DONE;\n\tconst NON_PRIMARY = WRITE_NON_PRIMARY & READ_NON_PRIMARY;\n\tconst ACTIVE_OR_TICKING = WRITE_NEXT_TICK | READ_NEXT_TICK;\n\tconst TICKING = ACTIVE_OR_TICKING & NOT_ACTIVE;\n\tconst IS_OPENING = OPEN_STATUS | TICKING;\n\n\t// Combined shared state and read state\n\tconst READ_PRIMARY_STATUS = OPEN_STATUS | READ_ENDING | READ_DONE;\n\tconst READ_STATUS = OPEN_STATUS | READ_DONE | READ_QUEUED;\n\tconst READ_ENDING_STATUS = OPEN_STATUS | READ_ENDING | READ_QUEUED;\n\tconst READ_READABLE_STATUS = OPEN_STATUS | READ_EMIT_READABLE | READ_QUEUED | READ_EMITTED_READABLE;\n\tconst SHOULD_NOT_READ = OPEN_STATUS | READ_ACTIVE | READ_ENDING | READ_DONE | READ_NEEDS_PUSH | READ_READ_AHEAD;\n\tconst READ_BACKPRESSURE_STATUS = DESTROY_STATUS | READ_ENDING | READ_DONE;\n\tconst READ_UPDATE_SYNC_STATUS = READ_UPDATING | OPEN_STATUS | READ_NEXT_TICK | READ_PRIMARY;\n\tconst READ_NEXT_TICK_OR_OPENING = READ_NEXT_TICK | OPENING;\n\n\t// Combined write state\n\tconst WRITE_PRIMARY_STATUS = OPEN_STATUS | WRITE_FINISHING | WRITE_DONE;\n\tconst WRITE_QUEUED_AND_UNDRAINED = WRITE_QUEUED | WRITE_UNDRAINED;\n\tconst WRITE_QUEUED_AND_ACTIVE = WRITE_QUEUED | WRITE_ACTIVE;\n\tconst WRITE_DRAIN_STATUS = WRITE_QUEUED | WRITE_UNDRAINED | OPEN_STATUS | WRITE_ACTIVE;\n\tconst WRITE_STATUS = OPEN_STATUS | WRITE_ACTIVE | WRITE_QUEUED | WRITE_CORKED;\n\tconst WRITE_PRIMARY_AND_ACTIVE = WRITE_PRIMARY | WRITE_ACTIVE;\n\tconst WRITE_ACTIVE_AND_WRITING = WRITE_ACTIVE | WRITE_WRITING;\n\tconst WRITE_FINISHING_STATUS = OPEN_STATUS | WRITE_FINISHING | WRITE_QUEUED_AND_ACTIVE | WRITE_DONE;\n\tconst WRITE_BACKPRESSURE_STATUS = WRITE_UNDRAINED | DESTROY_STATUS | WRITE_FINISHING | WRITE_DONE;\n\tconst WRITE_UPDATE_SYNC_STATUS = WRITE_UPDATING | OPEN_STATUS | WRITE_NEXT_TICK | WRITE_PRIMARY;\n\tconst WRITE_DROP_DATA = WRITE_FINISHING | WRITE_DONE | DESTROY_STATUS;\n\n\tconst asyncIterator = Symbol.asyncIterator || Symbol('asyncIterator');\n\n\tclass WritableState {\n\t  constructor (stream, { highWaterMark = 16384, map = null, mapWritable, byteLength, byteLengthWritable } = {}) {\n\t    this.stream = stream;\n\t    this.queue = new FIFO();\n\t    this.highWaterMark = highWaterMark;\n\t    this.buffered = 0;\n\t    this.error = null;\n\t    this.pipeline = null;\n\t    this.drains = null; // if we add more seldomly used helpers we might them into a subobject so its a single ptr\n\t    this.byteLength = byteLengthWritable || byteLength || defaultByteLength;\n\t    this.map = mapWritable || map;\n\t    this.afterWrite = afterWrite.bind(this);\n\t    this.afterUpdateNextTick = updateWriteNT.bind(this);\n\t  }\n\n\t  get ended () {\n\t    return (this.stream._duplexState & WRITE_DONE) !== 0\n\t  }\n\n\t  push (data) {\n\t    if ((this.stream._duplexState & WRITE_DROP_DATA) !== 0) return false\n\t    if (this.map !== null) data = this.map(data);\n\n\t    this.buffered += this.byteLength(data);\n\t    this.queue.push(data);\n\n\t    if (this.buffered < this.highWaterMark) {\n\t      this.stream._duplexState |= WRITE_QUEUED;\n\t      return true\n\t    }\n\n\t    this.stream._duplexState |= WRITE_QUEUED_AND_UNDRAINED;\n\t    return false\n\t  }\n\n\t  shift () {\n\t    const data = this.queue.shift();\n\n\t    this.buffered -= this.byteLength(data);\n\t    if (this.buffered === 0) this.stream._duplexState &= WRITE_NOT_QUEUED;\n\n\t    return data\n\t  }\n\n\t  end (data) {\n\t    if (typeof data === 'function') this.stream.once('finish', data);\n\t    else if (data !== undefined && data !== null) this.push(data);\n\t    this.stream._duplexState = (this.stream._duplexState | WRITE_FINISHING) & WRITE_NON_PRIMARY;\n\t  }\n\n\t  autoBatch (data, cb) {\n\t    const buffer = [];\n\t    const stream = this.stream;\n\n\t    buffer.push(data);\n\t    while ((stream._duplexState & WRITE_STATUS) === WRITE_QUEUED_AND_ACTIVE) {\n\t      buffer.push(stream._writableState.shift());\n\t    }\n\n\t    if ((stream._duplexState & OPEN_STATUS) !== 0) return cb(null)\n\t    stream._writev(buffer, cb);\n\t  }\n\n\t  update () {\n\t    const stream = this.stream;\n\n\t    stream._duplexState |= WRITE_UPDATING;\n\n\t    do {\n\t      while ((stream._duplexState & WRITE_STATUS) === WRITE_QUEUED) {\n\t        const data = this.shift();\n\t        stream._duplexState |= WRITE_ACTIVE_AND_WRITING;\n\t        stream._write(data, this.afterWrite);\n\t      }\n\n\t      if ((stream._duplexState & WRITE_PRIMARY_AND_ACTIVE) === 0) this.updateNonPrimary();\n\t    } while (this.continueUpdate() === true)\n\n\t    stream._duplexState &= WRITE_NOT_UPDATING;\n\t  }\n\n\t  updateNonPrimary () {\n\t    const stream = this.stream;\n\n\t    if ((stream._duplexState & WRITE_FINISHING_STATUS) === WRITE_FINISHING) {\n\t      stream._duplexState = stream._duplexState | WRITE_ACTIVE;\n\t      stream._final(afterFinal.bind(this));\n\t      return\n\t    }\n\n\t    if ((stream._duplexState & DESTROY_STATUS) === DESTROYING) {\n\t      if ((stream._duplexState & ACTIVE_OR_TICKING) === 0) {\n\t        stream._duplexState |= ACTIVE;\n\t        stream._destroy(afterDestroy.bind(this));\n\t      }\n\t      return\n\t    }\n\n\t    if ((stream._duplexState & IS_OPENING) === OPENING) {\n\t      stream._duplexState = (stream._duplexState | ACTIVE) & NOT_OPENING;\n\t      stream._open(afterOpen.bind(this));\n\t    }\n\t  }\n\n\t  continueUpdate () {\n\t    if ((this.stream._duplexState & WRITE_NEXT_TICK) === 0) return false\n\t    this.stream._duplexState &= WRITE_NOT_NEXT_TICK;\n\t    return true\n\t  }\n\n\t  updateCallback () {\n\t    if ((this.stream._duplexState & WRITE_UPDATE_SYNC_STATUS) === WRITE_PRIMARY) this.update();\n\t    else this.updateNextTick();\n\t  }\n\n\t  updateNextTick () {\n\t    if ((this.stream._duplexState & WRITE_NEXT_TICK) !== 0) return\n\t    this.stream._duplexState |= WRITE_NEXT_TICK;\n\t    if ((this.stream._duplexState & WRITE_UPDATING) === 0) queueMicrotask(this.afterUpdateNextTick);\n\t  }\n\t}\n\n\tclass ReadableState {\n\t  constructor (stream, { highWaterMark = 16384, map = null, mapReadable, byteLength, byteLengthReadable } = {}) {\n\t    this.stream = stream;\n\t    this.queue = new FIFO();\n\t    this.highWaterMark = highWaterMark === 0 ? 1 : highWaterMark;\n\t    this.buffered = 0;\n\t    this.readAhead = highWaterMark > 0;\n\t    this.error = null;\n\t    this.pipeline = null;\n\t    this.byteLength = byteLengthReadable || byteLength || defaultByteLength;\n\t    this.map = mapReadable || map;\n\t    this.pipeTo = null;\n\t    this.afterRead = afterRead.bind(this);\n\t    this.afterUpdateNextTick = updateReadNT.bind(this);\n\t  }\n\n\t  get ended () {\n\t    return (this.stream._duplexState & READ_DONE) !== 0\n\t  }\n\n\t  pipe (pipeTo, cb) {\n\t    if (this.pipeTo !== null) throw new Error('Can only pipe to one destination')\n\t    if (typeof cb !== 'function') cb = null;\n\n\t    this.stream._duplexState |= READ_PIPE_DRAINED;\n\t    this.pipeTo = pipeTo;\n\t    this.pipeline = new Pipeline(this.stream, pipeTo, cb);\n\n\t    if (cb) this.stream.on('error', noop); // We already error handle this so supress crashes\n\n\t    if (isStreamx(pipeTo)) {\n\t      pipeTo._writableState.pipeline = this.pipeline;\n\t      if (cb) pipeTo.on('error', noop); // We already error handle this so supress crashes\n\t      pipeTo.on('finish', this.pipeline.finished.bind(this.pipeline)); // TODO: just call finished from pipeTo itself\n\t    } else {\n\t      const onerror = this.pipeline.done.bind(this.pipeline, pipeTo);\n\t      const onclose = this.pipeline.done.bind(this.pipeline, pipeTo, null); // onclose has a weird bool arg\n\t      pipeTo.on('error', onerror);\n\t      pipeTo.on('close', onclose);\n\t      pipeTo.on('finish', this.pipeline.finished.bind(this.pipeline));\n\t    }\n\n\t    pipeTo.on('drain', afterDrain.bind(this));\n\t    this.stream.emit('piping', pipeTo);\n\t    pipeTo.emit('pipe', this.stream);\n\t  }\n\n\t  push (data) {\n\t    const stream = this.stream;\n\n\t    if (data === null) {\n\t      this.highWaterMark = 0;\n\t      stream._duplexState = (stream._duplexState | READ_ENDING) & READ_NON_PRIMARY_AND_PUSHED;\n\t      return false\n\t    }\n\n\t    if (this.map !== null) {\n\t      data = this.map(data);\n\t      if (data === null) {\n\t        stream._duplexState &= READ_PUSHED;\n\t        return this.buffered < this.highWaterMark\n\t      }\n\t    }\n\n\t    this.buffered += this.byteLength(data);\n\t    this.queue.push(data);\n\n\t    stream._duplexState = (stream._duplexState | READ_QUEUED) & READ_PUSHED;\n\n\t    return this.buffered < this.highWaterMark\n\t  }\n\n\t  shift () {\n\t    const data = this.queue.shift();\n\n\t    this.buffered -= this.byteLength(data);\n\t    if (this.buffered === 0) this.stream._duplexState &= READ_NOT_QUEUED;\n\t    return data\n\t  }\n\n\t  unshift (data) {\n\t    const pending = [this.map !== null ? this.map(data) : data];\n\t    while (this.buffered > 0) pending.push(this.shift());\n\n\t    for (let i = 0; i < pending.length - 1; i++) {\n\t      const data = pending[i];\n\t      this.buffered += this.byteLength(data);\n\t      this.queue.push(data);\n\t    }\n\n\t    this.push(pending[pending.length - 1]);\n\t  }\n\n\t  read () {\n\t    const stream = this.stream;\n\n\t    if ((stream._duplexState & READ_STATUS) === READ_QUEUED) {\n\t      const data = this.shift();\n\t      if (this.pipeTo !== null && this.pipeTo.write(data) === false) stream._duplexState &= READ_PIPE_NOT_DRAINED;\n\t      if ((stream._duplexState & READ_EMIT_DATA) !== 0) stream.emit('data', data);\n\t      return data\n\t    }\n\n\t    if (this.readAhead === false) {\n\t      stream._duplexState |= READ_READ_AHEAD;\n\t      this.updateNextTick();\n\t    }\n\n\t    return null\n\t  }\n\n\t  drain () {\n\t    const stream = this.stream;\n\n\t    while ((stream._duplexState & READ_STATUS) === READ_QUEUED && (stream._duplexState & READ_FLOWING) !== 0) {\n\t      const data = this.shift();\n\t      if (this.pipeTo !== null && this.pipeTo.write(data) === false) stream._duplexState &= READ_PIPE_NOT_DRAINED;\n\t      if ((stream._duplexState & READ_EMIT_DATA) !== 0) stream.emit('data', data);\n\t    }\n\t  }\n\n\t  update () {\n\t    const stream = this.stream;\n\n\t    stream._duplexState |= READ_UPDATING;\n\n\t    do {\n\t      this.drain();\n\n\t      while (this.buffered < this.highWaterMark && (stream._duplexState & SHOULD_NOT_READ) === READ_READ_AHEAD) {\n\t        stream._duplexState |= READ_ACTIVE_AND_NEEDS_PUSH;\n\t        stream._read(this.afterRead);\n\t        this.drain();\n\t      }\n\n\t      if ((stream._duplexState & READ_READABLE_STATUS) === READ_EMIT_READABLE_AND_QUEUED) {\n\t        stream._duplexState |= READ_EMITTED_READABLE;\n\t        stream.emit('readable');\n\t      }\n\n\t      if ((stream._duplexState & READ_PRIMARY_AND_ACTIVE) === 0) this.updateNonPrimary();\n\t    } while (this.continueUpdate() === true)\n\n\t    stream._duplexState &= READ_NOT_UPDATING;\n\t  }\n\n\t  updateNonPrimary () {\n\t    const stream = this.stream;\n\n\t    if ((stream._duplexState & READ_ENDING_STATUS) === READ_ENDING) {\n\t      stream._duplexState = (stream._duplexState | READ_DONE) & READ_NOT_ENDING;\n\t      stream.emit('end');\n\t      if ((stream._duplexState & AUTO_DESTROY) === DONE) stream._duplexState |= DESTROYING;\n\t      if (this.pipeTo !== null) this.pipeTo.end();\n\t    }\n\n\t    if ((stream._duplexState & DESTROY_STATUS) === DESTROYING) {\n\t      if ((stream._duplexState & ACTIVE_OR_TICKING) === 0) {\n\t        stream._duplexState |= ACTIVE;\n\t        stream._destroy(afterDestroy.bind(this));\n\t      }\n\t      return\n\t    }\n\n\t    if ((stream._duplexState & IS_OPENING) === OPENING) {\n\t      stream._duplexState = (stream._duplexState | ACTIVE) & NOT_OPENING;\n\t      stream._open(afterOpen.bind(this));\n\t    }\n\t  }\n\n\t  continueUpdate () {\n\t    if ((this.stream._duplexState & READ_NEXT_TICK) === 0) return false\n\t    this.stream._duplexState &= READ_NOT_NEXT_TICK;\n\t    return true\n\t  }\n\n\t  updateCallback () {\n\t    if ((this.stream._duplexState & READ_UPDATE_SYNC_STATUS) === READ_PRIMARY) this.update();\n\t    else this.updateNextTick();\n\t  }\n\n\t  updateNextTickIfOpen () {\n\t    if ((this.stream._duplexState & READ_NEXT_TICK_OR_OPENING) !== 0) return\n\t    this.stream._duplexState |= READ_NEXT_TICK;\n\t    if ((this.stream._duplexState & READ_UPDATING) === 0) queueMicrotask(this.afterUpdateNextTick);\n\t  }\n\n\t  updateNextTick () {\n\t    if ((this.stream._duplexState & READ_NEXT_TICK) !== 0) return\n\t    this.stream._duplexState |= READ_NEXT_TICK;\n\t    if ((this.stream._duplexState & READ_UPDATING) === 0) queueMicrotask(this.afterUpdateNextTick);\n\t  }\n\t}\n\n\tclass TransformState {\n\t  constructor (stream) {\n\t    this.data = null;\n\t    this.afterTransform = afterTransform.bind(stream);\n\t    this.afterFinal = null;\n\t  }\n\t}\n\n\tclass Pipeline {\n\t  constructor (src, dst, cb) {\n\t    this.from = src;\n\t    this.to = dst;\n\t    this.afterPipe = cb;\n\t    this.error = null;\n\t    this.pipeToFinished = false;\n\t  }\n\n\t  finished () {\n\t    this.pipeToFinished = true;\n\t  }\n\n\t  done (stream, err) {\n\t    if (err) this.error = err;\n\n\t    if (stream === this.to) {\n\t      this.to = null;\n\n\t      if (this.from !== null) {\n\t        if ((this.from._duplexState & READ_DONE) === 0 || !this.pipeToFinished) {\n\t          this.from.destroy(this.error || new Error('Writable stream closed prematurely'));\n\t        }\n\t        return\n\t      }\n\t    }\n\n\t    if (stream === this.from) {\n\t      this.from = null;\n\n\t      if (this.to !== null) {\n\t        if ((stream._duplexState & READ_DONE) === 0) {\n\t          this.to.destroy(this.error || new Error('Readable stream closed before ending'));\n\t        }\n\t        return\n\t      }\n\t    }\n\n\t    if (this.afterPipe !== null) this.afterPipe(this.error);\n\t    this.to = this.from = this.afterPipe = null;\n\t  }\n\t}\n\n\tfunction afterDrain () {\n\t  this.stream._duplexState |= READ_PIPE_DRAINED;\n\t  this.updateCallback();\n\t}\n\n\tfunction afterFinal (err) {\n\t  const stream = this.stream;\n\t  if (err) stream.destroy(err);\n\t  if ((stream._duplexState & DESTROY_STATUS) === 0) {\n\t    stream._duplexState |= WRITE_DONE;\n\t    stream.emit('finish');\n\t  }\n\t  if ((stream._duplexState & AUTO_DESTROY) === DONE) {\n\t    stream._duplexState |= DESTROYING;\n\t  }\n\n\t  stream._duplexState &= WRITE_NOT_FINISHING;\n\n\t  // no need to wait the extra tick here, so we short circuit that\n\t  if ((stream._duplexState & WRITE_UPDATING) === 0) this.update();\n\t  else this.updateNextTick();\n\t}\n\n\tfunction afterDestroy (err) {\n\t  const stream = this.stream;\n\n\t  if (!err && this.error !== STREAM_DESTROYED) err = this.error;\n\t  if (err) stream.emit('error', err);\n\t  stream._duplexState |= DESTROYED;\n\t  stream.emit('close');\n\n\t  const rs = stream._readableState;\n\t  const ws = stream._writableState;\n\n\t  if (rs !== null && rs.pipeline !== null) rs.pipeline.done(stream, err);\n\n\t  if (ws !== null) {\n\t    while (ws.drains !== null && ws.drains.length > 0) ws.drains.shift().resolve(false);\n\t    if (ws.pipeline !== null) ws.pipeline.done(stream, err);\n\t  }\n\t}\n\n\tfunction afterWrite (err) {\n\t  const stream = this.stream;\n\n\t  if (err) stream.destroy(err);\n\t  stream._duplexState &= WRITE_NOT_ACTIVE;\n\n\t  if (this.drains !== null) tickDrains(this.drains);\n\n\t  if ((stream._duplexState & WRITE_DRAIN_STATUS) === WRITE_UNDRAINED) {\n\t    stream._duplexState &= WRITE_DRAINED;\n\t    if ((stream._duplexState & WRITE_EMIT_DRAIN) === WRITE_EMIT_DRAIN) {\n\t      stream.emit('drain');\n\t    }\n\t  }\n\n\t  this.updateCallback();\n\t}\n\n\tfunction afterRead (err) {\n\t  if (err) this.stream.destroy(err);\n\t  this.stream._duplexState &= READ_NOT_ACTIVE;\n\t  if (this.readAhead === false && (this.stream._duplexState & READ_RESUMED) === 0) this.stream._duplexState &= READ_NO_READ_AHEAD;\n\t  this.updateCallback();\n\t}\n\n\tfunction updateReadNT () {\n\t  if ((this.stream._duplexState & READ_UPDATING) === 0) {\n\t    this.stream._duplexState &= READ_NOT_NEXT_TICK;\n\t    this.update();\n\t  }\n\t}\n\n\tfunction updateWriteNT () {\n\t  if ((this.stream._duplexState & WRITE_UPDATING) === 0) {\n\t    this.stream._duplexState &= WRITE_NOT_NEXT_TICK;\n\t    this.update();\n\t  }\n\t}\n\n\tfunction tickDrains (drains) {\n\t  for (let i = 0; i < drains.length; i++) {\n\t    // drains.writes are monotonic, so if one is 0 its always the first one\n\t    if (--drains[i].writes === 0) {\n\t      drains.shift().resolve(true);\n\t      i--;\n\t    }\n\t  }\n\t}\n\n\tfunction afterOpen (err) {\n\t  const stream = this.stream;\n\n\t  if (err) stream.destroy(err);\n\n\t  if ((stream._duplexState & DESTROYING) === 0) {\n\t    if ((stream._duplexState & READ_PRIMARY_STATUS) === 0) stream._duplexState |= READ_PRIMARY;\n\t    if ((stream._duplexState & WRITE_PRIMARY_STATUS) === 0) stream._duplexState |= WRITE_PRIMARY;\n\t    stream.emit('open');\n\t  }\n\n\t  stream._duplexState &= NOT_ACTIVE;\n\n\t  if (stream._writableState !== null) {\n\t    stream._writableState.updateCallback();\n\t  }\n\n\t  if (stream._readableState !== null) {\n\t    stream._readableState.updateCallback();\n\t  }\n\t}\n\n\tfunction afterTransform (err, data) {\n\t  if (data !== undefined && data !== null) this.push(data);\n\t  this._writableState.afterWrite(err);\n\t}\n\n\tfunction newListener (name) {\n\t  if (this._readableState !== null) {\n\t    if (name === 'data') {\n\t      this._duplexState |= (READ_EMIT_DATA | READ_RESUMED_READ_AHEAD);\n\t      this._readableState.updateNextTick();\n\t    }\n\t    if (name === 'readable') {\n\t      this._duplexState |= READ_EMIT_READABLE;\n\t      this._readableState.updateNextTick();\n\t    }\n\t  }\n\n\t  if (this._writableState !== null) {\n\t    if (name === 'drain') {\n\t      this._duplexState |= WRITE_EMIT_DRAIN;\n\t      this._writableState.updateNextTick();\n\t    }\n\t  }\n\t}\n\n\tclass Stream extends EventEmitter {\n\t  constructor (opts) {\n\t    super();\n\n\t    this._duplexState = 0;\n\t    this._readableState = null;\n\t    this._writableState = null;\n\n\t    if (opts) {\n\t      if (opts.open) this._open = opts.open;\n\t      if (opts.destroy) this._destroy = opts.destroy;\n\t      if (opts.predestroy) this._predestroy = opts.predestroy;\n\t      if (opts.signal) {\n\t        opts.signal.addEventListener('abort', abort.bind(this));\n\t      }\n\t    }\n\n\t    this.on('newListener', newListener);\n\t  }\n\n\t  _open (cb) {\n\t    cb(null);\n\t  }\n\n\t  _destroy (cb) {\n\t    cb(null);\n\t  }\n\n\t  _predestroy () {\n\t    // does nothing\n\t  }\n\n\t  get readable () {\n\t    return this._readableState !== null ? true : undefined\n\t  }\n\n\t  get writable () {\n\t    return this._writableState !== null ? true : undefined\n\t  }\n\n\t  get destroyed () {\n\t    return (this._duplexState & DESTROYED) !== 0\n\t  }\n\n\t  get destroying () {\n\t    return (this._duplexState & DESTROY_STATUS) !== 0\n\t  }\n\n\t  destroy (err) {\n\t    if ((this._duplexState & DESTROY_STATUS) === 0) {\n\t      if (!err) err = STREAM_DESTROYED;\n\t      this._duplexState = (this._duplexState | DESTROYING) & NON_PRIMARY;\n\n\t      if (this._readableState !== null) {\n\t        this._readableState.highWaterMark = 0;\n\t        this._readableState.error = err;\n\t      }\n\t      if (this._writableState !== null) {\n\t        this._writableState.highWaterMark = 0;\n\t        this._writableState.error = err;\n\t      }\n\n\t      this._duplexState |= PREDESTROYING;\n\t      this._predestroy();\n\t      this._duplexState &= NOT_PREDESTROYING;\n\n\t      if (this._readableState !== null) this._readableState.updateNextTick();\n\t      if (this._writableState !== null) this._writableState.updateNextTick();\n\t    }\n\t  }\n\t}\n\n\tclass Readable extends Stream {\n\t  constructor (opts) {\n\t    super(opts);\n\n\t    this._duplexState |= OPENING | WRITE_DONE | READ_READ_AHEAD;\n\t    this._readableState = new ReadableState(this, opts);\n\n\t    if (opts) {\n\t      if (this._readableState.readAhead === false) this._duplexState &= READ_NO_READ_AHEAD;\n\t      if (opts.read) this._read = opts.read;\n\t      if (opts.eagerOpen) this._readableState.updateNextTick();\n\t      if (opts.encoding) this.setEncoding(opts.encoding);\n\t    }\n\t  }\n\n\t  setEncoding (encoding) {\n\t    const dec = new TextDecoder(encoding);\n\t    const map = this._readableState.map || echo;\n\t    this._readableState.map = mapOrSkip;\n\t    return this\n\n\t    function mapOrSkip (data) {\n\t      const next = dec.push(data);\n\t      return next === '' && (data.byteLength !== 0 || dec.remaining > 0) ? null : map(next)\n\t    }\n\t  }\n\n\t  _read (cb) {\n\t    cb(null);\n\t  }\n\n\t  pipe (dest, cb) {\n\t    this._readableState.updateNextTick();\n\t    this._readableState.pipe(dest, cb);\n\t    return dest\n\t  }\n\n\t  read () {\n\t    this._readableState.updateNextTick();\n\t    return this._readableState.read()\n\t  }\n\n\t  push (data) {\n\t    this._readableState.updateNextTickIfOpen();\n\t    return this._readableState.push(data)\n\t  }\n\n\t  unshift (data) {\n\t    this._readableState.updateNextTickIfOpen();\n\t    return this._readableState.unshift(data)\n\t  }\n\n\t  resume () {\n\t    this._duplexState |= READ_RESUMED_READ_AHEAD;\n\t    this._readableState.updateNextTick();\n\t    return this\n\t  }\n\n\t  pause () {\n\t    this._duplexState &= (this._readableState.readAhead === false ? READ_PAUSED_NO_READ_AHEAD : READ_PAUSED);\n\t    return this\n\t  }\n\n\t  static _fromAsyncIterator (ite, opts) {\n\t    let destroy;\n\n\t    const rs = new Readable({\n\t      ...opts,\n\t      read (cb) {\n\t        ite.next().then(push).then(cb.bind(null, null)).catch(cb);\n\t      },\n\t      predestroy () {\n\t        destroy = ite.return();\n\t      },\n\t      destroy (cb) {\n\t        if (!destroy) return cb(null)\n\t        destroy.then(cb.bind(null, null)).catch(cb);\n\t      }\n\t    });\n\n\t    return rs\n\n\t    function push (data) {\n\t      if (data.done) rs.push(null);\n\t      else rs.push(data.value);\n\t    }\n\t  }\n\n\t  static from (data, opts) {\n\t    if (isReadStreamx(data)) return data\n\t    if (data[asyncIterator]) return this._fromAsyncIterator(data[asyncIterator](), opts)\n\t    if (!Array.isArray(data)) data = data === undefined ? [] : [data];\n\n\t    let i = 0;\n\t    return new Readable({\n\t      ...opts,\n\t      read (cb) {\n\t        this.push(i === data.length ? null : data[i++]);\n\t        cb(null);\n\t      }\n\t    })\n\t  }\n\n\t  static isBackpressured (rs) {\n\t    return (rs._duplexState & READ_BACKPRESSURE_STATUS) !== 0 || rs._readableState.buffered >= rs._readableState.highWaterMark\n\t  }\n\n\t  static isPaused (rs) {\n\t    return (rs._duplexState & READ_RESUMED) === 0\n\t  }\n\n\t  [asyncIterator] () {\n\t    const stream = this;\n\n\t    let error = null;\n\t    let promiseResolve = null;\n\t    let promiseReject = null;\n\n\t    this.on('error', (err) => { error = err; });\n\t    this.on('readable', onreadable);\n\t    this.on('close', onclose);\n\n\t    return {\n\t      [asyncIterator] () {\n\t        return this\n\t      },\n\t      next () {\n\t        return new Promise(function (resolve, reject) {\n\t          promiseResolve = resolve;\n\t          promiseReject = reject;\n\t          const data = stream.read();\n\t          if (data !== null) ondata(data);\n\t          else if ((stream._duplexState & DESTROYED) !== 0) ondata(null);\n\t        })\n\t      },\n\t      return () {\n\t        return destroy(null)\n\t      },\n\t      throw (err) {\n\t        return destroy(err)\n\t      }\n\t    }\n\n\t    function onreadable () {\n\t      if (promiseResolve !== null) ondata(stream.read());\n\t    }\n\n\t    function onclose () {\n\t      if (promiseResolve !== null) ondata(null);\n\t    }\n\n\t    function ondata (data) {\n\t      if (promiseReject === null) return\n\t      if (error) promiseReject(error);\n\t      else if (data === null && (stream._duplexState & READ_DONE) === 0) promiseReject(STREAM_DESTROYED);\n\t      else promiseResolve({ value: data, done: data === null });\n\t      promiseReject = promiseResolve = null;\n\t    }\n\n\t    function destroy (err) {\n\t      stream.destroy(err);\n\t      return new Promise((resolve, reject) => {\n\t        if (stream._duplexState & DESTROYED) return resolve({ value: undefined, done: true })\n\t        stream.once('close', function () {\n\t          if (err) reject(err);\n\t          else resolve({ value: undefined, done: true });\n\t        });\n\t      })\n\t    }\n\t  }\n\t}\n\n\tclass Writable extends Stream {\n\t  constructor (opts) {\n\t    super(opts);\n\n\t    this._duplexState |= OPENING | READ_DONE;\n\t    this._writableState = new WritableState(this, opts);\n\n\t    if (opts) {\n\t      if (opts.writev) this._writev = opts.writev;\n\t      if (opts.write) this._write = opts.write;\n\t      if (opts.final) this._final = opts.final;\n\t      if (opts.eagerOpen) this._writableState.updateNextTick();\n\t    }\n\t  }\n\n\t  cork () {\n\t    this._duplexState |= WRITE_CORKED;\n\t  }\n\n\t  uncork () {\n\t    this._duplexState &= WRITE_NOT_CORKED;\n\t    this._writableState.updateNextTick();\n\t  }\n\n\t  _writev (batch, cb) {\n\t    cb(null);\n\t  }\n\n\t  _write (data, cb) {\n\t    this._writableState.autoBatch(data, cb);\n\t  }\n\n\t  _final (cb) {\n\t    cb(null);\n\t  }\n\n\t  static isBackpressured (ws) {\n\t    return (ws._duplexState & WRITE_BACKPRESSURE_STATUS) !== 0\n\t  }\n\n\t  static drained (ws) {\n\t    if (ws.destroyed) return Promise.resolve(false)\n\t    const state = ws._writableState;\n\t    const pending = (isWritev(ws) ? Math.min(1, state.queue.length) : state.queue.length);\n\t    const writes = pending + ((ws._duplexState & WRITE_WRITING) ? 1 : 0);\n\t    if (writes === 0) return Promise.resolve(true)\n\t    if (state.drains === null) state.drains = [];\n\t    return new Promise((resolve) => {\n\t      state.drains.push({ writes, resolve });\n\t    })\n\t  }\n\n\t  write (data) {\n\t    this._writableState.updateNextTick();\n\t    return this._writableState.push(data)\n\t  }\n\n\t  end (data) {\n\t    this._writableState.updateNextTick();\n\t    this._writableState.end(data);\n\t    return this\n\t  }\n\t}\n\n\tclass Duplex extends Readable { // and Writable\n\t  constructor (opts) {\n\t    super(opts);\n\n\t    this._duplexState = OPENING | (this._duplexState & READ_READ_AHEAD);\n\t    this._writableState = new WritableState(this, opts);\n\n\t    if (opts) {\n\t      if (opts.writev) this._writev = opts.writev;\n\t      if (opts.write) this._write = opts.write;\n\t      if (opts.final) this._final = opts.final;\n\t    }\n\t  }\n\n\t  cork () {\n\t    this._duplexState |= WRITE_CORKED;\n\t  }\n\n\t  uncork () {\n\t    this._duplexState &= WRITE_NOT_CORKED;\n\t    this._writableState.updateNextTick();\n\t  }\n\n\t  _writev (batch, cb) {\n\t    cb(null);\n\t  }\n\n\t  _write (data, cb) {\n\t    this._writableState.autoBatch(data, cb);\n\t  }\n\n\t  _final (cb) {\n\t    cb(null);\n\t  }\n\n\t  write (data) {\n\t    this._writableState.updateNextTick();\n\t    return this._writableState.push(data)\n\t  }\n\n\t  end (data) {\n\t    this._writableState.updateNextTick();\n\t    this._writableState.end(data);\n\t    return this\n\t  }\n\t}\n\n\tclass Transform extends Duplex {\n\t  constructor (opts) {\n\t    super(opts);\n\t    this._transformState = new TransformState(this);\n\n\t    if (opts) {\n\t      if (opts.transform) this._transform = opts.transform;\n\t      if (opts.flush) this._flush = opts.flush;\n\t    }\n\t  }\n\n\t  _write (data, cb) {\n\t    if (this._readableState.buffered >= this._readableState.highWaterMark) {\n\t      this._transformState.data = data;\n\t    } else {\n\t      this._transform(data, this._transformState.afterTransform);\n\t    }\n\t  }\n\n\t  _read (cb) {\n\t    if (this._transformState.data !== null) {\n\t      const data = this._transformState.data;\n\t      this._transformState.data = null;\n\t      cb(null);\n\t      this._transform(data, this._transformState.afterTransform);\n\t    } else {\n\t      cb(null);\n\t    }\n\t  }\n\n\t  destroy (err) {\n\t    super.destroy(err);\n\t    if (this._transformState.data !== null) {\n\t      this._transformState.data = null;\n\t      this._transformState.afterTransform();\n\t    }\n\t  }\n\n\t  _transform (data, cb) {\n\t    cb(null, data);\n\t  }\n\n\t  _flush (cb) {\n\t    cb(null);\n\t  }\n\n\t  _final (cb) {\n\t    this._transformState.afterFinal = cb;\n\t    this._flush(transformAfterFlush.bind(this));\n\t  }\n\t}\n\n\tclass PassThrough extends Transform {}\n\n\tfunction transformAfterFlush (err, data) {\n\t  const cb = this._transformState.afterFinal;\n\t  if (err) return cb(err)\n\t  if (data !== null && data !== undefined) this.push(data);\n\t  this.push(null);\n\t  cb(null);\n\t}\n\n\tfunction pipelinePromise (...streams) {\n\t  return new Promise((resolve, reject) => {\n\t    return pipeline(...streams, (err) => {\n\t      if (err) return reject(err)\n\t      resolve();\n\t    })\n\t  })\n\t}\n\n\tfunction pipeline (stream, ...streams) {\n\t  const all = Array.isArray(stream) ? [...stream, ...streams] : [stream, ...streams];\n\t  const done = (all.length && typeof all[all.length - 1] === 'function') ? all.pop() : null;\n\n\t  if (all.length < 2) throw new Error('Pipeline requires at least 2 streams')\n\n\t  let src = all[0];\n\t  let dest = null;\n\t  let error = null;\n\n\t  for (let i = 1; i < all.length; i++) {\n\t    dest = all[i];\n\n\t    if (isStreamx(src)) {\n\t      src.pipe(dest, onerror);\n\t    } else {\n\t      errorHandle(src, true, i > 1, onerror);\n\t      src.pipe(dest);\n\t    }\n\n\t    src = dest;\n\t  }\n\n\t  if (done) {\n\t    let fin = false;\n\n\t    const autoDestroy = isStreamx(dest) || !!(dest._writableState && dest._writableState.autoDestroy);\n\n\t    dest.on('error', (err) => {\n\t      if (error === null) error = err;\n\t    });\n\n\t    dest.on('finish', () => {\n\t      fin = true;\n\t      if (!autoDestroy) done(error);\n\t    });\n\n\t    if (autoDestroy) {\n\t      dest.on('close', () => done(error || (fin ? null : PREMATURE_CLOSE)));\n\t    }\n\t  }\n\n\t  return dest\n\n\t  function errorHandle (s, rd, wr, onerror) {\n\t    s.on('error', onerror);\n\t    s.on('close', onclose);\n\n\t    function onclose () {\n\t      if (s._readableState && !s._readableState.ended) return onerror(PREMATURE_CLOSE)\n\t      if (wr && s._writableState && !s._writableState.ended) return onerror(PREMATURE_CLOSE)\n\t    }\n\t  }\n\n\t  function onerror (err) {\n\t    if (!err || error) return\n\t    error = err;\n\n\t    for (const s of all) {\n\t      s.destroy(err);\n\t    }\n\t  }\n\t}\n\n\tfunction echo (s) {\n\t  return s\n\t}\n\n\tfunction isStream (stream) {\n\t  return !!stream._readableState || !!stream._writableState\n\t}\n\n\tfunction isStreamx (stream) {\n\t  return typeof stream._duplexState === 'number' && isStream(stream)\n\t}\n\n\tfunction isEnded (stream) {\n\t  return !!stream._readableState && stream._readableState.ended\n\t}\n\n\tfunction isFinished (stream) {\n\t  return !!stream._writableState && stream._writableState.ended\n\t}\n\n\tfunction getStreamError (stream, opts = {}) {\n\t  const err = (stream._readableState && stream._readableState.error) || (stream._writableState && stream._writableState.error);\n\n\t  // avoid implicit errors by default\n\t  return (!opts.all && err === STREAM_DESTROYED) ? null : err\n\t}\n\n\tfunction isReadStreamx (stream) {\n\t  return isStreamx(stream) && stream.readable\n\t}\n\n\tfunction isDisturbed (stream) {\n\t  return (stream._duplexState & OPENING) !== OPENING || (stream._duplexState & ACTIVE_OR_TICKING) !== 0\n\t}\n\n\tfunction isTypedArray (data) {\n\t  return typeof data === 'object' && data !== null && typeof data.byteLength === 'number'\n\t}\n\n\tfunction defaultByteLength (data) {\n\t  return isTypedArray(data) ? data.byteLength : 1024\n\t}\n\n\tfunction noop () {}\n\n\tfunction abort () {\n\t  this.destroy(new Error('Stream aborted.'));\n\t}\n\n\tfunction isWritev (s) {\n\t  return s._writev !== Writable.prototype._writev && s._writev !== Duplex.prototype._writev\n\t}\n\n\tstreamx = {\n\t  pipeline,\n\t  pipelinePromise,\n\t  isStream,\n\t  isStreamx,\n\t  isEnded,\n\t  isFinished,\n\t  isDisturbed,\n\t  getStreamError,\n\t  Stream,\n\t  Writable,\n\t  Readable,\n\t  Duplex,\n\t  Transform,\n\t  // Export PassThrough for compatibility with Node.js core's stream module\n\t  PassThrough\n\t};\n\treturn streamx;\n}\n\nvar headers = {};\n\nvar hasRequiredHeaders;\n\nfunction requireHeaders () {\n\tif (hasRequiredHeaders) return headers;\n\thasRequiredHeaders = 1;\n\tconst b4a = requireB4a();\n\n\tconst ZEROS = '0000000000000000000';\n\tconst SEVENS = '7777777777777777777';\n\tconst ZERO_OFFSET = '0'.charCodeAt(0);\n\tconst USTAR_MAGIC = b4a.from([0x75, 0x73, 0x74, 0x61, 0x72, 0x00]); // ustar\\x00\n\tconst USTAR_VER = b4a.from([ZERO_OFFSET, ZERO_OFFSET]);\n\tconst GNU_MAGIC = b4a.from([0x75, 0x73, 0x74, 0x61, 0x72, 0x20]); // ustar\\x20\n\tconst GNU_VER = b4a.from([0x20, 0x00]);\n\tconst MASK = 0o7777;\n\tconst MAGIC_OFFSET = 257;\n\tconst VERSION_OFFSET = 263;\n\n\theaders.decodeLongPath = function decodeLongPath (buf, encoding) {\n\t  return decodeStr(buf, 0, buf.length, encoding)\n\t};\n\n\theaders.encodePax = function encodePax (opts) { // TODO: encode more stuff in pax\n\t  let result = '';\n\t  if (opts.name) result += addLength(' path=' + opts.name + '\\n');\n\t  if (opts.linkname) result += addLength(' linkpath=' + opts.linkname + '\\n');\n\t  const pax = opts.pax;\n\t  if (pax) {\n\t    for (const key in pax) {\n\t      result += addLength(' ' + key + '=' + pax[key] + '\\n');\n\t    }\n\t  }\n\t  return b4a.from(result)\n\t};\n\n\theaders.decodePax = function decodePax (buf) {\n\t  const result = {};\n\n\t  while (buf.length) {\n\t    let i = 0;\n\t    while (i < buf.length && buf[i] !== 32) i++;\n\t    const len = parseInt(b4a.toString(buf.subarray(0, i)), 10);\n\t    if (!len) return result\n\n\t    const b = b4a.toString(buf.subarray(i + 1, len - 1));\n\t    const keyIndex = b.indexOf('=');\n\t    if (keyIndex === -1) return result\n\t    result[b.slice(0, keyIndex)] = b.slice(keyIndex + 1);\n\n\t    buf = buf.subarray(len);\n\t  }\n\n\t  return result\n\t};\n\n\theaders.encode = function encode (opts) {\n\t  const buf = b4a.alloc(512);\n\t  let name = opts.name;\n\t  let prefix = '';\n\n\t  if (opts.typeflag === 5 && name[name.length - 1] !== '/') name += '/';\n\t  if (b4a.byteLength(name) !== name.length) return null // utf-8\n\n\t  while (b4a.byteLength(name) > 100) {\n\t    const i = name.indexOf('/');\n\t    if (i === -1) return null\n\t    prefix += prefix ? '/' + name.slice(0, i) : name.slice(0, i);\n\t    name = name.slice(i + 1);\n\t  }\n\n\t  if (b4a.byteLength(name) > 100 || b4a.byteLength(prefix) > 155) return null\n\t  if (opts.linkname && b4a.byteLength(opts.linkname) > 100) return null\n\n\t  b4a.write(buf, name);\n\t  b4a.write(buf, encodeOct(opts.mode & MASK, 6), 100);\n\t  b4a.write(buf, encodeOct(opts.uid, 6), 108);\n\t  b4a.write(buf, encodeOct(opts.gid, 6), 116);\n\t  encodeSize(opts.size, buf, 124);\n\t  b4a.write(buf, encodeOct((opts.mtime.getTime() / 1000) | 0, 11), 136);\n\n\t  buf[156] = ZERO_OFFSET + toTypeflag(opts.type);\n\n\t  if (opts.linkname) b4a.write(buf, opts.linkname, 157);\n\n\t  b4a.copy(USTAR_MAGIC, buf, MAGIC_OFFSET);\n\t  b4a.copy(USTAR_VER, buf, VERSION_OFFSET);\n\t  if (opts.uname) b4a.write(buf, opts.uname, 265);\n\t  if (opts.gname) b4a.write(buf, opts.gname, 297);\n\t  b4a.write(buf, encodeOct(opts.devmajor || 0, 6), 329);\n\t  b4a.write(buf, encodeOct(opts.devminor || 0, 6), 337);\n\n\t  if (prefix) b4a.write(buf, prefix, 345);\n\n\t  b4a.write(buf, encodeOct(cksum(buf), 6), 148);\n\n\t  return buf\n\t};\n\n\theaders.decode = function decode (buf, filenameEncoding, allowUnknownFormat) {\n\t  let typeflag = buf[156] === 0 ? 0 : buf[156] - ZERO_OFFSET;\n\n\t  let name = decodeStr(buf, 0, 100, filenameEncoding);\n\t  const mode = decodeOct(buf, 100, 8);\n\t  const uid = decodeOct(buf, 108, 8);\n\t  const gid = decodeOct(buf, 116, 8);\n\t  const size = decodeOct(buf, 124, 12);\n\t  const mtime = decodeOct(buf, 136, 12);\n\t  const type = toType(typeflag);\n\t  const linkname = buf[157] === 0 ? null : decodeStr(buf, 157, 100, filenameEncoding);\n\t  const uname = decodeStr(buf, 265, 32);\n\t  const gname = decodeStr(buf, 297, 32);\n\t  const devmajor = decodeOct(buf, 329, 8);\n\t  const devminor = decodeOct(buf, 337, 8);\n\n\t  const c = cksum(buf);\n\n\t  // checksum is still initial value if header was null.\n\t  if (c === 8 * 32) return null\n\n\t  // valid checksum\n\t  if (c !== decodeOct(buf, 148, 8)) throw new Error('Invalid tar header. Maybe the tar is corrupted or it needs to be gunzipped?')\n\n\t  if (isUSTAR(buf)) {\n\t    // ustar (posix) format.\n\t    // prepend prefix, if present.\n\t    if (buf[345]) name = decodeStr(buf, 345, 155, filenameEncoding) + '/' + name;\n\t  } else if (isGNU(buf)) ; else {\n\t    if (!allowUnknownFormat) {\n\t      throw new Error('Invalid tar header: unknown format.')\n\t    }\n\t  }\n\n\t  // to support old tar versions that use trailing / to indicate dirs\n\t  if (typeflag === 0 && name && name[name.length - 1] === '/') typeflag = 5;\n\n\t  return {\n\t    name,\n\t    mode,\n\t    uid,\n\t    gid,\n\t    size,\n\t    mtime: new Date(1000 * mtime),\n\t    type,\n\t    linkname,\n\t    uname,\n\t    gname,\n\t    devmajor,\n\t    devminor,\n\t    pax: null\n\t  }\n\t};\n\n\tfunction isUSTAR (buf) {\n\t  return b4a.equals(USTAR_MAGIC, buf.subarray(MAGIC_OFFSET, MAGIC_OFFSET + 6))\n\t}\n\n\tfunction isGNU (buf) {\n\t  return b4a.equals(GNU_MAGIC, buf.subarray(MAGIC_OFFSET, MAGIC_OFFSET + 6)) &&\n\t    b4a.equals(GNU_VER, buf.subarray(VERSION_OFFSET, VERSION_OFFSET + 2))\n\t}\n\n\tfunction clamp (index, len, defaultValue) {\n\t  if (typeof index !== 'number') return defaultValue\n\t  index = ~~index; // Coerce to integer.\n\t  if (index >= len) return len\n\t  if (index >= 0) return index\n\t  index += len;\n\t  if (index >= 0) return index\n\t  return 0\n\t}\n\n\tfunction toType (flag) {\n\t  switch (flag) {\n\t    case 0:\n\t      return 'file'\n\t    case 1:\n\t      return 'link'\n\t    case 2:\n\t      return 'symlink'\n\t    case 3:\n\t      return 'character-device'\n\t    case 4:\n\t      return 'block-device'\n\t    case 5:\n\t      return 'directory'\n\t    case 6:\n\t      return 'fifo'\n\t    case 7:\n\t      return 'contiguous-file'\n\t    case 72:\n\t      return 'pax-header'\n\t    case 55:\n\t      return 'pax-global-header'\n\t    case 27:\n\t      return 'gnu-long-link-path'\n\t    case 28:\n\t    case 30:\n\t      return 'gnu-long-path'\n\t  }\n\n\t  return null\n\t}\n\n\tfunction toTypeflag (flag) {\n\t  switch (flag) {\n\t    case 'file':\n\t      return 0\n\t    case 'link':\n\t      return 1\n\t    case 'symlink':\n\t      return 2\n\t    case 'character-device':\n\t      return 3\n\t    case 'block-device':\n\t      return 4\n\t    case 'directory':\n\t      return 5\n\t    case 'fifo':\n\t      return 6\n\t    case 'contiguous-file':\n\t      return 7\n\t    case 'pax-header':\n\t      return 72\n\t  }\n\n\t  return 0\n\t}\n\n\tfunction indexOf (block, num, offset, end) {\n\t  for (; offset < end; offset++) {\n\t    if (block[offset] === num) return offset\n\t  }\n\t  return end\n\t}\n\n\tfunction cksum (block) {\n\t  let sum = 8 * 32;\n\t  for (let i = 0; i < 148; i++) sum += block[i];\n\t  for (let j = 156; j < 512; j++) sum += block[j];\n\t  return sum\n\t}\n\n\tfunction encodeOct (val, n) {\n\t  val = val.toString(8);\n\t  if (val.length > n) return SEVENS.slice(0, n) + ' '\n\t  return ZEROS.slice(0, n - val.length) + val + ' '\n\t}\n\n\tfunction encodeSizeBin (num, buf, off) {\n\t  buf[off] = 0x80;\n\t  for (let i = 11; i > 0; i--) {\n\t    buf[off + i] = num & 0xff;\n\t    num = Math.floor(num / 0x100);\n\t  }\n\t}\n\n\tfunction encodeSize (num, buf, off) {\n\t  if (num.toString(8).length > 11) {\n\t    encodeSizeBin(num, buf, off);\n\t  } else {\n\t    b4a.write(buf, encodeOct(num, 11), off);\n\t  }\n\t}\n\n\t/* Copied from the node-tar repo and modified to meet\n\t * tar-stream coding standard.\n\t *\n\t * Source: https://github.com/npm/node-tar/blob/51b6627a1f357d2eb433e7378e5f05e83b7aa6cd/lib/header.js#L349\n\t */\n\tfunction parse256 (buf) {\n\t  // first byte MUST be either 80 or FF\n\t  // 80 for positive, FF for 2's comp\n\t  let positive;\n\t  if (buf[0] === 0x80) positive = true;\n\t  else if (buf[0] === 0xFF) positive = false;\n\t  else return null\n\n\t  // build up a base-256 tuple from the least sig to the highest\n\t  const tuple = [];\n\t  let i;\n\t  for (i = buf.length - 1; i > 0; i--) {\n\t    const byte = buf[i];\n\t    if (positive) tuple.push(byte);\n\t    else tuple.push(0xFF - byte);\n\t  }\n\n\t  let sum = 0;\n\t  const l = tuple.length;\n\t  for (i = 0; i < l; i++) {\n\t    sum += tuple[i] * Math.pow(256, i);\n\t  }\n\n\t  return positive ? sum : -1 * sum\n\t}\n\n\tfunction decodeOct (val, offset, length) {\n\t  val = val.subarray(offset, offset + length);\n\t  offset = 0;\n\n\t  // If prefixed with 0x80 then parse as a base-256 integer\n\t  if (val[offset] & 0x80) {\n\t    return parse256(val)\n\t  } else {\n\t    // Older versions of tar can prefix with spaces\n\t    while (offset < val.length && val[offset] === 32) offset++;\n\t    const end = clamp(indexOf(val, 32, offset, val.length), val.length, val.length);\n\t    while (offset < end && val[offset] === 0) offset++;\n\t    if (end === offset) return 0\n\t    return parseInt(b4a.toString(val.subarray(offset, end)), 8)\n\t  }\n\t}\n\n\tfunction decodeStr (val, offset, length, encoding) {\n\t  return b4a.toString(val.subarray(offset, indexOf(val, 0, offset, offset + length)), encoding)\n\t}\n\n\tfunction addLength (str) {\n\t  const len = b4a.byteLength(str);\n\t  let digits = Math.floor(Math.log(len) / Math.log(10)) + 1;\n\t  if (len + digits >= Math.pow(10, digits)) digits++;\n\n\t  return (len + digits) + str\n\t}\n\treturn headers;\n}\n\nvar extract$1;\nvar hasRequiredExtract$1;\n\nfunction requireExtract$1 () {\n\tif (hasRequiredExtract$1) return extract$1;\n\thasRequiredExtract$1 = 1;\n\tconst { Writable, Readable, getStreamError } = requireStreamx();\n\tconst FIFO = requireFastFifo();\n\tconst b4a = requireB4a();\n\tconst headers = requireHeaders();\n\n\tconst EMPTY = b4a.alloc(0);\n\n\tclass BufferList {\n\t  constructor () {\n\t    this.buffered = 0;\n\t    this.shifted = 0;\n\t    this.queue = new FIFO();\n\n\t    this._offset = 0;\n\t  }\n\n\t  push (buffer) {\n\t    this.buffered += buffer.byteLength;\n\t    this.queue.push(buffer);\n\t  }\n\n\t  shiftFirst (size) {\n\t    return this._buffered === 0 ? null : this._next(size)\n\t  }\n\n\t  shift (size) {\n\t    if (size > this.buffered) return null\n\t    if (size === 0) return EMPTY\n\n\t    let chunk = this._next(size);\n\n\t    if (size === chunk.byteLength) return chunk // likely case\n\n\t    const chunks = [chunk];\n\n\t    while ((size -= chunk.byteLength) > 0) {\n\t      chunk = this._next(size);\n\t      chunks.push(chunk);\n\t    }\n\n\t    return b4a.concat(chunks)\n\t  }\n\n\t  _next (size) {\n\t    const buf = this.queue.peek();\n\t    const rem = buf.byteLength - this._offset;\n\n\t    if (size >= rem) {\n\t      const sub = this._offset ? buf.subarray(this._offset, buf.byteLength) : buf;\n\t      this.queue.shift();\n\t      this._offset = 0;\n\t      this.buffered -= rem;\n\t      this.shifted += rem;\n\t      return sub\n\t    }\n\n\t    this.buffered -= size;\n\t    this.shifted += size;\n\n\t    return buf.subarray(this._offset, (this._offset += size))\n\t  }\n\t}\n\n\tclass Source extends Readable {\n\t  constructor (self, header, offset) {\n\t    super();\n\n\t    this.header = header;\n\t    this.offset = offset;\n\n\t    this._parent = self;\n\t  }\n\n\t  _read (cb) {\n\t    if (this.header.size === 0) {\n\t      this.push(null);\n\t    }\n\t    if (this._parent._stream === this) {\n\t      this._parent._update();\n\t    }\n\t    cb(null);\n\t  }\n\n\t  _predestroy () {\n\t    this._parent.destroy(getStreamError(this));\n\t  }\n\n\t  _detach () {\n\t    if (this._parent._stream === this) {\n\t      this._parent._stream = null;\n\t      this._parent._missing = overflow(this.header.size);\n\t      this._parent._update();\n\t    }\n\t  }\n\n\t  _destroy (cb) {\n\t    this._detach();\n\t    cb(null);\n\t  }\n\t}\n\n\tclass Extract extends Writable {\n\t  constructor (opts) {\n\t    super(opts);\n\n\t    if (!opts) opts = {};\n\n\t    this._buffer = new BufferList();\n\t    this._offset = 0;\n\t    this._header = null;\n\t    this._stream = null;\n\t    this._missing = 0;\n\t    this._longHeader = false;\n\t    this._callback = noop;\n\t    this._locked = false;\n\t    this._finished = false;\n\t    this._pax = null;\n\t    this._paxGlobal = null;\n\t    this._gnuLongPath = null;\n\t    this._gnuLongLinkPath = null;\n\t    this._filenameEncoding = opts.filenameEncoding || 'utf-8';\n\t    this._allowUnknownFormat = !!opts.allowUnknownFormat;\n\t    this._unlockBound = this._unlock.bind(this);\n\t  }\n\n\t  _unlock (err) {\n\t    this._locked = false;\n\n\t    if (err) {\n\t      this.destroy(err);\n\t      this._continueWrite(err);\n\t      return\n\t    }\n\n\t    this._update();\n\t  }\n\n\t  _consumeHeader () {\n\t    if (this._locked) return false\n\n\t    this._offset = this._buffer.shifted;\n\n\t    try {\n\t      this._header = headers.decode(this._buffer.shift(512), this._filenameEncoding, this._allowUnknownFormat);\n\t    } catch (err) {\n\t      this._continueWrite(err);\n\t      return false\n\t    }\n\n\t    if (!this._header) return true\n\n\t    switch (this._header.type) {\n\t      case 'gnu-long-path':\n\t      case 'gnu-long-link-path':\n\t      case 'pax-global-header':\n\t      case 'pax-header':\n\t        this._longHeader = true;\n\t        this._missing = this._header.size;\n\t        return true\n\t    }\n\n\t    this._locked = true;\n\t    this._applyLongHeaders();\n\n\t    if (this._header.size === 0 || this._header.type === 'directory') {\n\t      this.emit('entry', this._header, this._createStream(), this._unlockBound);\n\t      return true\n\t    }\n\n\t    this._stream = this._createStream();\n\t    this._missing = this._header.size;\n\n\t    this.emit('entry', this._header, this._stream, this._unlockBound);\n\t    return true\n\t  }\n\n\t  _applyLongHeaders () {\n\t    if (this._gnuLongPath) {\n\t      this._header.name = this._gnuLongPath;\n\t      this._gnuLongPath = null;\n\t    }\n\n\t    if (this._gnuLongLinkPath) {\n\t      this._header.linkname = this._gnuLongLinkPath;\n\t      this._gnuLongLinkPath = null;\n\t    }\n\n\t    if (this._pax) {\n\t      if (this._pax.path) this._header.name = this._pax.path;\n\t      if (this._pax.linkpath) this._header.linkname = this._pax.linkpath;\n\t      if (this._pax.size) this._header.size = parseInt(this._pax.size, 10);\n\t      this._header.pax = this._pax;\n\t      this._pax = null;\n\t    }\n\t  }\n\n\t  _decodeLongHeader (buf) {\n\t    switch (this._header.type) {\n\t      case 'gnu-long-path':\n\t        this._gnuLongPath = headers.decodeLongPath(buf, this._filenameEncoding);\n\t        break\n\t      case 'gnu-long-link-path':\n\t        this._gnuLongLinkPath = headers.decodeLongPath(buf, this._filenameEncoding);\n\t        break\n\t      case 'pax-global-header':\n\t        this._paxGlobal = headers.decodePax(buf);\n\t        break\n\t      case 'pax-header':\n\t        this._pax = this._paxGlobal === null\n\t          ? headers.decodePax(buf)\n\t          : Object.assign({}, this._paxGlobal, headers.decodePax(buf));\n\t        break\n\t    }\n\t  }\n\n\t  _consumeLongHeader () {\n\t    this._longHeader = false;\n\t    this._missing = overflow(this._header.size);\n\n\t    const buf = this._buffer.shift(this._header.size);\n\n\t    try {\n\t      this._decodeLongHeader(buf);\n\t    } catch (err) {\n\t      this._continueWrite(err);\n\t      return false\n\t    }\n\n\t    return true\n\t  }\n\n\t  _consumeStream () {\n\t    const buf = this._buffer.shiftFirst(this._missing);\n\t    if (buf === null) return false\n\n\t    this._missing -= buf.byteLength;\n\t    const drained = this._stream.push(buf);\n\n\t    if (this._missing === 0) {\n\t      this._stream.push(null);\n\t      if (drained) this._stream._detach();\n\t      return drained && this._locked === false\n\t    }\n\n\t    return drained\n\t  }\n\n\t  _createStream () {\n\t    return new Source(this, this._header, this._offset)\n\t  }\n\n\t  _update () {\n\t    while (this._buffer.buffered > 0 && !this.destroying) {\n\t      if (this._missing > 0) {\n\t        if (this._stream !== null) {\n\t          if (this._consumeStream() === false) return\n\t          continue\n\t        }\n\n\t        if (this._longHeader === true) {\n\t          if (this._missing > this._buffer.buffered) break\n\t          if (this._consumeLongHeader() === false) return false\n\t          continue\n\t        }\n\n\t        const ignore = this._buffer.shiftFirst(this._missing);\n\t        if (ignore !== null) this._missing -= ignore.byteLength;\n\t        continue\n\t      }\n\n\t      if (this._buffer.buffered < 512) break\n\t      if (this._stream !== null || this._consumeHeader() === false) return\n\t    }\n\n\t    this._continueWrite(null);\n\t  }\n\n\t  _continueWrite (err) {\n\t    const cb = this._callback;\n\t    this._callback = noop;\n\t    cb(err);\n\t  }\n\n\t  _write (data, cb) {\n\t    this._callback = cb;\n\t    this._buffer.push(data);\n\t    this._update();\n\t  }\n\n\t  _final (cb) {\n\t    this._finished = this._missing === 0 && this._buffer.buffered === 0;\n\t    cb(this._finished ? null : new Error('Unexpected end of data'));\n\t  }\n\n\t  _predestroy () {\n\t    this._continueWrite(null);\n\t  }\n\n\t  _destroy (cb) {\n\t    if (this._stream) this._stream.destroy(getStreamError(this));\n\t    cb(null);\n\t  }\n\n\t  [Symbol.asyncIterator] () {\n\t    let error = null;\n\n\t    let promiseResolve = null;\n\t    let promiseReject = null;\n\n\t    let entryStream = null;\n\t    let entryCallback = null;\n\n\t    const extract = this;\n\n\t    this.on('entry', onentry);\n\t    this.on('error', (err) => { error = err; });\n\t    this.on('close', onclose);\n\n\t    return {\n\t      [Symbol.asyncIterator] () {\n\t        return this\n\t      },\n\t      next () {\n\t        return new Promise(onnext)\n\t      },\n\t      return () {\n\t        return destroy(null)\n\t      },\n\t      throw (err) {\n\t        return destroy(err)\n\t      }\n\t    }\n\n\t    function consumeCallback (err) {\n\t      if (!entryCallback) return\n\t      const cb = entryCallback;\n\t      entryCallback = null;\n\t      cb(err);\n\t    }\n\n\t    function onnext (resolve, reject) {\n\t      if (error) {\n\t        return reject(error)\n\t      }\n\n\t      if (entryStream) {\n\t        resolve({ value: entryStream, done: false });\n\t        entryStream = null;\n\t        return\n\t      }\n\n\t      promiseResolve = resolve;\n\t      promiseReject = reject;\n\n\t      consumeCallback(null);\n\n\t      if (extract._finished && promiseResolve) {\n\t        promiseResolve({ value: undefined, done: true });\n\t        promiseResolve = promiseReject = null;\n\t      }\n\t    }\n\n\t    function onentry (header, stream, callback) {\n\t      entryCallback = callback;\n\t      stream.on('error', noop); // no way around this due to tick sillyness\n\n\t      if (promiseResolve) {\n\t        promiseResolve({ value: stream, done: false });\n\t        promiseResolve = promiseReject = null;\n\t      } else {\n\t        entryStream = stream;\n\t      }\n\t    }\n\n\t    function onclose () {\n\t      consumeCallback(error);\n\t      if (!promiseResolve) return\n\t      if (error) promiseReject(error);\n\t      else promiseResolve({ value: undefined, done: true });\n\t      promiseResolve = promiseReject = null;\n\t    }\n\n\t    function destroy (err) {\n\t      extract.destroy(err);\n\t      consumeCallback(err);\n\t      return new Promise((resolve, reject) => {\n\t        if (extract.destroyed) return resolve({ value: undefined, done: true })\n\t        extract.once('close', function () {\n\t          if (err) reject(err);\n\t          else resolve({ value: undefined, done: true });\n\t        });\n\t      })\n\t    }\n\t  }\n\t}\n\n\textract$1 = function extract (opts) {\n\t  return new Extract(opts)\n\t};\n\n\tfunction noop () {}\n\n\tfunction overflow (size) {\n\t  size &= 511;\n\t  return size && 512 - size\n\t}\n\treturn extract$1;\n}\n\nvar constants = {exports: {}};\n\nvar hasRequiredConstants;\n\nfunction requireConstants () {\n\tif (hasRequiredConstants) return constants.exports;\n\thasRequiredConstants = 1;\n\tconst constants$1 = { // just for envs without fs\n\t  S_IFMT: 61440,\n\t  S_IFDIR: 16384,\n\t  S_IFCHR: 8192,\n\t  S_IFBLK: 24576,\n\t  S_IFIFO: 4096,\n\t  S_IFLNK: 40960\n\t};\n\n\ttry {\n\t  constants.exports = require('fs').constants || constants$1;\n\t} catch {\n\t  constants.exports = constants$1;\n\t}\n\treturn constants.exports;\n}\n\nvar pack;\nvar hasRequiredPack;\n\nfunction requirePack () {\n\tif (hasRequiredPack) return pack;\n\thasRequiredPack = 1;\n\tconst { Readable, Writable, getStreamError } = requireStreamx();\n\tconst b4a = requireB4a();\n\n\tconst constants = requireConstants();\n\tconst headers = requireHeaders();\n\n\tconst DMODE = 0o755;\n\tconst FMODE = 0o644;\n\n\tconst END_OF_TAR = b4a.alloc(1024);\n\n\tclass Sink extends Writable {\n\t  constructor (pack, header, callback) {\n\t    super({ mapWritable, eagerOpen: true });\n\n\t    this.written = 0;\n\t    this.header = header;\n\n\t    this._callback = callback;\n\t    this._linkname = null;\n\t    this._isLinkname = header.type === 'symlink' && !header.linkname;\n\t    this._isVoid = header.type !== 'file' && header.type !== 'contiguous-file';\n\t    this._finished = false;\n\t    this._pack = pack;\n\t    this._openCallback = null;\n\n\t    if (this._pack._stream === null) this._pack._stream = this;\n\t    else this._pack._pending.push(this);\n\t  }\n\n\t  _open (cb) {\n\t    this._openCallback = cb;\n\t    if (this._pack._stream === this) this._continueOpen();\n\t  }\n\n\t  _continuePack (err) {\n\t    if (this._callback === null) return\n\n\t    const callback = this._callback;\n\t    this._callback = null;\n\n\t    callback(err);\n\t  }\n\n\t  _continueOpen () {\n\t    if (this._pack._stream === null) this._pack._stream = this;\n\n\t    const cb = this._openCallback;\n\t    this._openCallback = null;\n\t    if (cb === null) return\n\n\t    if (this._pack.destroying) return cb(new Error('pack stream destroyed'))\n\t    if (this._pack._finalized) return cb(new Error('pack stream is already finalized'))\n\n\t    this._pack._stream = this;\n\n\t    if (!this._isLinkname) {\n\t      this._pack._encode(this.header);\n\t    }\n\n\t    if (this._isVoid) {\n\t      this._finish();\n\t      this._continuePack(null);\n\t    }\n\n\t    cb(null);\n\t  }\n\n\t  _write (data, cb) {\n\t    if (this._isLinkname) {\n\t      this._linkname = this._linkname ? b4a.concat([this._linkname, data]) : data;\n\t      return cb(null)\n\t    }\n\n\t    if (this._isVoid) {\n\t      if (data.byteLength > 0) {\n\t        return cb(new Error('No body allowed for this entry'))\n\t      }\n\t      return cb()\n\t    }\n\n\t    this.written += data.byteLength;\n\t    if (this._pack.push(data)) return cb()\n\t    this._pack._drain = cb;\n\t  }\n\n\t  _finish () {\n\t    if (this._finished) return\n\t    this._finished = true;\n\n\t    if (this._isLinkname) {\n\t      this.header.linkname = this._linkname ? b4a.toString(this._linkname, 'utf-8') : '';\n\t      this._pack._encode(this.header);\n\t    }\n\n\t    overflow(this._pack, this.header.size);\n\n\t    this._pack._done(this);\n\t  }\n\n\t  _final (cb) {\n\t    if (this.written !== this.header.size) { // corrupting tar\n\t      return cb(new Error('Size mismatch'))\n\t    }\n\n\t    this._finish();\n\t    cb(null);\n\t  }\n\n\t  _getError () {\n\t    return getStreamError(this) || new Error('tar entry destroyed')\n\t  }\n\n\t  _predestroy () {\n\t    this._pack.destroy(this._getError());\n\t  }\n\n\t  _destroy (cb) {\n\t    this._pack._done(this);\n\n\t    this._continuePack(this._finished ? null : this._getError());\n\n\t    cb();\n\t  }\n\t}\n\n\tclass Pack extends Readable {\n\t  constructor (opts) {\n\t    super(opts);\n\t    this._drain = noop;\n\t    this._finalized = false;\n\t    this._finalizing = false;\n\t    this._pending = [];\n\t    this._stream = null;\n\t  }\n\n\t  entry (header, buffer, callback) {\n\t    if (this._finalized || this.destroying) throw new Error('already finalized or destroyed')\n\n\t    if (typeof buffer === 'function') {\n\t      callback = buffer;\n\t      buffer = null;\n\t    }\n\n\t    if (!callback) callback = noop;\n\n\t    if (!header.size || header.type === 'symlink') header.size = 0;\n\t    if (!header.type) header.type = modeToType(header.mode);\n\t    if (!header.mode) header.mode = header.type === 'directory' ? DMODE : FMODE;\n\t    if (!header.uid) header.uid = 0;\n\t    if (!header.gid) header.gid = 0;\n\t    if (!header.mtime) header.mtime = new Date();\n\n\t    if (typeof buffer === 'string') buffer = b4a.from(buffer);\n\n\t    const sink = new Sink(this, header, callback);\n\n\t    if (b4a.isBuffer(buffer)) {\n\t      header.size = buffer.byteLength;\n\t      sink.write(buffer);\n\t      sink.end();\n\t      return sink\n\t    }\n\n\t    if (sink._isVoid) {\n\t      return sink\n\t    }\n\n\t    return sink\n\t  }\n\n\t  finalize () {\n\t    if (this._stream || this._pending.length > 0) {\n\t      this._finalizing = true;\n\t      return\n\t    }\n\n\t    if (this._finalized) return\n\t    this._finalized = true;\n\n\t    this.push(END_OF_TAR);\n\t    this.push(null);\n\t  }\n\n\t  _done (stream) {\n\t    if (stream !== this._stream) return\n\n\t    this._stream = null;\n\n\t    if (this._finalizing) this.finalize();\n\t    if (this._pending.length) this._pending.shift()._continueOpen();\n\t  }\n\n\t  _encode (header) {\n\t    if (!header.pax) {\n\t      const buf = headers.encode(header);\n\t      if (buf) {\n\t        this.push(buf);\n\t        return\n\t      }\n\t    }\n\t    this._encodePax(header);\n\t  }\n\n\t  _encodePax (header) {\n\t    const paxHeader = headers.encodePax({\n\t      name: header.name,\n\t      linkname: header.linkname,\n\t      pax: header.pax\n\t    });\n\n\t    const newHeader = {\n\t      name: 'PaxHeader',\n\t      mode: header.mode,\n\t      uid: header.uid,\n\t      gid: header.gid,\n\t      size: paxHeader.byteLength,\n\t      mtime: header.mtime,\n\t      type: 'pax-header',\n\t      linkname: header.linkname && 'PaxHeader',\n\t      uname: header.uname,\n\t      gname: header.gname,\n\t      devmajor: header.devmajor,\n\t      devminor: header.devminor\n\t    };\n\n\t    this.push(headers.encode(newHeader));\n\t    this.push(paxHeader);\n\t    overflow(this, paxHeader.byteLength);\n\n\t    newHeader.size = header.size;\n\t    newHeader.type = header.type;\n\t    this.push(headers.encode(newHeader));\n\t  }\n\n\t  _doDrain () {\n\t    const drain = this._drain;\n\t    this._drain = noop;\n\t    drain();\n\t  }\n\n\t  _predestroy () {\n\t    const err = getStreamError(this);\n\n\t    if (this._stream) this._stream.destroy(err);\n\n\t    while (this._pending.length) {\n\t      const stream = this._pending.shift();\n\t      stream.destroy(err);\n\t      stream._continueOpen();\n\t    }\n\n\t    this._doDrain();\n\t  }\n\n\t  _read (cb) {\n\t    this._doDrain();\n\t    cb();\n\t  }\n\t}\n\n\tpack = function pack (opts) {\n\t  return new Pack(opts)\n\t};\n\n\tfunction modeToType (mode) {\n\t  switch (mode & constants.S_IFMT) {\n\t    case constants.S_IFBLK: return 'block-device'\n\t    case constants.S_IFCHR: return 'character-device'\n\t    case constants.S_IFDIR: return 'directory'\n\t    case constants.S_IFIFO: return 'fifo'\n\t    case constants.S_IFLNK: return 'symlink'\n\t  }\n\n\t  return 'file'\n\t}\n\n\tfunction noop () {}\n\n\tfunction overflow (self, size) {\n\t  size &= 511;\n\t  if (size) self.push(END_OF_TAR.subarray(0, 512 - size));\n\t}\n\n\tfunction mapWritable (buf) {\n\t  return b4a.isBuffer(buf) ? buf : b4a.from(buf)\n\t}\n\treturn pack;\n}\n\nvar hasRequiredTarStream;\n\nfunction requireTarStream () {\n\tif (hasRequiredTarStream) return tarStream;\n\thasRequiredTarStream = 1;\n\ttarStream.extract = requireExtract$1();\n\ttarStream.pack = requirePack();\n\treturn tarStream;\n}\n\n/**\n * TAR Format Plugin\n *\n * @module plugins/tar\n * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}\n * @copyright (c) 2012-2014 Chris Talkington, contributors.\n */\n\nvar tar;\nvar hasRequiredTar;\n\nfunction requireTar () {\n\tif (hasRequiredTar) return tar;\n\thasRequiredTar = 1;\n\tvar zlib = zlib$1;\n\n\tvar engine = requireTarStream();\n\tvar util = requireArchiverUtils();\n\n\t/**\n\t * @constructor\n\t * @param {TarOptions} options\n\t */\n\tvar Tar = function(options) {\n\t  if (!(this instanceof Tar)) {\n\t    return new Tar(options);\n\t  }\n\n\t  options = this.options = util.defaults(options, {\n\t    gzip: false\n\t  });\n\n\t  if (typeof options.gzipOptions !== 'object') {\n\t    options.gzipOptions = {};\n\t  }\n\n\t  this.supports = {\n\t    directory: true,\n\t    symlink: true\n\t  };\n\n\t  this.engine = engine.pack(options);\n\t  this.compressor = false;\n\n\t  if (options.gzip) {\n\t    this.compressor = zlib.createGzip(options.gzipOptions);\n\t    this.compressor.on('error', this._onCompressorError.bind(this));\n\t  }\n\t};\n\n\t/**\n\t * [_onCompressorError description]\n\t *\n\t * @private\n\t * @param  {Error} err\n\t * @return void\n\t */\n\tTar.prototype._onCompressorError = function(err) {\n\t  this.engine.emit('error', err);\n\t};\n\n\t/**\n\t * [append description]\n\t *\n\t * @param  {(Buffer|Stream)} source\n\t * @param  {TarEntryData} data\n\t * @param  {Function} callback\n\t * @return void\n\t */\n\tTar.prototype.append = function(source, data, callback) {\n\t  var self = this;\n\n\t  data.mtime = data.date;\n\n\t  function append(err, sourceBuffer) {\n\t    if (err) {\n\t      callback(err);\n\t      return;\n\t    }\n\n\t    self.engine.entry(data, sourceBuffer, function(err) {\n\t      callback(err, data);\n\t    });\n\t  }\n\n\t  if (data.sourceType === 'buffer') {\n\t    append(null, source);\n\t  } else if (data.sourceType === 'stream' && data.stats) {\n\t    data.size = data.stats.size;\n\n\t    var entry = self.engine.entry(data, function(err) {\n\t      callback(err, data);\n\t    });\n\n\t    source.pipe(entry);\n\t  } else if (data.sourceType === 'stream') {\n\t    util.collectStream(source, append);\n\t  }\n\t};\n\n\t/**\n\t * [finalize description]\n\t *\n\t * @return void\n\t */\n\tTar.prototype.finalize = function() {\n\t  this.engine.finalize();\n\t};\n\n\t/**\n\t * [on description]\n\t *\n\t * @return this.engine\n\t */\n\tTar.prototype.on = function() {\n\t  return this.engine.on.apply(this.engine, arguments);\n\t};\n\n\t/**\n\t * [pipe description]\n\t *\n\t * @param  {String} destination\n\t * @param  {Object} options\n\t * @return this.engine\n\t */\n\tTar.prototype.pipe = function(destination, options) {\n\t  if (this.compressor) {\n\t    return this.engine.pipe.apply(this.engine, [this.compressor]).pipe(destination, options);\n\t  } else {\n\t    return this.engine.pipe.apply(this.engine, arguments);\n\t  }\n\t};\n\n\t/**\n\t * [unpipe description]\n\t *\n\t * @return this.engine\n\t */\n\tTar.prototype.unpipe = function() {\n\t  if (this.compressor) {\n\t    return this.compressor.unpipe.apply(this.compressor, arguments);\n\t  } else {\n\t    return this.engine.unpipe.apply(this.engine, arguments);\n\t  }\n\t};\n\n\ttar = Tar;\n\n\t/**\n\t * @typedef {Object} TarOptions\n\t * @global\n\t * @property {Boolean} [gzip=false] Compress the tar archive using gzip.\n\t * @property {Object} [gzipOptions] Passed to [zlib]{@link https://nodejs.org/api/zlib.html#zlib_class_options}\n\t * to control compression.\n\t * @property {*} [*] See [tar-stream]{@link https://github.com/mafintosh/tar-stream} documentation for additional properties.\n\t */\n\n\t/**\n\t * @typedef {Object} TarEntryData\n\t * @global\n\t * @property {String} name Sets the entry name including internal path.\n\t * @property {(String|Date)} [date=NOW()] Sets the entry date.\n\t * @property {Number} [mode=D:0755/F:0644] Sets the entry permissions.\n\t * @property {String} [prefix] Sets a path prefix for the entry name. Useful\n\t * when working with methods like `directory` or `glob`.\n\t * @property {fs.Stats} [stats] Sets the fs stat data for this entry allowing\n\t * for reduction of fs stat calls when stat data is already known.\n\t */\n\n\t/**\n\t * TarStream Module\n\t * @external TarStream\n\t * @see {@link https://github.com/mafintosh/tar-stream}\n\t */\n\treturn tar;\n}\n\nvar dist;\nvar hasRequiredDist;\n\nfunction requireDist () {\n\tif (hasRequiredDist) return dist;\n\thasRequiredDist = 1;\n\n\tfunction getDefaultExportFromCjs (x) {\n\t\treturn x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;\n\t}\n\n\tconst CRC_TABLE = new Int32Array([\n\t  0,\n\t  1996959894,\n\t  3993919788,\n\t  2567524794,\n\t  124634137,\n\t  1886057615,\n\t  3915621685,\n\t  2657392035,\n\t  249268274,\n\t  2044508324,\n\t  3772115230,\n\t  2547177864,\n\t  162941995,\n\t  2125561021,\n\t  3887607047,\n\t  2428444049,\n\t  498536548,\n\t  1789927666,\n\t  4089016648,\n\t  2227061214,\n\t  450548861,\n\t  1843258603,\n\t  4107580753,\n\t  2211677639,\n\t  325883990,\n\t  1684777152,\n\t  4251122042,\n\t  2321926636,\n\t  335633487,\n\t  1661365465,\n\t  4195302755,\n\t  2366115317,\n\t  997073096,\n\t  1281953886,\n\t  3579855332,\n\t  2724688242,\n\t  1006888145,\n\t  1258607687,\n\t  3524101629,\n\t  2768942443,\n\t  901097722,\n\t  1119000684,\n\t  3686517206,\n\t  2898065728,\n\t  853044451,\n\t  1172266101,\n\t  3705015759,\n\t  2882616665,\n\t  651767980,\n\t  1373503546,\n\t  3369554304,\n\t  3218104598,\n\t  565507253,\n\t  1454621731,\n\t  3485111705,\n\t  3099436303,\n\t  671266974,\n\t  1594198024,\n\t  3322730930,\n\t  2970347812,\n\t  795835527,\n\t  1483230225,\n\t  3244367275,\n\t  3060149565,\n\t  1994146192,\n\t  31158534,\n\t  2563907772,\n\t  4023717930,\n\t  1907459465,\n\t  112637215,\n\t  2680153253,\n\t  3904427059,\n\t  2013776290,\n\t  251722036,\n\t  2517215374,\n\t  3775830040,\n\t  2137656763,\n\t  141376813,\n\t  2439277719,\n\t  3865271297,\n\t  1802195444,\n\t  476864866,\n\t  2238001368,\n\t  4066508878,\n\t  1812370925,\n\t  453092731,\n\t  2181625025,\n\t  4111451223,\n\t  1706088902,\n\t  314042704,\n\t  2344532202,\n\t  4240017532,\n\t  1658658271,\n\t  366619977,\n\t  2362670323,\n\t  4224994405,\n\t  1303535960,\n\t  984961486,\n\t  2747007092,\n\t  3569037538,\n\t  1256170817,\n\t  1037604311,\n\t  2765210733,\n\t  3554079995,\n\t  1131014506,\n\t  879679996,\n\t  2909243462,\n\t  3663771856,\n\t  1141124467,\n\t  855842277,\n\t  2852801631,\n\t  3708648649,\n\t  1342533948,\n\t  654459306,\n\t  3188396048,\n\t  3373015174,\n\t  1466479909,\n\t  544179635,\n\t  3110523913,\n\t  3462522015,\n\t  1591671054,\n\t  702138776,\n\t  2966460450,\n\t  3352799412,\n\t  1504918807,\n\t  783551873,\n\t  3082640443,\n\t  3233442989,\n\t  3988292384,\n\t  2596254646,\n\t  62317068,\n\t  1957810842,\n\t  3939845945,\n\t  2647816111,\n\t  81470997,\n\t  1943803523,\n\t  3814918930,\n\t  2489596804,\n\t  225274430,\n\t  2053790376,\n\t  3826175755,\n\t  2466906013,\n\t  167816743,\n\t  2097651377,\n\t  4027552580,\n\t  2265490386,\n\t  503444072,\n\t  1762050814,\n\t  4150417245,\n\t  2154129355,\n\t  426522225,\n\t  1852507879,\n\t  4275313526,\n\t  2312317920,\n\t  282753626,\n\t  1742555852,\n\t  4189708143,\n\t  2394877945,\n\t  397917763,\n\t  1622183637,\n\t  3604390888,\n\t  2714866558,\n\t  953729732,\n\t  1340076626,\n\t  3518719985,\n\t  2797360999,\n\t  1068828381,\n\t  1219638859,\n\t  3624741850,\n\t  2936675148,\n\t  906185462,\n\t  1090812512,\n\t  3747672003,\n\t  2825379669,\n\t  829329135,\n\t  1181335161,\n\t  3412177804,\n\t  3160834842,\n\t  628085408,\n\t  1382605366,\n\t  3423369109,\n\t  3138078467,\n\t  570562233,\n\t  1426400815,\n\t  3317316542,\n\t  2998733608,\n\t  733239954,\n\t  1555261956,\n\t  3268935591,\n\t  3050360625,\n\t  752459403,\n\t  1541320221,\n\t  2607071920,\n\t  3965973030,\n\t  1969922972,\n\t  40735498,\n\t  2617837225,\n\t  3943577151,\n\t  1913087877,\n\t  83908371,\n\t  2512341634,\n\t  3803740692,\n\t  2075208622,\n\t  213261112,\n\t  2463272603,\n\t  3855990285,\n\t  2094854071,\n\t  198958881,\n\t  2262029012,\n\t  4057260610,\n\t  1759359992,\n\t  534414190,\n\t  2176718541,\n\t  4139329115,\n\t  1873836001,\n\t  414664567,\n\t  2282248934,\n\t  4279200368,\n\t  1711684554,\n\t  285281116,\n\t  2405801727,\n\t  4167216745,\n\t  1634467795,\n\t  376229701,\n\t  2685067896,\n\t  3608007406,\n\t  1308918612,\n\t  956543938,\n\t  2808555105,\n\t  3495958263,\n\t  1231636301,\n\t  1047427035,\n\t  2932959818,\n\t  3654703836,\n\t  1088359270,\n\t  936918e3,\n\t  2847714899,\n\t  3736837829,\n\t  1202900863,\n\t  817233897,\n\t  3183342108,\n\t  3401237130,\n\t  1404277552,\n\t  615818150,\n\t  3134207493,\n\t  3453421203,\n\t  1423857449,\n\t  601450431,\n\t  3009837614,\n\t  3294710456,\n\t  1567103746,\n\t  711928724,\n\t  3020668471,\n\t  3272380065,\n\t  1510334235,\n\t  755167117\n\t]);\n\tfunction ensureBuffer(input) {\n\t  if (Buffer.isBuffer(input)) {\n\t    return input;\n\t  }\n\t  if (typeof input === \"number\") {\n\t    return Buffer.alloc(input);\n\t  } else if (typeof input === \"string\") {\n\t    return Buffer.from(input);\n\t  } else {\n\t    throw new Error(\"input must be buffer, number, or string, received \" + typeof input);\n\t  }\n\t}\n\tfunction bufferizeInt(num) {\n\t  const tmp = ensureBuffer(4);\n\t  tmp.writeInt32BE(num, 0);\n\t  return tmp;\n\t}\n\tfunction _crc32(buf, previous) {\n\t  buf = ensureBuffer(buf);\n\t  if (Buffer.isBuffer(previous)) {\n\t    previous = previous.readUInt32BE(0);\n\t  }\n\t  let crc = ~~previous ^ -1;\n\t  for (var n = 0; n < buf.length; n++) {\n\t    crc = CRC_TABLE[(crc ^ buf[n]) & 255] ^ crc >>> 8;\n\t  }\n\t  return crc ^ -1;\n\t}\n\tfunction crc32() {\n\t  return bufferizeInt(_crc32.apply(null, arguments));\n\t}\n\tcrc32.signed = function() {\n\t  return _crc32.apply(null, arguments);\n\t};\n\tcrc32.unsigned = function() {\n\t  return _crc32.apply(null, arguments) >>> 0;\n\t};\n\tvar bufferCrc32 = crc32;\n\n\tconst index = /*@__PURE__*/getDefaultExportFromCjs(bufferCrc32);\n\n\tdist = index;\n\treturn dist;\n}\n\n/**\n * JSON Format Plugin\n *\n * @module plugins/json\n * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}\n * @copyright (c) 2012-2014 Chris Talkington, contributors.\n */\n\nvar json;\nvar hasRequiredJson;\n\nfunction requireJson () {\n\tif (hasRequiredJson) return json;\n\thasRequiredJson = 1;\n\tvar inherits = require$$0__default$1.inherits;\n\tvar Transform = requireOurs().Transform;\n\n\tvar crc32 = requireDist();\n\tvar util = requireArchiverUtils();\n\n\t/**\n\t * @constructor\n\t * @param {(JsonOptions|TransformOptions)} options\n\t */\n\tvar Json = function(options) {\n\t  if (!(this instanceof Json)) {\n\t    return new Json(options);\n\t  }\n\n\t  options = this.options = util.defaults(options, {});\n\n\t  Transform.call(this, options);\n\n\t  this.supports = {\n\t    directory: true,\n\t    symlink: true\n\t  };\n\n\t  this.files = [];\n\t};\n\n\tinherits(Json, Transform);\n\n\t/**\n\t * [_transform description]\n\t *\n\t * @private\n\t * @param  {Buffer}   chunk\n\t * @param  {String}   encoding\n\t * @param  {Function} callback\n\t * @return void\n\t */\n\tJson.prototype._transform = function(chunk, encoding, callback) {\n\t  callback(null, chunk);\n\t};\n\n\t/**\n\t * [_writeStringified description]\n\t *\n\t * @private\n\t * @return void\n\t */\n\tJson.prototype._writeStringified = function() {\n\t  var fileString = JSON.stringify(this.files);\n\t  this.write(fileString);\n\t};\n\n\t/**\n\t * [append description]\n\t *\n\t * @param  {(Buffer|Stream)}   source\n\t * @param  {EntryData}   data\n\t * @param  {Function} callback\n\t * @return void\n\t */\n\tJson.prototype.append = function(source, data, callback) {\n\t  var self = this;\n\n\t  data.crc32 = 0;\n\n\t  function onend(err, sourceBuffer) {\n\t    if (err) {\n\t      callback(err);\n\t      return;\n\t    }\n\n\t    data.size = sourceBuffer.length || 0;\n\t    data.crc32 = crc32.unsigned(sourceBuffer);\n\n\t    self.files.push(data);\n\n\t    callback(null, data);\n\t  }\n\n\t  if (data.sourceType === 'buffer') {\n\t    onend(null, source);\n\t  } else if (data.sourceType === 'stream') {\n\t    util.collectStream(source, onend);\n\t  }\n\t};\n\n\t/**\n\t * [finalize description]\n\t *\n\t * @return void\n\t */\n\tJson.prototype.finalize = function() {\n\t  this._writeStringified();\n\t  this.end();\n\t};\n\n\tjson = Json;\n\n\t/**\n\t * @typedef {Object} JsonOptions\n\t * @global\n\t */\n\treturn json;\n}\n\n/**\n * Archiver Vending\n *\n * @ignore\n * @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}\n * @copyright (c) 2012-2014 Chris Talkington, contributors.\n */\n\nvar archiver;\nvar hasRequiredArchiver;\n\nfunction requireArchiver () {\n\tif (hasRequiredArchiver) return archiver;\n\thasRequiredArchiver = 1;\n\tvar Archiver = requireCore();\n\n\tvar formats = {};\n\n\t/**\n\t * Dispenses a new Archiver instance.\n\t *\n\t * @constructor\n\t * @param  {String} format The archive format to use.\n\t * @param  {Object} options See [Archiver]{@link Archiver}\n\t * @return {Archiver}\n\t */\n\tvar vending = function(format, options) {\n\t  return vending.create(format, options);\n\t};\n\n\t/**\n\t * Creates a new Archiver instance.\n\t *\n\t * @param  {String} format The archive format to use.\n\t * @param  {Object} options See [Archiver]{@link Archiver}\n\t * @return {Archiver}\n\t */\n\tvending.create = function(format, options) {\n\t  if (formats[format]) {\n\t    var instance = new Archiver(format, options);\n\t    instance.setFormat(format);\n\t    instance.setModule(new formats[format](options));\n\n\t    return instance;\n\t  } else {\n\t    throw new Error('create(' + format + '): format not registered');\n\t  }\n\t};\n\n\t/**\n\t * Registers a format for use with archiver.\n\t *\n\t * @param  {String} format The name of the format.\n\t * @param  {Function} module The function for archiver to interact with.\n\t * @return void\n\t */\n\tvending.registerFormat = function(format, module) {\n\t  if (formats[format]) {\n\t    throw new Error('register(' + format + '): format already registered');\n\t  }\n\n\t  if (typeof module !== 'function') {\n\t    throw new Error('register(' + format + '): format module invalid');\n\t  }\n\n\t  if (typeof module.prototype.append !== 'function' || typeof module.prototype.finalize !== 'function') {\n\t    throw new Error('register(' + format + '): format module missing methods');\n\t  }\n\n\t  formats[format] = module;\n\t};\n\n\t/**\n\t * Check if the format is already registered.\n\t * \n\t * @param {String} format the name of the format.\n\t * @return boolean\n\t */\n\tvending.isRegisteredFormat = function (format) {\n\t  if (formats[format]) {\n\t    return true;\n\t  }\n\t  \n\t  return false;\n\t};\n\n\tvending.registerFormat('zip', requireZip$1());\n\tvending.registerFormat('tar', requireTar());\n\tvending.registerFormat('json', requireJson());\n\n\tarchiver = vending;\n\treturn archiver;\n}\n\nvar hasRequiredZip;\n\nfunction requireZip () {\n\tif (hasRequiredZip) return zip$1;\n\thasRequiredZip = 1;\n\t(function (exports) {\n\t\tvar __createBinding = (zip$1 && zip$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t\t    }\n\t\t    Object.defineProperty(o, k2, desc);\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __setModuleDefault = (zip$1 && zip$1.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t\t}) : function(o, v) {\n\t\t    o[\"default\"] = v;\n\t\t});\n\t\tvar __importStar = (zip$1 && zip$1.__importStar) || function (mod) {\n\t\t    if (mod && mod.__esModule) return mod;\n\t\t    var result = {};\n\t\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t\t    __setModuleDefault(result, mod);\n\t\t    return result;\n\t\t};\n\t\tvar __awaiter = (zip$1 && zip$1.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t\t    });\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.createZipUploadStream = exports.ZipUploadStream = exports.DEFAULT_COMPRESSION_LEVEL = void 0;\n\t\tconst stream = __importStar(require$$0$b);\n\t\tconst promises_1 = require$$1$a;\n\t\tconst archiver = __importStar(requireArchiver());\n\t\tconst core = __importStar(requireCore$1());\n\t\tconst config_1 = requireConfig();\n\t\texports.DEFAULT_COMPRESSION_LEVEL = 6;\n\t\t// Custom stream transformer so we can set the highWaterMark property\n\t\t// See https://github.com/nodejs/node/issues/8855\n\t\tclass ZipUploadStream extends stream.Transform {\n\t\t    constructor(bufferSize) {\n\t\t        super({\n\t\t            highWaterMark: bufferSize\n\t\t        });\n\t\t    }\n\t\t    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n\t\t    _transform(chunk, enc, cb) {\n\t\t        cb(null, chunk);\n\t\t    }\n\t\t}\n\t\texports.ZipUploadStream = ZipUploadStream;\n\t\tfunction createZipUploadStream(uploadSpecification, compressionLevel = exports.DEFAULT_COMPRESSION_LEVEL) {\n\t\t    return __awaiter(this, void 0, void 0, function* () {\n\t\t        core.debug(`Creating Artifact archive with compressionLevel: ${compressionLevel}`);\n\t\t        const zip = archiver.create('zip', {\n\t\t            highWaterMark: (0, config_1.getUploadChunkSize)(),\n\t\t            zlib: { level: compressionLevel }\n\t\t        });\n\t\t        // register callbacks for various events during the zip lifecycle\n\t\t        zip.on('error', zipErrorCallback);\n\t\t        zip.on('warning', zipWarningCallback);\n\t\t        zip.on('finish', zipFinishCallback);\n\t\t        zip.on('end', zipEndCallback);\n\t\t        for (const file of uploadSpecification) {\n\t\t            if (file.sourcePath !== null) {\n\t\t                // Check if symlink and resolve the source path\n\t\t                let sourcePath = file.sourcePath;\n\t\t                if (file.stats.isSymbolicLink()) {\n\t\t                    sourcePath = yield (0, promises_1.realpath)(file.sourcePath);\n\t\t                }\n\t\t                // Add the file to the zip\n\t\t                zip.file(sourcePath, {\n\t\t                    name: file.destinationPath\n\t\t                });\n\t\t            }\n\t\t            else {\n\t\t                // Add a directory to the zip\n\t\t                zip.append('', { name: file.destinationPath });\n\t\t            }\n\t\t        }\n\t\t        const bufferSize = (0, config_1.getUploadChunkSize)();\n\t\t        const zipUploadStream = new ZipUploadStream(bufferSize);\n\t\t        core.debug(`Zip write high watermark value ${zipUploadStream.writableHighWaterMark}`);\n\t\t        core.debug(`Zip read high watermark value ${zipUploadStream.readableHighWaterMark}`);\n\t\t        zip.pipe(zipUploadStream);\n\t\t        zip.finalize();\n\t\t        return zipUploadStream;\n\t\t    });\n\t\t}\n\t\texports.createZipUploadStream = createZipUploadStream;\n\t\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\t\tconst zipErrorCallback = (error) => {\n\t\t    core.error('An error has occurred while creating the zip file for upload');\n\t\t    core.info(error);\n\t\t    throw new Error('An error has occurred during zip creation for the artifact');\n\t\t};\n\t\t// eslint-disable-next-line @typescript-eslint/no-explicit-any\n\t\tconst zipWarningCallback = (error) => {\n\t\t    if (error.code === 'ENOENT') {\n\t\t        core.warning('ENOENT warning during artifact zip creation. No such file or directory');\n\t\t        core.info(error);\n\t\t    }\n\t\t    else {\n\t\t        core.warning(`A non-blocking warning has occurred during artifact zip creation: ${error.code}`);\n\t\t        core.info(error);\n\t\t    }\n\t\t};\n\t\tconst zipFinishCallback = () => {\n\t\t    core.debug('Zip stream for upload has finished.');\n\t\t};\n\t\tconst zipEndCallback = () => {\n\t\t    core.debug('Zip stream for upload has ended.');\n\t\t};\n\t\t\n\t} (zip$1));\n\treturn zip$1;\n}\n\nvar hasRequiredUploadArtifact;\n\nfunction requireUploadArtifact () {\n\tif (hasRequiredUploadArtifact) return uploadArtifact;\n\thasRequiredUploadArtifact = 1;\n\tvar __createBinding = (uploadArtifact && uploadArtifact.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (uploadArtifact && uploadArtifact.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (uploadArtifact && uploadArtifact.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (uploadArtifact && uploadArtifact.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(uploadArtifact, \"__esModule\", { value: true });\n\tuploadArtifact.uploadArtifact = void 0;\n\tconst core = __importStar(requireCore$1());\n\tconst retention_1 = requireRetention();\n\tconst path_and_artifact_name_validation_1 = requirePathAndArtifactNameValidation();\n\tconst artifact_twirp_client_1 = requireArtifactTwirpClient();\n\tconst upload_zip_specification_1 = requireUploadZipSpecification();\n\tconst util_1 = requireUtil$4();\n\tconst blob_upload_1 = requireBlobUpload();\n\tconst zip_1 = requireZip();\n\tconst generated_1 = requireGenerated();\n\tconst errors_1 = requireErrors$1();\n\tfunction uploadArtifact$1(name, files, rootDirectory, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        (0, path_and_artifact_name_validation_1.validateArtifactName)(name);\n\t        (0, upload_zip_specification_1.validateRootDirectory)(rootDirectory);\n\t        const zipSpecification = (0, upload_zip_specification_1.getUploadZipSpecification)(files, rootDirectory);\n\t        if (zipSpecification.length === 0) {\n\t            throw new errors_1.FilesNotFoundError(zipSpecification.flatMap(s => (s.sourcePath ? [s.sourcePath] : [])));\n\t        }\n\t        // get the IDs needed for the artifact creation\n\t        const backendIds = (0, util_1.getBackendIdsFromToken)();\n\t        // create the artifact client\n\t        const artifactClient = (0, artifact_twirp_client_1.internalArtifactTwirpClient)();\n\t        // create the artifact\n\t        const createArtifactReq = {\n\t            workflowRunBackendId: backendIds.workflowRunBackendId,\n\t            workflowJobRunBackendId: backendIds.workflowJobRunBackendId,\n\t            name,\n\t            version: 4\n\t        };\n\t        // if there is a retention period, add it to the request\n\t        const expiresAt = (0, retention_1.getExpiration)(options === null || options === void 0 ? void 0 : options.retentionDays);\n\t        if (expiresAt) {\n\t            createArtifactReq.expiresAt = expiresAt;\n\t        }\n\t        const createArtifactResp = yield artifactClient.CreateArtifact(createArtifactReq);\n\t        if (!createArtifactResp.ok) {\n\t            throw new errors_1.InvalidResponseError('CreateArtifact: response from backend was not ok');\n\t        }\n\t        const zipUploadStream = yield (0, zip_1.createZipUploadStream)(zipSpecification, options === null || options === void 0 ? void 0 : options.compressionLevel);\n\t        // Upload zip to blob storage\n\t        const uploadResult = yield (0, blob_upload_1.uploadZipToBlobStorage)(createArtifactResp.signedUploadUrl, zipUploadStream);\n\t        // finalize the artifact\n\t        const finalizeArtifactReq = {\n\t            workflowRunBackendId: backendIds.workflowRunBackendId,\n\t            workflowJobRunBackendId: backendIds.workflowJobRunBackendId,\n\t            name,\n\t            size: uploadResult.uploadSize ? uploadResult.uploadSize.toString() : '0'\n\t        };\n\t        if (uploadResult.sha256Hash) {\n\t            finalizeArtifactReq.hash = generated_1.StringValue.create({\n\t                value: `sha256:${uploadResult.sha256Hash}`\n\t            });\n\t        }\n\t        core.info(`Finalizing artifact upload`);\n\t        const finalizeArtifactResp = yield artifactClient.FinalizeArtifact(finalizeArtifactReq);\n\t        if (!finalizeArtifactResp.ok) {\n\t            throw new errors_1.InvalidResponseError('FinalizeArtifact: response from backend was not ok');\n\t        }\n\t        const artifactId = BigInt(finalizeArtifactResp.artifactId);\n\t        core.info(`Artifact ${name}.zip successfully finalized. Artifact ID ${artifactId}`);\n\t        return {\n\t            size: uploadResult.uploadSize,\n\t            digest: uploadResult.sha256Hash,\n\t            id: Number(artifactId)\n\t        };\n\t    });\n\t}\n\tuploadArtifact.uploadArtifact = uploadArtifact$1;\n\t\n\treturn uploadArtifact;\n}\n\nvar downloadArtifact = {};\n\nvar github = {};\n\nvar context = {};\n\nvar hasRequiredContext;\n\nfunction requireContext () {\n\tif (hasRequiredContext) return context;\n\thasRequiredContext = 1;\n\tObject.defineProperty(context, \"__esModule\", { value: true });\n\tcontext.Context = void 0;\n\tconst fs_1 = fs__default;\n\tconst os_1 = require$$0__default;\n\tclass Context {\n\t    /**\n\t     * Hydrate the context from the environment\n\t     */\n\t    constructor() {\n\t        var _a, _b, _c;\n\t        this.payload = {};\n\t        if (process.env.GITHUB_EVENT_PATH) {\n\t            if (fs_1.existsSync(process.env.GITHUB_EVENT_PATH)) {\n\t                this.payload = JSON.parse(fs_1.readFileSync(process.env.GITHUB_EVENT_PATH, { encoding: 'utf8' }));\n\t            }\n\t            else {\n\t                const path = process.env.GITHUB_EVENT_PATH;\n\t                process.stdout.write(`GITHUB_EVENT_PATH ${path} does not exist${os_1.EOL}`);\n\t            }\n\t        }\n\t        this.eventName = process.env.GITHUB_EVENT_NAME;\n\t        this.sha = process.env.GITHUB_SHA;\n\t        this.ref = process.env.GITHUB_REF;\n\t        this.workflow = process.env.GITHUB_WORKFLOW;\n\t        this.action = process.env.GITHUB_ACTION;\n\t        this.actor = process.env.GITHUB_ACTOR;\n\t        this.job = process.env.GITHUB_JOB;\n\t        this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER, 10);\n\t        this.runId = parseInt(process.env.GITHUB_RUN_ID, 10);\n\t        this.apiUrl = (_a = process.env.GITHUB_API_URL) !== null && _a !== void 0 ? _a : `https://api.github.com`;\n\t        this.serverUrl = (_b = process.env.GITHUB_SERVER_URL) !== null && _b !== void 0 ? _b : `https://github.com`;\n\t        this.graphqlUrl = (_c = process.env.GITHUB_GRAPHQL_URL) !== null && _c !== void 0 ? _c : `https://api.github.com/graphql`;\n\t    }\n\t    get issue() {\n\t        const payload = this.payload;\n\t        return Object.assign(Object.assign({}, this.repo), { number: (payload.issue || payload.pull_request || payload).number });\n\t    }\n\t    get repo() {\n\t        if (process.env.GITHUB_REPOSITORY) {\n\t            const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');\n\t            return { owner, repo };\n\t        }\n\t        if (this.payload.repository) {\n\t            return {\n\t                owner: this.payload.repository.owner.login,\n\t                repo: this.payload.repository.name\n\t            };\n\t        }\n\t        throw new Error(\"context.repo requires a GITHUB_REPOSITORY environment variable like 'owner/repo'\");\n\t    }\n\t}\n\tcontext.Context = Context;\n\t\n\treturn context;\n}\n\nvar utils$2 = {};\n\nvar utils$1 = {};\n\nvar hasRequiredUtils$2;\n\nfunction requireUtils$2 () {\n\tif (hasRequiredUtils$2) return utils$1;\n\thasRequiredUtils$2 = 1;\n\tvar __createBinding = (utils$1 && utils$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (utils$1 && utils$1.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (utils$1 && utils$1.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(utils$1, \"__esModule\", { value: true });\n\tutils$1.getApiBaseUrl = utils$1.getProxyAgent = utils$1.getAuthString = void 0;\n\tconst httpClient = __importStar(requireLib$2());\n\tfunction getAuthString(token, options) {\n\t    if (!token && !options.auth) {\n\t        throw new Error('Parameter token or opts.auth is required');\n\t    }\n\t    else if (token && options.auth) {\n\t        throw new Error('Parameters token and opts.auth may not both be specified');\n\t    }\n\t    return typeof options.auth === 'string' ? options.auth : `token ${token}`;\n\t}\n\tutils$1.getAuthString = getAuthString;\n\tfunction getProxyAgent(destinationUrl) {\n\t    const hc = new httpClient.HttpClient();\n\t    return hc.getAgent(destinationUrl);\n\t}\n\tutils$1.getProxyAgent = getProxyAgent;\n\tfunction getApiBaseUrl() {\n\t    return process.env['GITHUB_API_URL'] || 'https://api.github.com';\n\t}\n\tutils$1.getApiBaseUrl = getApiBaseUrl;\n\t\n\treturn utils$1;\n}\n\nfunction getUserAgent() {\n    if (typeof navigator === \"object\" && \"userAgent\" in navigator) {\n        return navigator.userAgent;\n    }\n    if (typeof process === \"object\" && process.version !== undefined) {\n        return `Node.js/${process.version.substr(1)} (${process.platform}; ${process.arch})`;\n    }\n    return \"<environment undetectable>\";\n}\n\nvar beforeAfterHook = {exports: {}};\n\nvar register_1;\nvar hasRequiredRegister;\n\nfunction requireRegister () {\n\tif (hasRequiredRegister) return register_1;\n\thasRequiredRegister = 1;\n\tregister_1 = register;\n\n\tfunction register(state, name, method, options) {\n\t  if (typeof method !== \"function\") {\n\t    throw new Error(\"method for before hook must be a function\");\n\t  }\n\n\t  if (!options) {\n\t    options = {};\n\t  }\n\n\t  if (Array.isArray(name)) {\n\t    return name.reverse().reduce(function (callback, name) {\n\t      return register.bind(null, state, name, callback, options);\n\t    }, method)();\n\t  }\n\n\t  return Promise.resolve().then(function () {\n\t    if (!state.registry[name]) {\n\t      return method(options);\n\t    }\n\n\t    return state.registry[name].reduce(function (method, registered) {\n\t      return registered.hook.bind(null, method, options);\n\t    }, method)();\n\t  });\n\t}\n\treturn register_1;\n}\n\nvar add;\nvar hasRequiredAdd;\n\nfunction requireAdd () {\n\tif (hasRequiredAdd) return add;\n\thasRequiredAdd = 1;\n\tadd = addHook;\n\n\tfunction addHook(state, kind, name, hook) {\n\t  var orig = hook;\n\t  if (!state.registry[name]) {\n\t    state.registry[name] = [];\n\t  }\n\n\t  if (kind === \"before\") {\n\t    hook = function (method, options) {\n\t      return Promise.resolve()\n\t        .then(orig.bind(null, options))\n\t        .then(method.bind(null, options));\n\t    };\n\t  }\n\n\t  if (kind === \"after\") {\n\t    hook = function (method, options) {\n\t      var result;\n\t      return Promise.resolve()\n\t        .then(method.bind(null, options))\n\t        .then(function (result_) {\n\t          result = result_;\n\t          return orig(result, options);\n\t        })\n\t        .then(function () {\n\t          return result;\n\t        });\n\t    };\n\t  }\n\n\t  if (kind === \"error\") {\n\t    hook = function (method, options) {\n\t      return Promise.resolve()\n\t        .then(method.bind(null, options))\n\t        .catch(function (error) {\n\t          return orig(error, options);\n\t        });\n\t    };\n\t  }\n\n\t  state.registry[name].push({\n\t    hook: hook,\n\t    orig: orig,\n\t  });\n\t}\n\treturn add;\n}\n\nvar remove;\nvar hasRequiredRemove;\n\nfunction requireRemove () {\n\tif (hasRequiredRemove) return remove;\n\thasRequiredRemove = 1;\n\tremove = removeHook;\n\n\tfunction removeHook(state, name, method) {\n\t  if (!state.registry[name]) {\n\t    return;\n\t  }\n\n\t  var index = state.registry[name]\n\t    .map(function (registered) {\n\t      return registered.orig;\n\t    })\n\t    .indexOf(method);\n\n\t  if (index === -1) {\n\t    return;\n\t  }\n\n\t  state.registry[name].splice(index, 1);\n\t}\n\treturn remove;\n}\n\nvar hasRequiredBeforeAfterHook;\n\nfunction requireBeforeAfterHook () {\n\tif (hasRequiredBeforeAfterHook) return beforeAfterHook.exports;\n\thasRequiredBeforeAfterHook = 1;\n\tvar register = requireRegister();\n\tvar addHook = requireAdd();\n\tvar removeHook = requireRemove();\n\n\t// bind with array of arguments: https://stackoverflow.com/a/21792913\n\tvar bind = Function.bind;\n\tvar bindable = bind.bind(bind);\n\n\tfunction bindApi(hook, state, name) {\n\t  var removeHookRef = bindable(removeHook, null).apply(\n\t    null,\n\t    name ? [state, name] : [state]\n\t  );\n\t  hook.api = { remove: removeHookRef };\n\t  hook.remove = removeHookRef;\n\t  [\"before\", \"error\", \"after\", \"wrap\"].forEach(function (kind) {\n\t    var args = name ? [state, kind, name] : [state, kind];\n\t    hook[kind] = hook.api[kind] = bindable(addHook, null).apply(null, args);\n\t  });\n\t}\n\n\tfunction HookSingular() {\n\t  var singularHookName = \"h\";\n\t  var singularHookState = {\n\t    registry: {},\n\t  };\n\t  var singularHook = register.bind(null, singularHookState, singularHookName);\n\t  bindApi(singularHook, singularHookState, singularHookName);\n\t  return singularHook;\n\t}\n\n\tfunction HookCollection() {\n\t  var state = {\n\t    registry: {},\n\t  };\n\n\t  var hook = register.bind(null, state);\n\t  bindApi(hook, state);\n\n\t  return hook;\n\t}\n\n\tvar collectionHookDeprecationMessageDisplayed = false;\n\tfunction Hook() {\n\t  if (!collectionHookDeprecationMessageDisplayed) {\n\t    console.warn(\n\t      '[before-after-hook]: \"Hook()\" repurposing warning, use \"Hook.Collection()\". Read more: https://git.io/upgrade-before-after-hook-to-1.4'\n\t    );\n\t    collectionHookDeprecationMessageDisplayed = true;\n\t  }\n\t  return HookCollection();\n\t}\n\n\tHook.Singular = HookSingular.bind();\n\tHook.Collection = HookCollection.bind();\n\n\tbeforeAfterHook.exports = Hook;\n\t// expose constructors as a named property for TypeScript\n\tbeforeAfterHook.exports.Hook = Hook;\n\tbeforeAfterHook.exports.Singular = Hook.Singular;\n\tbeforeAfterHook.exports.Collection = Hook.Collection;\n\treturn beforeAfterHook.exports;\n}\n\nvar beforeAfterHookExports = requireBeforeAfterHook();\n\n/*!\n * is-plain-object <https://github.com/jonschlinkert/is-plain-object>\n *\n * Copyright (c) 2014-2017, Jon Schlinkert.\n * Released under the MIT License.\n */\n\nfunction isObject(o) {\n  return Object.prototype.toString.call(o) === '[object Object]';\n}\n\nfunction isPlainObject(o) {\n  var ctor,prot;\n\n  if (isObject(o) === false) return false;\n\n  // If has modified constructor\n  ctor = o.constructor;\n  if (ctor === undefined) return true;\n\n  // If has modified prototype\n  prot = ctor.prototype;\n  if (isObject(prot) === false) return false;\n\n  // If constructor does not have an Object-specific method\n  if (prot.hasOwnProperty('isPrototypeOf') === false) {\n    return false;\n  }\n\n  // Most likely a plain Object\n  return true;\n}\n\nfunction lowercaseKeys(object) {\n    if (!object) {\n        return {};\n    }\n    return Object.keys(object).reduce((newObj, key) => {\n        newObj[key.toLowerCase()] = object[key];\n        return newObj;\n    }, {});\n}\n\nfunction mergeDeep(defaults, options) {\n    const result = Object.assign({}, defaults);\n    Object.keys(options).forEach((key) => {\n        if (isPlainObject(options[key])) {\n            if (!(key in defaults))\n                Object.assign(result, { [key]: options[key] });\n            else\n                result[key] = mergeDeep(defaults[key], options[key]);\n        }\n        else {\n            Object.assign(result, { [key]: options[key] });\n        }\n    });\n    return result;\n}\n\nfunction removeUndefinedProperties(obj) {\n    for (const key in obj) {\n        if (obj[key] === undefined) {\n            delete obj[key];\n        }\n    }\n    return obj;\n}\n\nfunction merge(defaults, route, options) {\n    if (typeof route === \"string\") {\n        let [method, url] = route.split(\" \");\n        options = Object.assign(url ? { method, url } : { url: method }, options);\n    }\n    else {\n        options = Object.assign({}, route);\n    }\n    // lowercase header names before merging with defaults to avoid duplicates\n    options.headers = lowercaseKeys(options.headers);\n    // remove properties with undefined values before merging\n    removeUndefinedProperties(options);\n    removeUndefinedProperties(options.headers);\n    const mergedOptions = mergeDeep(defaults || {}, options);\n    // mediaType.previews arrays are merged, instead of overwritten\n    if (defaults && defaults.mediaType.previews.length) {\n        mergedOptions.mediaType.previews = defaults.mediaType.previews\n            .filter((preview) => !mergedOptions.mediaType.previews.includes(preview))\n            .concat(mergedOptions.mediaType.previews);\n    }\n    mergedOptions.mediaType.previews = mergedOptions.mediaType.previews.map((preview) => preview.replace(/-preview/, \"\"));\n    return mergedOptions;\n}\n\nfunction addQueryParameters(url, parameters) {\n    const separator = /\\?/.test(url) ? \"&\" : \"?\";\n    const names = Object.keys(parameters);\n    if (names.length === 0) {\n        return url;\n    }\n    return (url +\n        separator +\n        names\n            .map((name) => {\n            if (name === \"q\") {\n                return (\"q=\" + parameters.q.split(\"+\").map(encodeURIComponent).join(\"+\"));\n            }\n            return `${name}=${encodeURIComponent(parameters[name])}`;\n        })\n            .join(\"&\"));\n}\n\nconst urlVariableRegex = /\\{[^}]+\\}/g;\nfunction removeNonChars(variableName) {\n    return variableName.replace(/^\\W+|\\W+$/g, \"\").split(/,/);\n}\nfunction extractUrlVariableNames(url) {\n    const matches = url.match(urlVariableRegex);\n    if (!matches) {\n        return [];\n    }\n    return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []);\n}\n\nfunction omit(object, keysToOmit) {\n    return Object.keys(object)\n        .filter((option) => !keysToOmit.includes(option))\n        .reduce((obj, key) => {\n        obj[key] = object[key];\n        return obj;\n    }, {});\n}\n\n// Based on https://github.com/bramstein/url-template, licensed under BSD\n// TODO: create separate package.\n//\n// Copyright (c) 2012-2014, Bram Stein\n// All rights reserved.\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions\n// are met:\n//  1. Redistributions of source code must retain the above copyright\n//     notice, this list of conditions and the following disclaimer.\n//  2. Redistributions in binary form must reproduce the above copyright\n//     notice, this list of conditions and the following disclaimer in the\n//     documentation and/or other materials provided with the distribution.\n//  3. The name of the author may not be used to endorse or promote products\n//     derived from this software without specific prior written permission.\n// THIS SOFTWARE IS PROVIDED BY THE AUTHOR \"AS IS\" AND ANY EXPRESS OR IMPLIED\n// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n// EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\n// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\n// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n/* istanbul ignore file */\nfunction encodeReserved(str) {\n    return str\n        .split(/(%[0-9A-Fa-f]{2})/g)\n        .map(function (part) {\n        if (!/%[0-9A-Fa-f]/.test(part)) {\n            part = encodeURI(part).replace(/%5B/g, \"[\").replace(/%5D/g, \"]\");\n        }\n        return part;\n    })\n        .join(\"\");\n}\nfunction encodeUnreserved(str) {\n    return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {\n        return \"%\" + c.charCodeAt(0).toString(16).toUpperCase();\n    });\n}\nfunction encodeValue(operator, value, key) {\n    value =\n        operator === \"+\" || operator === \"#\"\n            ? encodeReserved(value)\n            : encodeUnreserved(value);\n    if (key) {\n        return encodeUnreserved(key) + \"=\" + value;\n    }\n    else {\n        return value;\n    }\n}\nfunction isDefined(value) {\n    return value !== undefined && value !== null;\n}\nfunction isKeyOperator(operator) {\n    return operator === \";\" || operator === \"&\" || operator === \"?\";\n}\nfunction getValues(context, operator, key, modifier) {\n    var value = context[key], result = [];\n    if (isDefined(value) && value !== \"\") {\n        if (typeof value === \"string\" ||\n            typeof value === \"number\" ||\n            typeof value === \"boolean\") {\n            value = value.toString();\n            if (modifier && modifier !== \"*\") {\n                value = value.substring(0, parseInt(modifier, 10));\n            }\n            result.push(encodeValue(operator, value, isKeyOperator(operator) ? key : \"\"));\n        }\n        else {\n            if (modifier === \"*\") {\n                if (Array.isArray(value)) {\n                    value.filter(isDefined).forEach(function (value) {\n                        result.push(encodeValue(operator, value, isKeyOperator(operator) ? key : \"\"));\n                    });\n                }\n                else {\n                    Object.keys(value).forEach(function (k) {\n                        if (isDefined(value[k])) {\n                            result.push(encodeValue(operator, value[k], k));\n                        }\n                    });\n                }\n            }\n            else {\n                const tmp = [];\n                if (Array.isArray(value)) {\n                    value.filter(isDefined).forEach(function (value) {\n                        tmp.push(encodeValue(operator, value));\n                    });\n                }\n                else {\n                    Object.keys(value).forEach(function (k) {\n                        if (isDefined(value[k])) {\n                            tmp.push(encodeUnreserved(k));\n                            tmp.push(encodeValue(operator, value[k].toString()));\n                        }\n                    });\n                }\n                if (isKeyOperator(operator)) {\n                    result.push(encodeUnreserved(key) + \"=\" + tmp.join(\",\"));\n                }\n                else if (tmp.length !== 0) {\n                    result.push(tmp.join(\",\"));\n                }\n            }\n        }\n    }\n    else {\n        if (operator === \";\") {\n            if (isDefined(value)) {\n                result.push(encodeUnreserved(key));\n            }\n        }\n        else if (value === \"\" && (operator === \"&\" || operator === \"?\")) {\n            result.push(encodeUnreserved(key) + \"=\");\n        }\n        else if (value === \"\") {\n            result.push(\"\");\n        }\n    }\n    return result;\n}\nfunction parseUrl(template) {\n    return {\n        expand: expand.bind(null, template),\n    };\n}\nfunction expand(template, context) {\n    var operators = [\"+\", \"#\", \".\", \"/\", \";\", \"?\", \"&\"];\n    return template.replace(/\\{([^\\{\\}]+)\\}|([^\\{\\}]+)/g, function (_, expression, literal) {\n        if (expression) {\n            let operator = \"\";\n            const values = [];\n            if (operators.indexOf(expression.charAt(0)) !== -1) {\n                operator = expression.charAt(0);\n                expression = expression.substr(1);\n            }\n            expression.split(/,/g).forEach(function (variable) {\n                var tmp = /([^:\\*]*)(?::(\\d+)|(\\*))?/.exec(variable);\n                values.push(getValues(context, operator, tmp[1], tmp[2] || tmp[3]));\n            });\n            if (operator && operator !== \"+\") {\n                var separator = \",\";\n                if (operator === \"?\") {\n                    separator = \"&\";\n                }\n                else if (operator !== \"#\") {\n                    separator = operator;\n                }\n                return (values.length !== 0 ? operator : \"\") + values.join(separator);\n            }\n            else {\n                return values.join(\",\");\n            }\n        }\n        else {\n            return encodeReserved(literal);\n        }\n    });\n}\n\nfunction parse(options) {\n    // https://fetch.spec.whatwg.org/#methods\n    let method = options.method.toUpperCase();\n    // replace :varname with {varname} to make it RFC 6570 compatible\n    let url = (options.url || \"/\").replace(/:([a-z]\\w+)/g, \"{$1}\");\n    let headers = Object.assign({}, options.headers);\n    let body;\n    let parameters = omit(options, [\n        \"method\",\n        \"baseUrl\",\n        \"url\",\n        \"headers\",\n        \"request\",\n        \"mediaType\",\n    ]);\n    // extract variable names from URL to calculate remaining variables later\n    const urlVariableNames = extractUrlVariableNames(url);\n    url = parseUrl(url).expand(parameters);\n    if (!/^http/.test(url)) {\n        url = options.baseUrl + url;\n    }\n    const omittedParameters = Object.keys(options)\n        .filter((option) => urlVariableNames.includes(option))\n        .concat(\"baseUrl\");\n    const remainingParameters = omit(parameters, omittedParameters);\n    const isBinaryRequest = /application\\/octet-stream/i.test(headers.accept);\n    if (!isBinaryRequest) {\n        if (options.mediaType.format) {\n            // e.g. application/vnd.github.v3+json => application/vnd.github.v3.raw\n            headers.accept = headers.accept\n                .split(/,/)\n                .map((preview) => preview.replace(/application\\/vnd(\\.\\w+)(\\.v3)?(\\.\\w+)?(\\+json)?$/, `application/vnd$1$2.${options.mediaType.format}`))\n                .join(\",\");\n        }\n        if (options.mediaType.previews.length) {\n            const previewsFromAcceptHeader = headers.accept.match(/[\\w-]+(?=-preview)/g) || [];\n            headers.accept = previewsFromAcceptHeader\n                .concat(options.mediaType.previews)\n                .map((preview) => {\n                const format = options.mediaType.format\n                    ? `.${options.mediaType.format}`\n                    : \"+json\";\n                return `application/vnd.github.${preview}-preview${format}`;\n            })\n                .join(\",\");\n        }\n    }\n    // for GET/HEAD requests, set URL query parameters from remaining parameters\n    // for PATCH/POST/PUT/DELETE requests, set request body from remaining parameters\n    if ([\"GET\", \"HEAD\"].includes(method)) {\n        url = addQueryParameters(url, remainingParameters);\n    }\n    else {\n        if (\"data\" in remainingParameters) {\n            body = remainingParameters.data;\n        }\n        else {\n            if (Object.keys(remainingParameters).length) {\n                body = remainingParameters;\n            }\n            else {\n                headers[\"content-length\"] = 0;\n            }\n        }\n    }\n    // default content-type for JSON if body is set\n    if (!headers[\"content-type\"] && typeof body !== \"undefined\") {\n        headers[\"content-type\"] = \"application/json; charset=utf-8\";\n    }\n    // GitHub expects 'content-length: 0' header for PUT/PATCH requests without body.\n    // fetch does not allow to set `content-length` header, but we can set body to an empty string\n    if ([\"PATCH\", \"PUT\"].includes(method) && typeof body === \"undefined\") {\n        body = \"\";\n    }\n    // Only return body/request keys if present\n    return Object.assign({ method, url, headers }, typeof body !== \"undefined\" ? { body } : null, options.request ? { request: options.request } : null);\n}\n\nfunction endpointWithDefaults(defaults, route, options) {\n    return parse(merge(defaults, route, options));\n}\n\nfunction withDefaults$2(oldDefaults, newDefaults) {\n    const DEFAULTS = merge(oldDefaults, newDefaults);\n    const endpoint = endpointWithDefaults.bind(null, DEFAULTS);\n    return Object.assign(endpoint, {\n        DEFAULTS,\n        defaults: withDefaults$2.bind(null, DEFAULTS),\n        merge: merge.bind(null, DEFAULTS),\n        parse,\n    });\n}\n\nconst VERSION$7 = \"6.0.12\";\n\nconst userAgent = `octokit-endpoint.js/${VERSION$7} ${getUserAgent()}`;\n// DEFAULTS has all properties set that EndpointOptions has, except url.\n// So we use RequestParameters and add method as additional required property.\nconst DEFAULTS = {\n    method: \"GET\",\n    baseUrl: \"https://api.github.com\",\n    headers: {\n        accept: \"application/vnd.github.v3+json\",\n        \"user-agent\": userAgent,\n    },\n    mediaType: {\n        format: \"\",\n        previews: [],\n    },\n};\n\nconst endpoint = withDefaults$2(null, DEFAULTS);\n\nvar publicApi = {};\n\nvar URL$2 = {exports: {}};\n\nvar lib;\nvar hasRequiredLib;\n\nfunction requireLib () {\n\tif (hasRequiredLib) return lib;\n\thasRequiredLib = 1;\n\n\tvar conversions = {};\n\tlib = conversions;\n\n\tfunction sign(x) {\n\t    return x < 0 ? -1 : 1;\n\t}\n\n\tfunction evenRound(x) {\n\t    // Round x to the nearest integer, choosing the even integer if it lies halfway between two.\n\t    if ((x % 1) === 0.5 && (x & 1) === 0) { // [even number].5; round down (i.e. floor)\n\t        return Math.floor(x);\n\t    } else {\n\t        return Math.round(x);\n\t    }\n\t}\n\n\tfunction createNumberConversion(bitLength, typeOpts) {\n\t    if (!typeOpts.unsigned) {\n\t        --bitLength;\n\t    }\n\t    const lowerBound = typeOpts.unsigned ? 0 : -Math.pow(2, bitLength);\n\t    const upperBound = Math.pow(2, bitLength) - 1;\n\n\t    const moduloVal = typeOpts.moduloBitLength ? Math.pow(2, typeOpts.moduloBitLength) : Math.pow(2, bitLength);\n\t    const moduloBound = typeOpts.moduloBitLength ? Math.pow(2, typeOpts.moduloBitLength - 1) : Math.pow(2, bitLength - 1);\n\n\t    return function(V, opts) {\n\t        if (!opts) opts = {};\n\n\t        let x = +V;\n\n\t        if (opts.enforceRange) {\n\t            if (!Number.isFinite(x)) {\n\t                throw new TypeError(\"Argument is not a finite number\");\n\t            }\n\n\t            x = sign(x) * Math.floor(Math.abs(x));\n\t            if (x < lowerBound || x > upperBound) {\n\t                throw new TypeError(\"Argument is not in byte range\");\n\t            }\n\n\t            return x;\n\t        }\n\n\t        if (!isNaN(x) && opts.clamp) {\n\t            x = evenRound(x);\n\n\t            if (x < lowerBound) x = lowerBound;\n\t            if (x > upperBound) x = upperBound;\n\t            return x;\n\t        }\n\n\t        if (!Number.isFinite(x) || x === 0) {\n\t            return 0;\n\t        }\n\n\t        x = sign(x) * Math.floor(Math.abs(x));\n\t        x = x % moduloVal;\n\n\t        if (!typeOpts.unsigned && x >= moduloBound) {\n\t            return x - moduloVal;\n\t        } else if (typeOpts.unsigned) {\n\t            if (x < 0) {\n\t              x += moduloVal;\n\t            } else if (x === -0) { // don't return negative zero\n\t              return 0;\n\t            }\n\t        }\n\n\t        return x;\n\t    }\n\t}\n\n\tconversions[\"void\"] = function () {\n\t    return undefined;\n\t};\n\n\tconversions[\"boolean\"] = function (val) {\n\t    return !!val;\n\t};\n\n\tconversions[\"byte\"] = createNumberConversion(8, { unsigned: false });\n\tconversions[\"octet\"] = createNumberConversion(8, { unsigned: true });\n\n\tconversions[\"short\"] = createNumberConversion(16, { unsigned: false });\n\tconversions[\"unsigned short\"] = createNumberConversion(16, { unsigned: true });\n\n\tconversions[\"long\"] = createNumberConversion(32, { unsigned: false });\n\tconversions[\"unsigned long\"] = createNumberConversion(32, { unsigned: true });\n\n\tconversions[\"long long\"] = createNumberConversion(32, { unsigned: false, moduloBitLength: 64 });\n\tconversions[\"unsigned long long\"] = createNumberConversion(32, { unsigned: true, moduloBitLength: 64 });\n\n\tconversions[\"double\"] = function (V) {\n\t    const x = +V;\n\n\t    if (!Number.isFinite(x)) {\n\t        throw new TypeError(\"Argument is not a finite floating-point value\");\n\t    }\n\n\t    return x;\n\t};\n\n\tconversions[\"unrestricted double\"] = function (V) {\n\t    const x = +V;\n\n\t    if (isNaN(x)) {\n\t        throw new TypeError(\"Argument is NaN\");\n\t    }\n\n\t    return x;\n\t};\n\n\t// not quite valid, but good enough for JS\n\tconversions[\"float\"] = conversions[\"double\"];\n\tconversions[\"unrestricted float\"] = conversions[\"unrestricted double\"];\n\n\tconversions[\"DOMString\"] = function (V, opts) {\n\t    if (!opts) opts = {};\n\n\t    if (opts.treatNullAsEmptyString && V === null) {\n\t        return \"\";\n\t    }\n\n\t    return String(V);\n\t};\n\n\tconversions[\"ByteString\"] = function (V, opts) {\n\t    const x = String(V);\n\t    let c = undefined;\n\t    for (let i = 0; (c = x.codePointAt(i)) !== undefined; ++i) {\n\t        if (c > 255) {\n\t            throw new TypeError(\"Argument is not a valid bytestring\");\n\t        }\n\t    }\n\n\t    return x;\n\t};\n\n\tconversions[\"USVString\"] = function (V) {\n\t    const S = String(V);\n\t    const n = S.length;\n\t    const U = [];\n\t    for (let i = 0; i < n; ++i) {\n\t        const c = S.charCodeAt(i);\n\t        if (c < 0xD800 || c > 0xDFFF) {\n\t            U.push(String.fromCodePoint(c));\n\t        } else if (0xDC00 <= c && c <= 0xDFFF) {\n\t            U.push(String.fromCodePoint(0xFFFD));\n\t        } else {\n\t            if (i === n - 1) {\n\t                U.push(String.fromCodePoint(0xFFFD));\n\t            } else {\n\t                const d = S.charCodeAt(i + 1);\n\t                if (0xDC00 <= d && d <= 0xDFFF) {\n\t                    const a = c & 0x3FF;\n\t                    const b = d & 0x3FF;\n\t                    U.push(String.fromCodePoint((2 << 15) + (2 << 9) * a + b));\n\t                    ++i;\n\t                } else {\n\t                    U.push(String.fromCodePoint(0xFFFD));\n\t                }\n\t            }\n\t        }\n\t    }\n\n\t    return U.join('');\n\t};\n\n\tconversions[\"Date\"] = function (V, opts) {\n\t    if (!(V instanceof Date)) {\n\t        throw new TypeError(\"Argument is not a Date object\");\n\t    }\n\t    if (isNaN(V)) {\n\t        return undefined;\n\t    }\n\n\t    return V;\n\t};\n\n\tconversions[\"RegExp\"] = function (V, opts) {\n\t    if (!(V instanceof RegExp)) {\n\t        V = new RegExp(V);\n\t    }\n\n\t    return V;\n\t};\n\treturn lib;\n}\n\nvar utils = {exports: {}};\n\nvar hasRequiredUtils$1;\n\nfunction requireUtils$1 () {\n\tif (hasRequiredUtils$1) return utils.exports;\n\thasRequiredUtils$1 = 1;\n\t(function (module) {\n\n\t\tmodule.exports.mixin = function mixin(target, source) {\n\t\t  const keys = Object.getOwnPropertyNames(source);\n\t\t  for (let i = 0; i < keys.length; ++i) {\n\t\t    Object.defineProperty(target, keys[i], Object.getOwnPropertyDescriptor(source, keys[i]));\n\t\t  }\n\t\t};\n\n\t\tmodule.exports.wrapperSymbol = Symbol(\"wrapper\");\n\t\tmodule.exports.implSymbol = Symbol(\"impl\");\n\n\t\tmodule.exports.wrapperForImpl = function (impl) {\n\t\t  return impl[module.exports.wrapperSymbol];\n\t\t};\n\n\t\tmodule.exports.implForWrapper = function (wrapper) {\n\t\t  return wrapper[module.exports.implSymbol];\n\t\t}; \n\t} (utils));\n\treturn utils.exports;\n}\n\nvar URLImpl = {};\n\nvar urlStateMachine = {exports: {}};\n\nvar tr46 = {};\n\nvar require$$1 = [\n\t[\n\t\t[\n\t\t\t0,\n\t\t\t44\n\t\t],\n\t\t\"disallowed_STD3_valid\"\n\t],\n\t[\n\t\t[\n\t\t\t45,\n\t\t\t46\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t47,\n\t\t\t47\n\t\t],\n\t\t\"disallowed_STD3_valid\"\n\t],\n\t[\n\t\t[\n\t\t\t48,\n\t\t\t57\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t58,\n\t\t\t64\n\t\t],\n\t\t\"disallowed_STD3_valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65,\n\t\t\t65\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66,\n\t\t\t66\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t67,\n\t\t\t67\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68,\n\t\t\t68\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t69,\n\t\t\t69\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t70,\n\t\t\t70\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71,\n\t\t\t71\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t72,\n\t\t\t72\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t73,\n\t\t\t73\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t74,\n\t\t\t74\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t75,\n\t\t\t75\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t76,\n\t\t\t76\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t77,\n\t\t\t77\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t78,\n\t\t\t78\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t79,\n\t\t\t79\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t80,\n\t\t\t80\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t81,\n\t\t\t81\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t82,\n\t\t\t82\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t83,\n\t\t\t83\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t84,\n\t\t\t84\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t85,\n\t\t\t85\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t86,\n\t\t\t86\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t87,\n\t\t\t87\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t88,\n\t\t\t88\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t89,\n\t\t\t89\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t90,\n\t\t\t90\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t91,\n\t\t\t96\n\t\t],\n\t\t\"disallowed_STD3_valid\"\n\t],\n\t[\n\t\t[\n\t\t\t97,\n\t\t\t122\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t123,\n\t\t\t127\n\t\t],\n\t\t\"disallowed_STD3_valid\"\n\t],\n\t[\n\t\t[\n\t\t\t128,\n\t\t\t159\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t160,\n\t\t\t160\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t161,\n\t\t\t167\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t168,\n\t\t\t168\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t776\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t169,\n\t\t\t169\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t170,\n\t\t\t170\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t171,\n\t\t\t172\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t173,\n\t\t\t173\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t174,\n\t\t\t174\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t175,\n\t\t\t175\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t772\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t176,\n\t\t\t177\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t178,\n\t\t\t178\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t179,\n\t\t\t179\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t180,\n\t\t\t180\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t181,\n\t\t\t181\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t182,\n\t\t\t182\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t183,\n\t\t\t183\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t184,\n\t\t\t184\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t807\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t185,\n\t\t\t185\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t186,\n\t\t\t186\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t187,\n\t\t\t187\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t188,\n\t\t\t188\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t189,\n\t\t\t189\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t190,\n\t\t\t190\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t8260,\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t191,\n\t\t\t191\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t192,\n\t\t\t192\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t224\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t193,\n\t\t\t193\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t225\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194,\n\t\t\t194\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t226\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195,\n\t\t\t195\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t227\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t196,\n\t\t\t196\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t228\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t197,\n\t\t\t197\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t229\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t198,\n\t\t\t198\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t230\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t199,\n\t\t\t199\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t231\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t200,\n\t\t\t200\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t232\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t201,\n\t\t\t201\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t233\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t202,\n\t\t\t202\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t234\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t203,\n\t\t\t203\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t235\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t204,\n\t\t\t204\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t236\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t205,\n\t\t\t205\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t237\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t206,\n\t\t\t206\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t238\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t207,\n\t\t\t207\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t239\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t208,\n\t\t\t208\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t240\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t209,\n\t\t\t209\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t241\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t210,\n\t\t\t210\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t242\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t211,\n\t\t\t211\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t243\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t212,\n\t\t\t212\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t244\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t213,\n\t\t\t213\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t245\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t214,\n\t\t\t214\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t246\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t215,\n\t\t\t215\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t216,\n\t\t\t216\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t248\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t217,\n\t\t\t217\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t249\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t218,\n\t\t\t218\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t250\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t219,\n\t\t\t219\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t251\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t220,\n\t\t\t220\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t252\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t221,\n\t\t\t221\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t253\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t222,\n\t\t\t222\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t254\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t223,\n\t\t\t223\n\t\t],\n\t\t\"deviation\",\n\t\t[\n\t\t\t115,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t224,\n\t\t\t246\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t247,\n\t\t\t247\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t248,\n\t\t\t255\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t256,\n\t\t\t256\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t257\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t257,\n\t\t\t257\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t258,\n\t\t\t258\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t259\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t259,\n\t\t\t259\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t260,\n\t\t\t260\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t261\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t261,\n\t\t\t261\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t262,\n\t\t\t262\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t263\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t263,\n\t\t\t263\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t264,\n\t\t\t264\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t265\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t265,\n\t\t\t265\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t266,\n\t\t\t266\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t267\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t267,\n\t\t\t267\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t268,\n\t\t\t268\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t269\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t269,\n\t\t\t269\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t270,\n\t\t\t270\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t271\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t271,\n\t\t\t271\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t272,\n\t\t\t272\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t273\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t273,\n\t\t\t273\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t274,\n\t\t\t274\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t275\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t275,\n\t\t\t275\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t276,\n\t\t\t276\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t277\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t277,\n\t\t\t277\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t278,\n\t\t\t278\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t279\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t279,\n\t\t\t279\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t280,\n\t\t\t280\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t281\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t281,\n\t\t\t281\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t282,\n\t\t\t282\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t283\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t283,\n\t\t\t283\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t284,\n\t\t\t284\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t285\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t285,\n\t\t\t285\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t286,\n\t\t\t286\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t287\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t287,\n\t\t\t287\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t288,\n\t\t\t288\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t289\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t289,\n\t\t\t289\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t290,\n\t\t\t290\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t291\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t291,\n\t\t\t291\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t292,\n\t\t\t292\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t293\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t293,\n\t\t\t293\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t294,\n\t\t\t294\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t295\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t295,\n\t\t\t295\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t296,\n\t\t\t296\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t297\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t297,\n\t\t\t297\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t298,\n\t\t\t298\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t299\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t299,\n\t\t\t299\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t300,\n\t\t\t300\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t301\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t301,\n\t\t\t301\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t302,\n\t\t\t302\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t303\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t303,\n\t\t\t303\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t304,\n\t\t\t304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t775\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t305,\n\t\t\t305\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t306,\n\t\t\t307\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t308,\n\t\t\t308\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t309,\n\t\t\t309\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t310,\n\t\t\t310\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t311\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t311,\n\t\t\t312\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t313,\n\t\t\t313\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t314\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t314,\n\t\t\t314\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t315,\n\t\t\t315\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t316\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t316,\n\t\t\t316\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t317,\n\t\t\t317\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t318\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t318,\n\t\t\t318\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t319,\n\t\t\t320\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108,\n\t\t\t183\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t321,\n\t\t\t321\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t322\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t322,\n\t\t\t322\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t323,\n\t\t\t323\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t324\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t324,\n\t\t\t324\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t325,\n\t\t\t325\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t326\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t326,\n\t\t\t326\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t327,\n\t\t\t327\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t328\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t328,\n\t\t\t328\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t329,\n\t\t\t329\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t700,\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t330,\n\t\t\t330\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t331\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t331,\n\t\t\t331\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t332,\n\t\t\t332\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t333\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t333,\n\t\t\t333\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t334,\n\t\t\t334\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t335\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t335,\n\t\t\t335\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t336,\n\t\t\t336\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t337\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t337,\n\t\t\t337\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t338,\n\t\t\t338\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t339\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t339,\n\t\t\t339\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t340,\n\t\t\t340\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t341\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t341,\n\t\t\t341\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t342,\n\t\t\t342\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t343\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t343,\n\t\t\t343\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t344,\n\t\t\t344\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t345\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t345,\n\t\t\t345\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t346,\n\t\t\t346\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t347\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t347,\n\t\t\t347\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t348,\n\t\t\t348\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t349\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t349,\n\t\t\t349\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t350,\n\t\t\t350\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t351\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t351,\n\t\t\t351\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t352,\n\t\t\t352\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t353\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t353,\n\t\t\t353\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t354,\n\t\t\t354\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t355\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t355,\n\t\t\t355\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t356,\n\t\t\t356\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t357\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t357,\n\t\t\t357\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t358,\n\t\t\t358\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t359\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t359,\n\t\t\t359\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t360,\n\t\t\t360\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t361\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t361,\n\t\t\t361\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t362,\n\t\t\t362\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t363,\n\t\t\t363\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t364,\n\t\t\t364\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t365\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t365,\n\t\t\t365\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t366,\n\t\t\t366\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t367\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t367,\n\t\t\t367\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t368,\n\t\t\t368\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t369\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t369,\n\t\t\t369\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t370,\n\t\t\t370\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t371\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t371,\n\t\t\t371\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t372,\n\t\t\t372\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t373\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t373,\n\t\t\t373\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t374,\n\t\t\t374\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t375\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t375,\n\t\t\t375\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t376,\n\t\t\t376\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t255\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t377,\n\t\t\t377\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t378\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t378,\n\t\t\t378\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t379,\n\t\t\t379\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t380\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t380,\n\t\t\t380\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t381,\n\t\t\t381\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t382\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t382,\n\t\t\t382\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t383,\n\t\t\t383\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t384,\n\t\t\t384\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t385,\n\t\t\t385\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t595\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t386,\n\t\t\t386\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t387\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t387,\n\t\t\t387\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t388,\n\t\t\t388\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t389\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t389,\n\t\t\t389\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t390,\n\t\t\t390\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t596\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t391,\n\t\t\t391\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t392\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t392,\n\t\t\t392\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t393,\n\t\t\t393\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t598\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t394,\n\t\t\t394\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t599\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t395,\n\t\t\t395\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t396\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t396,\n\t\t\t397\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t398,\n\t\t\t398\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t477\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t399,\n\t\t\t399\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t400,\n\t\t\t400\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t401,\n\t\t\t401\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t402\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t402,\n\t\t\t402\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t403,\n\t\t\t403\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t404,\n\t\t\t404\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t405,\n\t\t\t405\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t406,\n\t\t\t406\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t407,\n\t\t\t407\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t616\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t408,\n\t\t\t408\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t409\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t409,\n\t\t\t411\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t412,\n\t\t\t412\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t623\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t413,\n\t\t\t413\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t626\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t414,\n\t\t\t414\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t415,\n\t\t\t415\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t629\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t416,\n\t\t\t416\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t417\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t417,\n\t\t\t417\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t418,\n\t\t\t418\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t419\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t419,\n\t\t\t419\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t420,\n\t\t\t420\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t421\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t421,\n\t\t\t421\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t422,\n\t\t\t422\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t640\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t423,\n\t\t\t423\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t424\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t424,\n\t\t\t424\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t425,\n\t\t\t425\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t643\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t426,\n\t\t\t427\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t428,\n\t\t\t428\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t429\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t429,\n\t\t\t429\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t430,\n\t\t\t430\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t648\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t431,\n\t\t\t431\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t432\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t432,\n\t\t\t432\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t433,\n\t\t\t433\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t650\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t434,\n\t\t\t434\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t651\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t435,\n\t\t\t435\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t436\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t436,\n\t\t\t436\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t437,\n\t\t\t437\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t438\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t438,\n\t\t\t438\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t439,\n\t\t\t439\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t658\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t440,\n\t\t\t440\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t441\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t441,\n\t\t\t443\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t444,\n\t\t\t444\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t445\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t445,\n\t\t\t451\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t452,\n\t\t\t454\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t382\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t455,\n\t\t\t457\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108,\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t458,\n\t\t\t460\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110,\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t461,\n\t\t\t461\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t462\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t462,\n\t\t\t462\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t463,\n\t\t\t463\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t464\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t464,\n\t\t\t464\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t465,\n\t\t\t465\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t466\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t466,\n\t\t\t466\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t467,\n\t\t\t467\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t468,\n\t\t\t468\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t469,\n\t\t\t469\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t470\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t470,\n\t\t\t470\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t471,\n\t\t\t471\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t472\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t472,\n\t\t\t472\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t473,\n\t\t\t473\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t474\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t474,\n\t\t\t474\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t475,\n\t\t\t475\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t476\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t476,\n\t\t\t477\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t478,\n\t\t\t478\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t479\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t479,\n\t\t\t479\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t480,\n\t\t\t480\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t481\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t481,\n\t\t\t481\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t482,\n\t\t\t482\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t483\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t483,\n\t\t\t483\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t484,\n\t\t\t484\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t485\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t485,\n\t\t\t485\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t486,\n\t\t\t486\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t487\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t487,\n\t\t\t487\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t488,\n\t\t\t488\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t489,\n\t\t\t489\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t490,\n\t\t\t490\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t491,\n\t\t\t491\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t492,\n\t\t\t492\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t493\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t493,\n\t\t\t493\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t494,\n\t\t\t494\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t495\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t495,\n\t\t\t496\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t497,\n\t\t\t499\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t500,\n\t\t\t500\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t501\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t501,\n\t\t\t501\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t502,\n\t\t\t502\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t405\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t503,\n\t\t\t503\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t447\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t504,\n\t\t\t504\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t505\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t505,\n\t\t\t505\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t506,\n\t\t\t506\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t507\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t507,\n\t\t\t507\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t508,\n\t\t\t508\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t509\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t509,\n\t\t\t509\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t510,\n\t\t\t510\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t511\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t511,\n\t\t\t511\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t512,\n\t\t\t512\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t513\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t513,\n\t\t\t513\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t514,\n\t\t\t514\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t515\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t515,\n\t\t\t515\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t516,\n\t\t\t516\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t517\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t517,\n\t\t\t517\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t518,\n\t\t\t518\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t519\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t519,\n\t\t\t519\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t520,\n\t\t\t520\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t521\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t521,\n\t\t\t521\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t522,\n\t\t\t522\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t523,\n\t\t\t523\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t524,\n\t\t\t524\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t525,\n\t\t\t525\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t526,\n\t\t\t526\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t527\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t527,\n\t\t\t527\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t528,\n\t\t\t528\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t529\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t529,\n\t\t\t529\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t530,\n\t\t\t530\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t531,\n\t\t\t531\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t532,\n\t\t\t532\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t533\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t533,\n\t\t\t533\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t534,\n\t\t\t534\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t535\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t535,\n\t\t\t535\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t536,\n\t\t\t536\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t537\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t537,\n\t\t\t537\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t538,\n\t\t\t538\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t539\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t539,\n\t\t\t539\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t540,\n\t\t\t540\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t541\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t541,\n\t\t\t541\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t542,\n\t\t\t542\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t543\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t543,\n\t\t\t543\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t544,\n\t\t\t544\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t414\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t545,\n\t\t\t545\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t546,\n\t\t\t546\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t547\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t547,\n\t\t\t547\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t548,\n\t\t\t548\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t549\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t549,\n\t\t\t549\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t550,\n\t\t\t550\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t551\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t551,\n\t\t\t551\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t552,\n\t\t\t552\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t553\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t553,\n\t\t\t553\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t554,\n\t\t\t554\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t555\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t555,\n\t\t\t555\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t556,\n\t\t\t556\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t557\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t557,\n\t\t\t557\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t558,\n\t\t\t558\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t559\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t559,\n\t\t\t559\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t560,\n\t\t\t560\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t561\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t561,\n\t\t\t561\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t562,\n\t\t\t562\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t563\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t563,\n\t\t\t563\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t564,\n\t\t\t566\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t567,\n\t\t\t569\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t570,\n\t\t\t570\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11365\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t571,\n\t\t\t571\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t572\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t572,\n\t\t\t572\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t573,\n\t\t\t573\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t410\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t574,\n\t\t\t574\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11366\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t575,\n\t\t\t576\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t577,\n\t\t\t577\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t578,\n\t\t\t578\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t579,\n\t\t\t579\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t384\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t580,\n\t\t\t580\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t649\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t581,\n\t\t\t581\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t652\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t582,\n\t\t\t582\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t583\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t583,\n\t\t\t583\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t584,\n\t\t\t584\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t585,\n\t\t\t585\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t586,\n\t\t\t586\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t587,\n\t\t\t587\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t588,\n\t\t\t588\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t589,\n\t\t\t589\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t590,\n\t\t\t590\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t591\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t591,\n\t\t\t591\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t592,\n\t\t\t680\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t681,\n\t\t\t685\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t686,\n\t\t\t687\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t688,\n\t\t\t688\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t689,\n\t\t\t689\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t614\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t690,\n\t\t\t690\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t691,\n\t\t\t691\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t692,\n\t\t\t692\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t633\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t693,\n\t\t\t693\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t635\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t694,\n\t\t\t694\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t641\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t695,\n\t\t\t695\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t696,\n\t\t\t696\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t697,\n\t\t\t705\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t706,\n\t\t\t709\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t710,\n\t\t\t721\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t722,\n\t\t\t727\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t728,\n\t\t\t728\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t774\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t729,\n\t\t\t729\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t775\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t730,\n\t\t\t730\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t778\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t731,\n\t\t\t731\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t808\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t732,\n\t\t\t732\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t771\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t733,\n\t\t\t733\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t779\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t734,\n\t\t\t734\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t735,\n\t\t\t735\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t736,\n\t\t\t736\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t737,\n\t\t\t737\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t738,\n\t\t\t738\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t739,\n\t\t\t739\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t740,\n\t\t\t740\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t661\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t741,\n\t\t\t745\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t746,\n\t\t\t747\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t748,\n\t\t\t748\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t749,\n\t\t\t749\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t750,\n\t\t\t750\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t751,\n\t\t\t767\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t768,\n\t\t\t831\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t832,\n\t\t\t832\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t768\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t833,\n\t\t\t833\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t834,\n\t\t\t834\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t835,\n\t\t\t835\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t787\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t836,\n\t\t\t836\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t776,\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t837,\n\t\t\t837\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t838,\n\t\t\t846\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t847,\n\t\t\t847\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t848,\n\t\t\t855\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t856,\n\t\t\t860\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t861,\n\t\t\t863\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t864,\n\t\t\t865\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t866,\n\t\t\t866\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t867,\n\t\t\t879\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t880,\n\t\t\t880\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t881\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t881,\n\t\t\t881\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t882,\n\t\t\t882\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t883\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t883,\n\t\t\t883\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t884,\n\t\t\t884\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t697\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t885,\n\t\t\t885\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t886,\n\t\t\t886\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t887\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t887,\n\t\t\t887\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t888,\n\t\t\t889\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t890,\n\t\t\t890\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t891,\n\t\t\t893\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t894,\n\t\t\t894\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t59\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t895,\n\t\t\t895\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1011\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t896,\n\t\t\t899\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t900,\n\t\t\t900\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t901,\n\t\t\t901\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t776,\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t902,\n\t\t\t902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t940\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t903,\n\t\t\t903\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t183\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t904,\n\t\t\t904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t941\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t905,\n\t\t\t905\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t942\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t906,\n\t\t\t906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t943\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t907,\n\t\t\t907\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t908,\n\t\t\t908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t972\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t909,\n\t\t\t909\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t910,\n\t\t\t910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t973\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t911,\n\t\t\t911\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t974\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t912,\n\t\t\t912\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t913,\n\t\t\t913\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t914,\n\t\t\t914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t915,\n\t\t\t915\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t916,\n\t\t\t916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t917,\n\t\t\t917\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t918,\n\t\t\t918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t919,\n\t\t\t919\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t920,\n\t\t\t920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t921,\n\t\t\t921\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t922,\n\t\t\t922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t923,\n\t\t\t923\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t924,\n\t\t\t924\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t925,\n\t\t\t925\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t926,\n\t\t\t926\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t927,\n\t\t\t927\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t928,\n\t\t\t928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t929,\n\t\t\t929\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t930,\n\t\t\t930\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t931,\n\t\t\t931\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t932,\n\t\t\t932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t933,\n\t\t\t933\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t934,\n\t\t\t934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t935,\n\t\t\t935\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t936,\n\t\t\t936\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t937,\n\t\t\t937\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t938,\n\t\t\t938\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t970\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t939,\n\t\t\t939\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t971\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t940,\n\t\t\t961\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t962,\n\t\t\t962\n\t\t],\n\t\t\"deviation\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t963,\n\t\t\t974\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t975,\n\t\t\t975\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t983\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t976,\n\t\t\t976\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t977,\n\t\t\t977\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t978,\n\t\t\t978\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t979,\n\t\t\t979\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t973\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t980,\n\t\t\t980\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t971\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t981,\n\t\t\t981\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t982,\n\t\t\t982\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t983,\n\t\t\t983\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t984,\n\t\t\t984\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t985\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t985,\n\t\t\t985\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t986,\n\t\t\t986\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t987\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t987,\n\t\t\t987\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t988,\n\t\t\t988\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t989\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t989,\n\t\t\t989\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t990,\n\t\t\t990\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t991\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t991,\n\t\t\t991\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t992,\n\t\t\t992\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t993\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t993,\n\t\t\t993\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t994,\n\t\t\t994\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t995\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t995,\n\t\t\t995\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t996,\n\t\t\t996\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t997\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t997,\n\t\t\t997\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t998,\n\t\t\t998\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t999\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t999,\n\t\t\t999\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1000,\n\t\t\t1000\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1001\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1001,\n\t\t\t1001\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1002,\n\t\t\t1002\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1003\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1003,\n\t\t\t1003\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1004,\n\t\t\t1004\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1005\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1005,\n\t\t\t1005\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1006,\n\t\t\t1006\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1007\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1007,\n\t\t\t1007\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1008,\n\t\t\t1008\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1009,\n\t\t\t1009\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1010,\n\t\t\t1010\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1011,\n\t\t\t1011\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1012,\n\t\t\t1012\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1013,\n\t\t\t1013\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1014,\n\t\t\t1014\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1015,\n\t\t\t1015\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1016\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1016,\n\t\t\t1016\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1017,\n\t\t\t1017\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1018,\n\t\t\t1018\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1019\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1019,\n\t\t\t1019\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1020,\n\t\t\t1020\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1021,\n\t\t\t1021\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t891\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1022,\n\t\t\t1022\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t892\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1023,\n\t\t\t1023\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t893\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1024,\n\t\t\t1024\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1025,\n\t\t\t1025\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1026,\n\t\t\t1026\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1027,\n\t\t\t1027\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1028,\n\t\t\t1028\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1029,\n\t\t\t1029\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1030,\n\t\t\t1030\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1031,\n\t\t\t1031\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1032,\n\t\t\t1032\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1033,\n\t\t\t1033\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1034,\n\t\t\t1034\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1035,\n\t\t\t1035\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1036,\n\t\t\t1036\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1037,\n\t\t\t1037\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1038,\n\t\t\t1038\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1039,\n\t\t\t1039\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1040,\n\t\t\t1040\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1072\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1041,\n\t\t\t1041\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1073\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1042,\n\t\t\t1042\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1074\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1043,\n\t\t\t1043\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1075\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1044,\n\t\t\t1044\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1076\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1045,\n\t\t\t1045\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1077\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1046,\n\t\t\t1046\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1078\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1047,\n\t\t\t1047\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1079\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1048,\n\t\t\t1048\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1080\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1049,\n\t\t\t1049\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1081\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1050,\n\t\t\t1050\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1082\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1051,\n\t\t\t1051\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1083\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1052,\n\t\t\t1052\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1084\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1053,\n\t\t\t1053\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1054,\n\t\t\t1054\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1086\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1055,\n\t\t\t1055\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1087\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1056,\n\t\t\t1056\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1088\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1057,\n\t\t\t1057\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1089\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1058,\n\t\t\t1058\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1090\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1059,\n\t\t\t1059\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1091\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1060,\n\t\t\t1060\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1092\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1061,\n\t\t\t1061\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1093\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1062,\n\t\t\t1062\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1094\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1063,\n\t\t\t1063\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1095\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1064,\n\t\t\t1064\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1096\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1065,\n\t\t\t1065\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1097\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1066,\n\t\t\t1066\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1098\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1067,\n\t\t\t1067\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1099\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1068,\n\t\t\t1068\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1069,\n\t\t\t1069\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1070,\n\t\t\t1070\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1071,\n\t\t\t1071\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1072,\n\t\t\t1103\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1104,\n\t\t\t1104\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1105,\n\t\t\t1116\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1117,\n\t\t\t1117\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1118,\n\t\t\t1119\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1120,\n\t\t\t1120\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1121,\n\t\t\t1121\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1122,\n\t\t\t1122\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1123\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1123,\n\t\t\t1123\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1124,\n\t\t\t1124\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1125\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1125,\n\t\t\t1125\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1126,\n\t\t\t1126\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1127\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1127,\n\t\t\t1127\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1128,\n\t\t\t1128\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1129\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1129,\n\t\t\t1129\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1130,\n\t\t\t1130\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1131\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1131,\n\t\t\t1131\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1132,\n\t\t\t1132\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1133\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1133,\n\t\t\t1133\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1134,\n\t\t\t1134\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1135\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1135,\n\t\t\t1135\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1136,\n\t\t\t1136\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1137\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1137,\n\t\t\t1137\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1138,\n\t\t\t1138\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1139\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1139,\n\t\t\t1139\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1140,\n\t\t\t1140\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1141\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1141,\n\t\t\t1141\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1142,\n\t\t\t1142\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1143\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1143,\n\t\t\t1143\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1144,\n\t\t\t1144\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1145\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1145,\n\t\t\t1145\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1146,\n\t\t\t1146\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1147\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1147,\n\t\t\t1147\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1148,\n\t\t\t1148\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1149\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1149,\n\t\t\t1149\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1150,\n\t\t\t1150\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1151\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1151,\n\t\t\t1151\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1152,\n\t\t\t1152\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1153\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1153,\n\t\t\t1153\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1154,\n\t\t\t1154\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1155,\n\t\t\t1158\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1159,\n\t\t\t1159\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1160,\n\t\t\t1161\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1162,\n\t\t\t1162\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1163\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1163,\n\t\t\t1163\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1164,\n\t\t\t1164\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1165\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1165,\n\t\t\t1165\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1166,\n\t\t\t1166\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1167\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1167,\n\t\t\t1167\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1168,\n\t\t\t1168\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1169\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1169,\n\t\t\t1169\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1170,\n\t\t\t1170\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1171\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1171,\n\t\t\t1171\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1172,\n\t\t\t1172\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1173\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1173,\n\t\t\t1173\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1174,\n\t\t\t1174\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1175\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1175,\n\t\t\t1175\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1176,\n\t\t\t1176\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1177\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1177,\n\t\t\t1177\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1178,\n\t\t\t1178\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1179\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1179,\n\t\t\t1179\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1180,\n\t\t\t1180\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1181\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1181,\n\t\t\t1181\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1182,\n\t\t\t1182\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1183\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1183,\n\t\t\t1183\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1184,\n\t\t\t1184\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1185\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1185,\n\t\t\t1185\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1186,\n\t\t\t1186\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1187\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1187,\n\t\t\t1187\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1188,\n\t\t\t1188\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1189\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1189,\n\t\t\t1189\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1190,\n\t\t\t1190\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1191\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1191,\n\t\t\t1191\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1192,\n\t\t\t1192\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1193\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1193,\n\t\t\t1193\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1194,\n\t\t\t1194\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1195\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1195,\n\t\t\t1195\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1196,\n\t\t\t1196\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1197\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1197,\n\t\t\t1197\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1198,\n\t\t\t1198\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1199\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1199,\n\t\t\t1199\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1200,\n\t\t\t1200\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1201\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1201,\n\t\t\t1201\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1202,\n\t\t\t1202\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1203\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1203,\n\t\t\t1203\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1204,\n\t\t\t1204\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1205\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1205,\n\t\t\t1205\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1206,\n\t\t\t1206\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1207\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1207,\n\t\t\t1207\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1208,\n\t\t\t1208\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1209\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1209,\n\t\t\t1209\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1210,\n\t\t\t1210\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1211\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1211,\n\t\t\t1211\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1212,\n\t\t\t1212\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1213\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1213,\n\t\t\t1213\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1214,\n\t\t\t1214\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1215\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1215,\n\t\t\t1215\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1216,\n\t\t\t1216\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1217,\n\t\t\t1217\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1218\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1218,\n\t\t\t1218\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1219,\n\t\t\t1219\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1220\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1220,\n\t\t\t1220\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1221,\n\t\t\t1221\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1222\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1222,\n\t\t\t1222\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1223,\n\t\t\t1223\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1224\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1224,\n\t\t\t1224\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1225,\n\t\t\t1225\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1226\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1226,\n\t\t\t1226\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1227,\n\t\t\t1227\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1228\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1228,\n\t\t\t1228\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1229,\n\t\t\t1229\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1230\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1230,\n\t\t\t1230\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1231,\n\t\t\t1231\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1232,\n\t\t\t1232\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1233\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1233,\n\t\t\t1233\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1234,\n\t\t\t1234\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1235\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1235,\n\t\t\t1235\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1236,\n\t\t\t1236\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1237\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1237,\n\t\t\t1237\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1238,\n\t\t\t1238\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1239\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1239,\n\t\t\t1239\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1240,\n\t\t\t1240\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1241\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1241,\n\t\t\t1241\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1242,\n\t\t\t1242\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1243\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1243,\n\t\t\t1243\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1244,\n\t\t\t1244\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1245\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1245,\n\t\t\t1245\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1246,\n\t\t\t1246\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1247\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1247,\n\t\t\t1247\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1248,\n\t\t\t1248\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1249\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1249,\n\t\t\t1249\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1250,\n\t\t\t1250\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1251\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1251,\n\t\t\t1251\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1252,\n\t\t\t1252\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1253\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1253,\n\t\t\t1253\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1254,\n\t\t\t1254\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1255\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1255,\n\t\t\t1255\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1256,\n\t\t\t1256\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1257\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1257,\n\t\t\t1257\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1258,\n\t\t\t1258\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1259\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1259,\n\t\t\t1259\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1260,\n\t\t\t1260\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1261\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1261,\n\t\t\t1261\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1262,\n\t\t\t1262\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1263\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1263,\n\t\t\t1263\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1264,\n\t\t\t1264\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1265\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1265,\n\t\t\t1265\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1266,\n\t\t\t1266\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1267\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1267,\n\t\t\t1267\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1268,\n\t\t\t1268\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1269\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1269,\n\t\t\t1269\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1270,\n\t\t\t1270\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1271\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1271,\n\t\t\t1271\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1272,\n\t\t\t1272\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1273\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1273,\n\t\t\t1273\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1274,\n\t\t\t1274\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1275\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1275,\n\t\t\t1275\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1276,\n\t\t\t1276\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1277\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1277,\n\t\t\t1277\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1278,\n\t\t\t1278\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1279\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1279,\n\t\t\t1279\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1280,\n\t\t\t1280\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1281\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1281,\n\t\t\t1281\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1282,\n\t\t\t1282\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1283\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1283,\n\t\t\t1283\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1284,\n\t\t\t1284\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1285\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1285,\n\t\t\t1285\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1286,\n\t\t\t1286\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1287\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1287,\n\t\t\t1287\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1288,\n\t\t\t1288\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1289\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1289,\n\t\t\t1289\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1290,\n\t\t\t1290\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1291\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1291,\n\t\t\t1291\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1292,\n\t\t\t1292\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1293\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1293,\n\t\t\t1293\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1294,\n\t\t\t1294\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1295\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1295,\n\t\t\t1295\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1296,\n\t\t\t1296\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1297\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1297,\n\t\t\t1297\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1298,\n\t\t\t1298\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1299\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1299,\n\t\t\t1299\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1300,\n\t\t\t1300\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1301\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1301,\n\t\t\t1301\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1302,\n\t\t\t1302\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1303\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1303,\n\t\t\t1303\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1304,\n\t\t\t1304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1305\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1305,\n\t\t\t1305\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1306,\n\t\t\t1306\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1307\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1307,\n\t\t\t1307\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1308,\n\t\t\t1308\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1309,\n\t\t\t1309\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1310,\n\t\t\t1310\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1311\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1311,\n\t\t\t1311\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1312,\n\t\t\t1312\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1313\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1313,\n\t\t\t1313\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1314,\n\t\t\t1314\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1315\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1315,\n\t\t\t1315\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1316,\n\t\t\t1316\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1317\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1317,\n\t\t\t1317\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1318,\n\t\t\t1318\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1319\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1319,\n\t\t\t1319\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1320,\n\t\t\t1320\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1321\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1321,\n\t\t\t1321\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1322,\n\t\t\t1322\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1323\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1323,\n\t\t\t1323\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1324,\n\t\t\t1324\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1325\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1325,\n\t\t\t1325\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1326,\n\t\t\t1326\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1327\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1327,\n\t\t\t1327\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1328,\n\t\t\t1328\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1329,\n\t\t\t1329\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1377\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1330,\n\t\t\t1330\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1378\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1331,\n\t\t\t1331\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1379\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1332,\n\t\t\t1332\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1380\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1333,\n\t\t\t1333\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1381\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1334,\n\t\t\t1334\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1382\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1335,\n\t\t\t1335\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1383\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1336,\n\t\t\t1336\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1384\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1337,\n\t\t\t1337\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1385\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1338,\n\t\t\t1338\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1386\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1339,\n\t\t\t1339\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1387\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1340,\n\t\t\t1340\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1388\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1341,\n\t\t\t1341\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1389\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1342,\n\t\t\t1342\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1390\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1343,\n\t\t\t1343\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1391\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1344,\n\t\t\t1344\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1392\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1345,\n\t\t\t1345\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1393\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1346,\n\t\t\t1346\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1394\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1347,\n\t\t\t1347\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1395\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1348,\n\t\t\t1348\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1396\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1349,\n\t\t\t1349\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1397\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1350,\n\t\t\t1350\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1398\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1351,\n\t\t\t1351\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1399\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1352,\n\t\t\t1352\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1400\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1353,\n\t\t\t1353\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1401\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1354,\n\t\t\t1354\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1402\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1355,\n\t\t\t1355\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1403\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1356,\n\t\t\t1356\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1404\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1357,\n\t\t\t1357\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1405\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1358,\n\t\t\t1358\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1406\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1359,\n\t\t\t1359\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1407\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1360,\n\t\t\t1360\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1408\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1361,\n\t\t\t1361\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1409\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1362,\n\t\t\t1362\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1410\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1363,\n\t\t\t1363\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1411\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1364,\n\t\t\t1364\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1412\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1365,\n\t\t\t1365\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1413\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1366,\n\t\t\t1366\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1414\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1367,\n\t\t\t1368\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1369,\n\t\t\t1369\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1370,\n\t\t\t1375\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1376,\n\t\t\t1376\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1377,\n\t\t\t1414\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1415,\n\t\t\t1415\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1381,\n\t\t\t1410\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1416,\n\t\t\t1416\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1417,\n\t\t\t1417\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1418,\n\t\t\t1418\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1419,\n\t\t\t1420\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1421,\n\t\t\t1422\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1423,\n\t\t\t1423\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1424,\n\t\t\t1424\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1425,\n\t\t\t1441\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1442,\n\t\t\t1442\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1443,\n\t\t\t1455\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1456,\n\t\t\t1465\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1466,\n\t\t\t1466\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1467,\n\t\t\t1469\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1470,\n\t\t\t1470\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1471,\n\t\t\t1471\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1472,\n\t\t\t1472\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1473,\n\t\t\t1474\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1475,\n\t\t\t1475\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1476,\n\t\t\t1476\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1477,\n\t\t\t1477\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1478,\n\t\t\t1478\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1479,\n\t\t\t1479\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1480,\n\t\t\t1487\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1488,\n\t\t\t1514\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1515,\n\t\t\t1519\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1520,\n\t\t\t1524\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1525,\n\t\t\t1535\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1536,\n\t\t\t1539\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1540,\n\t\t\t1540\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1541,\n\t\t\t1541\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1542,\n\t\t\t1546\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1547,\n\t\t\t1547\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1548,\n\t\t\t1548\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1549,\n\t\t\t1551\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1552,\n\t\t\t1557\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1558,\n\t\t\t1562\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1563,\n\t\t\t1563\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1564,\n\t\t\t1564\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1565,\n\t\t\t1565\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1566,\n\t\t\t1566\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1567,\n\t\t\t1567\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1568,\n\t\t\t1568\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1569,\n\t\t\t1594\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1595,\n\t\t\t1599\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1600,\n\t\t\t1600\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1601,\n\t\t\t1618\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1619,\n\t\t\t1621\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1622,\n\t\t\t1624\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1625,\n\t\t\t1630\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1631,\n\t\t\t1631\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1632,\n\t\t\t1641\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1642,\n\t\t\t1645\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1646,\n\t\t\t1647\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1648,\n\t\t\t1652\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1653,\n\t\t\t1653\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1575,\n\t\t\t1652\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1654,\n\t\t\t1654\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1608,\n\t\t\t1652\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1655,\n\t\t\t1655\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1735,\n\t\t\t1652\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1656,\n\t\t\t1656\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1652\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t1657,\n\t\t\t1719\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1720,\n\t\t\t1721\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1722,\n\t\t\t1726\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1727,\n\t\t\t1727\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1728,\n\t\t\t1742\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1743,\n\t\t\t1743\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1744,\n\t\t\t1747\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1748,\n\t\t\t1748\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1749,\n\t\t\t1756\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1757,\n\t\t\t1757\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1758,\n\t\t\t1758\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1759,\n\t\t\t1768\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1769,\n\t\t\t1769\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1770,\n\t\t\t1773\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1774,\n\t\t\t1775\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1776,\n\t\t\t1785\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1786,\n\t\t\t1790\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1791,\n\t\t\t1791\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1792,\n\t\t\t1805\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t1806,\n\t\t\t1806\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1807,\n\t\t\t1807\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1808,\n\t\t\t1836\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1837,\n\t\t\t1839\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1840,\n\t\t\t1866\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1867,\n\t\t\t1868\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1869,\n\t\t\t1871\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1872,\n\t\t\t1901\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1902,\n\t\t\t1919\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1920,\n\t\t\t1968\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1969,\n\t\t\t1969\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t1970,\n\t\t\t1983\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1984,\n\t\t\t2037\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2038,\n\t\t\t2042\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2043,\n\t\t\t2047\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2048,\n\t\t\t2093\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2094,\n\t\t\t2095\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2096,\n\t\t\t2110\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2111,\n\t\t\t2111\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2112,\n\t\t\t2139\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2140,\n\t\t\t2141\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2142,\n\t\t\t2142\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2143,\n\t\t\t2207\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2208,\n\t\t\t2208\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2209,\n\t\t\t2209\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2210,\n\t\t\t2220\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2221,\n\t\t\t2226\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2227,\n\t\t\t2228\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2229,\n\t\t\t2274\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2275,\n\t\t\t2275\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2276,\n\t\t\t2302\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2303,\n\t\t\t2303\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2304,\n\t\t\t2304\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2305,\n\t\t\t2307\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2308,\n\t\t\t2308\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2309,\n\t\t\t2361\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2362,\n\t\t\t2363\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2364,\n\t\t\t2381\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2382,\n\t\t\t2382\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2383,\n\t\t\t2383\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2384,\n\t\t\t2388\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2389,\n\t\t\t2389\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2390,\n\t\t\t2391\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2392,\n\t\t\t2392\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2325,\n\t\t\t2364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2393,\n\t\t\t2393\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2326,\n\t\t\t2364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2394,\n\t\t\t2394\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2327,\n\t\t\t2364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2395,\n\t\t\t2395\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2332,\n\t\t\t2364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2396,\n\t\t\t2396\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2337,\n\t\t\t2364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2397,\n\t\t\t2397\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2338,\n\t\t\t2364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2398,\n\t\t\t2398\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2347,\n\t\t\t2364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2399,\n\t\t\t2399\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2351,\n\t\t\t2364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2400,\n\t\t\t2403\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2404,\n\t\t\t2405\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2406,\n\t\t\t2415\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2416,\n\t\t\t2416\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2417,\n\t\t\t2418\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2419,\n\t\t\t2423\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2424,\n\t\t\t2424\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2425,\n\t\t\t2426\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2427,\n\t\t\t2428\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2429,\n\t\t\t2429\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2430,\n\t\t\t2431\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2432,\n\t\t\t2432\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2433,\n\t\t\t2435\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2436,\n\t\t\t2436\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2437,\n\t\t\t2444\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2445,\n\t\t\t2446\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2447,\n\t\t\t2448\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2449,\n\t\t\t2450\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2451,\n\t\t\t2472\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2473,\n\t\t\t2473\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2474,\n\t\t\t2480\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2481,\n\t\t\t2481\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2482,\n\t\t\t2482\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2483,\n\t\t\t2485\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2486,\n\t\t\t2489\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2490,\n\t\t\t2491\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2492,\n\t\t\t2492\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2493,\n\t\t\t2493\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2494,\n\t\t\t2500\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2501,\n\t\t\t2502\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2503,\n\t\t\t2504\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2505,\n\t\t\t2506\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2507,\n\t\t\t2509\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2510,\n\t\t\t2510\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2511,\n\t\t\t2518\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2519,\n\t\t\t2519\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2520,\n\t\t\t2523\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2524,\n\t\t\t2524\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2465,\n\t\t\t2492\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2525,\n\t\t\t2525\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2466,\n\t\t\t2492\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2526,\n\t\t\t2526\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2527,\n\t\t\t2527\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2479,\n\t\t\t2492\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2528,\n\t\t\t2531\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2532,\n\t\t\t2533\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2534,\n\t\t\t2545\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2546,\n\t\t\t2554\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2555,\n\t\t\t2555\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2556,\n\t\t\t2560\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2561,\n\t\t\t2561\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2562,\n\t\t\t2562\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2563,\n\t\t\t2563\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2564,\n\t\t\t2564\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2565,\n\t\t\t2570\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2571,\n\t\t\t2574\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2575,\n\t\t\t2576\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2577,\n\t\t\t2578\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2579,\n\t\t\t2600\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2601,\n\t\t\t2601\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2602,\n\t\t\t2608\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2609,\n\t\t\t2609\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2610,\n\t\t\t2610\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2611,\n\t\t\t2611\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2610,\n\t\t\t2620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2612,\n\t\t\t2612\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2613,\n\t\t\t2613\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2614,\n\t\t\t2614\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2616,\n\t\t\t2620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2615,\n\t\t\t2615\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2616,\n\t\t\t2617\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2618,\n\t\t\t2619\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2620,\n\t\t\t2620\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2621,\n\t\t\t2621\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2622,\n\t\t\t2626\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2627,\n\t\t\t2630\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2631,\n\t\t\t2632\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2633,\n\t\t\t2634\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2635,\n\t\t\t2637\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2638,\n\t\t\t2640\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2641,\n\t\t\t2641\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2642,\n\t\t\t2648\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2649,\n\t\t\t2649\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2582,\n\t\t\t2620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2650,\n\t\t\t2650\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2583,\n\t\t\t2620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2651,\n\t\t\t2651\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2588,\n\t\t\t2620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2652,\n\t\t\t2652\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2653,\n\t\t\t2653\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2654,\n\t\t\t2654\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2603,\n\t\t\t2620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2655,\n\t\t\t2661\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2662,\n\t\t\t2676\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2677,\n\t\t\t2677\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2678,\n\t\t\t2688\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2689,\n\t\t\t2691\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2692,\n\t\t\t2692\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2693,\n\t\t\t2699\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2700,\n\t\t\t2700\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2701,\n\t\t\t2701\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2702,\n\t\t\t2702\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2703,\n\t\t\t2705\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2706,\n\t\t\t2706\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2707,\n\t\t\t2728\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2729,\n\t\t\t2729\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2730,\n\t\t\t2736\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2737,\n\t\t\t2737\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2738,\n\t\t\t2739\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2740,\n\t\t\t2740\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2741,\n\t\t\t2745\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2746,\n\t\t\t2747\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2748,\n\t\t\t2757\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2758,\n\t\t\t2758\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2759,\n\t\t\t2761\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2762,\n\t\t\t2762\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2763,\n\t\t\t2765\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2766,\n\t\t\t2767\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2768,\n\t\t\t2768\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2769,\n\t\t\t2783\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2784,\n\t\t\t2784\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2785,\n\t\t\t2787\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2788,\n\t\t\t2789\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2790,\n\t\t\t2799\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2800,\n\t\t\t2800\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2801,\n\t\t\t2801\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2802,\n\t\t\t2808\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2809,\n\t\t\t2809\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2810,\n\t\t\t2816\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2817,\n\t\t\t2819\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2820,\n\t\t\t2820\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2821,\n\t\t\t2828\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2829,\n\t\t\t2830\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2831,\n\t\t\t2832\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2833,\n\t\t\t2834\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2835,\n\t\t\t2856\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2857,\n\t\t\t2857\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2858,\n\t\t\t2864\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2865,\n\t\t\t2865\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2866,\n\t\t\t2867\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2868,\n\t\t\t2868\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2869,\n\t\t\t2869\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2870,\n\t\t\t2873\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2874,\n\t\t\t2875\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2876,\n\t\t\t2883\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2884,\n\t\t\t2884\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2885,\n\t\t\t2886\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2887,\n\t\t\t2888\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2889,\n\t\t\t2890\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2891,\n\t\t\t2893\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2894,\n\t\t\t2901\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2902,\n\t\t\t2903\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2904,\n\t\t\t2907\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2908,\n\t\t\t2908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2849,\n\t\t\t2876\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2909,\n\t\t\t2909\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t2850,\n\t\t\t2876\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t2910,\n\t\t\t2910\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2911,\n\t\t\t2913\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2914,\n\t\t\t2915\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2916,\n\t\t\t2917\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2918,\n\t\t\t2927\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2928,\n\t\t\t2928\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2929,\n\t\t\t2929\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2930,\n\t\t\t2935\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t2936,\n\t\t\t2945\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2946,\n\t\t\t2947\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2948,\n\t\t\t2948\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2949,\n\t\t\t2954\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2955,\n\t\t\t2957\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2958,\n\t\t\t2960\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2961,\n\t\t\t2961\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2962,\n\t\t\t2965\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2966,\n\t\t\t2968\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2969,\n\t\t\t2970\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2971,\n\t\t\t2971\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2972,\n\t\t\t2972\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2973,\n\t\t\t2973\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2974,\n\t\t\t2975\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2976,\n\t\t\t2978\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2979,\n\t\t\t2980\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2981,\n\t\t\t2983\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2984,\n\t\t\t2986\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2987,\n\t\t\t2989\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t2990,\n\t\t\t2997\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2998,\n\t\t\t2998\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t2999,\n\t\t\t3001\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3002,\n\t\t\t3005\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3006,\n\t\t\t3010\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3011,\n\t\t\t3013\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3014,\n\t\t\t3016\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3017,\n\t\t\t3017\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3018,\n\t\t\t3021\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3022,\n\t\t\t3023\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3024,\n\t\t\t3024\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3025,\n\t\t\t3030\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3031,\n\t\t\t3031\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3032,\n\t\t\t3045\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3046,\n\t\t\t3046\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3047,\n\t\t\t3055\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3056,\n\t\t\t3058\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3059,\n\t\t\t3066\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3067,\n\t\t\t3071\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3072,\n\t\t\t3072\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3073,\n\t\t\t3075\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3076,\n\t\t\t3076\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3077,\n\t\t\t3084\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3085,\n\t\t\t3085\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3086,\n\t\t\t3088\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3089,\n\t\t\t3089\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3090,\n\t\t\t3112\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3113,\n\t\t\t3113\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3114,\n\t\t\t3123\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3124,\n\t\t\t3124\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3125,\n\t\t\t3129\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3130,\n\t\t\t3132\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3133,\n\t\t\t3133\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3134,\n\t\t\t3140\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3141,\n\t\t\t3141\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3142,\n\t\t\t3144\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3145,\n\t\t\t3145\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3146,\n\t\t\t3149\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3150,\n\t\t\t3156\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3157,\n\t\t\t3158\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3159,\n\t\t\t3159\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3160,\n\t\t\t3161\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3162,\n\t\t\t3162\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3163,\n\t\t\t3167\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3168,\n\t\t\t3169\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3170,\n\t\t\t3171\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3172,\n\t\t\t3173\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3174,\n\t\t\t3183\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3184,\n\t\t\t3191\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3192,\n\t\t\t3199\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3200,\n\t\t\t3200\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3201,\n\t\t\t3201\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3202,\n\t\t\t3203\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3204,\n\t\t\t3204\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3205,\n\t\t\t3212\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3213,\n\t\t\t3213\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3214,\n\t\t\t3216\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3217,\n\t\t\t3217\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3218,\n\t\t\t3240\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3241,\n\t\t\t3241\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3242,\n\t\t\t3251\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3252,\n\t\t\t3252\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3253,\n\t\t\t3257\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3258,\n\t\t\t3259\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3260,\n\t\t\t3261\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3262,\n\t\t\t3268\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3269,\n\t\t\t3269\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3270,\n\t\t\t3272\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3273,\n\t\t\t3273\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3274,\n\t\t\t3277\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3278,\n\t\t\t3284\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3285,\n\t\t\t3286\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3287,\n\t\t\t3293\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3294,\n\t\t\t3294\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3295,\n\t\t\t3295\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3296,\n\t\t\t3297\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3298,\n\t\t\t3299\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3300,\n\t\t\t3301\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3302,\n\t\t\t3311\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3312,\n\t\t\t3312\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3313,\n\t\t\t3314\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3315,\n\t\t\t3328\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3329,\n\t\t\t3329\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3330,\n\t\t\t3331\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3332,\n\t\t\t3332\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3333,\n\t\t\t3340\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3341,\n\t\t\t3341\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3342,\n\t\t\t3344\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3345,\n\t\t\t3345\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3346,\n\t\t\t3368\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3369,\n\t\t\t3369\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3370,\n\t\t\t3385\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3386,\n\t\t\t3386\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3387,\n\t\t\t3388\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3389,\n\t\t\t3389\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3390,\n\t\t\t3395\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3396,\n\t\t\t3396\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3397,\n\t\t\t3397\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3398,\n\t\t\t3400\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3401,\n\t\t\t3401\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3402,\n\t\t\t3405\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3406,\n\t\t\t3406\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3407,\n\t\t\t3414\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3415,\n\t\t\t3415\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3416,\n\t\t\t3422\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3423,\n\t\t\t3423\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3424,\n\t\t\t3425\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3426,\n\t\t\t3427\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3428,\n\t\t\t3429\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3430,\n\t\t\t3439\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3440,\n\t\t\t3445\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3446,\n\t\t\t3448\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3449,\n\t\t\t3449\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3450,\n\t\t\t3455\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3456,\n\t\t\t3457\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3458,\n\t\t\t3459\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3460,\n\t\t\t3460\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3461,\n\t\t\t3478\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3479,\n\t\t\t3481\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3482,\n\t\t\t3505\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3506,\n\t\t\t3506\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3507,\n\t\t\t3515\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3516,\n\t\t\t3516\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3517,\n\t\t\t3517\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3518,\n\t\t\t3519\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3520,\n\t\t\t3526\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3527,\n\t\t\t3529\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3530,\n\t\t\t3530\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3531,\n\t\t\t3534\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3535,\n\t\t\t3540\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3541,\n\t\t\t3541\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3542,\n\t\t\t3542\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3543,\n\t\t\t3543\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3544,\n\t\t\t3551\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3552,\n\t\t\t3557\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3558,\n\t\t\t3567\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3568,\n\t\t\t3569\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3570,\n\t\t\t3571\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3572,\n\t\t\t3572\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3573,\n\t\t\t3584\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3585,\n\t\t\t3634\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3635,\n\t\t\t3635\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3661,\n\t\t\t3634\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3636,\n\t\t\t3642\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3643,\n\t\t\t3646\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3647,\n\t\t\t3647\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3648,\n\t\t\t3662\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3663,\n\t\t\t3663\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3664,\n\t\t\t3673\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3674,\n\t\t\t3675\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3676,\n\t\t\t3712\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3713,\n\t\t\t3714\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3715,\n\t\t\t3715\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3716,\n\t\t\t3716\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3717,\n\t\t\t3718\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3719,\n\t\t\t3720\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3721,\n\t\t\t3721\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3722,\n\t\t\t3722\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3723,\n\t\t\t3724\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3725,\n\t\t\t3725\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3726,\n\t\t\t3731\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3732,\n\t\t\t3735\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3736,\n\t\t\t3736\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3737,\n\t\t\t3743\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3744,\n\t\t\t3744\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3745,\n\t\t\t3747\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3748,\n\t\t\t3748\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3749,\n\t\t\t3749\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3750,\n\t\t\t3750\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3751,\n\t\t\t3751\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3752,\n\t\t\t3753\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3754,\n\t\t\t3755\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3756,\n\t\t\t3756\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3757,\n\t\t\t3762\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3763,\n\t\t\t3763\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3789,\n\t\t\t3762\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3764,\n\t\t\t3769\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3770,\n\t\t\t3770\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3771,\n\t\t\t3773\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3774,\n\t\t\t3775\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3776,\n\t\t\t3780\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3781,\n\t\t\t3781\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3782,\n\t\t\t3782\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3783,\n\t\t\t3783\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3784,\n\t\t\t3789\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3790,\n\t\t\t3791\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3792,\n\t\t\t3801\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3802,\n\t\t\t3803\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3804,\n\t\t\t3804\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3755,\n\t\t\t3737\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3805,\n\t\t\t3805\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3755,\n\t\t\t3745\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3806,\n\t\t\t3807\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3808,\n\t\t\t3839\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3840,\n\t\t\t3840\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3841,\n\t\t\t3850\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3851,\n\t\t\t3851\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3852,\n\t\t\t3852\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3851\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3853,\n\t\t\t3863\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3864,\n\t\t\t3865\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3866,\n\t\t\t3871\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3872,\n\t\t\t3881\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3882,\n\t\t\t3892\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3893,\n\t\t\t3893\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3894,\n\t\t\t3894\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3895,\n\t\t\t3895\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3896,\n\t\t\t3896\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3897,\n\t\t\t3897\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3898,\n\t\t\t3901\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3902,\n\t\t\t3906\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3907,\n\t\t\t3907\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3906,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3908,\n\t\t\t3911\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3912,\n\t\t\t3912\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3913,\n\t\t\t3916\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3917,\n\t\t\t3917\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3916,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3918,\n\t\t\t3921\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3922,\n\t\t\t3922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3921,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3923,\n\t\t\t3926\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3927,\n\t\t\t3927\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3926,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3928,\n\t\t\t3931\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3932,\n\t\t\t3932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3931,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3933,\n\t\t\t3944\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3945,\n\t\t\t3945\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3904,\n\t\t\t4021\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3946,\n\t\t\t3946\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3947,\n\t\t\t3948\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3949,\n\t\t\t3952\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3953,\n\t\t\t3954\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3955,\n\t\t\t3955\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3953,\n\t\t\t3954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3956,\n\t\t\t3956\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3957,\n\t\t\t3957\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3953,\n\t\t\t3956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3958,\n\t\t\t3958\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4018,\n\t\t\t3968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3959,\n\t\t\t3959\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4018,\n\t\t\t3953,\n\t\t\t3968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3960,\n\t\t\t3960\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4019,\n\t\t\t3968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3961,\n\t\t\t3961\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4019,\n\t\t\t3953,\n\t\t\t3968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3962,\n\t\t\t3968\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3969,\n\t\t\t3969\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3953,\n\t\t\t3968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3970,\n\t\t\t3972\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3973,\n\t\t\t3973\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t3974,\n\t\t\t3979\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3980,\n\t\t\t3983\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3984,\n\t\t\t3986\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3987,\n\t\t\t3987\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3986,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3988,\n\t\t\t3989\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3990,\n\t\t\t3990\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3991,\n\t\t\t3991\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3992,\n\t\t\t3992\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t3993,\n\t\t\t3996\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t3997,\n\t\t\t3997\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3996,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t3998,\n\t\t\t4001\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4002,\n\t\t\t4002\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4001,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t4003,\n\t\t\t4006\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4007,\n\t\t\t4007\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4006,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t4008,\n\t\t\t4011\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4012,\n\t\t\t4012\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4011,\n\t\t\t4023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t4013,\n\t\t\t4013\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4014,\n\t\t\t4016\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4017,\n\t\t\t4023\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4024,\n\t\t\t4024\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4025,\n\t\t\t4025\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t3984,\n\t\t\t4021\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t4026,\n\t\t\t4028\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4029,\n\t\t\t4029\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4030,\n\t\t\t4037\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4038,\n\t\t\t4038\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4039,\n\t\t\t4044\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4045,\n\t\t\t4045\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4046,\n\t\t\t4046\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4047,\n\t\t\t4047\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4048,\n\t\t\t4049\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4050,\n\t\t\t4052\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4053,\n\t\t\t4056\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4057,\n\t\t\t4058\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4059,\n\t\t\t4095\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4096,\n\t\t\t4129\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4130,\n\t\t\t4130\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4131,\n\t\t\t4135\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4136,\n\t\t\t4136\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4137,\n\t\t\t4138\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4139,\n\t\t\t4139\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4140,\n\t\t\t4146\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4147,\n\t\t\t4149\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4150,\n\t\t\t4153\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4154,\n\t\t\t4159\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4160,\n\t\t\t4169\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4170,\n\t\t\t4175\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4176,\n\t\t\t4185\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4186,\n\t\t\t4249\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4250,\n\t\t\t4253\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4254,\n\t\t\t4255\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4256,\n\t\t\t4293\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4294,\n\t\t\t4294\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4295,\n\t\t\t4295\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11559\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t4296,\n\t\t\t4300\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4301,\n\t\t\t4301\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11565\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t4302,\n\t\t\t4303\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4304,\n\t\t\t4342\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4343,\n\t\t\t4344\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4345,\n\t\t\t4346\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4347,\n\t\t\t4347\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4348,\n\t\t\t4348\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4316\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t4349,\n\t\t\t4351\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4352,\n\t\t\t4441\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4442,\n\t\t\t4446\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4447,\n\t\t\t4448\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4449,\n\t\t\t4514\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4515,\n\t\t\t4519\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4520,\n\t\t\t4601\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4602,\n\t\t\t4607\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4608,\n\t\t\t4614\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4615,\n\t\t\t4615\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4616,\n\t\t\t4678\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4679,\n\t\t\t4679\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4680,\n\t\t\t4680\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4681,\n\t\t\t4681\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4682,\n\t\t\t4685\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4686,\n\t\t\t4687\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4688,\n\t\t\t4694\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4695,\n\t\t\t4695\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4696,\n\t\t\t4696\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4697,\n\t\t\t4697\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4698,\n\t\t\t4701\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4702,\n\t\t\t4703\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4704,\n\t\t\t4742\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4743,\n\t\t\t4743\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4744,\n\t\t\t4744\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4745,\n\t\t\t4745\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4746,\n\t\t\t4749\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4750,\n\t\t\t4751\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4752,\n\t\t\t4782\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4783,\n\t\t\t4783\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4784,\n\t\t\t4784\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4785,\n\t\t\t4785\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4786,\n\t\t\t4789\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4790,\n\t\t\t4791\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4792,\n\t\t\t4798\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4799,\n\t\t\t4799\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4800,\n\t\t\t4800\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4801,\n\t\t\t4801\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4802,\n\t\t\t4805\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4806,\n\t\t\t4807\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4808,\n\t\t\t4814\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4815,\n\t\t\t4815\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4816,\n\t\t\t4822\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4823,\n\t\t\t4823\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4824,\n\t\t\t4846\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4847,\n\t\t\t4847\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4848,\n\t\t\t4878\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4879,\n\t\t\t4879\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4880,\n\t\t\t4880\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4881,\n\t\t\t4881\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4882,\n\t\t\t4885\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4886,\n\t\t\t4887\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4888,\n\t\t\t4894\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4895,\n\t\t\t4895\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4896,\n\t\t\t4934\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4935,\n\t\t\t4935\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4936,\n\t\t\t4954\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4955,\n\t\t\t4956\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4957,\n\t\t\t4958\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4959,\n\t\t\t4959\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t4960,\n\t\t\t4960\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4961,\n\t\t\t4988\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t4989,\n\t\t\t4991\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t4992,\n\t\t\t5007\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5008,\n\t\t\t5017\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t5018,\n\t\t\t5023\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5024,\n\t\t\t5108\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5109,\n\t\t\t5109\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5110,\n\t\t\t5111\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5112,\n\t\t\t5112\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t5113,\n\t\t\t5113\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t5114,\n\t\t\t5114\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t5115,\n\t\t\t5115\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t5116,\n\t\t\t5116\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t5117,\n\t\t\t5117\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t5118,\n\t\t\t5119\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5120,\n\t\t\t5120\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t5121,\n\t\t\t5740\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5741,\n\t\t\t5742\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t5743,\n\t\t\t5750\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5751,\n\t\t\t5759\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5760,\n\t\t\t5760\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5761,\n\t\t\t5786\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5787,\n\t\t\t5788\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t5789,\n\t\t\t5791\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5792,\n\t\t\t5866\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5867,\n\t\t\t5872\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t5873,\n\t\t\t5880\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5881,\n\t\t\t5887\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5888,\n\t\t\t5900\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5901,\n\t\t\t5901\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5902,\n\t\t\t5908\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5909,\n\t\t\t5919\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5920,\n\t\t\t5940\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5941,\n\t\t\t5942\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t5943,\n\t\t\t5951\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5952,\n\t\t\t5971\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5972,\n\t\t\t5983\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5984,\n\t\t\t5996\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t5997,\n\t\t\t5997\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t5998,\n\t\t\t6000\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6001,\n\t\t\t6001\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6002,\n\t\t\t6003\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6004,\n\t\t\t6015\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6016,\n\t\t\t6067\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6068,\n\t\t\t6069\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6070,\n\t\t\t6099\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6100,\n\t\t\t6102\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6103,\n\t\t\t6103\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6104,\n\t\t\t6107\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6108,\n\t\t\t6108\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6109,\n\t\t\t6109\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6110,\n\t\t\t6111\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6112,\n\t\t\t6121\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6122,\n\t\t\t6127\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6128,\n\t\t\t6137\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6138,\n\t\t\t6143\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6144,\n\t\t\t6149\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6150,\n\t\t\t6150\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6151,\n\t\t\t6154\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6155,\n\t\t\t6157\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t6158,\n\t\t\t6158\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6159,\n\t\t\t6159\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6160,\n\t\t\t6169\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6170,\n\t\t\t6175\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6176,\n\t\t\t6263\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6264,\n\t\t\t6271\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6272,\n\t\t\t6313\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6314,\n\t\t\t6314\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6315,\n\t\t\t6319\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6320,\n\t\t\t6389\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6390,\n\t\t\t6399\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6400,\n\t\t\t6428\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6429,\n\t\t\t6430\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6431,\n\t\t\t6431\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6432,\n\t\t\t6443\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6444,\n\t\t\t6447\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6448,\n\t\t\t6459\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6460,\n\t\t\t6463\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6464,\n\t\t\t6464\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6465,\n\t\t\t6467\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6468,\n\t\t\t6469\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6470,\n\t\t\t6509\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6510,\n\t\t\t6511\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6512,\n\t\t\t6516\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6517,\n\t\t\t6527\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6528,\n\t\t\t6569\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6570,\n\t\t\t6571\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6572,\n\t\t\t6575\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6576,\n\t\t\t6601\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6602,\n\t\t\t6607\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6608,\n\t\t\t6617\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6618,\n\t\t\t6618\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"XV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6619,\n\t\t\t6621\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6622,\n\t\t\t6623\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6624,\n\t\t\t6655\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6656,\n\t\t\t6683\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6684,\n\t\t\t6685\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6686,\n\t\t\t6687\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6688,\n\t\t\t6750\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6751,\n\t\t\t6751\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6752,\n\t\t\t6780\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6781,\n\t\t\t6782\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6783,\n\t\t\t6793\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6794,\n\t\t\t6799\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6800,\n\t\t\t6809\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6810,\n\t\t\t6815\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6816,\n\t\t\t6822\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6823,\n\t\t\t6823\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6824,\n\t\t\t6829\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6830,\n\t\t\t6831\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6832,\n\t\t\t6845\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6846,\n\t\t\t6846\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t6847,\n\t\t\t6911\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6912,\n\t\t\t6987\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t6988,\n\t\t\t6991\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t6992,\n\t\t\t7001\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7002,\n\t\t\t7018\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t7019,\n\t\t\t7027\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7028,\n\t\t\t7036\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t7037,\n\t\t\t7039\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7040,\n\t\t\t7082\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7083,\n\t\t\t7085\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7086,\n\t\t\t7097\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7098,\n\t\t\t7103\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7104,\n\t\t\t7155\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7156,\n\t\t\t7163\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7164,\n\t\t\t7167\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t7168,\n\t\t\t7223\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7224,\n\t\t\t7226\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7227,\n\t\t\t7231\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t7232,\n\t\t\t7241\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7242,\n\t\t\t7244\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7245,\n\t\t\t7293\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7294,\n\t\t\t7295\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t7296,\n\t\t\t7359\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7360,\n\t\t\t7367\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t7368,\n\t\t\t7375\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7376,\n\t\t\t7378\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7379,\n\t\t\t7379\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t7380,\n\t\t\t7410\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7411,\n\t\t\t7414\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7415,\n\t\t\t7415\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7416,\n\t\t\t7417\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7418,\n\t\t\t7423\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7424,\n\t\t\t7467\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7468,\n\t\t\t7468\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7469,\n\t\t\t7469\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t230\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7470,\n\t\t\t7470\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7471,\n\t\t\t7471\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7472,\n\t\t\t7472\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7473,\n\t\t\t7473\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7474,\n\t\t\t7474\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t477\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7475,\n\t\t\t7475\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7476,\n\t\t\t7476\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7477,\n\t\t\t7477\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7478,\n\t\t\t7478\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7479,\n\t\t\t7479\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7480,\n\t\t\t7480\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7481,\n\t\t\t7481\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7482,\n\t\t\t7482\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7483,\n\t\t\t7483\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7484,\n\t\t\t7484\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7485,\n\t\t\t7485\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t547\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7486,\n\t\t\t7486\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7487,\n\t\t\t7487\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7488,\n\t\t\t7488\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7489,\n\t\t\t7489\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7490,\n\t\t\t7490\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7491,\n\t\t\t7491\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7492,\n\t\t\t7492\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7493,\n\t\t\t7493\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7494,\n\t\t\t7494\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7426\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7495,\n\t\t\t7495\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7496,\n\t\t\t7496\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7497,\n\t\t\t7497\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7498,\n\t\t\t7498\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7499,\n\t\t\t7499\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7500,\n\t\t\t7500\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7501,\n\t\t\t7501\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7502,\n\t\t\t7502\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7503,\n\t\t\t7503\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7504,\n\t\t\t7504\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7505,\n\t\t\t7505\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t331\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7506,\n\t\t\t7506\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7507,\n\t\t\t7507\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t596\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7508,\n\t\t\t7508\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7446\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7509,\n\t\t\t7509\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7447\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7510,\n\t\t\t7510\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7511,\n\t\t\t7511\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7512,\n\t\t\t7512\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7513,\n\t\t\t7513\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7453\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7514,\n\t\t\t7514\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t623\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7515,\n\t\t\t7515\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7516,\n\t\t\t7516\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7461\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7517,\n\t\t\t7517\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7518,\n\t\t\t7518\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7519,\n\t\t\t7519\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7520,\n\t\t\t7520\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7521,\n\t\t\t7521\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7522,\n\t\t\t7522\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7523,\n\t\t\t7523\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7524,\n\t\t\t7524\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7525,\n\t\t\t7525\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7526,\n\t\t\t7526\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7527,\n\t\t\t7527\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7528,\n\t\t\t7528\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7529,\n\t\t\t7529\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7530,\n\t\t\t7530\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7531,\n\t\t\t7531\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7532,\n\t\t\t7543\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7544,\n\t\t\t7544\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7545,\n\t\t\t7578\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7579,\n\t\t\t7579\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7580,\n\t\t\t7580\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7581,\n\t\t\t7581\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t597\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7582,\n\t\t\t7582\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t240\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7583,\n\t\t\t7583\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7584,\n\t\t\t7584\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7585,\n\t\t\t7585\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7586,\n\t\t\t7586\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7587,\n\t\t\t7587\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t613\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7588,\n\t\t\t7588\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t616\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7589,\n\t\t\t7589\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7590,\n\t\t\t7590\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7591,\n\t\t\t7591\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7547\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7592,\n\t\t\t7592\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t669\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7593,\n\t\t\t7593\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t621\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7594,\n\t\t\t7594\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7557\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7595,\n\t\t\t7595\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t671\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7596,\n\t\t\t7596\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t625\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7597,\n\t\t\t7597\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t624\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7598,\n\t\t\t7598\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t626\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7599,\n\t\t\t7599\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t627\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7600,\n\t\t\t7600\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t628\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7601,\n\t\t\t7601\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t629\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7602,\n\t\t\t7602\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t632\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7603,\n\t\t\t7603\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t642\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7604,\n\t\t\t7604\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t643\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7605,\n\t\t\t7605\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t427\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7606,\n\t\t\t7606\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t649\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7607,\n\t\t\t7607\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t650\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7608,\n\t\t\t7608\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7452\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7609,\n\t\t\t7609\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t651\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7610,\n\t\t\t7610\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t652\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7611,\n\t\t\t7611\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7612,\n\t\t\t7612\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t656\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7613,\n\t\t\t7613\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t657\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7614,\n\t\t\t7614\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t658\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7615,\n\t\t\t7615\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7616,\n\t\t\t7619\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7620,\n\t\t\t7626\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7627,\n\t\t\t7654\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7655,\n\t\t\t7669\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7670,\n\t\t\t7675\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7676,\n\t\t\t7676\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7677,\n\t\t\t7677\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7678,\n\t\t\t7679\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7680,\n\t\t\t7680\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7681\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7681,\n\t\t\t7681\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7682,\n\t\t\t7682\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7683\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7683,\n\t\t\t7683\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7684,\n\t\t\t7684\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7685\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7685,\n\t\t\t7685\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7686,\n\t\t\t7686\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7687\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7687,\n\t\t\t7687\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7688,\n\t\t\t7688\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7689\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7689,\n\t\t\t7689\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7690,\n\t\t\t7690\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7691\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7691,\n\t\t\t7691\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7692,\n\t\t\t7692\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7693\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7693,\n\t\t\t7693\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7694,\n\t\t\t7694\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7695\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7695,\n\t\t\t7695\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7696,\n\t\t\t7696\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7697\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7697,\n\t\t\t7697\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7698,\n\t\t\t7698\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7699\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7699,\n\t\t\t7699\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7700,\n\t\t\t7700\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7701\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7701,\n\t\t\t7701\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7702,\n\t\t\t7702\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7703\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7703,\n\t\t\t7703\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7704,\n\t\t\t7704\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7705\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7705,\n\t\t\t7705\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7706,\n\t\t\t7706\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7707\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7707,\n\t\t\t7707\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7708,\n\t\t\t7708\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7709\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7709,\n\t\t\t7709\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7710,\n\t\t\t7710\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7711,\n\t\t\t7711\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7712,\n\t\t\t7712\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7713\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7713,\n\t\t\t7713\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7714,\n\t\t\t7714\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7715\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7715,\n\t\t\t7715\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7716,\n\t\t\t7716\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7717\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7717,\n\t\t\t7717\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7718,\n\t\t\t7718\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7719\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7719,\n\t\t\t7719\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7720,\n\t\t\t7720\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7721\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7721,\n\t\t\t7721\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7722,\n\t\t\t7722\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7723\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7723,\n\t\t\t7723\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7724,\n\t\t\t7724\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7725\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7725,\n\t\t\t7725\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7726,\n\t\t\t7726\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7727\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7727,\n\t\t\t7727\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7728,\n\t\t\t7728\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7729\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7729,\n\t\t\t7729\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7730,\n\t\t\t7730\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7731\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7731,\n\t\t\t7731\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7732,\n\t\t\t7732\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7733\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7733,\n\t\t\t7733\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7734,\n\t\t\t7734\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7735\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7735,\n\t\t\t7735\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7736,\n\t\t\t7736\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7737\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7737,\n\t\t\t7737\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7738,\n\t\t\t7738\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7739\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7739,\n\t\t\t7739\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7740,\n\t\t\t7740\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7741\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7741,\n\t\t\t7741\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7742,\n\t\t\t7742\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7743\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7743,\n\t\t\t7743\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7744,\n\t\t\t7744\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7745\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7745,\n\t\t\t7745\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7746,\n\t\t\t7746\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7747\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7747,\n\t\t\t7747\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7748,\n\t\t\t7748\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7749\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7749,\n\t\t\t7749\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7750,\n\t\t\t7750\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7751\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7751,\n\t\t\t7751\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7752,\n\t\t\t7752\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7753\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7753,\n\t\t\t7753\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7754,\n\t\t\t7754\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7755\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7755,\n\t\t\t7755\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7756,\n\t\t\t7756\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7757\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7757,\n\t\t\t7757\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7758,\n\t\t\t7758\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7759\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7759,\n\t\t\t7759\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7760,\n\t\t\t7760\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7761\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7761,\n\t\t\t7761\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7762,\n\t\t\t7762\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7763\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7763,\n\t\t\t7763\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7764,\n\t\t\t7764\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7765\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7765,\n\t\t\t7765\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7766,\n\t\t\t7766\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7767\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7767,\n\t\t\t7767\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7768,\n\t\t\t7768\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7769,\n\t\t\t7769\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7770,\n\t\t\t7770\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7771\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7771,\n\t\t\t7771\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7772,\n\t\t\t7772\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7773\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7773,\n\t\t\t7773\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7774,\n\t\t\t7774\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7775\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7775,\n\t\t\t7775\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7776,\n\t\t\t7776\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7777\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7777,\n\t\t\t7777\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7778,\n\t\t\t7778\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7779\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7779,\n\t\t\t7779\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7780,\n\t\t\t7780\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7781\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7781,\n\t\t\t7781\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7782,\n\t\t\t7782\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7783\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7783,\n\t\t\t7783\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7784,\n\t\t\t7784\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7785\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7785,\n\t\t\t7785\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7786,\n\t\t\t7786\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7787\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7787,\n\t\t\t7787\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7788,\n\t\t\t7788\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7789\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7789,\n\t\t\t7789\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7790,\n\t\t\t7790\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7791\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7791,\n\t\t\t7791\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7792,\n\t\t\t7792\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7793\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7793,\n\t\t\t7793\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7794,\n\t\t\t7794\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7795\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7795,\n\t\t\t7795\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7796,\n\t\t\t7796\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7797\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7797,\n\t\t\t7797\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7798,\n\t\t\t7798\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7799\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7799,\n\t\t\t7799\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7800,\n\t\t\t7800\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7801\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7801,\n\t\t\t7801\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7802,\n\t\t\t7802\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7803\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7803,\n\t\t\t7803\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7804,\n\t\t\t7804\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7805\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7805,\n\t\t\t7805\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7806,\n\t\t\t7806\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7807\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7807,\n\t\t\t7807\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7808,\n\t\t\t7808\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7809\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7809,\n\t\t\t7809\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7810,\n\t\t\t7810\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7811\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7811,\n\t\t\t7811\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7812,\n\t\t\t7812\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7813\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7813,\n\t\t\t7813\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7814,\n\t\t\t7814\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7815\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7815,\n\t\t\t7815\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7816,\n\t\t\t7816\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7817\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7817,\n\t\t\t7817\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7818,\n\t\t\t7818\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7819\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7819,\n\t\t\t7819\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7820,\n\t\t\t7820\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7821\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7821,\n\t\t\t7821\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7822,\n\t\t\t7822\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7823\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7823,\n\t\t\t7823\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7824,\n\t\t\t7824\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7825\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7825,\n\t\t\t7825\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7826,\n\t\t\t7826\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7827\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7827,\n\t\t\t7827\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7828,\n\t\t\t7828\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7829\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7829,\n\t\t\t7833\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7834,\n\t\t\t7834\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97,\n\t\t\t702\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7835,\n\t\t\t7835\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7777\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7836,\n\t\t\t7837\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7838,\n\t\t\t7838\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7839,\n\t\t\t7839\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7840,\n\t\t\t7840\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7841\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7841,\n\t\t\t7841\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7842,\n\t\t\t7842\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7843\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7843,\n\t\t\t7843\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7844,\n\t\t\t7844\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7845,\n\t\t\t7845\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7846,\n\t\t\t7846\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7847\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7847,\n\t\t\t7847\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7848,\n\t\t\t7848\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7849\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7849,\n\t\t\t7849\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7850,\n\t\t\t7850\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7851\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7851,\n\t\t\t7851\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7852,\n\t\t\t7852\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7853\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7853,\n\t\t\t7853\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7854,\n\t\t\t7854\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7855\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7855,\n\t\t\t7855\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7856,\n\t\t\t7856\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7857,\n\t\t\t7857\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7858,\n\t\t\t7858\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7859\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7859,\n\t\t\t7859\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7860,\n\t\t\t7860\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7861\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7861,\n\t\t\t7861\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7862,\n\t\t\t7862\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7863\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7863,\n\t\t\t7863\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7864,\n\t\t\t7864\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7865\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7865,\n\t\t\t7865\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7866,\n\t\t\t7866\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7867\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7867,\n\t\t\t7867\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7868,\n\t\t\t7868\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7869\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7869,\n\t\t\t7869\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7870,\n\t\t\t7870\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7871\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7871,\n\t\t\t7871\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7872,\n\t\t\t7872\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7873\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7873,\n\t\t\t7873\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7874,\n\t\t\t7874\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7875\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7875,\n\t\t\t7875\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7876,\n\t\t\t7876\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7877\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7877,\n\t\t\t7877\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7878,\n\t\t\t7878\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7879\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7879,\n\t\t\t7879\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7880,\n\t\t\t7880\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7881\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7881,\n\t\t\t7881\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7882,\n\t\t\t7882\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7883\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7883,\n\t\t\t7883\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7884,\n\t\t\t7884\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7885\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7885,\n\t\t\t7885\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7886,\n\t\t\t7886\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7887\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7887,\n\t\t\t7887\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7888,\n\t\t\t7888\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7889\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7889,\n\t\t\t7889\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7890,\n\t\t\t7890\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7891\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7891,\n\t\t\t7891\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7892,\n\t\t\t7892\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7893\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7893,\n\t\t\t7893\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7894,\n\t\t\t7894\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7895\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7895,\n\t\t\t7895\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7896,\n\t\t\t7896\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7897\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7897,\n\t\t\t7897\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7898,\n\t\t\t7898\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7899\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7899,\n\t\t\t7899\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7900,\n\t\t\t7900\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7901\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7901,\n\t\t\t7901\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7902,\n\t\t\t7902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7903\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7903,\n\t\t\t7903\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7904,\n\t\t\t7904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7905\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7905,\n\t\t\t7905\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7906,\n\t\t\t7906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7907\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7907,\n\t\t\t7907\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7908,\n\t\t\t7908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7909\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7909,\n\t\t\t7909\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7910,\n\t\t\t7910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7911\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7911,\n\t\t\t7911\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7912,\n\t\t\t7912\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7913\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7913,\n\t\t\t7913\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7914,\n\t\t\t7914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7915\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7915,\n\t\t\t7915\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7916,\n\t\t\t7916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7917\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7917,\n\t\t\t7917\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7918,\n\t\t\t7918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7919\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7919,\n\t\t\t7919\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7920,\n\t\t\t7920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7921\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7921,\n\t\t\t7921\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7922,\n\t\t\t7922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7923\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7923,\n\t\t\t7923\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7924,\n\t\t\t7924\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7925\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7925,\n\t\t\t7925\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7926,\n\t\t\t7926\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7927\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7927,\n\t\t\t7927\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7928,\n\t\t\t7928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7929\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7929,\n\t\t\t7929\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7930,\n\t\t\t7930\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7931\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7931,\n\t\t\t7931\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7932,\n\t\t\t7932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7933\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7933,\n\t\t\t7933\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7934,\n\t\t\t7934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7935\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7935,\n\t\t\t7935\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7936,\n\t\t\t7943\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7944,\n\t\t\t7944\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7936\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7945,\n\t\t\t7945\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7937\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7946,\n\t\t\t7946\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7938\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7947,\n\t\t\t7947\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7939\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7948,\n\t\t\t7948\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7940\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7949,\n\t\t\t7949\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7941\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7950,\n\t\t\t7950\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7942\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7951,\n\t\t\t7951\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7943\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7952,\n\t\t\t7957\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7958,\n\t\t\t7959\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7960,\n\t\t\t7960\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7961,\n\t\t\t7961\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7962,\n\t\t\t7962\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7963,\n\t\t\t7963\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7964,\n\t\t\t7964\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7965,\n\t\t\t7965\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7966,\n\t\t\t7967\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t7968,\n\t\t\t7975\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7976,\n\t\t\t7976\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7977,\n\t\t\t7977\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7978,\n\t\t\t7978\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7970\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7979,\n\t\t\t7979\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7971\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7980,\n\t\t\t7980\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7972\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7981,\n\t\t\t7981\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7973\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7982,\n\t\t\t7982\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7974\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7983,\n\t\t\t7983\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7975\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7984,\n\t\t\t7991\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t7992,\n\t\t\t7992\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7984\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7993,\n\t\t\t7993\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7985\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7994,\n\t\t\t7994\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7986\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7995,\n\t\t\t7995\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7987\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7996,\n\t\t\t7996\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7988\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7997,\n\t\t\t7997\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7989\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7998,\n\t\t\t7998\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7990\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t7999,\n\t\t\t7999\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7991\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8000,\n\t\t\t8005\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8006,\n\t\t\t8007\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8008,\n\t\t\t8008\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8000\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8009,\n\t\t\t8009\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8001\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8010,\n\t\t\t8010\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8002\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8011,\n\t\t\t8011\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8003\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8012,\n\t\t\t8012\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8004\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8013,\n\t\t\t8013\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8005\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8014,\n\t\t\t8015\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8016,\n\t\t\t8023\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8024,\n\t\t\t8024\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8025,\n\t\t\t8025\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8017\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8026,\n\t\t\t8026\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8027,\n\t\t\t8027\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8019\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8028,\n\t\t\t8028\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8029,\n\t\t\t8029\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8021\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8030,\n\t\t\t8030\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8031,\n\t\t\t8031\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8032,\n\t\t\t8039\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8040,\n\t\t\t8040\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8032\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8041,\n\t\t\t8041\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8033\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8042,\n\t\t\t8042\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8034\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8043,\n\t\t\t8043\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8035\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8044,\n\t\t\t8044\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8036\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8045,\n\t\t\t8045\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8037\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8046,\n\t\t\t8046\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8047,\n\t\t\t8047\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8039\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8048,\n\t\t\t8048\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8049,\n\t\t\t8049\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t940\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8050,\n\t\t\t8050\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8051,\n\t\t\t8051\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t941\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8052,\n\t\t\t8052\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8053,\n\t\t\t8053\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t942\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8054,\n\t\t\t8054\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8055,\n\t\t\t8055\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t943\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8056,\n\t\t\t8056\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8057,\n\t\t\t8057\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t972\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8058,\n\t\t\t8058\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8059,\n\t\t\t8059\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t973\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8060,\n\t\t\t8060\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8061,\n\t\t\t8061\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t974\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8062,\n\t\t\t8063\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8064,\n\t\t\t8064\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7936,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8065,\n\t\t\t8065\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7937,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8066,\n\t\t\t8066\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7938,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8067,\n\t\t\t8067\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7939,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8068,\n\t\t\t8068\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7940,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8069,\n\t\t\t8069\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7941,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8070,\n\t\t\t8070\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7942,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8071,\n\t\t\t8071\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7943,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8072,\n\t\t\t8072\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7936,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8073,\n\t\t\t8073\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7937,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8074,\n\t\t\t8074\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7938,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8075,\n\t\t\t8075\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7939,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8076,\n\t\t\t8076\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7940,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8077,\n\t\t\t8077\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7941,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8078,\n\t\t\t8078\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7942,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8079,\n\t\t\t8079\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7943,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8080,\n\t\t\t8080\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7968,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8081,\n\t\t\t8081\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7969,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8082,\n\t\t\t8082\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7970,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8083,\n\t\t\t8083\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7971,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8084,\n\t\t\t8084\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7972,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8085,\n\t\t\t8085\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7973,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8086,\n\t\t\t8086\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7974,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8087,\n\t\t\t8087\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7975,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8088,\n\t\t\t8088\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7968,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8089,\n\t\t\t8089\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7969,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8090,\n\t\t\t8090\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7970,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8091,\n\t\t\t8091\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7971,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8092,\n\t\t\t8092\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7972,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8093,\n\t\t\t8093\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7973,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8094,\n\t\t\t8094\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7974,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8095,\n\t\t\t8095\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7975,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8096,\n\t\t\t8096\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8032,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8097,\n\t\t\t8097\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8033,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8098,\n\t\t\t8098\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8034,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8099,\n\t\t\t8099\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8035,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8100,\n\t\t\t8100\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8036,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8101,\n\t\t\t8101\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8037,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8102,\n\t\t\t8102\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8038,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8103,\n\t\t\t8103\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8039,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8104,\n\t\t\t8104\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8032,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8105,\n\t\t\t8105\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8033,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8106,\n\t\t\t8106\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8034,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8107,\n\t\t\t8107\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8035,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8108,\n\t\t\t8108\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8036,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8109,\n\t\t\t8109\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8037,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8110,\n\t\t\t8110\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8038,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8111,\n\t\t\t8111\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8039,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8112,\n\t\t\t8113\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8114,\n\t\t\t8114\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8048,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8115,\n\t\t\t8115\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8116,\n\t\t\t8116\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t940,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8117,\n\t\t\t8117\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8118,\n\t\t\t8118\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8119,\n\t\t\t8119\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8118,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8120,\n\t\t\t8120\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8121,\n\t\t\t8121\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8122,\n\t\t\t8122\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8048\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8123,\n\t\t\t8123\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t940\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8124,\n\t\t\t8124\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8125,\n\t\t\t8125\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t787\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8126,\n\t\t\t8126\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8127,\n\t\t\t8127\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t787\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8128,\n\t\t\t8128\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t834\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8129,\n\t\t\t8129\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t776,\n\t\t\t834\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8130,\n\t\t\t8130\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8052,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8131,\n\t\t\t8131\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8132,\n\t\t\t8132\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t942,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8133,\n\t\t\t8133\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8134,\n\t\t\t8134\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8135,\n\t\t\t8135\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8134,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8136,\n\t\t\t8136\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8050\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8137,\n\t\t\t8137\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t941\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8138,\n\t\t\t8138\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8052\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8139,\n\t\t\t8139\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t942\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8140,\n\t\t\t8140\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8141,\n\t\t\t8141\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t787,\n\t\t\t768\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8142,\n\t\t\t8142\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t787,\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8143,\n\t\t\t8143\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t787,\n\t\t\t834\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8144,\n\t\t\t8146\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8147,\n\t\t\t8147\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t912\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8148,\n\t\t\t8149\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8150,\n\t\t\t8151\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8152,\n\t\t\t8152\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8144\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8153,\n\t\t\t8153\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8145\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8154,\n\t\t\t8154\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8054\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8155,\n\t\t\t8155\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t943\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8156,\n\t\t\t8156\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8157,\n\t\t\t8157\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t788,\n\t\t\t768\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8158,\n\t\t\t8158\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t788,\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8159,\n\t\t\t8159\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t788,\n\t\t\t834\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8160,\n\t\t\t8162\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8163,\n\t\t\t8163\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t944\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8164,\n\t\t\t8167\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8168,\n\t\t\t8168\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8160\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8169,\n\t\t\t8169\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8161\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8170,\n\t\t\t8170\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8058\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8171,\n\t\t\t8171\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t973\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8172,\n\t\t\t8172\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8165\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8173,\n\t\t\t8173\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t776,\n\t\t\t768\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8174,\n\t\t\t8174\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t776,\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8175,\n\t\t\t8175\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t96\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8176,\n\t\t\t8177\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8178,\n\t\t\t8178\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8060,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8179,\n\t\t\t8179\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8180,\n\t\t\t8180\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t974,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8181,\n\t\t\t8181\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8182,\n\t\t\t8182\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8183,\n\t\t\t8183\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8182,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8184,\n\t\t\t8184\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8056\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8185,\n\t\t\t8185\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t972\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8186,\n\t\t\t8186\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8060\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8187,\n\t\t\t8187\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t974\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8188,\n\t\t\t8188\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969,\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8189,\n\t\t\t8189\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8190,\n\t\t\t8190\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t788\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8191,\n\t\t\t8191\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8192,\n\t\t\t8202\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8203,\n\t\t\t8203\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t8204,\n\t\t\t8205\n\t\t],\n\t\t\"deviation\",\n\t\t[\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8206,\n\t\t\t8207\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8208,\n\t\t\t8208\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8209,\n\t\t\t8209\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8208\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8210,\n\t\t\t8214\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8215,\n\t\t\t8215\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t819\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8216,\n\t\t\t8227\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8228,\n\t\t\t8230\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8231,\n\t\t\t8231\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8232,\n\t\t\t8238\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8239,\n\t\t\t8239\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8240,\n\t\t\t8242\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8243,\n\t\t\t8243\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8242,\n\t\t\t8242\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8244,\n\t\t\t8244\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8242,\n\t\t\t8242,\n\t\t\t8242\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8245,\n\t\t\t8245\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8246,\n\t\t\t8246\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8245,\n\t\t\t8245\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8247,\n\t\t\t8247\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8245,\n\t\t\t8245,\n\t\t\t8245\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8248,\n\t\t\t8251\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8252,\n\t\t\t8252\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t33,\n\t\t\t33\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8253,\n\t\t\t8253\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8254,\n\t\t\t8254\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t773\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8255,\n\t\t\t8262\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8263,\n\t\t\t8263\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t63,\n\t\t\t63\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8264,\n\t\t\t8264\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t63,\n\t\t\t33\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8265,\n\t\t\t8265\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t33,\n\t\t\t63\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8266,\n\t\t\t8269\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8270,\n\t\t\t8274\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8275,\n\t\t\t8276\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8277,\n\t\t\t8278\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8279,\n\t\t\t8279\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8242,\n\t\t\t8242,\n\t\t\t8242,\n\t\t\t8242\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8280,\n\t\t\t8286\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8287,\n\t\t\t8287\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8288,\n\t\t\t8288\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t8289,\n\t\t\t8291\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8292,\n\t\t\t8292\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t8293,\n\t\t\t8293\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8294,\n\t\t\t8297\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8298,\n\t\t\t8303\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8304,\n\t\t\t8304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8305,\n\t\t\t8305\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8306,\n\t\t\t8307\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8308,\n\t\t\t8308\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8309,\n\t\t\t8309\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8310,\n\t\t\t8310\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8311,\n\t\t\t8311\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8312,\n\t\t\t8312\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8313,\n\t\t\t8313\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8314,\n\t\t\t8314\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t43\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8315,\n\t\t\t8315\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8722\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8316,\n\t\t\t8316\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t61\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8317,\n\t\t\t8317\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8318,\n\t\t\t8318\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8319,\n\t\t\t8319\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8320,\n\t\t\t8320\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8321,\n\t\t\t8321\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8322,\n\t\t\t8322\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8323,\n\t\t\t8323\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8324,\n\t\t\t8324\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8325,\n\t\t\t8325\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8326,\n\t\t\t8326\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8327,\n\t\t\t8327\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8328,\n\t\t\t8328\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8329,\n\t\t\t8329\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8330,\n\t\t\t8330\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t43\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8331,\n\t\t\t8331\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8722\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8332,\n\t\t\t8332\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t61\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8333,\n\t\t\t8333\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8334,\n\t\t\t8334\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8335,\n\t\t\t8335\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8336,\n\t\t\t8336\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8337,\n\t\t\t8337\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8338,\n\t\t\t8338\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8339,\n\t\t\t8339\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8340,\n\t\t\t8340\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8341,\n\t\t\t8341\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8342,\n\t\t\t8342\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8343,\n\t\t\t8343\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8344,\n\t\t\t8344\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8345,\n\t\t\t8345\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8346,\n\t\t\t8346\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8347,\n\t\t\t8347\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8348,\n\t\t\t8348\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8349,\n\t\t\t8351\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8352,\n\t\t\t8359\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8360,\n\t\t\t8360\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8361,\n\t\t\t8362\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8363,\n\t\t\t8363\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8364,\n\t\t\t8364\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8365,\n\t\t\t8367\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8368,\n\t\t\t8369\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8370,\n\t\t\t8373\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8374,\n\t\t\t8376\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8377,\n\t\t\t8377\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8378,\n\t\t\t8378\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8379,\n\t\t\t8381\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8382,\n\t\t\t8382\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8383,\n\t\t\t8399\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8400,\n\t\t\t8417\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8418,\n\t\t\t8419\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8420,\n\t\t\t8426\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8427,\n\t\t\t8427\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8428,\n\t\t\t8431\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8432,\n\t\t\t8432\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8433,\n\t\t\t8447\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8448,\n\t\t\t8448\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t97,\n\t\t\t47,\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8449,\n\t\t\t8449\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t97,\n\t\t\t47,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8450,\n\t\t\t8450\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8451,\n\t\t\t8451\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t176,\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8452,\n\t\t\t8452\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8453,\n\t\t\t8453\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t47,\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8454,\n\t\t\t8454\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t47,\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8455,\n\t\t\t8455\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8456,\n\t\t\t8456\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8457,\n\t\t\t8457\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t176,\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8458,\n\t\t\t8458\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8459,\n\t\t\t8462\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8463,\n\t\t\t8463\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t295\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8464,\n\t\t\t8465\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8466,\n\t\t\t8467\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8468,\n\t\t\t8468\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8469,\n\t\t\t8469\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8470,\n\t\t\t8470\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110,\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8471,\n\t\t\t8472\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8473,\n\t\t\t8473\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8474,\n\t\t\t8474\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8475,\n\t\t\t8477\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8478,\n\t\t\t8479\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8480,\n\t\t\t8480\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8481,\n\t\t\t8481\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116,\n\t\t\t101,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8482,\n\t\t\t8482\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8483,\n\t\t\t8483\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8484,\n\t\t\t8484\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8485,\n\t\t\t8485\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8486,\n\t\t\t8486\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8487,\n\t\t\t8487\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8488,\n\t\t\t8488\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8489,\n\t\t\t8489\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8490,\n\t\t\t8490\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8491,\n\t\t\t8491\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t229\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8492,\n\t\t\t8492\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8493,\n\t\t\t8493\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8494,\n\t\t\t8494\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8495,\n\t\t\t8496\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8497,\n\t\t\t8497\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8498,\n\t\t\t8498\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8499,\n\t\t\t8499\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8500,\n\t\t\t8500\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8501,\n\t\t\t8501\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8502,\n\t\t\t8502\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8503,\n\t\t\t8503\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1490\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8504,\n\t\t\t8504\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8505,\n\t\t\t8505\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8506,\n\t\t\t8506\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8507,\n\t\t\t8507\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102,\n\t\t\t97,\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8508,\n\t\t\t8508\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8509,\n\t\t\t8510\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8511,\n\t\t\t8511\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8512,\n\t\t\t8512\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8721\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8513,\n\t\t\t8516\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8517,\n\t\t\t8518\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8519,\n\t\t\t8519\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8520,\n\t\t\t8520\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8521,\n\t\t\t8521\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8522,\n\t\t\t8523\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8524,\n\t\t\t8524\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8525,\n\t\t\t8525\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8526,\n\t\t\t8526\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8527,\n\t\t\t8527\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8528,\n\t\t\t8528\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8529,\n\t\t\t8529\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8530,\n\t\t\t8530\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t49,\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8531,\n\t\t\t8531\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8532,\n\t\t\t8532\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t8260,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8533,\n\t\t\t8533\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8534,\n\t\t\t8534\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t8260,\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8535,\n\t\t\t8535\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t8260,\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8536,\n\t\t\t8536\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t8260,\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8537,\n\t\t\t8537\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8538,\n\t\t\t8538\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53,\n\t\t\t8260,\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8539,\n\t\t\t8539\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260,\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8540,\n\t\t\t8540\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t8260,\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8541,\n\t\t\t8541\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53,\n\t\t\t8260,\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8542,\n\t\t\t8542\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55,\n\t\t\t8260,\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8543,\n\t\t\t8543\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t8260\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8544,\n\t\t\t8544\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8545,\n\t\t\t8545\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8546,\n\t\t\t8546\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8547,\n\t\t\t8547\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8548,\n\t\t\t8548\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8549,\n\t\t\t8549\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8550,\n\t\t\t8550\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118,\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8551,\n\t\t\t8551\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118,\n\t\t\t105,\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8552,\n\t\t\t8552\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8553,\n\t\t\t8553\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8554,\n\t\t\t8554\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8555,\n\t\t\t8555\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120,\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8556,\n\t\t\t8556\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8557,\n\t\t\t8557\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8558,\n\t\t\t8558\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8559,\n\t\t\t8559\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8560,\n\t\t\t8560\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8561,\n\t\t\t8561\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8562,\n\t\t\t8562\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8563,\n\t\t\t8563\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8564,\n\t\t\t8564\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8565,\n\t\t\t8565\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8566,\n\t\t\t8566\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118,\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8567,\n\t\t\t8567\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118,\n\t\t\t105,\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8568,\n\t\t\t8568\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8569,\n\t\t\t8569\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8570,\n\t\t\t8570\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8571,\n\t\t\t8571\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120,\n\t\t\t105,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8572,\n\t\t\t8572\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8573,\n\t\t\t8573\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8574,\n\t\t\t8574\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8575,\n\t\t\t8575\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8576,\n\t\t\t8578\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8579,\n\t\t\t8579\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8580,\n\t\t\t8580\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8581,\n\t\t\t8584\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8585,\n\t\t\t8585\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48,\n\t\t\t8260,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8586,\n\t\t\t8587\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8588,\n\t\t\t8591\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t8592,\n\t\t\t8682\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8683,\n\t\t\t8691\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8692,\n\t\t\t8703\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8704,\n\t\t\t8747\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8748,\n\t\t\t8748\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8747,\n\t\t\t8747\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8749,\n\t\t\t8749\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8747,\n\t\t\t8747,\n\t\t\t8747\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8750,\n\t\t\t8750\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8751,\n\t\t\t8751\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8750,\n\t\t\t8750\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8752,\n\t\t\t8752\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8750,\n\t\t\t8750,\n\t\t\t8750\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t8753,\n\t\t\t8799\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8800,\n\t\t\t8800\n\t\t],\n\t\t\"disallowed_STD3_valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8801,\n\t\t\t8813\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8814,\n\t\t\t8815\n\t\t],\n\t\t\"disallowed_STD3_valid\"\n\t],\n\t[\n\t\t[\n\t\t\t8816,\n\t\t\t8945\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8946,\n\t\t\t8959\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8960,\n\t\t\t8960\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8961,\n\t\t\t8961\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t8962,\n\t\t\t9000\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9001,\n\t\t\t9001\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12296\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9002,\n\t\t\t9002\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12297\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9003,\n\t\t\t9082\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9083,\n\t\t\t9083\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9084,\n\t\t\t9084\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9085,\n\t\t\t9114\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9115,\n\t\t\t9166\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9167,\n\t\t\t9168\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9169,\n\t\t\t9179\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9180,\n\t\t\t9191\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9192,\n\t\t\t9192\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9193,\n\t\t\t9203\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9204,\n\t\t\t9210\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9211,\n\t\t\t9215\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t9216,\n\t\t\t9252\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9253,\n\t\t\t9254\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9255,\n\t\t\t9279\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t9280,\n\t\t\t9290\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9291,\n\t\t\t9311\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t9312,\n\t\t\t9312\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9313,\n\t\t\t9313\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9314,\n\t\t\t9314\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9315,\n\t\t\t9315\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9316,\n\t\t\t9316\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9317,\n\t\t\t9317\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9318,\n\t\t\t9318\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9319,\n\t\t\t9319\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9320,\n\t\t\t9320\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9321,\n\t\t\t9321\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9322,\n\t\t\t9322\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9323,\n\t\t\t9323\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9324,\n\t\t\t9324\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9325,\n\t\t\t9325\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9326,\n\t\t\t9326\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9327,\n\t\t\t9327\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9328,\n\t\t\t9328\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9329,\n\t\t\t9329\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9330,\n\t\t\t9330\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9331,\n\t\t\t9331\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9332,\n\t\t\t9332\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9333,\n\t\t\t9333\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t50,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9334,\n\t\t\t9334\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t51,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9335,\n\t\t\t9335\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t52,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9336,\n\t\t\t9336\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t53,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9337,\n\t\t\t9337\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t54,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9338,\n\t\t\t9338\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t55,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9339,\n\t\t\t9339\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t56,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9340,\n\t\t\t9340\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t57,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9341,\n\t\t\t9341\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t48,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9342,\n\t\t\t9342\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t49,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9343,\n\t\t\t9343\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t50,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9344,\n\t\t\t9344\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t51,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9345,\n\t\t\t9345\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t52,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9346,\n\t\t\t9346\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t53,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9347,\n\t\t\t9347\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t54,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9348,\n\t\t\t9348\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t55,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9349,\n\t\t\t9349\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t56,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9350,\n\t\t\t9350\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49,\n\t\t\t57,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9351,\n\t\t\t9351\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t50,\n\t\t\t48,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9352,\n\t\t\t9371\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t9372,\n\t\t\t9372\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t97,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9373,\n\t\t\t9373\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t98,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9374,\n\t\t\t9374\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t99,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9375,\n\t\t\t9375\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t100,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9376,\n\t\t\t9376\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t101,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9377,\n\t\t\t9377\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t102,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9378,\n\t\t\t9378\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t103,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9379,\n\t\t\t9379\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t104,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9380,\n\t\t\t9380\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t105,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9381,\n\t\t\t9381\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t106,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9382,\n\t\t\t9382\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t107,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9383,\n\t\t\t9383\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t108,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9384,\n\t\t\t9384\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t109,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9385,\n\t\t\t9385\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t110,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9386,\n\t\t\t9386\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t111,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9387,\n\t\t\t9387\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t112,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9388,\n\t\t\t9388\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t113,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9389,\n\t\t\t9389\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t114,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9390,\n\t\t\t9390\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t115,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9391,\n\t\t\t9391\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t116,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9392,\n\t\t\t9392\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t117,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9393,\n\t\t\t9393\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t118,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9394,\n\t\t\t9394\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t119,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9395,\n\t\t\t9395\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t120,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9396,\n\t\t\t9396\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t121,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9397,\n\t\t\t9397\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t122,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9398,\n\t\t\t9398\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9399,\n\t\t\t9399\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9400,\n\t\t\t9400\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9401,\n\t\t\t9401\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9402,\n\t\t\t9402\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9403,\n\t\t\t9403\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9404,\n\t\t\t9404\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9405,\n\t\t\t9405\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9406,\n\t\t\t9406\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9407,\n\t\t\t9407\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9408,\n\t\t\t9408\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9409,\n\t\t\t9409\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9410,\n\t\t\t9410\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9411,\n\t\t\t9411\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9412,\n\t\t\t9412\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9413,\n\t\t\t9413\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9414,\n\t\t\t9414\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9415,\n\t\t\t9415\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9416,\n\t\t\t9416\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9417,\n\t\t\t9417\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9418,\n\t\t\t9418\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9419,\n\t\t\t9419\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9420,\n\t\t\t9420\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9421,\n\t\t\t9421\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9422,\n\t\t\t9422\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9423,\n\t\t\t9423\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9424,\n\t\t\t9424\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9425,\n\t\t\t9425\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9426,\n\t\t\t9426\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9427,\n\t\t\t9427\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9428,\n\t\t\t9428\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9429,\n\t\t\t9429\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9430,\n\t\t\t9430\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9431,\n\t\t\t9431\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9432,\n\t\t\t9432\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9433,\n\t\t\t9433\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9434,\n\t\t\t9434\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9435,\n\t\t\t9435\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9436,\n\t\t\t9436\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9437,\n\t\t\t9437\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9438,\n\t\t\t9438\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9439,\n\t\t\t9439\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9440,\n\t\t\t9440\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9441,\n\t\t\t9441\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9442,\n\t\t\t9442\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9443,\n\t\t\t9443\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9444,\n\t\t\t9444\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9445,\n\t\t\t9445\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9446,\n\t\t\t9446\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9447,\n\t\t\t9447\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9448,\n\t\t\t9448\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9449,\n\t\t\t9449\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9450,\n\t\t\t9450\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t9451,\n\t\t\t9470\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9471,\n\t\t\t9471\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9472,\n\t\t\t9621\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9622,\n\t\t\t9631\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9632,\n\t\t\t9711\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9712,\n\t\t\t9719\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9720,\n\t\t\t9727\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9728,\n\t\t\t9747\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9748,\n\t\t\t9749\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9750,\n\t\t\t9751\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9752,\n\t\t\t9752\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9753,\n\t\t\t9753\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9754,\n\t\t\t9839\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9840,\n\t\t\t9841\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9842,\n\t\t\t9853\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9854,\n\t\t\t9855\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9856,\n\t\t\t9865\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9866,\n\t\t\t9873\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9874,\n\t\t\t9884\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9885,\n\t\t\t9885\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9886,\n\t\t\t9887\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9888,\n\t\t\t9889\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9890,\n\t\t\t9905\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9906,\n\t\t\t9906\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9907,\n\t\t\t9916\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9917,\n\t\t\t9919\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9920,\n\t\t\t9923\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9924,\n\t\t\t9933\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9934,\n\t\t\t9934\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9935,\n\t\t\t9953\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9954,\n\t\t\t9954\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9955,\n\t\t\t9955\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9956,\n\t\t\t9959\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9960,\n\t\t\t9983\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9984,\n\t\t\t9984\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9985,\n\t\t\t9988\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9989,\n\t\t\t9989\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9990,\n\t\t\t9993\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9994,\n\t\t\t9995\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t9996,\n\t\t\t10023\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10024,\n\t\t\t10024\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10025,\n\t\t\t10059\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10060,\n\t\t\t10060\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10061,\n\t\t\t10061\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10062,\n\t\t\t10062\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10063,\n\t\t\t10066\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10067,\n\t\t\t10069\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10070,\n\t\t\t10070\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10071,\n\t\t\t10071\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10072,\n\t\t\t10078\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10079,\n\t\t\t10080\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10081,\n\t\t\t10087\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10088,\n\t\t\t10101\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10102,\n\t\t\t10132\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10133,\n\t\t\t10135\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10136,\n\t\t\t10159\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10160,\n\t\t\t10160\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10161,\n\t\t\t10174\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10175,\n\t\t\t10175\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10176,\n\t\t\t10182\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10183,\n\t\t\t10186\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10187,\n\t\t\t10187\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10188,\n\t\t\t10188\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10189,\n\t\t\t10189\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10190,\n\t\t\t10191\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10192,\n\t\t\t10219\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10220,\n\t\t\t10223\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10224,\n\t\t\t10239\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10240,\n\t\t\t10495\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10496,\n\t\t\t10763\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10764,\n\t\t\t10764\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8747,\n\t\t\t8747,\n\t\t\t8747,\n\t\t\t8747\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t10765,\n\t\t\t10867\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10868,\n\t\t\t10868\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t58,\n\t\t\t58,\n\t\t\t61\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t10869,\n\t\t\t10869\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t61,\n\t\t\t61\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t10870,\n\t\t\t10870\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t61,\n\t\t\t61,\n\t\t\t61\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t10871,\n\t\t\t10971\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t10972,\n\t\t\t10972\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t10973,\n\t\t\t824\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t10973,\n\t\t\t11007\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11008,\n\t\t\t11021\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11022,\n\t\t\t11027\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11028,\n\t\t\t11034\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11035,\n\t\t\t11039\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11040,\n\t\t\t11043\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11044,\n\t\t\t11084\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11085,\n\t\t\t11087\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11088,\n\t\t\t11092\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11093,\n\t\t\t11097\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11098,\n\t\t\t11123\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11124,\n\t\t\t11125\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11126,\n\t\t\t11157\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11158,\n\t\t\t11159\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11160,\n\t\t\t11193\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11194,\n\t\t\t11196\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11197,\n\t\t\t11208\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11209,\n\t\t\t11209\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11210,\n\t\t\t11217\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11218,\n\t\t\t11243\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11244,\n\t\t\t11247\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11248,\n\t\t\t11263\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11264,\n\t\t\t11264\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11312\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11265,\n\t\t\t11265\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11313\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11266,\n\t\t\t11266\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11314\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11267,\n\t\t\t11267\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11315\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11268,\n\t\t\t11268\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11316\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11269,\n\t\t\t11269\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11317\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11270,\n\t\t\t11270\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11318\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11271,\n\t\t\t11271\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11319\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11272,\n\t\t\t11272\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11320\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11273,\n\t\t\t11273\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11321\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11274,\n\t\t\t11274\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11322\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11275,\n\t\t\t11275\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11323\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11276,\n\t\t\t11276\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11324\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11277,\n\t\t\t11277\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11325\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11278,\n\t\t\t11278\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11326\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11279,\n\t\t\t11279\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11327\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11280,\n\t\t\t11280\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11328\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11281,\n\t\t\t11281\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11329\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11282,\n\t\t\t11282\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11330\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11283,\n\t\t\t11283\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11331\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11284,\n\t\t\t11284\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11332\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11285,\n\t\t\t11285\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11333\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11286,\n\t\t\t11286\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11334\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11287,\n\t\t\t11287\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11335\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11288,\n\t\t\t11288\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11336\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11289,\n\t\t\t11289\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11337\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11290,\n\t\t\t11290\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11338\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11291,\n\t\t\t11291\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11339\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11292,\n\t\t\t11292\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11340\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11293,\n\t\t\t11293\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11341\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11294,\n\t\t\t11294\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11342\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11295,\n\t\t\t11295\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11343\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11296,\n\t\t\t11296\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11344\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11297,\n\t\t\t11297\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11345\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11298,\n\t\t\t11298\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11346\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11299,\n\t\t\t11299\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11347\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11300,\n\t\t\t11300\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11348\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11301,\n\t\t\t11301\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11349\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11302,\n\t\t\t11302\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11350\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11303,\n\t\t\t11303\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11351\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11304,\n\t\t\t11304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11352\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11305,\n\t\t\t11305\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11353\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11306,\n\t\t\t11306\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11354\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11307,\n\t\t\t11307\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11355\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11308,\n\t\t\t11308\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11356\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11309,\n\t\t\t11309\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11357\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11310,\n\t\t\t11310\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11358\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11311,\n\t\t\t11311\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11312,\n\t\t\t11358\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11359,\n\t\t\t11359\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11360,\n\t\t\t11360\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11361\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11361,\n\t\t\t11361\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11362,\n\t\t\t11362\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t619\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11363,\n\t\t\t11363\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7549\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11364,\n\t\t\t11364\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t637\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11365,\n\t\t\t11366\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11367,\n\t\t\t11367\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11368\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11368,\n\t\t\t11368\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11369,\n\t\t\t11369\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11370\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11370,\n\t\t\t11370\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11371,\n\t\t\t11371\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11372\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11372,\n\t\t\t11372\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11373,\n\t\t\t11373\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11374,\n\t\t\t11374\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t625\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11375,\n\t\t\t11375\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11376,\n\t\t\t11376\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11377,\n\t\t\t11377\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11378,\n\t\t\t11378\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11379\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11379,\n\t\t\t11379\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11380,\n\t\t\t11380\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11381,\n\t\t\t11381\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11382\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11382,\n\t\t\t11383\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11384,\n\t\t\t11387\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11388,\n\t\t\t11388\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11389,\n\t\t\t11389\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11390,\n\t\t\t11390\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11391,\n\t\t\t11391\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11392,\n\t\t\t11392\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11393\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11393,\n\t\t\t11393\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11394,\n\t\t\t11394\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11395\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11395,\n\t\t\t11395\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11396,\n\t\t\t11396\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11397\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11397,\n\t\t\t11397\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11398,\n\t\t\t11398\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11399\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11399,\n\t\t\t11399\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11400,\n\t\t\t11400\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11401\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11401,\n\t\t\t11401\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11402,\n\t\t\t11402\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11403\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11403,\n\t\t\t11403\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11404,\n\t\t\t11404\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11405\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11405,\n\t\t\t11405\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11406,\n\t\t\t11406\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11407\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11407,\n\t\t\t11407\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11408,\n\t\t\t11408\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11409\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11409,\n\t\t\t11409\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11410,\n\t\t\t11410\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11411\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11411,\n\t\t\t11411\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11412,\n\t\t\t11412\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11413\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11413,\n\t\t\t11413\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11414,\n\t\t\t11414\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11415\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11415,\n\t\t\t11415\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11416,\n\t\t\t11416\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11417\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11417,\n\t\t\t11417\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11418,\n\t\t\t11418\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11419\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11419,\n\t\t\t11419\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11420,\n\t\t\t11420\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11421\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11421,\n\t\t\t11421\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11422,\n\t\t\t11422\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11423\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11423,\n\t\t\t11423\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11424,\n\t\t\t11424\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11425\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11425,\n\t\t\t11425\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11426,\n\t\t\t11426\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11427\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11427,\n\t\t\t11427\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11428,\n\t\t\t11428\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11429\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11429,\n\t\t\t11429\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11430,\n\t\t\t11430\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11431\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11431,\n\t\t\t11431\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11432,\n\t\t\t11432\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11433\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11433,\n\t\t\t11433\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11434,\n\t\t\t11434\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11435\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11435,\n\t\t\t11435\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11436,\n\t\t\t11436\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11437\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11437,\n\t\t\t11437\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11438,\n\t\t\t11438\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11439\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11439,\n\t\t\t11439\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11440,\n\t\t\t11440\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11441\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11441,\n\t\t\t11441\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11442,\n\t\t\t11442\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11443\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11443,\n\t\t\t11443\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11444,\n\t\t\t11444\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11445\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11445,\n\t\t\t11445\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11446,\n\t\t\t11446\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11447\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11447,\n\t\t\t11447\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11448,\n\t\t\t11448\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11449\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11449,\n\t\t\t11449\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11450,\n\t\t\t11450\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11451\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11451,\n\t\t\t11451\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11452,\n\t\t\t11452\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11453\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11453,\n\t\t\t11453\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11454,\n\t\t\t11454\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11455\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11455,\n\t\t\t11455\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11456,\n\t\t\t11456\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11457\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11457,\n\t\t\t11457\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11458,\n\t\t\t11458\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11459\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11459,\n\t\t\t11459\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11460,\n\t\t\t11460\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11461\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11461,\n\t\t\t11461\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11462,\n\t\t\t11462\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11463\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11463,\n\t\t\t11463\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11464,\n\t\t\t11464\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11465\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11465,\n\t\t\t11465\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11466,\n\t\t\t11466\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11467\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11467,\n\t\t\t11467\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11468,\n\t\t\t11468\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11469\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11469,\n\t\t\t11469\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11470,\n\t\t\t11470\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11471,\n\t\t\t11471\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11472,\n\t\t\t11472\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11473,\n\t\t\t11473\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11474,\n\t\t\t11474\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11475\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11475,\n\t\t\t11475\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11476,\n\t\t\t11476\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11477\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11477,\n\t\t\t11477\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11478,\n\t\t\t11478\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11479\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11479,\n\t\t\t11479\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11480,\n\t\t\t11480\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11481\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11481,\n\t\t\t11481\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11482,\n\t\t\t11482\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11483\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11483,\n\t\t\t11483\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11484,\n\t\t\t11484\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11485\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11485,\n\t\t\t11485\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11486,\n\t\t\t11486\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11487\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11487,\n\t\t\t11487\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11488,\n\t\t\t11488\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11489,\n\t\t\t11489\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11490,\n\t\t\t11490\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11491,\n\t\t\t11492\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11493,\n\t\t\t11498\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11499,\n\t\t\t11499\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11500\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11500,\n\t\t\t11500\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11501,\n\t\t\t11501\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11502\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11502,\n\t\t\t11505\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11506,\n\t\t\t11506\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11507\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11507,\n\t\t\t11507\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11508,\n\t\t\t11512\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11513,\n\t\t\t11519\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11520,\n\t\t\t11557\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11558,\n\t\t\t11558\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11559,\n\t\t\t11559\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11560,\n\t\t\t11564\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11565,\n\t\t\t11565\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11566,\n\t\t\t11567\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11568,\n\t\t\t11621\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11622,\n\t\t\t11623\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11624,\n\t\t\t11630\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11631,\n\t\t\t11631\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t11617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11632,\n\t\t\t11632\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11633,\n\t\t\t11646\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11647,\n\t\t\t11647\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11648,\n\t\t\t11670\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11671,\n\t\t\t11679\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11680,\n\t\t\t11686\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11687,\n\t\t\t11687\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11688,\n\t\t\t11694\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11695,\n\t\t\t11695\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11696,\n\t\t\t11702\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11703,\n\t\t\t11703\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11704,\n\t\t\t11710\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11711,\n\t\t\t11711\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11712,\n\t\t\t11718\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11719,\n\t\t\t11719\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11720,\n\t\t\t11726\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11727,\n\t\t\t11727\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11728,\n\t\t\t11734\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11735,\n\t\t\t11735\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11736,\n\t\t\t11742\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11743,\n\t\t\t11743\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11744,\n\t\t\t11775\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11776,\n\t\t\t11799\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11800,\n\t\t\t11803\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11804,\n\t\t\t11805\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11806,\n\t\t\t11822\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11823,\n\t\t\t11823\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t11824,\n\t\t\t11824\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11825,\n\t\t\t11825\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11826,\n\t\t\t11835\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11836,\n\t\t\t11842\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11843,\n\t\t\t11903\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11904,\n\t\t\t11929\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11930,\n\t\t\t11930\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t11931,\n\t\t\t11934\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t11935,\n\t\t\t11935\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27597\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t11936,\n\t\t\t12018\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12019,\n\t\t\t12019\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40863\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12020,\n\t\t\t12031\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12032,\n\t\t\t12032\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12033,\n\t\t\t12033\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20008\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12034,\n\t\t\t12034\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20022\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12035,\n\t\t\t12035\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20031\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12036,\n\t\t\t12036\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20057\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12037,\n\t\t\t12037\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12038,\n\t\t\t12038\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12039,\n\t\t\t12039\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20128\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12040,\n\t\t\t12040\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20154\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12041,\n\t\t\t12041\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20799\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12042,\n\t\t\t12042\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20837\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12043,\n\t\t\t12043\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20843\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12044,\n\t\t\t12044\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20866\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12045,\n\t\t\t12045\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20886\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12046,\n\t\t\t12046\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20907\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12047,\n\t\t\t12047\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12048,\n\t\t\t12048\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20981\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12049,\n\t\t\t12049\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20992\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12050,\n\t\t\t12050\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21147\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12051,\n\t\t\t12051\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21241\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12052,\n\t\t\t12052\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21269\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12053,\n\t\t\t12053\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21274\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12054,\n\t\t\t12054\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21304\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12055,\n\t\t\t12055\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21313\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12056,\n\t\t\t12056\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21340\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12057,\n\t\t\t12057\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21353\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12058,\n\t\t\t12058\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21378\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12059,\n\t\t\t12059\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21430\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12060,\n\t\t\t12060\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21448\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12061,\n\t\t\t12061\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21475\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12062,\n\t\t\t12062\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22231\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12063,\n\t\t\t12063\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22303\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12064,\n\t\t\t12064\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22763\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12065,\n\t\t\t12065\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22786\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12066,\n\t\t\t12066\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22794\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12067,\n\t\t\t12067\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22805\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12068,\n\t\t\t12068\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22823\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12069,\n\t\t\t12069\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22899\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12070,\n\t\t\t12070\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12071,\n\t\t\t12071\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23424\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12072,\n\t\t\t12072\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23544\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12073,\n\t\t\t12073\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23567\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12074,\n\t\t\t12074\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12075,\n\t\t\t12075\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12076,\n\t\t\t12076\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23662\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12077,\n\t\t\t12077\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23665\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12078,\n\t\t\t12078\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24027\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12079,\n\t\t\t12079\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24037\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12080,\n\t\t\t12080\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24049\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12081,\n\t\t\t12081\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24062\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12082,\n\t\t\t12082\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24178\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12083,\n\t\t\t12083\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24186\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12084,\n\t\t\t12084\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24191\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12085,\n\t\t\t12085\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24308\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12086,\n\t\t\t12086\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24318\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12087,\n\t\t\t12087\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24331\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12088,\n\t\t\t12088\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24339\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12089,\n\t\t\t12089\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24400\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12090,\n\t\t\t12090\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24417\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12091,\n\t\t\t12091\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24435\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12092,\n\t\t\t12092\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24515\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12093,\n\t\t\t12093\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25096\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12094,\n\t\t\t12094\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25142\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12095,\n\t\t\t12095\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25163\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12096,\n\t\t\t12096\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25903\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12097,\n\t\t\t12097\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25908\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12098,\n\t\t\t12098\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25991\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12099,\n\t\t\t12099\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26007\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12100,\n\t\t\t12100\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26020\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12101,\n\t\t\t12101\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26041\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12102,\n\t\t\t12102\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26080\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12103,\n\t\t\t12103\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12104,\n\t\t\t12104\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26352\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12105,\n\t\t\t12105\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12106,\n\t\t\t12106\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26408\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12107,\n\t\t\t12107\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27424\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12108,\n\t\t\t12108\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27490\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12109,\n\t\t\t12109\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27513\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12110,\n\t\t\t12110\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27571\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12111,\n\t\t\t12111\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27595\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12112,\n\t\t\t12112\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12113,\n\t\t\t12113\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12114,\n\t\t\t12114\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27663\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12115,\n\t\t\t12115\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27668\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12116,\n\t\t\t12116\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27700\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12117,\n\t\t\t12117\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28779\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12118,\n\t\t\t12118\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29226\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12119,\n\t\t\t12119\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29238\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12120,\n\t\t\t12120\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29243\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12121,\n\t\t\t12121\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29247\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12122,\n\t\t\t12122\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29255\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12123,\n\t\t\t12123\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29273\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12124,\n\t\t\t12124\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29275\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12125,\n\t\t\t12125\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29356\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12126,\n\t\t\t12126\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29572\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12127,\n\t\t\t12127\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29577\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12128,\n\t\t\t12128\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29916\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12129,\n\t\t\t12129\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29926\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12130,\n\t\t\t12130\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29976\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12131,\n\t\t\t12131\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29983\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12132,\n\t\t\t12132\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29992\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12133,\n\t\t\t12133\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30000\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12134,\n\t\t\t12134\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30091\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12135,\n\t\t\t12135\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30098\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12136,\n\t\t\t12136\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30326\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12137,\n\t\t\t12137\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30333\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12138,\n\t\t\t12138\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30382\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12139,\n\t\t\t12139\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30399\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12140,\n\t\t\t12140\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30446\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12141,\n\t\t\t12141\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30683\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12142,\n\t\t\t12142\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30690\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12143,\n\t\t\t12143\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30707\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12144,\n\t\t\t12144\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31034\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12145,\n\t\t\t12145\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31160\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12146,\n\t\t\t12146\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31166\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12147,\n\t\t\t12147\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31348\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12148,\n\t\t\t12148\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31435\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12149,\n\t\t\t12149\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31481\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12150,\n\t\t\t12150\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31859\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12151,\n\t\t\t12151\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31992\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12152,\n\t\t\t12152\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32566\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12153,\n\t\t\t12153\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12154,\n\t\t\t12154\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32650\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12155,\n\t\t\t12155\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32701\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12156,\n\t\t\t12156\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12157,\n\t\t\t12157\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32780\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12158,\n\t\t\t12158\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32786\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12159,\n\t\t\t12159\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32819\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12160,\n\t\t\t12160\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32895\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12161,\n\t\t\t12161\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32905\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12162,\n\t\t\t12162\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33251\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12163,\n\t\t\t12163\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33258\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12164,\n\t\t\t12164\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33267\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12165,\n\t\t\t12165\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33276\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12166,\n\t\t\t12166\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33292\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12167,\n\t\t\t12167\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33307\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12168,\n\t\t\t12168\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33311\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12169,\n\t\t\t12169\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33390\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12170,\n\t\t\t12170\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33394\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12171,\n\t\t\t12171\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33400\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12172,\n\t\t\t12172\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34381\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12173,\n\t\t\t12173\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34411\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12174,\n\t\t\t12174\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34880\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12175,\n\t\t\t12175\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34892\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12176,\n\t\t\t12176\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34915\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12177,\n\t\t\t12177\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35198\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12178,\n\t\t\t12178\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35211\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12179,\n\t\t\t12179\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35282\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12180,\n\t\t\t12180\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35328\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12181,\n\t\t\t12181\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35895\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12182,\n\t\t\t12182\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35910\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12183,\n\t\t\t12183\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35925\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12184,\n\t\t\t12184\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12185,\n\t\t\t12185\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35997\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12186,\n\t\t\t12186\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36196\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12187,\n\t\t\t12187\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36208\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12188,\n\t\t\t12188\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36275\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12189,\n\t\t\t12189\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12190,\n\t\t\t12190\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36554\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12191,\n\t\t\t12191\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36763\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12192,\n\t\t\t12192\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36784\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12193,\n\t\t\t12193\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36789\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12194,\n\t\t\t12194\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37009\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12195,\n\t\t\t12195\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37193\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12196,\n\t\t\t12196\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37318\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12197,\n\t\t\t12197\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37324\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12198,\n\t\t\t12198\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37329\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12199,\n\t\t\t12199\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38263\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12200,\n\t\t\t12200\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38272\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12201,\n\t\t\t12201\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38428\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12202,\n\t\t\t12202\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12203,\n\t\t\t12203\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12204,\n\t\t\t12204\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38632\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12205,\n\t\t\t12205\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38737\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12206,\n\t\t\t12206\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38750\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12207,\n\t\t\t12207\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38754\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12208,\n\t\t\t12208\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38761\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12209,\n\t\t\t12209\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38859\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12210,\n\t\t\t12210\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38893\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12211,\n\t\t\t12211\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38899\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12212,\n\t\t\t12212\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38913\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12213,\n\t\t\t12213\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39080\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12214,\n\t\t\t12214\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39131\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12215,\n\t\t\t12215\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39135\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12216,\n\t\t\t12216\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39318\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12217,\n\t\t\t12217\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39321\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12218,\n\t\t\t12218\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39340\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12219,\n\t\t\t12219\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12220,\n\t\t\t12220\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39640\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12221,\n\t\t\t12221\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39647\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12222,\n\t\t\t12222\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39717\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12223,\n\t\t\t12223\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39727\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12224,\n\t\t\t12224\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39730\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12225,\n\t\t\t12225\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39740\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12226,\n\t\t\t12226\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39770\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12227,\n\t\t\t12227\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40165\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12228,\n\t\t\t12228\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40565\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12229,\n\t\t\t12229\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12230,\n\t\t\t12230\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40613\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12231,\n\t\t\t12231\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40635\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12232,\n\t\t\t12232\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40643\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12233,\n\t\t\t12233\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40653\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12234,\n\t\t\t12234\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40657\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12235,\n\t\t\t12235\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40697\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12236,\n\t\t\t12236\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40701\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12237,\n\t\t\t12237\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40718\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12238,\n\t\t\t12238\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40723\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12239,\n\t\t\t12239\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40736\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12240,\n\t\t\t12240\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40763\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12241,\n\t\t\t12241\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40778\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12242,\n\t\t\t12242\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40786\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12243,\n\t\t\t12243\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12244,\n\t\t\t12244\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40860\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12245,\n\t\t\t12245\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40864\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12246,\n\t\t\t12271\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12272,\n\t\t\t12283\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12284,\n\t\t\t12287\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12288,\n\t\t\t12288\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12289,\n\t\t\t12289\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12290,\n\t\t\t12290\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t46\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12291,\n\t\t\t12292\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12293,\n\t\t\t12295\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12296,\n\t\t\t12329\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12330,\n\t\t\t12333\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12334,\n\t\t\t12341\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12342,\n\t\t\t12342\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12306\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12343,\n\t\t\t12343\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12344,\n\t\t\t12344\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21313\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12345,\n\t\t\t12345\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21316\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12346,\n\t\t\t12346\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21317\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12347,\n\t\t\t12347\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12348,\n\t\t\t12348\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12349,\n\t\t\t12349\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12350,\n\t\t\t12350\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12351,\n\t\t\t12351\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12352,\n\t\t\t12352\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12353,\n\t\t\t12436\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12437,\n\t\t\t12438\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12439,\n\t\t\t12440\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12441,\n\t\t\t12442\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12443,\n\t\t\t12443\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t12441\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12444,\n\t\t\t12444\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t12442\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12445,\n\t\t\t12446\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12447,\n\t\t\t12447\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12424,\n\t\t\t12426\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12448,\n\t\t\t12448\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12449,\n\t\t\t12542\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12543,\n\t\t\t12543\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12467,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12544,\n\t\t\t12548\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12549,\n\t\t\t12588\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12589,\n\t\t\t12589\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12590,\n\t\t\t12592\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12593,\n\t\t\t12593\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4352\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12594,\n\t\t\t12594\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4353\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12595,\n\t\t\t12595\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4522\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12596,\n\t\t\t12596\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4354\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12597,\n\t\t\t12597\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4524\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12598,\n\t\t\t12598\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12599,\n\t\t\t12599\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4355\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12600,\n\t\t\t12600\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4356\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12601,\n\t\t\t12601\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4357\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12602,\n\t\t\t12602\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4528\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12603,\n\t\t\t12603\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4529\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12604,\n\t\t\t12604\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4530\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12605,\n\t\t\t12605\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12606,\n\t\t\t12606\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4532\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12607,\n\t\t\t12607\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4533\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12608,\n\t\t\t12608\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4378\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12609,\n\t\t\t12609\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4358\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12610,\n\t\t\t12610\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4359\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12611,\n\t\t\t12611\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4360\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12612,\n\t\t\t12612\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4385\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12613,\n\t\t\t12613\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4361\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12614,\n\t\t\t12614\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4362\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12615,\n\t\t\t12615\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12616,\n\t\t\t12616\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12617,\n\t\t\t12617\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4365\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12618,\n\t\t\t12618\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4366\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12619,\n\t\t\t12619\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4367\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12620,\n\t\t\t12620\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4368\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12621,\n\t\t\t12621\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4369\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12622,\n\t\t\t12622\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4370\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12623,\n\t\t\t12623\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4449\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12624,\n\t\t\t12624\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4450\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12625,\n\t\t\t12625\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4451\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12626,\n\t\t\t12626\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4452\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12627,\n\t\t\t12627\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4453\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12628,\n\t\t\t12628\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4454\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12629,\n\t\t\t12629\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4455\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12630,\n\t\t\t12630\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4456\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12631,\n\t\t\t12631\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4457\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12632,\n\t\t\t12632\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4458\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12633,\n\t\t\t12633\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4459\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12634,\n\t\t\t12634\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4460\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12635,\n\t\t\t12635\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4461\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12636,\n\t\t\t12636\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4462\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12637,\n\t\t\t12637\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4463\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12638,\n\t\t\t12638\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4464\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12639,\n\t\t\t12639\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4465\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12640,\n\t\t\t12640\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4466\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12641,\n\t\t\t12641\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4467\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12642,\n\t\t\t12642\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12643,\n\t\t\t12643\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4469\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12644,\n\t\t\t12644\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12645,\n\t\t\t12645\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4372\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12646,\n\t\t\t12646\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4373\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12647,\n\t\t\t12647\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4551\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12648,\n\t\t\t12648\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4552\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12649,\n\t\t\t12649\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4556\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12650,\n\t\t\t12650\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4558\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12651,\n\t\t\t12651\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4563\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12652,\n\t\t\t12652\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4567\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12653,\n\t\t\t12653\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4569\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12654,\n\t\t\t12654\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4380\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12655,\n\t\t\t12655\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4573\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12656,\n\t\t\t12656\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12657,\n\t\t\t12657\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4381\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12658,\n\t\t\t12658\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4382\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12659,\n\t\t\t12659\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4384\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12660,\n\t\t\t12660\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4386\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12661,\n\t\t\t12661\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4387\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12662,\n\t\t\t12662\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4391\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12663,\n\t\t\t12663\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4393\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12664,\n\t\t\t12664\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4395\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12665,\n\t\t\t12665\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4396\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12666,\n\t\t\t12666\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4397\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12667,\n\t\t\t12667\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4398\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12668,\n\t\t\t12668\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4399\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12669,\n\t\t\t12669\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4402\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12670,\n\t\t\t12670\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4406\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12671,\n\t\t\t12671\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4416\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12672,\n\t\t\t12672\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4423\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12673,\n\t\t\t12673\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4428\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12674,\n\t\t\t12674\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12675,\n\t\t\t12675\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12676,\n\t\t\t12676\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4439\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12677,\n\t\t\t12677\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4440\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12678,\n\t\t\t12678\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4441\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12679,\n\t\t\t12679\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4484\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12680,\n\t\t\t12680\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4485\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12681,\n\t\t\t12681\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12682,\n\t\t\t12682\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4497\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12683,\n\t\t\t12683\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4498\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12684,\n\t\t\t12684\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4500\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12685,\n\t\t\t12685\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4510\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12686,\n\t\t\t12686\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4513\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12687,\n\t\t\t12687\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12688,\n\t\t\t12689\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12690,\n\t\t\t12690\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12691,\n\t\t\t12691\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12692,\n\t\t\t12692\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19977\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12693,\n\t\t\t12693\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22235\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12694,\n\t\t\t12694\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19978\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12695,\n\t\t\t12695\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20013\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12696,\n\t\t\t12696\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19979\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12697,\n\t\t\t12697\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30002\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12698,\n\t\t\t12698\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20057\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12699,\n\t\t\t12699\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19993\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12700,\n\t\t\t12700\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12701,\n\t\t\t12701\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22825\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12702,\n\t\t\t12702\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22320\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12703,\n\t\t\t12703\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20154\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12704,\n\t\t\t12727\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12728,\n\t\t\t12730\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12731,\n\t\t\t12735\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12736,\n\t\t\t12751\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12752,\n\t\t\t12771\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12772,\n\t\t\t12783\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12784,\n\t\t\t12799\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t12800,\n\t\t\t12800\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4352,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12801,\n\t\t\t12801\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4354,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12802,\n\t\t\t12802\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4355,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12803,\n\t\t\t12803\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4357,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12804,\n\t\t\t12804\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4358,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12805,\n\t\t\t12805\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4359,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12806,\n\t\t\t12806\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4361,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12807,\n\t\t\t12807\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4363,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12808,\n\t\t\t12808\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4364,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12809,\n\t\t\t12809\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4366,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12810,\n\t\t\t12810\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4367,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12811,\n\t\t\t12811\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4368,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12812,\n\t\t\t12812\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4369,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12813,\n\t\t\t12813\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t4370,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12814,\n\t\t\t12814\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t44032,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12815,\n\t\t\t12815\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t45208,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12816,\n\t\t\t12816\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t45796,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12817,\n\t\t\t12817\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t46972,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12818,\n\t\t\t12818\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t47560,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12819,\n\t\t\t12819\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t48148,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12820,\n\t\t\t12820\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t49324,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12821,\n\t\t\t12821\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t50500,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12822,\n\t\t\t12822\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t51088,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12823,\n\t\t\t12823\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t52264,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12824,\n\t\t\t12824\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t52852,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12825,\n\t\t\t12825\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t53440,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12826,\n\t\t\t12826\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t54028,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12827,\n\t\t\t12827\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t54616,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12828,\n\t\t\t12828\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t51452,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12829,\n\t\t\t12829\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t50724,\n\t\t\t51204,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12830,\n\t\t\t12830\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t50724,\n\t\t\t54980,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12831,\n\t\t\t12831\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t12832,\n\t\t\t12832\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t19968,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12833,\n\t\t\t12833\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t20108,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12834,\n\t\t\t12834\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t19977,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12835,\n\t\t\t12835\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t22235,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12836,\n\t\t\t12836\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t20116,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12837,\n\t\t\t12837\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t20845,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12838,\n\t\t\t12838\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t19971,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12839,\n\t\t\t12839\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t20843,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12840,\n\t\t\t12840\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t20061,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12841,\n\t\t\t12841\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t21313,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12842,\n\t\t\t12842\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t26376,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12843,\n\t\t\t12843\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t28779,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12844,\n\t\t\t12844\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t27700,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12845,\n\t\t\t12845\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t26408,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12846,\n\t\t\t12846\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t37329,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12847,\n\t\t\t12847\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t22303,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12848,\n\t\t\t12848\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t26085,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12849,\n\t\t\t12849\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t26666,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12850,\n\t\t\t12850\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t26377,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12851,\n\t\t\t12851\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t31038,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12852,\n\t\t\t12852\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t21517,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12853,\n\t\t\t12853\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t29305,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12854,\n\t\t\t12854\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t36001,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12855,\n\t\t\t12855\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t31069,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12856,\n\t\t\t12856\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t21172,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12857,\n\t\t\t12857\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t20195,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12858,\n\t\t\t12858\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t21628,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12859,\n\t\t\t12859\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t23398,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12860,\n\t\t\t12860\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t30435,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12861,\n\t\t\t12861\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t20225,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12862,\n\t\t\t12862\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t36039,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12863,\n\t\t\t12863\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t21332,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12864,\n\t\t\t12864\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t31085,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12865,\n\t\t\t12865\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t20241,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12866,\n\t\t\t12866\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t33258,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12867,\n\t\t\t12867\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t33267,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12868,\n\t\t\t12868\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21839\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12869,\n\t\t\t12869\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24188\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12870,\n\t\t\t12870\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25991\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12871,\n\t\t\t12871\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31631\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12872,\n\t\t\t12879\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12880,\n\t\t\t12880\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t116,\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12881,\n\t\t\t12881\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12882,\n\t\t\t12882\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12883,\n\t\t\t12883\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12884,\n\t\t\t12884\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12885,\n\t\t\t12885\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12886,\n\t\t\t12886\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12887,\n\t\t\t12887\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12888,\n\t\t\t12888\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12889,\n\t\t\t12889\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12890,\n\t\t\t12890\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12891,\n\t\t\t12891\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12892,\n\t\t\t12892\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12893,\n\t\t\t12893\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12894,\n\t\t\t12894\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12895,\n\t\t\t12895\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12896,\n\t\t\t12896\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4352\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12897,\n\t\t\t12897\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4354\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12898,\n\t\t\t12898\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4355\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12899,\n\t\t\t12899\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4357\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12900,\n\t\t\t12900\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4358\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12901,\n\t\t\t12901\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4359\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12902,\n\t\t\t12902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4361\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12903,\n\t\t\t12903\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12904,\n\t\t\t12904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12905,\n\t\t\t12905\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4366\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12906,\n\t\t\t12906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4367\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12907,\n\t\t\t12907\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4368\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12908,\n\t\t\t12908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4369\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12909,\n\t\t\t12909\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4370\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12910,\n\t\t\t12910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t44032\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12911,\n\t\t\t12911\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t45208\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12912,\n\t\t\t12912\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t45796\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12913,\n\t\t\t12913\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t46972\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12914,\n\t\t\t12914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t47560\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12915,\n\t\t\t12915\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48148\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12916,\n\t\t\t12916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49324\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12917,\n\t\t\t12917\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50500\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12918,\n\t\t\t12918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51088\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12919,\n\t\t\t12919\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52264\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12920,\n\t\t\t12920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52852\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12921,\n\t\t\t12921\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53440\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12922,\n\t\t\t12922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54028\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12923,\n\t\t\t12923\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54616\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12924,\n\t\t\t12924\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52280,\n\t\t\t44256\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12925,\n\t\t\t12925\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51452,\n\t\t\t51032\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12926,\n\t\t\t12926\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50864\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12927,\n\t\t\t12927\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t12928,\n\t\t\t12928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12929,\n\t\t\t12929\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12930,\n\t\t\t12930\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19977\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12931,\n\t\t\t12931\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22235\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12932,\n\t\t\t12932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12933,\n\t\t\t12933\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12934,\n\t\t\t12934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19971\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12935,\n\t\t\t12935\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20843\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12936,\n\t\t\t12936\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20061\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12937,\n\t\t\t12937\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21313\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12938,\n\t\t\t12938\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12939,\n\t\t\t12939\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28779\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12940,\n\t\t\t12940\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27700\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12941,\n\t\t\t12941\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26408\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12942,\n\t\t\t12942\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37329\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12943,\n\t\t\t12943\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22303\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12944,\n\t\t\t12944\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12945,\n\t\t\t12945\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26666\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12946,\n\t\t\t12946\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26377\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12947,\n\t\t\t12947\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12948,\n\t\t\t12948\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21517\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12949,\n\t\t\t12949\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29305\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12950,\n\t\t\t12950\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36001\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12951,\n\t\t\t12951\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31069\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12952,\n\t\t\t12952\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21172\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12953,\n\t\t\t12953\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31192\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12954,\n\t\t\t12954\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30007\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12955,\n\t\t\t12955\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22899\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12956,\n\t\t\t12956\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12957,\n\t\t\t12957\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20778\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12958,\n\t\t\t12958\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21360\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12959,\n\t\t\t12959\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27880\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12960,\n\t\t\t12960\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38917\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12961,\n\t\t\t12961\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20241\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12962,\n\t\t\t12962\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20889\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12963,\n\t\t\t12963\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12964,\n\t\t\t12964\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19978\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12965,\n\t\t\t12965\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20013\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12966,\n\t\t\t12966\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19979\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12967,\n\t\t\t12967\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12968,\n\t\t\t12968\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12969,\n\t\t\t12969\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21307\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12970,\n\t\t\t12970\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23447\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12971,\n\t\t\t12971\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23398\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12972,\n\t\t\t12972\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30435\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12973,\n\t\t\t12973\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20225\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12974,\n\t\t\t12974\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36039\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12975,\n\t\t\t12975\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21332\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12976,\n\t\t\t12976\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22812\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12977,\n\t\t\t12977\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12978,\n\t\t\t12978\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12979,\n\t\t\t12979\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12980,\n\t\t\t12980\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12981,\n\t\t\t12981\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12982,\n\t\t\t12982\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12983,\n\t\t\t12983\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12984,\n\t\t\t12984\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12985,\n\t\t\t12985\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12986,\n\t\t\t12986\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12987,\n\t\t\t12987\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12988,\n\t\t\t12988\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12989,\n\t\t\t12989\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12990,\n\t\t\t12990\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12991,\n\t\t\t12991\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53,\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12992,\n\t\t\t12992\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12993,\n\t\t\t12993\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12994,\n\t\t\t12994\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12995,\n\t\t\t12995\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12996,\n\t\t\t12996\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12997,\n\t\t\t12997\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12998,\n\t\t\t12998\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t12999,\n\t\t\t12999\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13000,\n\t\t\t13000\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13001,\n\t\t\t13001\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t48,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13002,\n\t\t\t13002\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t49,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13003,\n\t\t\t13003\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t50,\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13004,\n\t\t\t13004\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104,\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13005,\n\t\t\t13005\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101,\n\t\t\t114,\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13006,\n\t\t\t13006\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13007,\n\t\t\t13007\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108,\n\t\t\t116,\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13008,\n\t\t\t13008\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12450\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13009,\n\t\t\t13009\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12452\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13010,\n\t\t\t13010\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12454\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13011,\n\t\t\t13011\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12456\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13012,\n\t\t\t13012\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12458\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13013,\n\t\t\t13013\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12459\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13014,\n\t\t\t13014\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12461\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13015,\n\t\t\t13015\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12463\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13016,\n\t\t\t13016\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12465\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13017,\n\t\t\t13017\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12467\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13018,\n\t\t\t13018\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12469\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13019,\n\t\t\t13019\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13020,\n\t\t\t13020\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13021,\n\t\t\t13021\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12475\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13022,\n\t\t\t13022\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12477\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13023,\n\t\t\t13023\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12479\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13024,\n\t\t\t13024\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12481\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13025,\n\t\t\t13025\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12484\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13026,\n\t\t\t13026\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12486\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13027,\n\t\t\t13027\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13028,\n\t\t\t13028\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12490\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13029,\n\t\t\t13029\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13030,\n\t\t\t13030\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12492\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13031,\n\t\t\t13031\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12493\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13032,\n\t\t\t13032\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12494\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13033,\n\t\t\t13033\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12495\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13034,\n\t\t\t13034\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12498\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13035,\n\t\t\t13035\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12501\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13036,\n\t\t\t13036\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12504\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13037,\n\t\t\t13037\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12507\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13038,\n\t\t\t13038\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12510\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13039,\n\t\t\t13039\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12511\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13040,\n\t\t\t13040\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13041,\n\t\t\t13041\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12513\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13042,\n\t\t\t13042\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12514\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13043,\n\t\t\t13043\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12516\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13044,\n\t\t\t13044\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12518\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13045,\n\t\t\t13045\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12520\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13046,\n\t\t\t13046\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12521\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13047,\n\t\t\t13047\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12522\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13048,\n\t\t\t13048\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13049,\n\t\t\t13049\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12524\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13050,\n\t\t\t13050\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13051,\n\t\t\t13051\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12527\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13052,\n\t\t\t13052\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12528\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13053,\n\t\t\t13053\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12529\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13054,\n\t\t\t13054\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12530\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13055,\n\t\t\t13055\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t13056,\n\t\t\t13056\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12450,\n\t\t\t12497,\n\t\t\t12540,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13057,\n\t\t\t13057\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12450,\n\t\t\t12523,\n\t\t\t12501,\n\t\t\t12449\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13058,\n\t\t\t13058\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12450,\n\t\t\t12531,\n\t\t\t12506,\n\t\t\t12450\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13059,\n\t\t\t13059\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12450,\n\t\t\t12540,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13060,\n\t\t\t13060\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12452,\n\t\t\t12491,\n\t\t\t12531,\n\t\t\t12464\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13061,\n\t\t\t13061\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12452,\n\t\t\t12531,\n\t\t\t12481\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13062,\n\t\t\t13062\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12454,\n\t\t\t12457,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13063,\n\t\t\t13063\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12456,\n\t\t\t12473,\n\t\t\t12463,\n\t\t\t12540,\n\t\t\t12489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13064,\n\t\t\t13064\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12456,\n\t\t\t12540,\n\t\t\t12459,\n\t\t\t12540\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13065,\n\t\t\t13065\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12458,\n\t\t\t12531,\n\t\t\t12473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13066,\n\t\t\t13066\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12458,\n\t\t\t12540,\n\t\t\t12512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13067,\n\t\t\t13067\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12459,\n\t\t\t12452,\n\t\t\t12522\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13068,\n\t\t\t13068\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12459,\n\t\t\t12521,\n\t\t\t12483,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13069,\n\t\t\t13069\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12459,\n\t\t\t12525,\n\t\t\t12522,\n\t\t\t12540\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13070,\n\t\t\t13070\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12460,\n\t\t\t12525,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13071,\n\t\t\t13071\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12460,\n\t\t\t12531,\n\t\t\t12510\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13072,\n\t\t\t13072\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12462,\n\t\t\t12460\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13073,\n\t\t\t13073\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12462,\n\t\t\t12491,\n\t\t\t12540\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13074,\n\t\t\t13074\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12461,\n\t\t\t12517,\n\t\t\t12522,\n\t\t\t12540\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13075,\n\t\t\t13075\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12462,\n\t\t\t12523,\n\t\t\t12480,\n\t\t\t12540\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13076,\n\t\t\t13076\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12461,\n\t\t\t12525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13077,\n\t\t\t13077\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12461,\n\t\t\t12525,\n\t\t\t12464,\n\t\t\t12521,\n\t\t\t12512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13078,\n\t\t\t13078\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12461,\n\t\t\t12525,\n\t\t\t12513,\n\t\t\t12540,\n\t\t\t12488,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13079,\n\t\t\t13079\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12461,\n\t\t\t12525,\n\t\t\t12527,\n\t\t\t12483,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13080,\n\t\t\t13080\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12464,\n\t\t\t12521,\n\t\t\t12512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13081,\n\t\t\t13081\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12464,\n\t\t\t12521,\n\t\t\t12512,\n\t\t\t12488,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13082,\n\t\t\t13082\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12463,\n\t\t\t12523,\n\t\t\t12476,\n\t\t\t12452,\n\t\t\t12525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13083,\n\t\t\t13083\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12463,\n\t\t\t12525,\n\t\t\t12540,\n\t\t\t12493\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13084,\n\t\t\t13084\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12465,\n\t\t\t12540,\n\t\t\t12473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13085,\n\t\t\t13085\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12467,\n\t\t\t12523,\n\t\t\t12490\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13086,\n\t\t\t13086\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12467,\n\t\t\t12540,\n\t\t\t12509\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13087,\n\t\t\t13087\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12469,\n\t\t\t12452,\n\t\t\t12463,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13088,\n\t\t\t13088\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12469,\n\t\t\t12531,\n\t\t\t12481,\n\t\t\t12540,\n\t\t\t12512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13089,\n\t\t\t13089\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12471,\n\t\t\t12522,\n\t\t\t12531,\n\t\t\t12464\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13090,\n\t\t\t13090\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12475,\n\t\t\t12531,\n\t\t\t12481\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13091,\n\t\t\t13091\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12475,\n\t\t\t12531,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13092,\n\t\t\t13092\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12480,\n\t\t\t12540,\n\t\t\t12473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13093,\n\t\t\t13093\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12487,\n\t\t\t12471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13094,\n\t\t\t13094\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12489,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13095,\n\t\t\t13095\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12488,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13096,\n\t\t\t13096\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12490,\n\t\t\t12494\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13097,\n\t\t\t13097\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12494,\n\t\t\t12483,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13098,\n\t\t\t13098\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12495,\n\t\t\t12452,\n\t\t\t12484\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13099,\n\t\t\t13099\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12497,\n\t\t\t12540,\n\t\t\t12475,\n\t\t\t12531,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13100,\n\t\t\t13100\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12497,\n\t\t\t12540,\n\t\t\t12484\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13101,\n\t\t\t13101\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12496,\n\t\t\t12540,\n\t\t\t12524,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13102,\n\t\t\t13102\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12500,\n\t\t\t12450,\n\t\t\t12473,\n\t\t\t12488,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13103,\n\t\t\t13103\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12500,\n\t\t\t12463,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13104,\n\t\t\t13104\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12500,\n\t\t\t12467\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13105,\n\t\t\t13105\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12499,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13106,\n\t\t\t13106\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12501,\n\t\t\t12449,\n\t\t\t12521,\n\t\t\t12483,\n\t\t\t12489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13107,\n\t\t\t13107\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12501,\n\t\t\t12451,\n\t\t\t12540,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13108,\n\t\t\t13108\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12502,\n\t\t\t12483,\n\t\t\t12471,\n\t\t\t12455,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13109,\n\t\t\t13109\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12501,\n\t\t\t12521,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13110,\n\t\t\t13110\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12504,\n\t\t\t12463,\n\t\t\t12479,\n\t\t\t12540,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13111,\n\t\t\t13111\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12506,\n\t\t\t12477\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13112,\n\t\t\t13112\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12506,\n\t\t\t12491,\n\t\t\t12498\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13113,\n\t\t\t13113\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12504,\n\t\t\t12523,\n\t\t\t12484\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13114,\n\t\t\t13114\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12506,\n\t\t\t12531,\n\t\t\t12473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13115,\n\t\t\t13115\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12506,\n\t\t\t12540,\n\t\t\t12472\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13116,\n\t\t\t13116\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12505,\n\t\t\t12540,\n\t\t\t12479\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13117,\n\t\t\t13117\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12509,\n\t\t\t12452,\n\t\t\t12531,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13118,\n\t\t\t13118\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12508,\n\t\t\t12523,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13119,\n\t\t\t13119\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12507,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13120,\n\t\t\t13120\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12509,\n\t\t\t12531,\n\t\t\t12489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13121,\n\t\t\t13121\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12507,\n\t\t\t12540,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13122,\n\t\t\t13122\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12507,\n\t\t\t12540,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13123,\n\t\t\t13123\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12510,\n\t\t\t12452,\n\t\t\t12463,\n\t\t\t12525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13124,\n\t\t\t13124\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12510,\n\t\t\t12452,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13125,\n\t\t\t13125\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12510,\n\t\t\t12483,\n\t\t\t12495\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13126,\n\t\t\t13126\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12510,\n\t\t\t12523,\n\t\t\t12463\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13127,\n\t\t\t13127\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12510,\n\t\t\t12531,\n\t\t\t12471,\n\t\t\t12519,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13128,\n\t\t\t13128\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12511,\n\t\t\t12463,\n\t\t\t12525,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13129,\n\t\t\t13129\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12511,\n\t\t\t12522\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13130,\n\t\t\t13130\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12511,\n\t\t\t12522,\n\t\t\t12496,\n\t\t\t12540,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13131,\n\t\t\t13131\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12513,\n\t\t\t12460\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13132,\n\t\t\t13132\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12513,\n\t\t\t12460,\n\t\t\t12488,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13133,\n\t\t\t13133\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12513,\n\t\t\t12540,\n\t\t\t12488,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13134,\n\t\t\t13134\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12516,\n\t\t\t12540,\n\t\t\t12489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13135,\n\t\t\t13135\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12516,\n\t\t\t12540,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13136,\n\t\t\t13136\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12518,\n\t\t\t12450,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13137,\n\t\t\t13137\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12522,\n\t\t\t12483,\n\t\t\t12488,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13138,\n\t\t\t13138\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12522,\n\t\t\t12521\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13139,\n\t\t\t13139\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12523,\n\t\t\t12500,\n\t\t\t12540\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13140,\n\t\t\t13140\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12523,\n\t\t\t12540,\n\t\t\t12502,\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13141,\n\t\t\t13141\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12524,\n\t\t\t12512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13142,\n\t\t\t13142\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12524,\n\t\t\t12531,\n\t\t\t12488,\n\t\t\t12466,\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13143,\n\t\t\t13143\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12527,\n\t\t\t12483,\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13144,\n\t\t\t13144\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13145,\n\t\t\t13145\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13146,\n\t\t\t13146\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13147,\n\t\t\t13147\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13148,\n\t\t\t13148\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13149,\n\t\t\t13149\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13150,\n\t\t\t13150\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13151,\n\t\t\t13151\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13152,\n\t\t\t13152\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13153,\n\t\t\t13153\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13154,\n\t\t\t13154\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t48,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13155,\n\t\t\t13155\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t49,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13156,\n\t\t\t13156\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t50,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13157,\n\t\t\t13157\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t51,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13158,\n\t\t\t13158\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t52,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13159,\n\t\t\t13159\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t53,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13160,\n\t\t\t13160\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t54,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13161,\n\t\t\t13161\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t55,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13162,\n\t\t\t13162\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t56,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13163,\n\t\t\t13163\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t57,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13164,\n\t\t\t13164\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t48,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13165,\n\t\t\t13165\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t49,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13166,\n\t\t\t13166\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t50,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13167,\n\t\t\t13167\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t51,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13168,\n\t\t\t13168\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t52,\n\t\t\t28857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13169,\n\t\t\t13169\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104,\n\t\t\t112,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13170,\n\t\t\t13170\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13171,\n\t\t\t13171\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97,\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13172,\n\t\t\t13172\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98,\n\t\t\t97,\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13173,\n\t\t\t13173\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13174,\n\t\t\t13174\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13175,\n\t\t\t13175\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13176,\n\t\t\t13176\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t109,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13177,\n\t\t\t13177\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t109,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13178,\n\t\t\t13178\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13179,\n\t\t\t13179\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24179,\n\t\t\t25104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13180,\n\t\t\t13180\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26157,\n\t\t\t21644\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13181,\n\t\t\t13181\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22823,\n\t\t\t27491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13182,\n\t\t\t13182\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26126,\n\t\t\t27835\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13183,\n\t\t\t13183\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26666,\n\t\t\t24335,\n\t\t\t20250,\n\t\t\t31038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13184,\n\t\t\t13184\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13185,\n\t\t\t13185\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13186,\n\t\t\t13186\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13187,\n\t\t\t13187\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13188,\n\t\t\t13188\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13189,\n\t\t\t13189\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13190,\n\t\t\t13190\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13191,\n\t\t\t13191\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103,\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13192,\n\t\t\t13192\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t97,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13193,\n\t\t\t13193\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t99,\n\t\t\t97,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13194,\n\t\t\t13194\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13195,\n\t\t\t13195\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110,\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13196,\n\t\t\t13196\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956,\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13197,\n\t\t\t13197\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956,\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13198,\n\t\t\t13198\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13199,\n\t\t\t13199\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13200,\n\t\t\t13200\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104,\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13201,\n\t\t\t13201\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t104,\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13202,\n\t\t\t13202\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t104,\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13203,\n\t\t\t13203\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103,\n\t\t\t104,\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13204,\n\t\t\t13204\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116,\n\t\t\t104,\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13205,\n\t\t\t13205\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13206,\n\t\t\t13206\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13207,\n\t\t\t13207\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13208,\n\t\t\t13208\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13209,\n\t\t\t13209\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13210,\n\t\t\t13210\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13211,\n\t\t\t13211\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13212,\n\t\t\t13212\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13213,\n\t\t\t13213\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13214,\n\t\t\t13214\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13215,\n\t\t\t13215\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t109,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13216,\n\t\t\t13216\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t109,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13217,\n\t\t\t13217\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13218,\n\t\t\t13218\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t109,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13219,\n\t\t\t13219\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t109,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13220,\n\t\t\t13220\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t109,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13221,\n\t\t\t13221\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13222,\n\t\t\t13222\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t109,\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13223,\n\t\t\t13223\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t8725,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13224,\n\t\t\t13224\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t8725,\n\t\t\t115,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13225,\n\t\t\t13225\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13226,\n\t\t\t13226\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t112,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13227,\n\t\t\t13227\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t112,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13228,\n\t\t\t13228\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103,\n\t\t\t112,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13229,\n\t\t\t13229\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114,\n\t\t\t97,\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13230,\n\t\t\t13230\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114,\n\t\t\t97,\n\t\t\t100,\n\t\t\t8725,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13231,\n\t\t\t13231\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114,\n\t\t\t97,\n\t\t\t100,\n\t\t\t8725,\n\t\t\t115,\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13232,\n\t\t\t13232\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13233,\n\t\t\t13233\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13234,\n\t\t\t13234\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13235,\n\t\t\t13235\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13236,\n\t\t\t13236\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13237,\n\t\t\t13237\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13238,\n\t\t\t13238\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13239,\n\t\t\t13239\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13240,\n\t\t\t13240\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13241,\n\t\t\t13241\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13242,\n\t\t\t13242\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13243,\n\t\t\t13243\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110,\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13244,\n\t\t\t13244\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956,\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13245,\n\t\t\t13245\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13246,\n\t\t\t13246\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13247,\n\t\t\t13247\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13248,\n\t\t\t13248\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13249,\n\t\t\t13249\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13250,\n\t\t\t13250\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t13251,\n\t\t\t13251\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98,\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13252,\n\t\t\t13252\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13253,\n\t\t\t13253\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13254,\n\t\t\t13254\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t8725,\n\t\t\t107,\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13255,\n\t\t\t13255\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t13256,\n\t\t\t13256\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13257,\n\t\t\t13257\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103,\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13258,\n\t\t\t13258\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104,\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13259,\n\t\t\t13259\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104,\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13260,\n\t\t\t13260\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105,\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13261,\n\t\t\t13261\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13262,\n\t\t\t13262\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13263,\n\t\t\t13263\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107,\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13264,\n\t\t\t13264\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13265,\n\t\t\t13265\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108,\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13266,\n\t\t\t13266\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108,\n\t\t\t111,\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13267,\n\t\t\t13267\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108,\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13268,\n\t\t\t13268\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13269,\n\t\t\t13269\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t105,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13270,\n\t\t\t13270\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t111,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13271,\n\t\t\t13271\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13272,\n\t\t\t13272\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t13273,\n\t\t\t13273\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t112,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13274,\n\t\t\t13274\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13275,\n\t\t\t13275\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115,\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13276,\n\t\t\t13276\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13277,\n\t\t\t13277\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119,\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13278,\n\t\t\t13278\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118,\n\t\t\t8725,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13279,\n\t\t\t13279\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97,\n\t\t\t8725,\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13280,\n\t\t\t13280\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13281,\n\t\t\t13281\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13282,\n\t\t\t13282\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13283,\n\t\t\t13283\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13284,\n\t\t\t13284\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13285,\n\t\t\t13285\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13286,\n\t\t\t13286\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13287,\n\t\t\t13287\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13288,\n\t\t\t13288\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13289,\n\t\t\t13289\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t48,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13290,\n\t\t\t13290\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t49,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13291,\n\t\t\t13291\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t50,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13292,\n\t\t\t13292\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t51,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13293,\n\t\t\t13293\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t52,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13294,\n\t\t\t13294\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t53,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13295,\n\t\t\t13295\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t54,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13296,\n\t\t\t13296\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t55,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13297,\n\t\t\t13297\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t56,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13298,\n\t\t\t13298\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t57,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13299,\n\t\t\t13299\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t48,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13300,\n\t\t\t13300\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t49,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13301,\n\t\t\t13301\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t50,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13302,\n\t\t\t13302\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t51,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13303,\n\t\t\t13303\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t52,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13304,\n\t\t\t13304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t53,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13305,\n\t\t\t13305\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t54,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13306,\n\t\t\t13306\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t55,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13307,\n\t\t\t13307\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t56,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13308,\n\t\t\t13308\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t57,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13309,\n\t\t\t13309\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t48,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13310,\n\t\t\t13310\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t49,\n\t\t\t26085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13311,\n\t\t\t13311\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103,\n\t\t\t97,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t13312,\n\t\t\t19893\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t19894,\n\t\t\t19903\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t19904,\n\t\t\t19967\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t19968,\n\t\t\t40869\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t40870,\n\t\t\t40891\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t40892,\n\t\t\t40899\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t40900,\n\t\t\t40907\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t40908,\n\t\t\t40908\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t40909,\n\t\t\t40917\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t40918,\n\t\t\t40959\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t40960,\n\t\t\t42124\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42125,\n\t\t\t42127\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t42128,\n\t\t\t42145\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42146,\n\t\t\t42147\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42148,\n\t\t\t42163\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42164,\n\t\t\t42164\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42165,\n\t\t\t42176\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42177,\n\t\t\t42177\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42178,\n\t\t\t42180\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42181,\n\t\t\t42181\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42182,\n\t\t\t42182\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42183,\n\t\t\t42191\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t42192,\n\t\t\t42237\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42238,\n\t\t\t42239\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42240,\n\t\t\t42508\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42509,\n\t\t\t42511\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42512,\n\t\t\t42539\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42540,\n\t\t\t42559\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t42560,\n\t\t\t42560\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42561\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42561,\n\t\t\t42561\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42562,\n\t\t\t42562\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42563\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42563,\n\t\t\t42563\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42564,\n\t\t\t42564\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42565\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42565,\n\t\t\t42565\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42566,\n\t\t\t42566\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42567\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42567,\n\t\t\t42567\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42568,\n\t\t\t42568\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42569\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42569,\n\t\t\t42569\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42570,\n\t\t\t42570\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42571\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42571,\n\t\t\t42571\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42572,\n\t\t\t42572\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42573\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42573,\n\t\t\t42573\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42574,\n\t\t\t42574\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42575,\n\t\t\t42575\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42576,\n\t\t\t42576\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42577\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42577,\n\t\t\t42577\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42578,\n\t\t\t42578\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42579,\n\t\t\t42579\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42580,\n\t\t\t42580\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42581,\n\t\t\t42581\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42582,\n\t\t\t42582\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42583\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42583,\n\t\t\t42583\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42584,\n\t\t\t42584\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42585,\n\t\t\t42585\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42586,\n\t\t\t42586\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42587,\n\t\t\t42587\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42588,\n\t\t\t42588\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42589,\n\t\t\t42589\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42590,\n\t\t\t42590\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42591\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42591,\n\t\t\t42591\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42592,\n\t\t\t42592\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42593,\n\t\t\t42593\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42594,\n\t\t\t42594\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42595\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42595,\n\t\t\t42595\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42596,\n\t\t\t42596\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42597\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42597,\n\t\t\t42597\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42598,\n\t\t\t42598\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42599\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42599,\n\t\t\t42599\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42600,\n\t\t\t42600\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42601,\n\t\t\t42601\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42602,\n\t\t\t42602\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42603,\n\t\t\t42603\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42604,\n\t\t\t42604\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42605,\n\t\t\t42607\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42608,\n\t\t\t42611\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42612,\n\t\t\t42619\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42620,\n\t\t\t42621\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42622,\n\t\t\t42622\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42623,\n\t\t\t42623\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42624,\n\t\t\t42624\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42625\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42625,\n\t\t\t42625\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42626,\n\t\t\t42626\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42627\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42627,\n\t\t\t42627\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42628,\n\t\t\t42628\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42629\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42629,\n\t\t\t42629\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42630,\n\t\t\t42630\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42631\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42631,\n\t\t\t42631\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42632,\n\t\t\t42632\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42633\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42633,\n\t\t\t42633\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42634,\n\t\t\t42634\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42635\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42635,\n\t\t\t42635\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42636,\n\t\t\t42636\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42637\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42637,\n\t\t\t42637\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42638,\n\t\t\t42638\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42639\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42639,\n\t\t\t42639\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42640,\n\t\t\t42640\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42641\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42641,\n\t\t\t42641\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42642,\n\t\t\t42642\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42643\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42643,\n\t\t\t42643\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42644,\n\t\t\t42644\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42645\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42645,\n\t\t\t42645\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42646,\n\t\t\t42646\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42647\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42647,\n\t\t\t42647\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42648,\n\t\t\t42648\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42649\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42649,\n\t\t\t42649\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42650,\n\t\t\t42650\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42651\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42651,\n\t\t\t42651\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42652,\n\t\t\t42652\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1098\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42653,\n\t\t\t42653\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42654,\n\t\t\t42654\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42655,\n\t\t\t42655\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42656,\n\t\t\t42725\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42726,\n\t\t\t42735\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42736,\n\t\t\t42737\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42738,\n\t\t\t42743\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42744,\n\t\t\t42751\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t42752,\n\t\t\t42774\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42775,\n\t\t\t42778\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42779,\n\t\t\t42783\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42784,\n\t\t\t42785\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42786,\n\t\t\t42786\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42787\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42787,\n\t\t\t42787\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42788,\n\t\t\t42788\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42789\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42789,\n\t\t\t42789\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42790,\n\t\t\t42790\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42791\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42791,\n\t\t\t42791\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42792,\n\t\t\t42792\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42793\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42793,\n\t\t\t42793\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42794,\n\t\t\t42794\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42795\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42795,\n\t\t\t42795\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42796,\n\t\t\t42796\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42797\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42797,\n\t\t\t42797\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42798,\n\t\t\t42798\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42799\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42799,\n\t\t\t42801\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42802,\n\t\t\t42802\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42803\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42803,\n\t\t\t42803\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42804,\n\t\t\t42804\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42805\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42805,\n\t\t\t42805\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42806,\n\t\t\t42806\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42807\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42807,\n\t\t\t42807\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42808,\n\t\t\t42808\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42809\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42809,\n\t\t\t42809\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42810,\n\t\t\t42810\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42811\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42811,\n\t\t\t42811\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42812,\n\t\t\t42812\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42813\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42813,\n\t\t\t42813\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42814,\n\t\t\t42814\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42815\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42815,\n\t\t\t42815\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42816,\n\t\t\t42816\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42817\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42817,\n\t\t\t42817\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42818,\n\t\t\t42818\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42819\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42819,\n\t\t\t42819\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42820,\n\t\t\t42820\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42821\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42821,\n\t\t\t42821\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42822,\n\t\t\t42822\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42823\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42823,\n\t\t\t42823\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42824,\n\t\t\t42824\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42825\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42825,\n\t\t\t42825\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42826,\n\t\t\t42826\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42827\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42827,\n\t\t\t42827\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42828,\n\t\t\t42828\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42829\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42829,\n\t\t\t42829\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42830,\n\t\t\t42830\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42831\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42831,\n\t\t\t42831\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42832,\n\t\t\t42832\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42833\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42833,\n\t\t\t42833\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42834,\n\t\t\t42834\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42835\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42835,\n\t\t\t42835\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42836,\n\t\t\t42836\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42837\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42837,\n\t\t\t42837\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42838,\n\t\t\t42838\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42839\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42839,\n\t\t\t42839\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42840,\n\t\t\t42840\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42841\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42841,\n\t\t\t42841\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42842,\n\t\t\t42842\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42843\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42843,\n\t\t\t42843\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42844,\n\t\t\t42844\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42845,\n\t\t\t42845\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42846,\n\t\t\t42846\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42847\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42847,\n\t\t\t42847\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42848,\n\t\t\t42848\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42849\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42849,\n\t\t\t42849\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42850,\n\t\t\t42850\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42851\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42851,\n\t\t\t42851\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42852,\n\t\t\t42852\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42853\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42853,\n\t\t\t42853\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42854,\n\t\t\t42854\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42855\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42855,\n\t\t\t42855\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42856,\n\t\t\t42856\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42857\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42857,\n\t\t\t42857\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42858,\n\t\t\t42858\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42859\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42859,\n\t\t\t42859\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42860,\n\t\t\t42860\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42861\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42861,\n\t\t\t42861\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42862,\n\t\t\t42862\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42863\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42863,\n\t\t\t42863\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42864,\n\t\t\t42864\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42863\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42865,\n\t\t\t42872\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42873,\n\t\t\t42873\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42874\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42874,\n\t\t\t42874\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42875,\n\t\t\t42875\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42876\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42876,\n\t\t\t42876\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42877,\n\t\t\t42877\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t7545\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42878,\n\t\t\t42878\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42879\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42879,\n\t\t\t42879\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42880,\n\t\t\t42880\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42881\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42881,\n\t\t\t42881\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42882,\n\t\t\t42882\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42883\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42883,\n\t\t\t42883\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42884,\n\t\t\t42884\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42885\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42885,\n\t\t\t42885\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42886,\n\t\t\t42886\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42887\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42887,\n\t\t\t42888\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42889,\n\t\t\t42890\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t42891,\n\t\t\t42891\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42892\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42892,\n\t\t\t42892\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42893,\n\t\t\t42893\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t613\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42894,\n\t\t\t42894\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42895,\n\t\t\t42895\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42896,\n\t\t\t42896\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42897\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42897,\n\t\t\t42897\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42898,\n\t\t\t42898\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42899\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42899,\n\t\t\t42899\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42900,\n\t\t\t42901\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42902,\n\t\t\t42902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42903\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42903,\n\t\t\t42903\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42904,\n\t\t\t42904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42905\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42905,\n\t\t\t42905\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42906,\n\t\t\t42906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42907\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42907,\n\t\t\t42907\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42908,\n\t\t\t42908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42909\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42909,\n\t\t\t42909\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42910,\n\t\t\t42910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42911\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42911,\n\t\t\t42911\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42912,\n\t\t\t42912\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42913\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42913,\n\t\t\t42913\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42914,\n\t\t\t42914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42915\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42915,\n\t\t\t42915\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42916,\n\t\t\t42916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42917\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42917,\n\t\t\t42917\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42918,\n\t\t\t42918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42919\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42919,\n\t\t\t42919\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42920,\n\t\t\t42920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42921\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42921,\n\t\t\t42921\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42922,\n\t\t\t42922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t614\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42923,\n\t\t\t42923\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42924,\n\t\t\t42924\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42925,\n\t\t\t42925\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42926,\n\t\t\t42927\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t42928,\n\t\t\t42928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t670\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42929,\n\t\t\t42929\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t647\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42930,\n\t\t\t42930\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t669\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42931,\n\t\t\t42931\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t43859\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42932,\n\t\t\t42932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42933\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42933,\n\t\t\t42933\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42934,\n\t\t\t42934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42935\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t42935,\n\t\t\t42935\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t42936,\n\t\t\t42998\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t42999,\n\t\t\t42999\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43000,\n\t\t\t43000\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t295\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43001,\n\t\t\t43001\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t339\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43002,\n\t\t\t43002\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43003,\n\t\t\t43007\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43008,\n\t\t\t43047\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43048,\n\t\t\t43051\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43052,\n\t\t\t43055\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43056,\n\t\t\t43065\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43066,\n\t\t\t43071\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43072,\n\t\t\t43123\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43124,\n\t\t\t43127\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43128,\n\t\t\t43135\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43136,\n\t\t\t43204\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43205,\n\t\t\t43213\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43214,\n\t\t\t43215\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43216,\n\t\t\t43225\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43226,\n\t\t\t43231\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43232,\n\t\t\t43255\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43256,\n\t\t\t43258\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43259,\n\t\t\t43259\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43260,\n\t\t\t43260\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43261,\n\t\t\t43261\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43262,\n\t\t\t43263\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43264,\n\t\t\t43309\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43310,\n\t\t\t43311\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43312,\n\t\t\t43347\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43348,\n\t\t\t43358\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43359,\n\t\t\t43359\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43360,\n\t\t\t43388\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43389,\n\t\t\t43391\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43392,\n\t\t\t43456\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43457,\n\t\t\t43469\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43470,\n\t\t\t43470\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43471,\n\t\t\t43481\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43482,\n\t\t\t43485\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43486,\n\t\t\t43487\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43488,\n\t\t\t43518\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43519,\n\t\t\t43519\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43520,\n\t\t\t43574\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43575,\n\t\t\t43583\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43584,\n\t\t\t43597\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43598,\n\t\t\t43599\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43600,\n\t\t\t43609\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43610,\n\t\t\t43611\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43612,\n\t\t\t43615\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43616,\n\t\t\t43638\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43639,\n\t\t\t43641\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43642,\n\t\t\t43643\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43644,\n\t\t\t43647\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43648,\n\t\t\t43714\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43715,\n\t\t\t43738\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43739,\n\t\t\t43741\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43742,\n\t\t\t43743\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43744,\n\t\t\t43759\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43760,\n\t\t\t43761\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43762,\n\t\t\t43766\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43767,\n\t\t\t43776\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43777,\n\t\t\t43782\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43783,\n\t\t\t43784\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43785,\n\t\t\t43790\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43791,\n\t\t\t43792\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43793,\n\t\t\t43798\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43799,\n\t\t\t43807\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43808,\n\t\t\t43814\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43815,\n\t\t\t43815\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43816,\n\t\t\t43822\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43823,\n\t\t\t43823\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43824,\n\t\t\t43866\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43867,\n\t\t\t43867\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t43868,\n\t\t\t43868\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t42791\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43869,\n\t\t\t43869\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t43831\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43870,\n\t\t\t43870\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t619\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43871,\n\t\t\t43871\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t43858\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43872,\n\t\t\t43875\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43876,\n\t\t\t43877\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t43878,\n\t\t\t43887\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t43888,\n\t\t\t43888\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5024\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43889,\n\t\t\t43889\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5025\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43890,\n\t\t\t43890\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5026\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43891,\n\t\t\t43891\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5027\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43892,\n\t\t\t43892\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5028\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43893,\n\t\t\t43893\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5029\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43894,\n\t\t\t43894\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5030\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43895,\n\t\t\t43895\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5031\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43896,\n\t\t\t43896\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5032\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43897,\n\t\t\t43897\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5033\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43898,\n\t\t\t43898\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5034\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43899,\n\t\t\t43899\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5035\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43900,\n\t\t\t43900\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5036\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43901,\n\t\t\t43901\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5037\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43902,\n\t\t\t43902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43903,\n\t\t\t43903\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5039\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43904,\n\t\t\t43904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5040\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43905,\n\t\t\t43905\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5041\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43906,\n\t\t\t43906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5042\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43907,\n\t\t\t43907\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5043\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43908,\n\t\t\t43908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5044\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43909,\n\t\t\t43909\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5045\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43910,\n\t\t\t43910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5046\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43911,\n\t\t\t43911\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5047\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43912,\n\t\t\t43912\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5048\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43913,\n\t\t\t43913\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5049\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43914,\n\t\t\t43914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5050\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43915,\n\t\t\t43915\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5051\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43916,\n\t\t\t43916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5052\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43917,\n\t\t\t43917\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5053\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43918,\n\t\t\t43918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5054\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43919,\n\t\t\t43919\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5055\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43920,\n\t\t\t43920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5056\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43921,\n\t\t\t43921\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5057\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43922,\n\t\t\t43922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5058\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43923,\n\t\t\t43923\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5059\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43924,\n\t\t\t43924\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5060\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43925,\n\t\t\t43925\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5061\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43926,\n\t\t\t43926\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5062\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43927,\n\t\t\t43927\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5063\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43928,\n\t\t\t43928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5064\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43929,\n\t\t\t43929\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5065\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43930,\n\t\t\t43930\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5066\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43931,\n\t\t\t43931\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5067\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43932,\n\t\t\t43932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5068\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43933,\n\t\t\t43933\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5069\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43934,\n\t\t\t43934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5070\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43935,\n\t\t\t43935\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5071\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43936,\n\t\t\t43936\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5072\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43937,\n\t\t\t43937\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5073\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43938,\n\t\t\t43938\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5074\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43939,\n\t\t\t43939\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5075\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43940,\n\t\t\t43940\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5076\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43941,\n\t\t\t43941\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5077\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43942,\n\t\t\t43942\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5078\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43943,\n\t\t\t43943\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5079\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43944,\n\t\t\t43944\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5080\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43945,\n\t\t\t43945\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5081\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43946,\n\t\t\t43946\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5082\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43947,\n\t\t\t43947\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5083\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43948,\n\t\t\t43948\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5084\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43949,\n\t\t\t43949\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5085\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43950,\n\t\t\t43950\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5086\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43951,\n\t\t\t43951\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5087\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43952,\n\t\t\t43952\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5088\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43953,\n\t\t\t43953\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5089\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43954,\n\t\t\t43954\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5090\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43955,\n\t\t\t43955\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5091\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43956,\n\t\t\t43956\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5092\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43957,\n\t\t\t43957\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5093\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43958,\n\t\t\t43958\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5094\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43959,\n\t\t\t43959\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5095\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43960,\n\t\t\t43960\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5096\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43961,\n\t\t\t43961\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5097\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43962,\n\t\t\t43962\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5098\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43963,\n\t\t\t43963\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5099\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43964,\n\t\t\t43964\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43965,\n\t\t\t43965\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43966,\n\t\t\t43966\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43967,\n\t\t\t43967\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t5103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t43968,\n\t\t\t44010\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t44011,\n\t\t\t44011\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t44012,\n\t\t\t44013\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t44014,\n\t\t\t44015\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t44016,\n\t\t\t44025\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t44026,\n\t\t\t44031\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t44032,\n\t\t\t55203\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t55204,\n\t\t\t55215\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t55216,\n\t\t\t55238\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t55239,\n\t\t\t55242\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t55243,\n\t\t\t55291\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t55292,\n\t\t\t55295\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t55296,\n\t\t\t57343\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t57344,\n\t\t\t63743\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t63744,\n\t\t\t63744\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35912\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63745,\n\t\t\t63745\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26356\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63746,\n\t\t\t63746\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36554\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63747,\n\t\t\t63747\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36040\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63748,\n\t\t\t63748\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28369\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63749,\n\t\t\t63749\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20018\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63750,\n\t\t\t63750\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21477\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63751,\n\t\t\t63752\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40860\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63753,\n\t\t\t63753\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22865\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63754,\n\t\t\t63754\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37329\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63755,\n\t\t\t63755\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21895\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63756,\n\t\t\t63756\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22856\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63757,\n\t\t\t63757\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25078\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63758,\n\t\t\t63758\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30313\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63759,\n\t\t\t63759\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32645\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63760,\n\t\t\t63760\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34367\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63761,\n\t\t\t63761\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34746\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63762,\n\t\t\t63762\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35064\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63763,\n\t\t\t63763\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37007\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63764,\n\t\t\t63764\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27138\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63765,\n\t\t\t63765\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27931\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63766,\n\t\t\t63766\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28889\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63767,\n\t\t\t63767\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29662\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63768,\n\t\t\t63768\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33853\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63769,\n\t\t\t63769\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37226\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63770,\n\t\t\t63770\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39409\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63771,\n\t\t\t63771\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20098\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63772,\n\t\t\t63772\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21365\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63773,\n\t\t\t63773\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27396\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63774,\n\t\t\t63774\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29211\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63775,\n\t\t\t63775\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34349\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63776,\n\t\t\t63776\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40478\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63777,\n\t\t\t63777\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23888\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63778,\n\t\t\t63778\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28651\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63779,\n\t\t\t63779\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34253\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63780,\n\t\t\t63780\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35172\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63781,\n\t\t\t63781\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25289\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63782,\n\t\t\t63782\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33240\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63783,\n\t\t\t63783\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34847\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63784,\n\t\t\t63784\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24266\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63785,\n\t\t\t63785\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26391\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63786,\n\t\t\t63786\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28010\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63787,\n\t\t\t63787\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29436\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63788,\n\t\t\t63788\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37070\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63789,\n\t\t\t63789\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20358\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63790,\n\t\t\t63790\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20919\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63791,\n\t\t\t63791\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21214\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63792,\n\t\t\t63792\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25796\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63793,\n\t\t\t63793\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27347\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63794,\n\t\t\t63794\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29200\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63795,\n\t\t\t63795\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30439\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63796,\n\t\t\t63796\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32769\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63797,\n\t\t\t63797\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34310\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63798,\n\t\t\t63798\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34396\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63799,\n\t\t\t63799\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36335\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63800,\n\t\t\t63800\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63801,\n\t\t\t63801\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39791\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63802,\n\t\t\t63802\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40442\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63803,\n\t\t\t63803\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30860\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63804,\n\t\t\t63804\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63805,\n\t\t\t63805\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32160\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63806,\n\t\t\t63806\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33737\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63807,\n\t\t\t63807\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37636\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63808,\n\t\t\t63808\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63809,\n\t\t\t63809\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35542\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63810,\n\t\t\t63810\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22751\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63811,\n\t\t\t63811\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24324\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63812,\n\t\t\t63812\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31840\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63813,\n\t\t\t63813\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32894\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63814,\n\t\t\t63814\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29282\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63815,\n\t\t\t63815\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30922\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63816,\n\t\t\t63816\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36034\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63817,\n\t\t\t63817\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38647\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63818,\n\t\t\t63818\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22744\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63819,\n\t\t\t63819\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23650\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63820,\n\t\t\t63820\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27155\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63821,\n\t\t\t63821\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63822,\n\t\t\t63822\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28431\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63823,\n\t\t\t63823\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32047\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63824,\n\t\t\t63824\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32311\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63825,\n\t\t\t63825\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38475\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63826,\n\t\t\t63826\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21202\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63827,\n\t\t\t63827\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32907\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63828,\n\t\t\t63828\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63829,\n\t\t\t63829\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20940\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63830,\n\t\t\t63830\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31260\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63831,\n\t\t\t63831\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32190\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63832,\n\t\t\t63832\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33777\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63833,\n\t\t\t63833\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38517\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63834,\n\t\t\t63834\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35712\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63835,\n\t\t\t63835\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25295\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63836,\n\t\t\t63836\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27138\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63837,\n\t\t\t63837\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63838,\n\t\t\t63838\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20025\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63839,\n\t\t\t63839\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23527\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63840,\n\t\t\t63840\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63841,\n\t\t\t63841\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63842,\n\t\t\t63842\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30064\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63843,\n\t\t\t63843\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21271\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63844,\n\t\t\t63844\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30971\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63845,\n\t\t\t63845\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20415\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63846,\n\t\t\t63846\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63847,\n\t\t\t63847\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19981\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63848,\n\t\t\t63848\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27852\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63849,\n\t\t\t63849\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25976\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63850,\n\t\t\t63850\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32034\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63851,\n\t\t\t63851\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21443\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63852,\n\t\t\t63852\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22622\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63853,\n\t\t\t63853\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30465\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63854,\n\t\t\t63854\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33865\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63855,\n\t\t\t63855\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35498\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63856,\n\t\t\t63856\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63857,\n\t\t\t63857\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36784\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63858,\n\t\t\t63858\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27784\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63859,\n\t\t\t63859\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25342\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63860,\n\t\t\t63860\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33509\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63861,\n\t\t\t63861\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25504\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63862,\n\t\t\t63862\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30053\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63863,\n\t\t\t63863\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20142\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63864,\n\t\t\t63864\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20841\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63865,\n\t\t\t63865\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20937\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63866,\n\t\t\t63866\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26753\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63867,\n\t\t\t63867\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31975\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63868,\n\t\t\t63868\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33391\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63869,\n\t\t\t63869\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35538\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63870,\n\t\t\t63870\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37327\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63871,\n\t\t\t63871\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21237\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63872,\n\t\t\t63872\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21570\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63873,\n\t\t\t63873\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22899\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63874,\n\t\t\t63874\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24300\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63875,\n\t\t\t63875\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26053\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63876,\n\t\t\t63876\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28670\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63877,\n\t\t\t63877\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31018\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63878,\n\t\t\t63878\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38317\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63879,\n\t\t\t63879\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39530\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63880,\n\t\t\t63880\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40599\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63881,\n\t\t\t63881\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40654\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63882,\n\t\t\t63882\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21147\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63883,\n\t\t\t63883\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26310\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63884,\n\t\t\t63884\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27511\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63885,\n\t\t\t63885\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63886,\n\t\t\t63886\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24180\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63887,\n\t\t\t63887\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24976\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63888,\n\t\t\t63888\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25088\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63889,\n\t\t\t63889\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25754\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63890,\n\t\t\t63890\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28451\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63891,\n\t\t\t63891\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29001\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63892,\n\t\t\t63892\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29833\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63893,\n\t\t\t63893\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31178\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63894,\n\t\t\t63894\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32244\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63895,\n\t\t\t63895\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32879\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63896,\n\t\t\t63896\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36646\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63897,\n\t\t\t63897\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34030\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63898,\n\t\t\t63898\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36899\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63899,\n\t\t\t63899\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63900,\n\t\t\t63900\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21015\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63901,\n\t\t\t63901\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21155\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63902,\n\t\t\t63902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21693\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63903,\n\t\t\t63903\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28872\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63904,\n\t\t\t63904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35010\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63905,\n\t\t\t63905\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35498\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63906,\n\t\t\t63906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24265\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63907,\n\t\t\t63907\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24565\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63908,\n\t\t\t63908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25467\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63909,\n\t\t\t63909\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27566\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63910,\n\t\t\t63910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31806\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63911,\n\t\t\t63911\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29557\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63912,\n\t\t\t63912\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20196\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63913,\n\t\t\t63913\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22265\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63914,\n\t\t\t63914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23527\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63915,\n\t\t\t63915\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23994\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63916,\n\t\t\t63916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63917,\n\t\t\t63917\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63918,\n\t\t\t63918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29801\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63919,\n\t\t\t63919\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32666\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63920,\n\t\t\t63920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32838\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63921,\n\t\t\t63921\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37428\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63922,\n\t\t\t63922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38646\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63923,\n\t\t\t63923\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38728\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63924,\n\t\t\t63924\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38936\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63925,\n\t\t\t63925\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63926,\n\t\t\t63926\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31150\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63927,\n\t\t\t63927\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37300\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63928,\n\t\t\t63928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38584\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63929,\n\t\t\t63929\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24801\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63930,\n\t\t\t63930\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63931,\n\t\t\t63931\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20698\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63932,\n\t\t\t63932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23534\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63933,\n\t\t\t63933\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23615\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63934,\n\t\t\t63934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26009\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63935,\n\t\t\t63935\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27138\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63936,\n\t\t\t63936\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29134\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63937,\n\t\t\t63937\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30274\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63938,\n\t\t\t63938\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34044\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63939,\n\t\t\t63939\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36988\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63940,\n\t\t\t63940\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63941,\n\t\t\t63941\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26248\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63942,\n\t\t\t63942\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38446\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63943,\n\t\t\t63943\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21129\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63944,\n\t\t\t63944\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63945,\n\t\t\t63945\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63946,\n\t\t\t63946\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63947,\n\t\t\t63947\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28316\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63948,\n\t\t\t63948\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29705\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63949,\n\t\t\t63949\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30041\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63950,\n\t\t\t63950\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30827\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63951,\n\t\t\t63951\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32016\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63952,\n\t\t\t63952\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39006\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63953,\n\t\t\t63953\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63954,\n\t\t\t63954\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25134\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63955,\n\t\t\t63955\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38520\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63956,\n\t\t\t63956\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63957,\n\t\t\t63957\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23833\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63958,\n\t\t\t63958\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28138\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63959,\n\t\t\t63959\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36650\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63960,\n\t\t\t63960\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24459\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63961,\n\t\t\t63961\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24900\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63962,\n\t\t\t63962\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26647\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63963,\n\t\t\t63963\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63964,\n\t\t\t63964\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38534\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63965,\n\t\t\t63965\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21033\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63966,\n\t\t\t63966\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21519\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63967,\n\t\t\t63967\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23653\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63968,\n\t\t\t63968\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26131\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63969,\n\t\t\t63969\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26446\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63970,\n\t\t\t63970\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26792\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63971,\n\t\t\t63971\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27877\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63972,\n\t\t\t63972\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29702\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63973,\n\t\t\t63973\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30178\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63974,\n\t\t\t63974\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32633\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63975,\n\t\t\t63975\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63976,\n\t\t\t63976\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35041\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63977,\n\t\t\t63977\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37324\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63978,\n\t\t\t63978\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38626\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63979,\n\t\t\t63979\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21311\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63980,\n\t\t\t63980\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28346\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63981,\n\t\t\t63981\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21533\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63982,\n\t\t\t63982\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29136\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63983,\n\t\t\t63983\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29848\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63984,\n\t\t\t63984\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34298\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63985,\n\t\t\t63985\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38563\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63986,\n\t\t\t63986\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63987,\n\t\t\t63987\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63988,\n\t\t\t63988\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26519\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63989,\n\t\t\t63989\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63990,\n\t\t\t63990\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33256\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63991,\n\t\t\t63991\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31435\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63992,\n\t\t\t63992\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31520\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63993,\n\t\t\t63993\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31890\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63994,\n\t\t\t63994\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63995,\n\t\t\t63995\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28825\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63996,\n\t\t\t63996\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35672\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63997,\n\t\t\t63997\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20160\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63998,\n\t\t\t63998\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33590\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t63999,\n\t\t\t63999\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21050\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64000,\n\t\t\t64000\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20999\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64001,\n\t\t\t64001\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24230\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64002,\n\t\t\t64002\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25299\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64003,\n\t\t\t64003\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64004,\n\t\t\t64004\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23429\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64005,\n\t\t\t64005\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27934\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64006,\n\t\t\t64006\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26292\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64007,\n\t\t\t64007\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36667\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64008,\n\t\t\t64008\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34892\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64009,\n\t\t\t64009\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38477\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64010,\n\t\t\t64010\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35211\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64011,\n\t\t\t64011\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24275\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64012,\n\t\t\t64012\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20800\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64013,\n\t\t\t64013\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64014,\n\t\t\t64015\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t64016,\n\t\t\t64016\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64017,\n\t\t\t64017\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t64018,\n\t\t\t64018\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26228\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64019,\n\t\t\t64020\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t64021,\n\t\t\t64021\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64022,\n\t\t\t64022\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29482\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64023,\n\t\t\t64023\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30410\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64024,\n\t\t\t64024\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31036\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64025,\n\t\t\t64025\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31070\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64026,\n\t\t\t64026\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31077\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64027,\n\t\t\t64027\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64028,\n\t\t\t64028\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38742\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64029,\n\t\t\t64029\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31934\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64030,\n\t\t\t64030\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32701\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64031,\n\t\t\t64031\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t64032,\n\t\t\t64032\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34322\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64033,\n\t\t\t64033\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t64034,\n\t\t\t64034\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64035,\n\t\t\t64036\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t64037,\n\t\t\t64037\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36920\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64038,\n\t\t\t64038\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64039,\n\t\t\t64041\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t64042,\n\t\t\t64042\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39151\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64043,\n\t\t\t64043\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39164\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64044,\n\t\t\t64044\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39208\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64045,\n\t\t\t64045\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40372\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64046,\n\t\t\t64046\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37086\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64047,\n\t\t\t64047\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38583\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64048,\n\t\t\t64048\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20398\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64049,\n\t\t\t64049\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64050,\n\t\t\t64050\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20813\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64051,\n\t\t\t64051\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21193\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64052,\n\t\t\t64052\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21220\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64053,\n\t\t\t64053\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21329\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64054,\n\t\t\t64054\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21917\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64055,\n\t\t\t64055\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22022\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64056,\n\t\t\t64056\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64057,\n\t\t\t64057\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64058,\n\t\t\t64058\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22696\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64059,\n\t\t\t64059\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23652\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64060,\n\t\t\t64060\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23662\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64061,\n\t\t\t64061\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24724\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64062,\n\t\t\t64062\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24936\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64063,\n\t\t\t64063\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24974\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64064,\n\t\t\t64064\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25074\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64065,\n\t\t\t64065\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25935\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64066,\n\t\t\t64066\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26082\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64067,\n\t\t\t64067\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26257\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64068,\n\t\t\t64068\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26757\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64069,\n\t\t\t64069\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64070,\n\t\t\t64070\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28186\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64071,\n\t\t\t64071\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28450\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64072,\n\t\t\t64072\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64073,\n\t\t\t64073\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29227\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64074,\n\t\t\t64074\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29730\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64075,\n\t\t\t64075\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30865\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64076,\n\t\t\t64076\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64077,\n\t\t\t64077\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31049\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64078,\n\t\t\t64078\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31048\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64079,\n\t\t\t64079\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31056\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64080,\n\t\t\t64080\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31062\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64081,\n\t\t\t64081\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31069\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64082,\n\t\t\t64082\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64083,\n\t\t\t64083\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64084,\n\t\t\t64084\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31296\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64085,\n\t\t\t64085\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31361\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64086,\n\t\t\t64086\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31680\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64087,\n\t\t\t64087\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32244\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64088,\n\t\t\t64088\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32265\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64089,\n\t\t\t64089\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32321\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64090,\n\t\t\t64090\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32626\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64091,\n\t\t\t64091\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32773\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64092,\n\t\t\t64092\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33261\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64093,\n\t\t\t64094\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33401\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64095,\n\t\t\t64095\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33879\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64096,\n\t\t\t64096\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35088\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64097,\n\t\t\t64097\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35222\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64098,\n\t\t\t64098\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64099,\n\t\t\t64099\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35641\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64100,\n\t\t\t64100\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36051\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64101,\n\t\t\t64101\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64102,\n\t\t\t64102\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36790\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64103,\n\t\t\t64103\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36920\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64104,\n\t\t\t64104\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38627\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64105,\n\t\t\t64105\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38911\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64106,\n\t\t\t64106\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38971\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64107,\n\t\t\t64107\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24693\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64108,\n\t\t\t64108\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t148206\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64109,\n\t\t\t64109\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33304\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64110,\n\t\t\t64111\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64112,\n\t\t\t64112\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20006\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64113,\n\t\t\t64113\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20917\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64114,\n\t\t\t64114\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20840\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64115,\n\t\t\t64115\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20352\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64116,\n\t\t\t64116\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20805\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64117,\n\t\t\t64117\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20864\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64118,\n\t\t\t64118\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21191\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64119,\n\t\t\t64119\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21242\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64120,\n\t\t\t64120\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21917\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64121,\n\t\t\t64121\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64122,\n\t\t\t64122\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21913\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64123,\n\t\t\t64123\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21986\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64124,\n\t\t\t64124\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64125,\n\t\t\t64125\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22707\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64126,\n\t\t\t64126\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22852\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64127,\n\t\t\t64127\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22868\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64128,\n\t\t\t64128\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23138\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64129,\n\t\t\t64129\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23336\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64130,\n\t\t\t64130\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24274\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64131,\n\t\t\t64131\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24281\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64132,\n\t\t\t64132\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24425\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64133,\n\t\t\t64133\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24493\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64134,\n\t\t\t64134\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24792\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64135,\n\t\t\t64135\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24910\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64136,\n\t\t\t64136\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24840\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64137,\n\t\t\t64137\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24974\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64138,\n\t\t\t64138\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24928\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64139,\n\t\t\t64139\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25074\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64140,\n\t\t\t64140\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25140\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64141,\n\t\t\t64141\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25540\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64142,\n\t\t\t64142\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25628\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64143,\n\t\t\t64143\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25682\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64144,\n\t\t\t64144\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25942\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64145,\n\t\t\t64145\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26228\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64146,\n\t\t\t64146\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26391\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64147,\n\t\t\t64147\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26395\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64148,\n\t\t\t64148\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26454\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64149,\n\t\t\t64149\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27513\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64150,\n\t\t\t64150\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64151,\n\t\t\t64151\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64152,\n\t\t\t64152\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28379\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64153,\n\t\t\t64153\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64154,\n\t\t\t64154\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28450\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64155,\n\t\t\t64155\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28702\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64156,\n\t\t\t64156\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64157,\n\t\t\t64157\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30631\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64158,\n\t\t\t64158\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29237\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64159,\n\t\t\t64159\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29359\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64160,\n\t\t\t64160\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29482\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64161,\n\t\t\t64161\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29809\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64162,\n\t\t\t64162\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64163,\n\t\t\t64163\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30011\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64164,\n\t\t\t64164\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30237\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64165,\n\t\t\t64165\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30239\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64166,\n\t\t\t64166\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30410\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64167,\n\t\t\t64167\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30427\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64168,\n\t\t\t64168\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30452\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64169,\n\t\t\t64169\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30538\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64170,\n\t\t\t64170\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30528\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64171,\n\t\t\t64171\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30924\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64172,\n\t\t\t64172\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31409\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64173,\n\t\t\t64173\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31680\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64174,\n\t\t\t64174\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31867\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64175,\n\t\t\t64175\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32091\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64176,\n\t\t\t64176\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32244\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64177,\n\t\t\t64177\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32574\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64178,\n\t\t\t64178\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32773\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64179,\n\t\t\t64179\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64180,\n\t\t\t64180\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33775\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64181,\n\t\t\t64181\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34681\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64182,\n\t\t\t64182\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35137\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64183,\n\t\t\t64183\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35206\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64184,\n\t\t\t64184\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35222\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64185,\n\t\t\t64185\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35519\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64186,\n\t\t\t64186\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64187,\n\t\t\t64187\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64188,\n\t\t\t64188\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64189,\n\t\t\t64189\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64190,\n\t\t\t64190\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35565\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64191,\n\t\t\t64191\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35641\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64192,\n\t\t\t64192\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35722\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64193,\n\t\t\t64193\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64194,\n\t\t\t64194\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36664\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64195,\n\t\t\t64195\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36978\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64196,\n\t\t\t64196\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37273\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64197,\n\t\t\t64197\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37494\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64198,\n\t\t\t64198\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38524\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64199,\n\t\t\t64199\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38627\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64200,\n\t\t\t64200\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38742\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64201,\n\t\t\t64201\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38875\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64202,\n\t\t\t64202\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38911\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64203,\n\t\t\t64203\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38923\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64204,\n\t\t\t64204\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38971\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64205,\n\t\t\t64205\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39698\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64206,\n\t\t\t64206\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40860\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64207,\n\t\t\t64207\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t141386\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64208,\n\t\t\t64208\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t141380\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64209,\n\t\t\t64209\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t144341\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64210,\n\t\t\t64210\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15261\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64211,\n\t\t\t64211\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16408\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64212,\n\t\t\t64212\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16441\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64213,\n\t\t\t64213\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t152137\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64214,\n\t\t\t64214\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t154832\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64215,\n\t\t\t64215\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t163539\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64216,\n\t\t\t64216\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40771\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64217,\n\t\t\t64217\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40846\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64218,\n\t\t\t64255\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64256,\n\t\t\t64256\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102,\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64257,\n\t\t\t64257\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64258,\n\t\t\t64258\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64259,\n\t\t\t64259\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102,\n\t\t\t102,\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64260,\n\t\t\t64260\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102,\n\t\t\t102,\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64261,\n\t\t\t64262\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115,\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64263,\n\t\t\t64274\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64275,\n\t\t\t64275\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1396,\n\t\t\t1398\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64276,\n\t\t\t64276\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1396,\n\t\t\t1381\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64277,\n\t\t\t64277\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1396,\n\t\t\t1387\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64278,\n\t\t\t64278\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1406,\n\t\t\t1398\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64279,\n\t\t\t64279\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1396,\n\t\t\t1389\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64280,\n\t\t\t64284\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64285,\n\t\t\t64285\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1497,\n\t\t\t1460\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64286,\n\t\t\t64286\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t64287,\n\t\t\t64287\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1522,\n\t\t\t1463\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64288,\n\t\t\t64288\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1506\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64289,\n\t\t\t64289\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64290,\n\t\t\t64290\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64291,\n\t\t\t64291\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1492\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64292,\n\t\t\t64292\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1499\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64293,\n\t\t\t64293\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1500\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64294,\n\t\t\t64294\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1501\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64295,\n\t\t\t64295\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64296,\n\t\t\t64296\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1514\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64297,\n\t\t\t64297\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t43\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64298,\n\t\t\t64298\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1513,\n\t\t\t1473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64299,\n\t\t\t64299\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1513,\n\t\t\t1474\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64300,\n\t\t\t64300\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1513,\n\t\t\t1468,\n\t\t\t1473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64301,\n\t\t\t64301\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1513,\n\t\t\t1468,\n\t\t\t1474\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64302,\n\t\t\t64302\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1488,\n\t\t\t1463\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64303,\n\t\t\t64303\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1488,\n\t\t\t1464\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64304,\n\t\t\t64304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1488,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64305,\n\t\t\t64305\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1489,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64306,\n\t\t\t64306\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1490,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64307,\n\t\t\t64307\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1491,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64308,\n\t\t\t64308\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1492,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64309,\n\t\t\t64309\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1493,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64310,\n\t\t\t64310\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1494,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64311,\n\t\t\t64311\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64312,\n\t\t\t64312\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1496,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64313,\n\t\t\t64313\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1497,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64314,\n\t\t\t64314\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1498,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64315,\n\t\t\t64315\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1499,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64316,\n\t\t\t64316\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1500,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64317,\n\t\t\t64317\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64318,\n\t\t\t64318\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1502,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64319,\n\t\t\t64319\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64320,\n\t\t\t64320\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1504,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64321,\n\t\t\t64321\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1505,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64322,\n\t\t\t64322\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64323,\n\t\t\t64323\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1507,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64324,\n\t\t\t64324\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1508,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64325,\n\t\t\t64325\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64326,\n\t\t\t64326\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1510,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64327,\n\t\t\t64327\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1511,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64328,\n\t\t\t64328\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1512,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64329,\n\t\t\t64329\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1513,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64330,\n\t\t\t64330\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1514,\n\t\t\t1468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64331,\n\t\t\t64331\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1493,\n\t\t\t1465\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64332,\n\t\t\t64332\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1489,\n\t\t\t1471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64333,\n\t\t\t64333\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1499,\n\t\t\t1471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64334,\n\t\t\t64334\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1508,\n\t\t\t1471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64335,\n\t\t\t64335\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1488,\n\t\t\t1500\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64336,\n\t\t\t64337\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1649\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64338,\n\t\t\t64341\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1659\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64342,\n\t\t\t64345\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1662\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64346,\n\t\t\t64349\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1664\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64350,\n\t\t\t64353\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1658\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64354,\n\t\t\t64357\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1663\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64358,\n\t\t\t64361\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1657\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64362,\n\t\t\t64365\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1700\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64366,\n\t\t\t64369\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1702\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64370,\n\t\t\t64373\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1668\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64374,\n\t\t\t64377\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1667\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64378,\n\t\t\t64381\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1670\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64382,\n\t\t\t64385\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1671\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64386,\n\t\t\t64387\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1677\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64388,\n\t\t\t64389\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1676\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64390,\n\t\t\t64391\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1678\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64392,\n\t\t\t64393\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1672\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64394,\n\t\t\t64395\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1688\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64396,\n\t\t\t64397\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1681\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64398,\n\t\t\t64401\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1705\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64402,\n\t\t\t64405\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64406,\n\t\t\t64409\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1715\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64410,\n\t\t\t64413\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1713\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64414,\n\t\t\t64415\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1722\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64416,\n\t\t\t64419\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1723\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64420,\n\t\t\t64421\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1728\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64422,\n\t\t\t64425\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1729\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64426,\n\t\t\t64429\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1726\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64430,\n\t\t\t64431\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1746\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64432,\n\t\t\t64433\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1747\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64434,\n\t\t\t64449\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t64450,\n\t\t\t64466\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64467,\n\t\t\t64470\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1709\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64471,\n\t\t\t64472\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1735\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64473,\n\t\t\t64474\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1734\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64475,\n\t\t\t64476\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1736\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64477,\n\t\t\t64477\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1735,\n\t\t\t1652\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64478,\n\t\t\t64479\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1739\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64480,\n\t\t\t64481\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1733\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64482,\n\t\t\t64483\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1737\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64484,\n\t\t\t64487\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1744\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64488,\n\t\t\t64489\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64490,\n\t\t\t64491\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64492,\n\t\t\t64493\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1749\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64494,\n\t\t\t64495\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64496,\n\t\t\t64497\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1735\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64498,\n\t\t\t64499\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1734\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64500,\n\t\t\t64501\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1736\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64502,\n\t\t\t64504\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1744\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64505,\n\t\t\t64507\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64508,\n\t\t\t64511\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1740\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64512,\n\t\t\t64512\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64513,\n\t\t\t64513\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64514,\n\t\t\t64514\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64515,\n\t\t\t64515\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64516,\n\t\t\t64516\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64517,\n\t\t\t64517\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64518,\n\t\t\t64518\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64519,\n\t\t\t64519\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64520,\n\t\t\t64520\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64521,\n\t\t\t64521\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64522,\n\t\t\t64522\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64523,\n\t\t\t64523\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64524,\n\t\t\t64524\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64525,\n\t\t\t64525\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64526,\n\t\t\t64526\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64527,\n\t\t\t64527\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64528,\n\t\t\t64528\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64529,\n\t\t\t64529\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64530,\n\t\t\t64530\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64531,\n\t\t\t64531\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64532,\n\t\t\t64532\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64533,\n\t\t\t64533\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64534,\n\t\t\t64534\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64535,\n\t\t\t64535\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64536,\n\t\t\t64536\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64537,\n\t\t\t64537\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64538,\n\t\t\t64538\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64539,\n\t\t\t64539\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64540,\n\t\t\t64540\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64541,\n\t\t\t64541\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64542,\n\t\t\t64542\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64543,\n\t\t\t64543\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64544,\n\t\t\t64544\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64545,\n\t\t\t64545\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64546,\n\t\t\t64546\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64547,\n\t\t\t64547\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64548,\n\t\t\t64548\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64549,\n\t\t\t64549\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64550,\n\t\t\t64550\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64551,\n\t\t\t64551\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64552,\n\t\t\t64552\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1592,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64553,\n\t\t\t64553\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64554,\n\t\t\t64554\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64555,\n\t\t\t64555\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64556,\n\t\t\t64556\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64557,\n\t\t\t64557\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64558,\n\t\t\t64558\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64559,\n\t\t\t64559\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64560,\n\t\t\t64560\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64561,\n\t\t\t64561\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64562,\n\t\t\t64562\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64563,\n\t\t\t64563\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64564,\n\t\t\t64564\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64565,\n\t\t\t64565\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64566,\n\t\t\t64566\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64567,\n\t\t\t64567\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64568,\n\t\t\t64568\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64569,\n\t\t\t64569\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64570,\n\t\t\t64570\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64571,\n\t\t\t64571\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64572,\n\t\t\t64572\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64573,\n\t\t\t64573\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64574,\n\t\t\t64574\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64575,\n\t\t\t64575\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64576,\n\t\t\t64576\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64577,\n\t\t\t64577\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64578,\n\t\t\t64578\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64579,\n\t\t\t64579\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64580,\n\t\t\t64580\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64581,\n\t\t\t64581\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64582,\n\t\t\t64582\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64583,\n\t\t\t64583\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64584,\n\t\t\t64584\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64585,\n\t\t\t64585\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64586,\n\t\t\t64586\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64587,\n\t\t\t64587\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64588,\n\t\t\t64588\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64589,\n\t\t\t64589\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64590,\n\t\t\t64590\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64591,\n\t\t\t64591\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64592,\n\t\t\t64592\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64593,\n\t\t\t64593\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64594,\n\t\t\t64594\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64595,\n\t\t\t64595\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64596,\n\t\t\t64596\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64597,\n\t\t\t64597\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64598,\n\t\t\t64598\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64599,\n\t\t\t64599\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64600,\n\t\t\t64600\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64601,\n\t\t\t64601\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64602,\n\t\t\t64602\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64603,\n\t\t\t64603\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1584,\n\t\t\t1648\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64604,\n\t\t\t64604\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1585,\n\t\t\t1648\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64605,\n\t\t\t64605\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1609,\n\t\t\t1648\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64606,\n\t\t\t64606\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1612,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64607,\n\t\t\t64607\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1613,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64608,\n\t\t\t64608\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1614,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64609,\n\t\t\t64609\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1615,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64610,\n\t\t\t64610\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1616,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64611,\n\t\t\t64611\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1617,\n\t\t\t1648\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64612,\n\t\t\t64612\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64613,\n\t\t\t64613\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64614,\n\t\t\t64614\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64615,\n\t\t\t64615\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64616,\n\t\t\t64616\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64617,\n\t\t\t64617\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64618,\n\t\t\t64618\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64619,\n\t\t\t64619\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64620,\n\t\t\t64620\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64621,\n\t\t\t64621\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64622,\n\t\t\t64622\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64623,\n\t\t\t64623\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64624,\n\t\t\t64624\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64625,\n\t\t\t64625\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64626,\n\t\t\t64626\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64627,\n\t\t\t64627\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64628,\n\t\t\t64628\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64629,\n\t\t\t64629\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64630,\n\t\t\t64630\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64631,\n\t\t\t64631\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64632,\n\t\t\t64632\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64633,\n\t\t\t64633\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64634,\n\t\t\t64634\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64635,\n\t\t\t64635\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64636,\n\t\t\t64636\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64637,\n\t\t\t64637\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64638,\n\t\t\t64638\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64639,\n\t\t\t64639\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64640,\n\t\t\t64640\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64641,\n\t\t\t64641\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64642,\n\t\t\t64642\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64643,\n\t\t\t64643\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64644,\n\t\t\t64644\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64645,\n\t\t\t64645\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64646,\n\t\t\t64646\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64647,\n\t\t\t64647\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64648,\n\t\t\t64648\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64649,\n\t\t\t64649\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64650,\n\t\t\t64650\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64651,\n\t\t\t64651\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64652,\n\t\t\t64652\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64653,\n\t\t\t64653\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64654,\n\t\t\t64654\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64655,\n\t\t\t64655\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64656,\n\t\t\t64656\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1609,\n\t\t\t1648\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64657,\n\t\t\t64657\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64658,\n\t\t\t64658\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64659,\n\t\t\t64659\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64660,\n\t\t\t64660\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64661,\n\t\t\t64661\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64662,\n\t\t\t64662\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64663,\n\t\t\t64663\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64664,\n\t\t\t64664\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64665,\n\t\t\t64665\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64666,\n\t\t\t64666\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64667,\n\t\t\t64667\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64668,\n\t\t\t64668\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64669,\n\t\t\t64669\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64670,\n\t\t\t64670\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64671,\n\t\t\t64671\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64672,\n\t\t\t64672\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64673,\n\t\t\t64673\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64674,\n\t\t\t64674\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64675,\n\t\t\t64675\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64676,\n\t\t\t64676\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64677,\n\t\t\t64677\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64678,\n\t\t\t64678\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64679,\n\t\t\t64679\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64680,\n\t\t\t64680\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64681,\n\t\t\t64681\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64682,\n\t\t\t64682\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64683,\n\t\t\t64683\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64684,\n\t\t\t64684\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64685,\n\t\t\t64685\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64686,\n\t\t\t64686\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64687,\n\t\t\t64687\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64688,\n\t\t\t64688\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64689,\n\t\t\t64689\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64690,\n\t\t\t64690\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64691,\n\t\t\t64691\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64692,\n\t\t\t64692\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64693,\n\t\t\t64693\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64694,\n\t\t\t64694\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64695,\n\t\t\t64695\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64696,\n\t\t\t64696\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64697,\n\t\t\t64697\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1592,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64698,\n\t\t\t64698\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64699,\n\t\t\t64699\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64700,\n\t\t\t64700\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64701,\n\t\t\t64701\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64702,\n\t\t\t64702\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64703,\n\t\t\t64703\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64704,\n\t\t\t64704\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64705,\n\t\t\t64705\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64706,\n\t\t\t64706\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64707,\n\t\t\t64707\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64708,\n\t\t\t64708\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64709,\n\t\t\t64709\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64710,\n\t\t\t64710\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64711,\n\t\t\t64711\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64712,\n\t\t\t64712\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64713,\n\t\t\t64713\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64714,\n\t\t\t64714\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64715,\n\t\t\t64715\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64716,\n\t\t\t64716\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64717,\n\t\t\t64717\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64718,\n\t\t\t64718\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64719,\n\t\t\t64719\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64720,\n\t\t\t64720\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64721,\n\t\t\t64721\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64722,\n\t\t\t64722\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64723,\n\t\t\t64723\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64724,\n\t\t\t64724\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64725,\n\t\t\t64725\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64726,\n\t\t\t64726\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64727,\n\t\t\t64727\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64728,\n\t\t\t64728\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64729,\n\t\t\t64729\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1648\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64730,\n\t\t\t64730\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64731,\n\t\t\t64731\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64732,\n\t\t\t64732\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64733,\n\t\t\t64733\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64734,\n\t\t\t64734\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64735,\n\t\t\t64735\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64736,\n\t\t\t64736\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64737,\n\t\t\t64737\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64738,\n\t\t\t64738\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64739,\n\t\t\t64739\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64740,\n\t\t\t64740\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64741,\n\t\t\t64741\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64742,\n\t\t\t64742\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64743,\n\t\t\t64743\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64744,\n\t\t\t64744\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64745,\n\t\t\t64745\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64746,\n\t\t\t64746\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64747,\n\t\t\t64747\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64748,\n\t\t\t64748\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64749,\n\t\t\t64749\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64750,\n\t\t\t64750\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64751,\n\t\t\t64751\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64752,\n\t\t\t64752\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64753,\n\t\t\t64753\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64754,\n\t\t\t64754\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1614,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64755,\n\t\t\t64755\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1615,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64756,\n\t\t\t64756\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1616,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64757,\n\t\t\t64757\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64758,\n\t\t\t64758\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64759,\n\t\t\t64759\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64760,\n\t\t\t64760\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64761,\n\t\t\t64761\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64762,\n\t\t\t64762\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64763,\n\t\t\t64763\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64764,\n\t\t\t64764\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64765,\n\t\t\t64765\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64766,\n\t\t\t64766\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64767,\n\t\t\t64767\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64768,\n\t\t\t64768\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64769,\n\t\t\t64769\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64770,\n\t\t\t64770\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64771,\n\t\t\t64771\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64772,\n\t\t\t64772\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64773,\n\t\t\t64773\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64774,\n\t\t\t64774\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64775,\n\t\t\t64775\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64776,\n\t\t\t64776\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64777,\n\t\t\t64777\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64778,\n\t\t\t64778\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64779,\n\t\t\t64779\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64780,\n\t\t\t64780\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64781,\n\t\t\t64781\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64782,\n\t\t\t64782\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64783,\n\t\t\t64783\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64784,\n\t\t\t64784\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64785,\n\t\t\t64785\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64786,\n\t\t\t64786\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64787,\n\t\t\t64787\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64788,\n\t\t\t64788\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64789,\n\t\t\t64789\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64790,\n\t\t\t64790\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64791,\n\t\t\t64791\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64792,\n\t\t\t64792\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64793,\n\t\t\t64793\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64794,\n\t\t\t64794\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64795,\n\t\t\t64795\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64796,\n\t\t\t64796\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64797,\n\t\t\t64797\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64798,\n\t\t\t64798\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64799,\n\t\t\t64799\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64800,\n\t\t\t64800\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64801,\n\t\t\t64801\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64802,\n\t\t\t64802\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64803,\n\t\t\t64803\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64804,\n\t\t\t64804\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64805,\n\t\t\t64805\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64806,\n\t\t\t64806\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64807,\n\t\t\t64807\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64808,\n\t\t\t64808\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64809,\n\t\t\t64809\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64810,\n\t\t\t64810\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64811,\n\t\t\t64811\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64812,\n\t\t\t64812\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64813,\n\t\t\t64813\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64814,\n\t\t\t64814\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64815,\n\t\t\t64815\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64816,\n\t\t\t64816\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64817,\n\t\t\t64817\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64818,\n\t\t\t64818\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64819,\n\t\t\t64819\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64820,\n\t\t\t64820\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64821,\n\t\t\t64821\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64822,\n\t\t\t64822\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64823,\n\t\t\t64823\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64824,\n\t\t\t64824\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64825,\n\t\t\t64825\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64826,\n\t\t\t64826\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64827,\n\t\t\t64827\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1592,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64828,\n\t\t\t64829\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1575,\n\t\t\t1611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64830,\n\t\t\t64831\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t64832,\n\t\t\t64847\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64848,\n\t\t\t64848\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64849,\n\t\t\t64850\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1581,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64851,\n\t\t\t64851\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1581,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64852,\n\t\t\t64852\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1582,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64853,\n\t\t\t64853\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64854,\n\t\t\t64854\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64855,\n\t\t\t64855\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64856,\n\t\t\t64857\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64858,\n\t\t\t64858\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64859,\n\t\t\t64859\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1605,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64860,\n\t\t\t64860\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1581,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64861,\n\t\t\t64861\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1580,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64862,\n\t\t\t64862\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1580,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64863,\n\t\t\t64864\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64865,\n\t\t\t64865\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1605,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64866,\n\t\t\t64867\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64868,\n\t\t\t64869\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1581,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64870,\n\t\t\t64870\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64871,\n\t\t\t64872\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1581,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64873,\n\t\t\t64873\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64874,\n\t\t\t64875\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1605,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64876,\n\t\t\t64877\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64878,\n\t\t\t64878\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1581,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64879,\n\t\t\t64880\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1582,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64881,\n\t\t\t64882\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64883,\n\t\t\t64883\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64884,\n\t\t\t64884\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64885,\n\t\t\t64885\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64886,\n\t\t\t64887\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64888,\n\t\t\t64888\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1605,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64889,\n\t\t\t64889\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64890,\n\t\t\t64890\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64891,\n\t\t\t64891\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594,\n\t\t\t1605,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64892,\n\t\t\t64893\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1582,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64894,\n\t\t\t64894\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64895,\n\t\t\t64895\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64896,\n\t\t\t64896\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1581,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64897,\n\t\t\t64897\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64898,\n\t\t\t64898\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1581,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64899,\n\t\t\t64900\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1580,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64901,\n\t\t\t64902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1582,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64903,\n\t\t\t64904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64905,\n\t\t\t64905\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1581,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64906,\n\t\t\t64906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1581,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64907,\n\t\t\t64907\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64908,\n\t\t\t64908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1580,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64909,\n\t\t\t64909\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64910,\n\t\t\t64910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1582,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64911,\n\t\t\t64911\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1582,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64912,\n\t\t\t64913\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64914,\n\t\t\t64914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1580,\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64915,\n\t\t\t64915\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1605,\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64916,\n\t\t\t64916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64917,\n\t\t\t64917\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1581,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64918,\n\t\t\t64918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1581,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64919,\n\t\t\t64920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64921,\n\t\t\t64921\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1580,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64922,\n\t\t\t64922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64923,\n\t\t\t64923\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1605,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64924,\n\t\t\t64925\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64926,\n\t\t\t64926\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1582,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64927,\n\t\t\t64927\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64928,\n\t\t\t64928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1580,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64929,\n\t\t\t64929\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1582,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64930,\n\t\t\t64930\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1582,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64931,\n\t\t\t64931\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64932,\n\t\t\t64932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578,\n\t\t\t1605,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64933,\n\t\t\t64933\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64934,\n\t\t\t64934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1581,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64935,\n\t\t\t64935\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1605,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64936,\n\t\t\t64936\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1582,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64937,\n\t\t\t64937\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64938,\n\t\t\t64938\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64939,\n\t\t\t64939\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64940,\n\t\t\t64940\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64941,\n\t\t\t64941\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64942,\n\t\t\t64942\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64943,\n\t\t\t64943\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64944,\n\t\t\t64944\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64945,\n\t\t\t64945\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64946,\n\t\t\t64946\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64947,\n\t\t\t64947\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64948,\n\t\t\t64948\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1605,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64949,\n\t\t\t64949\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1581,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64950,\n\t\t\t64950\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64951,\n\t\t\t64951\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64952,\n\t\t\t64952\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1580,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64953,\n\t\t\t64953\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1582,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64954,\n\t\t\t64954\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64955,\n\t\t\t64955\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64956,\n\t\t\t64956\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64957,\n\t\t\t64957\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1580,\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64958,\n\t\t\t64958\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64959,\n\t\t\t64959\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581,\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64960,\n\t\t\t64960\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64961,\n\t\t\t64961\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601,\n\t\t\t1605,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64962,\n\t\t\t64962\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576,\n\t\t\t1581,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64963,\n\t\t\t64963\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64964,\n\t\t\t64964\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1580,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64965,\n\t\t\t64965\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1605,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64966,\n\t\t\t64966\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587,\n\t\t\t1582,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64967,\n\t\t\t64967\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606,\n\t\t\t1580,\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t64968,\n\t\t\t64975\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t64976,\n\t\t\t65007\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65008,\n\t\t\t65008\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1604,\n\t\t\t1746\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65009,\n\t\t\t65009\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602,\n\t\t\t1604,\n\t\t\t1746\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65010,\n\t\t\t65010\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1575,\n\t\t\t1604,\n\t\t\t1604,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65011,\n\t\t\t65011\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1575,\n\t\t\t1603,\n\t\t\t1576,\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65012,\n\t\t\t65012\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605,\n\t\t\t1581,\n\t\t\t1605,\n\t\t\t1583\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65013,\n\t\t\t65013\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1604,\n\t\t\t1593,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65014,\n\t\t\t65014\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1585,\n\t\t\t1587,\n\t\t\t1608,\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65015,\n\t\t\t65015\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593,\n\t\t\t1604,\n\t\t\t1610,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65016,\n\t\t\t65016\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1608,\n\t\t\t1587,\n\t\t\t1604,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65017,\n\t\t\t65017\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1604,\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65018,\n\t\t\t65018\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t1589,\n\t\t\t1604,\n\t\t\t1609,\n\t\t\t32,\n\t\t\t1575,\n\t\t\t1604,\n\t\t\t1604,\n\t\t\t1607,\n\t\t\t32,\n\t\t\t1593,\n\t\t\t1604,\n\t\t\t1610,\n\t\t\t1607,\n\t\t\t32,\n\t\t\t1608,\n\t\t\t1587,\n\t\t\t1604,\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65019,\n\t\t\t65019\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t1580,\n\t\t\t1604,\n\t\t\t32,\n\t\t\t1580,\n\t\t\t1604,\n\t\t\t1575,\n\t\t\t1604,\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65020,\n\t\t\t65020\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1585,\n\t\t\t1740,\n\t\t\t1575,\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65021,\n\t\t\t65021\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65022,\n\t\t\t65023\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65024,\n\t\t\t65039\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t65040,\n\t\t\t65040\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65041,\n\t\t\t65041\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12289\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65042,\n\t\t\t65042\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65043,\n\t\t\t65043\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t58\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65044,\n\t\t\t65044\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t59\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65045,\n\t\t\t65045\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t33\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65046,\n\t\t\t65046\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t63\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65047,\n\t\t\t65047\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12310\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65048,\n\t\t\t65048\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12311\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65049,\n\t\t\t65049\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65050,\n\t\t\t65055\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65056,\n\t\t\t65059\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65060,\n\t\t\t65062\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65063,\n\t\t\t65069\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65070,\n\t\t\t65071\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65072,\n\t\t\t65072\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65073,\n\t\t\t65073\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8212\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65074,\n\t\t\t65074\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8211\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65075,\n\t\t\t65076\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t95\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65077,\n\t\t\t65077\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65078,\n\t\t\t65078\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65079,\n\t\t\t65079\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t123\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65080,\n\t\t\t65080\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t125\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65081,\n\t\t\t65081\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65082,\n\t\t\t65082\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65083,\n\t\t\t65083\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12304\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65084,\n\t\t\t65084\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12305\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65085,\n\t\t\t65085\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12298\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65086,\n\t\t\t65086\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12299\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65087,\n\t\t\t65087\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12296\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65088,\n\t\t\t65088\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12297\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65089,\n\t\t\t65089\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12300\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65090,\n\t\t\t65090\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12301\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65091,\n\t\t\t65091\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12302\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65092,\n\t\t\t65092\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12303\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65093,\n\t\t\t65094\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65095,\n\t\t\t65095\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t91\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65096,\n\t\t\t65096\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t93\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65097,\n\t\t\t65100\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t773\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65101,\n\t\t\t65103\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t95\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65104,\n\t\t\t65104\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65105,\n\t\t\t65105\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12289\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65106,\n\t\t\t65106\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65107,\n\t\t\t65107\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65108,\n\t\t\t65108\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t59\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65109,\n\t\t\t65109\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t58\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65110,\n\t\t\t65110\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t63\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65111,\n\t\t\t65111\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t33\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65112,\n\t\t\t65112\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8212\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65113,\n\t\t\t65113\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65114,\n\t\t\t65114\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65115,\n\t\t\t65115\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t123\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65116,\n\t\t\t65116\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t125\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65117,\n\t\t\t65117\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65118,\n\t\t\t65118\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65119,\n\t\t\t65119\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t35\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65120,\n\t\t\t65120\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t38\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65121,\n\t\t\t65121\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t42\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65122,\n\t\t\t65122\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t43\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65123,\n\t\t\t65123\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t45\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65124,\n\t\t\t65124\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t60\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65125,\n\t\t\t65125\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t62\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65126,\n\t\t\t65126\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t61\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65127,\n\t\t\t65127\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65128,\n\t\t\t65128\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t92\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65129,\n\t\t\t65129\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t36\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65130,\n\t\t\t65130\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t37\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65131,\n\t\t\t65131\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t64\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65132,\n\t\t\t65135\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65136,\n\t\t\t65136\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65137,\n\t\t\t65137\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65138,\n\t\t\t65138\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1612\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65139,\n\t\t\t65139\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65140,\n\t\t\t65140\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1613\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65141,\n\t\t\t65141\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65142,\n\t\t\t65142\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1614\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65143,\n\t\t\t65143\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1614\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65144,\n\t\t\t65144\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1615\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65145,\n\t\t\t65145\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1615\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65146,\n\t\t\t65146\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1616\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65147,\n\t\t\t65147\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1616\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65148,\n\t\t\t65148\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65149,\n\t\t\t65149\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65150,\n\t\t\t65150\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t1618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65151,\n\t\t\t65151\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1600,\n\t\t\t1618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65152,\n\t\t\t65152\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1569\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65153,\n\t\t\t65154\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1570\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65155,\n\t\t\t65156\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1571\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65157,\n\t\t\t65158\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1572\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65159,\n\t\t\t65160\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1573\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65161,\n\t\t\t65164\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1574\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65165,\n\t\t\t65166\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65167,\n\t\t\t65170\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65171,\n\t\t\t65172\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1577\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65173,\n\t\t\t65176\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65177,\n\t\t\t65180\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65181,\n\t\t\t65184\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65185,\n\t\t\t65188\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65189,\n\t\t\t65192\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65193,\n\t\t\t65194\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1583\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65195,\n\t\t\t65196\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1584\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65197,\n\t\t\t65198\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65199,\n\t\t\t65200\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65201,\n\t\t\t65204\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65205,\n\t\t\t65208\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65209,\n\t\t\t65212\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65213,\n\t\t\t65216\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65217,\n\t\t\t65220\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65221,\n\t\t\t65224\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65225,\n\t\t\t65228\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65229,\n\t\t\t65232\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65233,\n\t\t\t65236\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65237,\n\t\t\t65240\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65241,\n\t\t\t65244\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65245,\n\t\t\t65248\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65249,\n\t\t\t65252\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65253,\n\t\t\t65256\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65257,\n\t\t\t65260\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65261,\n\t\t\t65262\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65263,\n\t\t\t65264\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65265,\n\t\t\t65268\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65269,\n\t\t\t65270\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1570\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65271,\n\t\t\t65272\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1571\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65273,\n\t\t\t65274\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1573\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65275,\n\t\t\t65276\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604,\n\t\t\t1575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65277,\n\t\t\t65278\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65279,\n\t\t\t65279\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t65280,\n\t\t\t65280\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65281,\n\t\t\t65281\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t33\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65282,\n\t\t\t65282\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t34\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65283,\n\t\t\t65283\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t35\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65284,\n\t\t\t65284\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t36\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65285,\n\t\t\t65285\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t37\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65286,\n\t\t\t65286\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t38\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65287,\n\t\t\t65287\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t39\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65288,\n\t\t\t65288\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65289,\n\t\t\t65289\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65290,\n\t\t\t65290\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t42\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65291,\n\t\t\t65291\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t43\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65292,\n\t\t\t65292\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65293,\n\t\t\t65293\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t45\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65294,\n\t\t\t65294\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t46\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65295,\n\t\t\t65295\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t47\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65296,\n\t\t\t65296\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65297,\n\t\t\t65297\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65298,\n\t\t\t65298\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65299,\n\t\t\t65299\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65300,\n\t\t\t65300\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65301,\n\t\t\t65301\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65302,\n\t\t\t65302\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65303,\n\t\t\t65303\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65304,\n\t\t\t65304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65305,\n\t\t\t65305\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65306,\n\t\t\t65306\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t58\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65307,\n\t\t\t65307\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t59\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65308,\n\t\t\t65308\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t60\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65309,\n\t\t\t65309\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t61\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65310,\n\t\t\t65310\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t62\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65311,\n\t\t\t65311\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t63\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65312,\n\t\t\t65312\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t64\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65313,\n\t\t\t65313\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65314,\n\t\t\t65314\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65315,\n\t\t\t65315\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65316,\n\t\t\t65316\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65317,\n\t\t\t65317\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65318,\n\t\t\t65318\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65319,\n\t\t\t65319\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65320,\n\t\t\t65320\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65321,\n\t\t\t65321\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65322,\n\t\t\t65322\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65323,\n\t\t\t65323\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65324,\n\t\t\t65324\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65325,\n\t\t\t65325\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65326,\n\t\t\t65326\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65327,\n\t\t\t65327\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65328,\n\t\t\t65328\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65329,\n\t\t\t65329\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65330,\n\t\t\t65330\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65331,\n\t\t\t65331\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65332,\n\t\t\t65332\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65333,\n\t\t\t65333\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65334,\n\t\t\t65334\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65335,\n\t\t\t65335\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65336,\n\t\t\t65336\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65337,\n\t\t\t65337\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65338,\n\t\t\t65338\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65339,\n\t\t\t65339\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t91\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65340,\n\t\t\t65340\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t92\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65341,\n\t\t\t65341\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t93\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65342,\n\t\t\t65342\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t94\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65343,\n\t\t\t65343\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t95\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65344,\n\t\t\t65344\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t96\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65345,\n\t\t\t65345\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65346,\n\t\t\t65346\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65347,\n\t\t\t65347\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65348,\n\t\t\t65348\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65349,\n\t\t\t65349\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65350,\n\t\t\t65350\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65351,\n\t\t\t65351\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65352,\n\t\t\t65352\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65353,\n\t\t\t65353\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65354,\n\t\t\t65354\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65355,\n\t\t\t65355\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65356,\n\t\t\t65356\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65357,\n\t\t\t65357\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65358,\n\t\t\t65358\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65359,\n\t\t\t65359\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65360,\n\t\t\t65360\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65361,\n\t\t\t65361\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65362,\n\t\t\t65362\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65363,\n\t\t\t65363\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65364,\n\t\t\t65364\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65365,\n\t\t\t65365\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65366,\n\t\t\t65366\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65367,\n\t\t\t65367\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65368,\n\t\t\t65368\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65369,\n\t\t\t65369\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65370,\n\t\t\t65370\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65371,\n\t\t\t65371\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t123\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65372,\n\t\t\t65372\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t124\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65373,\n\t\t\t65373\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t125\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65374,\n\t\t\t65374\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t126\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65375,\n\t\t\t65375\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t10629\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65376,\n\t\t\t65376\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t10630\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65377,\n\t\t\t65377\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t46\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65378,\n\t\t\t65378\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12300\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65379,\n\t\t\t65379\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12301\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65380,\n\t\t\t65380\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12289\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65381,\n\t\t\t65381\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12539\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65382,\n\t\t\t65382\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12530\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65383,\n\t\t\t65383\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12449\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65384,\n\t\t\t65384\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12451\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65385,\n\t\t\t65385\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12453\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65386,\n\t\t\t65386\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12455\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65387,\n\t\t\t65387\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12457\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65388,\n\t\t\t65388\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12515\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65389,\n\t\t\t65389\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12517\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65390,\n\t\t\t65390\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12519\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65391,\n\t\t\t65391\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12483\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65392,\n\t\t\t65392\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12540\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65393,\n\t\t\t65393\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12450\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65394,\n\t\t\t65394\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12452\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65395,\n\t\t\t65395\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12454\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65396,\n\t\t\t65396\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12456\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65397,\n\t\t\t65397\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12458\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65398,\n\t\t\t65398\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12459\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65399,\n\t\t\t65399\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12461\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65400,\n\t\t\t65400\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12463\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65401,\n\t\t\t65401\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12465\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65402,\n\t\t\t65402\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12467\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65403,\n\t\t\t65403\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12469\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65404,\n\t\t\t65404\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65405,\n\t\t\t65405\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65406,\n\t\t\t65406\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12475\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65407,\n\t\t\t65407\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12477\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65408,\n\t\t\t65408\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12479\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65409,\n\t\t\t65409\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12481\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65410,\n\t\t\t65410\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12484\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65411,\n\t\t\t65411\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12486\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65412,\n\t\t\t65412\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65413,\n\t\t\t65413\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12490\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65414,\n\t\t\t65414\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65415,\n\t\t\t65415\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12492\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65416,\n\t\t\t65416\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12493\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65417,\n\t\t\t65417\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12494\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65418,\n\t\t\t65418\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12495\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65419,\n\t\t\t65419\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12498\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65420,\n\t\t\t65420\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12501\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65421,\n\t\t\t65421\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12504\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65422,\n\t\t\t65422\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12507\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65423,\n\t\t\t65423\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12510\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65424,\n\t\t\t65424\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12511\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65425,\n\t\t\t65425\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65426,\n\t\t\t65426\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12513\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65427,\n\t\t\t65427\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12514\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65428,\n\t\t\t65428\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12516\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65429,\n\t\t\t65429\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12518\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65430,\n\t\t\t65430\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12520\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65431,\n\t\t\t65431\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12521\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65432,\n\t\t\t65432\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12522\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65433,\n\t\t\t65433\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12523\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65434,\n\t\t\t65434\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12524\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65435,\n\t\t\t65435\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65436,\n\t\t\t65436\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12527\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65437,\n\t\t\t65437\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65438,\n\t\t\t65438\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12441\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65439,\n\t\t\t65439\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12442\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65440,\n\t\t\t65440\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65441,\n\t\t\t65441\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4352\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65442,\n\t\t\t65442\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4353\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65443,\n\t\t\t65443\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4522\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65444,\n\t\t\t65444\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4354\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65445,\n\t\t\t65445\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4524\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65446,\n\t\t\t65446\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65447,\n\t\t\t65447\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4355\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65448,\n\t\t\t65448\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4356\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65449,\n\t\t\t65449\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4357\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65450,\n\t\t\t65450\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4528\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65451,\n\t\t\t65451\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4529\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65452,\n\t\t\t65452\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4530\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65453,\n\t\t\t65453\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4531\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65454,\n\t\t\t65454\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4532\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65455,\n\t\t\t65455\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4533\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65456,\n\t\t\t65456\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4378\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65457,\n\t\t\t65457\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4358\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65458,\n\t\t\t65458\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4359\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65459,\n\t\t\t65459\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4360\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65460,\n\t\t\t65460\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4385\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65461,\n\t\t\t65461\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4361\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65462,\n\t\t\t65462\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4362\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65463,\n\t\t\t65463\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65464,\n\t\t\t65464\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4364\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65465,\n\t\t\t65465\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4365\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65466,\n\t\t\t65466\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4366\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65467,\n\t\t\t65467\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4367\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65468,\n\t\t\t65468\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4368\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65469,\n\t\t\t65469\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4369\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65470,\n\t\t\t65470\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4370\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65471,\n\t\t\t65473\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65474,\n\t\t\t65474\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4449\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65475,\n\t\t\t65475\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4450\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65476,\n\t\t\t65476\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4451\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65477,\n\t\t\t65477\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4452\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65478,\n\t\t\t65478\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4453\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65479,\n\t\t\t65479\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4454\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65480,\n\t\t\t65481\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65482,\n\t\t\t65482\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4455\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65483,\n\t\t\t65483\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4456\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65484,\n\t\t\t65484\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4457\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65485,\n\t\t\t65485\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4458\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65486,\n\t\t\t65486\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4459\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65487,\n\t\t\t65487\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4460\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65488,\n\t\t\t65489\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65490,\n\t\t\t65490\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4461\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65491,\n\t\t\t65491\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4462\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65492,\n\t\t\t65492\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4463\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65493,\n\t\t\t65493\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4464\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65494,\n\t\t\t65494\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4465\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65495,\n\t\t\t65495\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4466\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65496,\n\t\t\t65497\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65498,\n\t\t\t65498\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4467\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65499,\n\t\t\t65499\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4468\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65500,\n\t\t\t65500\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t4469\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65501,\n\t\t\t65503\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65504,\n\t\t\t65504\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t162\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65505,\n\t\t\t65505\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t163\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65506,\n\t\t\t65506\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t172\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65507,\n\t\t\t65507\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t32,\n\t\t\t772\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65508,\n\t\t\t65508\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t166\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65509,\n\t\t\t65509\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t165\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65510,\n\t\t\t65510\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8361\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65511,\n\t\t\t65511\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65512,\n\t\t\t65512\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t9474\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65513,\n\t\t\t65513\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65514,\n\t\t\t65514\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65515,\n\t\t\t65515\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65516,\n\t\t\t65516\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8595\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65517,\n\t\t\t65517\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t9632\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65518,\n\t\t\t65518\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t9675\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t65519,\n\t\t\t65528\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65529,\n\t\t\t65531\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65532,\n\t\t\t65532\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65533,\n\t\t\t65533\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65534,\n\t\t\t65535\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65536,\n\t\t\t65547\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65548,\n\t\t\t65548\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65549,\n\t\t\t65574\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65575,\n\t\t\t65575\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65576,\n\t\t\t65594\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65595,\n\t\t\t65595\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65596,\n\t\t\t65597\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65598,\n\t\t\t65598\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65599,\n\t\t\t65613\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65614,\n\t\t\t65615\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65616,\n\t\t\t65629\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65630,\n\t\t\t65663\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65664,\n\t\t\t65786\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t65787,\n\t\t\t65791\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65792,\n\t\t\t65794\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65795,\n\t\t\t65798\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65799,\n\t\t\t65843\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65844,\n\t\t\t65846\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65847,\n\t\t\t65855\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65856,\n\t\t\t65930\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65931,\n\t\t\t65932\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65933,\n\t\t\t65935\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65936,\n\t\t\t65947\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65948,\n\t\t\t65951\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t65952,\n\t\t\t65952\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t65953,\n\t\t\t65999\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66000,\n\t\t\t66044\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t66045,\n\t\t\t66045\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66046,\n\t\t\t66175\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66176,\n\t\t\t66204\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66205,\n\t\t\t66207\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66208,\n\t\t\t66256\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66257,\n\t\t\t66271\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66272,\n\t\t\t66272\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66273,\n\t\t\t66299\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t66300,\n\t\t\t66303\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66304,\n\t\t\t66334\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66335,\n\t\t\t66335\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66336,\n\t\t\t66339\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t66340,\n\t\t\t66351\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66352,\n\t\t\t66368\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66369,\n\t\t\t66369\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t66370,\n\t\t\t66377\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66378,\n\t\t\t66378\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t66379,\n\t\t\t66383\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66384,\n\t\t\t66426\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66427,\n\t\t\t66431\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66432,\n\t\t\t66461\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66462,\n\t\t\t66462\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66463,\n\t\t\t66463\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t66464,\n\t\t\t66499\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66500,\n\t\t\t66503\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66504,\n\t\t\t66511\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66512,\n\t\t\t66517\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t66518,\n\t\t\t66559\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66560,\n\t\t\t66560\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66600\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66561,\n\t\t\t66561\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66562,\n\t\t\t66562\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66563,\n\t\t\t66563\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66564,\n\t\t\t66564\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66565,\n\t\t\t66565\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66566,\n\t\t\t66566\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66567,\n\t\t\t66567\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66568,\n\t\t\t66568\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66569,\n\t\t\t66569\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66609\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66570,\n\t\t\t66570\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66571,\n\t\t\t66571\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66572,\n\t\t\t66572\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66612\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66573,\n\t\t\t66573\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66613\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66574,\n\t\t\t66574\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66614\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66575,\n\t\t\t66575\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66615\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66576,\n\t\t\t66576\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66616\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66577,\n\t\t\t66577\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66617\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66578,\n\t\t\t66578\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66579,\n\t\t\t66579\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66619\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66580,\n\t\t\t66580\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66581,\n\t\t\t66581\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66621\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66582,\n\t\t\t66582\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66622\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66583,\n\t\t\t66583\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66623\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66584,\n\t\t\t66584\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66624\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66585,\n\t\t\t66585\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66625\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66586,\n\t\t\t66586\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66626\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66587,\n\t\t\t66587\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66627\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66588,\n\t\t\t66588\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66628\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66589,\n\t\t\t66589\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66629\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66590,\n\t\t\t66590\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66630\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66591,\n\t\t\t66591\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66631\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66592,\n\t\t\t66592\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66632\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66593,\n\t\t\t66593\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66633\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66594,\n\t\t\t66594\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66634\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66595,\n\t\t\t66595\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66635\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66596,\n\t\t\t66596\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66636\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66597,\n\t\t\t66597\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66637\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66598,\n\t\t\t66598\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66638\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66599,\n\t\t\t66599\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t66639\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t66600,\n\t\t\t66637\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66638,\n\t\t\t66717\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66718,\n\t\t\t66719\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66720,\n\t\t\t66729\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66730,\n\t\t\t66815\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66816,\n\t\t\t66855\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66856,\n\t\t\t66863\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66864,\n\t\t\t66915\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t66916,\n\t\t\t66926\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t66927,\n\t\t\t66927\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t66928,\n\t\t\t67071\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67072,\n\t\t\t67382\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67383,\n\t\t\t67391\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67392,\n\t\t\t67413\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67414,\n\t\t\t67423\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67424,\n\t\t\t67431\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67432,\n\t\t\t67583\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67584,\n\t\t\t67589\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67590,\n\t\t\t67591\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67592,\n\t\t\t67592\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67593,\n\t\t\t67593\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67594,\n\t\t\t67637\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67638,\n\t\t\t67638\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67639,\n\t\t\t67640\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67641,\n\t\t\t67643\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67644,\n\t\t\t67644\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67645,\n\t\t\t67646\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67647,\n\t\t\t67647\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67648,\n\t\t\t67669\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67670,\n\t\t\t67670\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67671,\n\t\t\t67679\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t67680,\n\t\t\t67702\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67703,\n\t\t\t67711\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t67712,\n\t\t\t67742\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67743,\n\t\t\t67750\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67751,\n\t\t\t67759\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t67760,\n\t\t\t67807\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67808,\n\t\t\t67826\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67827,\n\t\t\t67827\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67828,\n\t\t\t67829\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67830,\n\t\t\t67834\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67835,\n\t\t\t67839\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t67840,\n\t\t\t67861\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67862,\n\t\t\t67865\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t67866,\n\t\t\t67867\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t67868,\n\t\t\t67870\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67871,\n\t\t\t67871\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t67872,\n\t\t\t67897\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t67898,\n\t\t\t67902\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67903,\n\t\t\t67903\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t67904,\n\t\t\t67967\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t67968,\n\t\t\t68023\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68024,\n\t\t\t68027\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68028,\n\t\t\t68029\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68030,\n\t\t\t68031\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68032,\n\t\t\t68047\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68048,\n\t\t\t68049\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68050,\n\t\t\t68095\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68096,\n\t\t\t68099\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68100,\n\t\t\t68100\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68101,\n\t\t\t68102\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68103,\n\t\t\t68107\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68108,\n\t\t\t68115\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68116,\n\t\t\t68116\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68117,\n\t\t\t68119\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68120,\n\t\t\t68120\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68121,\n\t\t\t68147\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68148,\n\t\t\t68151\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68152,\n\t\t\t68154\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68155,\n\t\t\t68158\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68159,\n\t\t\t68159\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68160,\n\t\t\t68167\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68168,\n\t\t\t68175\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68176,\n\t\t\t68184\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68185,\n\t\t\t68191\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68192,\n\t\t\t68220\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68221,\n\t\t\t68223\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68224,\n\t\t\t68252\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68253,\n\t\t\t68255\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68256,\n\t\t\t68287\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68288,\n\t\t\t68295\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68296,\n\t\t\t68296\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68297,\n\t\t\t68326\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68327,\n\t\t\t68330\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68331,\n\t\t\t68342\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68343,\n\t\t\t68351\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68352,\n\t\t\t68405\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68406,\n\t\t\t68408\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68409,\n\t\t\t68415\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68416,\n\t\t\t68437\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68438,\n\t\t\t68439\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68440,\n\t\t\t68447\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68448,\n\t\t\t68466\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68467,\n\t\t\t68471\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68472,\n\t\t\t68479\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68480,\n\t\t\t68497\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68498,\n\t\t\t68504\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68505,\n\t\t\t68508\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68509,\n\t\t\t68520\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68521,\n\t\t\t68527\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68528,\n\t\t\t68607\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68608,\n\t\t\t68680\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68681,\n\t\t\t68735\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68736,\n\t\t\t68736\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68800\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68737,\n\t\t\t68737\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68801\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68738,\n\t\t\t68738\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68802\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68739,\n\t\t\t68739\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68803\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68740,\n\t\t\t68740\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68804\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68741,\n\t\t\t68741\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68805\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68742,\n\t\t\t68742\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68806\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68743,\n\t\t\t68743\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68807\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68744,\n\t\t\t68744\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68808\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68745,\n\t\t\t68745\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68809\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68746,\n\t\t\t68746\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68810\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68747,\n\t\t\t68747\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68811\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68748,\n\t\t\t68748\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68812\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68749,\n\t\t\t68749\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68813\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68750,\n\t\t\t68750\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68814\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68751,\n\t\t\t68751\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68815\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68752,\n\t\t\t68752\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68816\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68753,\n\t\t\t68753\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68817\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68754,\n\t\t\t68754\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68818\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68755,\n\t\t\t68755\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68819\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68756,\n\t\t\t68756\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68820\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68757,\n\t\t\t68757\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68821\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68758,\n\t\t\t68758\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68822\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68759,\n\t\t\t68759\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68823\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68760,\n\t\t\t68760\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68824\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68761,\n\t\t\t68761\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68825\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68762,\n\t\t\t68762\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68826\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68763,\n\t\t\t68763\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68827\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68764,\n\t\t\t68764\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68828\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68765,\n\t\t\t68765\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68829\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68766,\n\t\t\t68766\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68830\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68767,\n\t\t\t68767\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68831\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68768,\n\t\t\t68768\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68832\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68769,\n\t\t\t68769\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68833\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68770,\n\t\t\t68770\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68834\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68771,\n\t\t\t68771\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68835\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68772,\n\t\t\t68772\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68836\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68773,\n\t\t\t68773\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68837\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68774,\n\t\t\t68774\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68838\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68775,\n\t\t\t68775\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68839\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68776,\n\t\t\t68776\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68840\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68777,\n\t\t\t68777\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68841\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68778,\n\t\t\t68778\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68842\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68779,\n\t\t\t68779\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68843\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68780,\n\t\t\t68780\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68844\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68781,\n\t\t\t68781\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68782,\n\t\t\t68782\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68846\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68783,\n\t\t\t68783\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68847\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68784,\n\t\t\t68784\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68848\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68785,\n\t\t\t68785\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68849\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68786,\n\t\t\t68786\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t68850\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t68787,\n\t\t\t68799\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68800,\n\t\t\t68850\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t68851,\n\t\t\t68857\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t68858,\n\t\t\t68863\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t68864,\n\t\t\t69215\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69216,\n\t\t\t69246\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t69247,\n\t\t\t69631\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69632,\n\t\t\t69702\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t69703,\n\t\t\t69709\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t69710,\n\t\t\t69713\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69714,\n\t\t\t69733\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t69734,\n\t\t\t69743\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t69744,\n\t\t\t69758\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69759,\n\t\t\t69759\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t69760,\n\t\t\t69818\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t69819,\n\t\t\t69820\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t69821,\n\t\t\t69821\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69822,\n\t\t\t69825\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t69826,\n\t\t\t69839\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69840,\n\t\t\t69864\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t69865,\n\t\t\t69871\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69872,\n\t\t\t69881\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t69882,\n\t\t\t69887\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69888,\n\t\t\t69940\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t69941,\n\t\t\t69941\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69942,\n\t\t\t69951\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t69952,\n\t\t\t69955\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t69956,\n\t\t\t69967\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t69968,\n\t\t\t70003\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70004,\n\t\t\t70005\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70006,\n\t\t\t70006\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70007,\n\t\t\t70015\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70016,\n\t\t\t70084\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70085,\n\t\t\t70088\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70089,\n\t\t\t70089\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70090,\n\t\t\t70092\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70093,\n\t\t\t70093\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70094,\n\t\t\t70095\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70096,\n\t\t\t70105\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70106,\n\t\t\t70106\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70107,\n\t\t\t70107\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70108,\n\t\t\t70108\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70109,\n\t\t\t70111\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70112,\n\t\t\t70112\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70113,\n\t\t\t70132\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70133,\n\t\t\t70143\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70144,\n\t\t\t70161\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70162,\n\t\t\t70162\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70163,\n\t\t\t70199\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70200,\n\t\t\t70205\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70206,\n\t\t\t70271\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70272,\n\t\t\t70278\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70279,\n\t\t\t70279\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70280,\n\t\t\t70280\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70281,\n\t\t\t70281\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70282,\n\t\t\t70285\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70286,\n\t\t\t70286\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70287,\n\t\t\t70301\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70302,\n\t\t\t70302\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70303,\n\t\t\t70312\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70313,\n\t\t\t70313\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70314,\n\t\t\t70319\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70320,\n\t\t\t70378\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70379,\n\t\t\t70383\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70384,\n\t\t\t70393\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70394,\n\t\t\t70399\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70400,\n\t\t\t70400\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70401,\n\t\t\t70403\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70404,\n\t\t\t70404\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70405,\n\t\t\t70412\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70413,\n\t\t\t70414\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70415,\n\t\t\t70416\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70417,\n\t\t\t70418\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70419,\n\t\t\t70440\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70441,\n\t\t\t70441\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70442,\n\t\t\t70448\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70449,\n\t\t\t70449\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70450,\n\t\t\t70451\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70452,\n\t\t\t70452\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70453,\n\t\t\t70457\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70458,\n\t\t\t70459\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70460,\n\t\t\t70468\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70469,\n\t\t\t70470\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70471,\n\t\t\t70472\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70473,\n\t\t\t70474\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70475,\n\t\t\t70477\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70478,\n\t\t\t70479\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70480,\n\t\t\t70480\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70481,\n\t\t\t70486\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70487,\n\t\t\t70487\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70488,\n\t\t\t70492\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70493,\n\t\t\t70499\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70500,\n\t\t\t70501\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70502,\n\t\t\t70508\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70509,\n\t\t\t70511\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70512,\n\t\t\t70516\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70517,\n\t\t\t70783\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70784,\n\t\t\t70853\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70854,\n\t\t\t70854\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t70855,\n\t\t\t70855\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70856,\n\t\t\t70863\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t70864,\n\t\t\t70873\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t70874,\n\t\t\t71039\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71040,\n\t\t\t71093\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71094,\n\t\t\t71095\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71096,\n\t\t\t71104\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71105,\n\t\t\t71113\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t71114,\n\t\t\t71127\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t71128,\n\t\t\t71133\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71134,\n\t\t\t71167\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71168,\n\t\t\t71232\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71233,\n\t\t\t71235\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t71236,\n\t\t\t71236\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71237,\n\t\t\t71247\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71248,\n\t\t\t71257\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71258,\n\t\t\t71295\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71296,\n\t\t\t71351\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71352,\n\t\t\t71359\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71360,\n\t\t\t71369\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71370,\n\t\t\t71423\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71424,\n\t\t\t71449\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71450,\n\t\t\t71452\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71453,\n\t\t\t71467\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71468,\n\t\t\t71471\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71472,\n\t\t\t71481\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71482,\n\t\t\t71487\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t71488,\n\t\t\t71839\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71840,\n\t\t\t71840\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71872\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71841,\n\t\t\t71841\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71873\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71842,\n\t\t\t71842\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71874\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71843,\n\t\t\t71843\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71875\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71844,\n\t\t\t71844\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71876\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71845,\n\t\t\t71845\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71877\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71846,\n\t\t\t71846\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71878\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71847,\n\t\t\t71847\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71879\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71848,\n\t\t\t71848\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71880\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71849,\n\t\t\t71849\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71881\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71850,\n\t\t\t71850\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71882\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71851,\n\t\t\t71851\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71883\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71852,\n\t\t\t71852\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71884\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71853,\n\t\t\t71853\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71885\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71854,\n\t\t\t71854\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71886\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71855,\n\t\t\t71855\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71887\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71856,\n\t\t\t71856\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71888\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71857,\n\t\t\t71857\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71889\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71858,\n\t\t\t71858\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71890\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71859,\n\t\t\t71859\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71891\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71860,\n\t\t\t71860\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71892\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71861,\n\t\t\t71861\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71893\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71862,\n\t\t\t71862\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71894\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71863,\n\t\t\t71863\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71895\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71864,\n\t\t\t71864\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71896\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71865,\n\t\t\t71865\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71897\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71866,\n\t\t\t71866\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71898\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71867,\n\t\t\t71867\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71899\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71868,\n\t\t\t71868\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71900\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71869,\n\t\t\t71869\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71901\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71870,\n\t\t\t71870\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71902\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71871,\n\t\t\t71871\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t71903\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t71872,\n\t\t\t71913\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71914,\n\t\t\t71922\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t71923,\n\t\t\t71934\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t71935,\n\t\t\t71935\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t71936,\n\t\t\t72383\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t72384,\n\t\t\t72440\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t72441,\n\t\t\t73727\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t73728,\n\t\t\t74606\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t74607,\n\t\t\t74648\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t74649,\n\t\t\t74649\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t74650,\n\t\t\t74751\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t74752,\n\t\t\t74850\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t74851,\n\t\t\t74862\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t74863,\n\t\t\t74863\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t74864,\n\t\t\t74867\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t74868,\n\t\t\t74868\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t74869,\n\t\t\t74879\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t74880,\n\t\t\t75075\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t75076,\n\t\t\t77823\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t77824,\n\t\t\t78894\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t78895,\n\t\t\t82943\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t82944,\n\t\t\t83526\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t83527,\n\t\t\t92159\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t92160,\n\t\t\t92728\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t92729,\n\t\t\t92735\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t92736,\n\t\t\t92766\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t92767,\n\t\t\t92767\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t92768,\n\t\t\t92777\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t92778,\n\t\t\t92781\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t92782,\n\t\t\t92783\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t92784,\n\t\t\t92879\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t92880,\n\t\t\t92909\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t92910,\n\t\t\t92911\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t92912,\n\t\t\t92916\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t92917,\n\t\t\t92917\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t92918,\n\t\t\t92927\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t92928,\n\t\t\t92982\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t92983,\n\t\t\t92991\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t92992,\n\t\t\t92995\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t92996,\n\t\t\t92997\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t92998,\n\t\t\t93007\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t93008,\n\t\t\t93017\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t93018,\n\t\t\t93018\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t93019,\n\t\t\t93025\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t93026,\n\t\t\t93026\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t93027,\n\t\t\t93047\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t93048,\n\t\t\t93052\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t93053,\n\t\t\t93071\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t93072,\n\t\t\t93951\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t93952,\n\t\t\t94020\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t94021,\n\t\t\t94031\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t94032,\n\t\t\t94078\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t94079,\n\t\t\t94094\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t94095,\n\t\t\t94111\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t94112,\n\t\t\t110591\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t110592,\n\t\t\t110593\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t110594,\n\t\t\t113663\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t113664,\n\t\t\t113770\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t113771,\n\t\t\t113775\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t113776,\n\t\t\t113788\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t113789,\n\t\t\t113791\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t113792,\n\t\t\t113800\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t113801,\n\t\t\t113807\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t113808,\n\t\t\t113817\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t113818,\n\t\t\t113819\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t113820,\n\t\t\t113820\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t113821,\n\t\t\t113822\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t113823,\n\t\t\t113823\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t113824,\n\t\t\t113827\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t113828,\n\t\t\t118783\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t118784,\n\t\t\t119029\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119030,\n\t\t\t119039\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119040,\n\t\t\t119078\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119079,\n\t\t\t119080\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119081,\n\t\t\t119081\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119082,\n\t\t\t119133\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119134,\n\t\t\t119134\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119127,\n\t\t\t119141\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119135,\n\t\t\t119135\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119128,\n\t\t\t119141\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119136,\n\t\t\t119136\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119128,\n\t\t\t119141,\n\t\t\t119150\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119137,\n\t\t\t119137\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119128,\n\t\t\t119141,\n\t\t\t119151\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119138,\n\t\t\t119138\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119128,\n\t\t\t119141,\n\t\t\t119152\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119139,\n\t\t\t119139\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119128,\n\t\t\t119141,\n\t\t\t119153\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119140,\n\t\t\t119140\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119128,\n\t\t\t119141,\n\t\t\t119154\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119141,\n\t\t\t119154\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119155,\n\t\t\t119162\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119163,\n\t\t\t119226\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119227,\n\t\t\t119227\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119225,\n\t\t\t119141\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119228,\n\t\t\t119228\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119226,\n\t\t\t119141\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119229,\n\t\t\t119229\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119225,\n\t\t\t119141,\n\t\t\t119150\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119230,\n\t\t\t119230\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119226,\n\t\t\t119141,\n\t\t\t119150\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119231,\n\t\t\t119231\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119225,\n\t\t\t119141,\n\t\t\t119151\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119232,\n\t\t\t119232\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119226,\n\t\t\t119141,\n\t\t\t119151\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119233,\n\t\t\t119261\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119262,\n\t\t\t119272\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119273,\n\t\t\t119295\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119296,\n\t\t\t119365\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119366,\n\t\t\t119551\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119552,\n\t\t\t119638\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119639,\n\t\t\t119647\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119648,\n\t\t\t119665\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t119666,\n\t\t\t119807\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119808,\n\t\t\t119808\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119809,\n\t\t\t119809\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119810,\n\t\t\t119810\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119811,\n\t\t\t119811\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119812,\n\t\t\t119812\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119813,\n\t\t\t119813\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119814,\n\t\t\t119814\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119815,\n\t\t\t119815\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119816,\n\t\t\t119816\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119817,\n\t\t\t119817\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119818,\n\t\t\t119818\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119819,\n\t\t\t119819\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119820,\n\t\t\t119820\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119821,\n\t\t\t119821\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119822,\n\t\t\t119822\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119823,\n\t\t\t119823\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119824,\n\t\t\t119824\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119825,\n\t\t\t119825\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119826,\n\t\t\t119826\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119827,\n\t\t\t119827\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119828,\n\t\t\t119828\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119829,\n\t\t\t119829\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119830,\n\t\t\t119830\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119831,\n\t\t\t119831\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119832,\n\t\t\t119832\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119833,\n\t\t\t119833\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119834,\n\t\t\t119834\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119835,\n\t\t\t119835\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119836,\n\t\t\t119836\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119837,\n\t\t\t119837\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119838,\n\t\t\t119838\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119839,\n\t\t\t119839\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119840,\n\t\t\t119840\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119841,\n\t\t\t119841\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119842,\n\t\t\t119842\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119843,\n\t\t\t119843\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119844,\n\t\t\t119844\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119845,\n\t\t\t119845\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119846,\n\t\t\t119846\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119847,\n\t\t\t119847\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119848,\n\t\t\t119848\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119849,\n\t\t\t119849\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119850,\n\t\t\t119850\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119851,\n\t\t\t119851\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119852,\n\t\t\t119852\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119853,\n\t\t\t119853\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119854,\n\t\t\t119854\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119855,\n\t\t\t119855\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119856,\n\t\t\t119856\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119857,\n\t\t\t119857\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119858,\n\t\t\t119858\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119859,\n\t\t\t119859\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119860,\n\t\t\t119860\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119861,\n\t\t\t119861\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119862,\n\t\t\t119862\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119863,\n\t\t\t119863\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119864,\n\t\t\t119864\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119865,\n\t\t\t119865\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119866,\n\t\t\t119866\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119867,\n\t\t\t119867\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119868,\n\t\t\t119868\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119869,\n\t\t\t119869\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119870,\n\t\t\t119870\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119871,\n\t\t\t119871\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119872,\n\t\t\t119872\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119873,\n\t\t\t119873\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119874,\n\t\t\t119874\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119875,\n\t\t\t119875\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119876,\n\t\t\t119876\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119877,\n\t\t\t119877\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119878,\n\t\t\t119878\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119879,\n\t\t\t119879\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119880,\n\t\t\t119880\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119881,\n\t\t\t119881\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119882,\n\t\t\t119882\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119883,\n\t\t\t119883\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119884,\n\t\t\t119884\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119885,\n\t\t\t119885\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119886,\n\t\t\t119886\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119887,\n\t\t\t119887\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119888,\n\t\t\t119888\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119889,\n\t\t\t119889\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119890,\n\t\t\t119890\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119891,\n\t\t\t119891\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119892,\n\t\t\t119892\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119893,\n\t\t\t119893\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119894,\n\t\t\t119894\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119895,\n\t\t\t119895\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119896,\n\t\t\t119896\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119897,\n\t\t\t119897\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119898,\n\t\t\t119898\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119899,\n\t\t\t119899\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119900,\n\t\t\t119900\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119901,\n\t\t\t119901\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119902,\n\t\t\t119902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119903,\n\t\t\t119903\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119904,\n\t\t\t119904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119905,\n\t\t\t119905\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119906,\n\t\t\t119906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119907,\n\t\t\t119907\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119908,\n\t\t\t119908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119909,\n\t\t\t119909\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119910,\n\t\t\t119910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119911,\n\t\t\t119911\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119912,\n\t\t\t119912\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119913,\n\t\t\t119913\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119914,\n\t\t\t119914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119915,\n\t\t\t119915\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119916,\n\t\t\t119916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119917,\n\t\t\t119917\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119918,\n\t\t\t119918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119919,\n\t\t\t119919\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119920,\n\t\t\t119920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119921,\n\t\t\t119921\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119922,\n\t\t\t119922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119923,\n\t\t\t119923\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119924,\n\t\t\t119924\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119925,\n\t\t\t119925\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119926,\n\t\t\t119926\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119927,\n\t\t\t119927\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119928,\n\t\t\t119928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119929,\n\t\t\t119929\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119930,\n\t\t\t119930\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119931,\n\t\t\t119931\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119932,\n\t\t\t119932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119933,\n\t\t\t119933\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119934,\n\t\t\t119934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119935,\n\t\t\t119935\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119936,\n\t\t\t119936\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119937,\n\t\t\t119937\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119938,\n\t\t\t119938\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119939,\n\t\t\t119939\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119940,\n\t\t\t119940\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119941,\n\t\t\t119941\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119942,\n\t\t\t119942\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119943,\n\t\t\t119943\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119944,\n\t\t\t119944\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119945,\n\t\t\t119945\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119946,\n\t\t\t119946\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119947,\n\t\t\t119947\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119948,\n\t\t\t119948\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119949,\n\t\t\t119949\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119950,\n\t\t\t119950\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119951,\n\t\t\t119951\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119952,\n\t\t\t119952\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119953,\n\t\t\t119953\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119954,\n\t\t\t119954\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119955,\n\t\t\t119955\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119956,\n\t\t\t119956\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119957,\n\t\t\t119957\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119958,\n\t\t\t119958\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119959,\n\t\t\t119959\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119960,\n\t\t\t119960\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119961,\n\t\t\t119961\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119962,\n\t\t\t119962\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119963,\n\t\t\t119963\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119964,\n\t\t\t119964\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119965,\n\t\t\t119965\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119966,\n\t\t\t119966\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119967,\n\t\t\t119967\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119968,\n\t\t\t119969\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119970,\n\t\t\t119970\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119971,\n\t\t\t119972\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119973,\n\t\t\t119973\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119974,\n\t\t\t119974\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119975,\n\t\t\t119976\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119977,\n\t\t\t119977\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119978,\n\t\t\t119978\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119979,\n\t\t\t119979\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119980,\n\t\t\t119980\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119981,\n\t\t\t119981\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119982,\n\t\t\t119982\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119983,\n\t\t\t119983\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119984,\n\t\t\t119984\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119985,\n\t\t\t119985\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119986,\n\t\t\t119986\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119987,\n\t\t\t119987\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119988,\n\t\t\t119988\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119989,\n\t\t\t119989\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119990,\n\t\t\t119990\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119991,\n\t\t\t119991\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119992,\n\t\t\t119992\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119993,\n\t\t\t119993\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119994,\n\t\t\t119994\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119995,\n\t\t\t119995\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119996,\n\t\t\t119996\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t119997,\n\t\t\t119997\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119998,\n\t\t\t119998\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t119999,\n\t\t\t119999\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120000,\n\t\t\t120000\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120001,\n\t\t\t120001\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120002,\n\t\t\t120002\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120003,\n\t\t\t120003\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120004,\n\t\t\t120004\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120005,\n\t\t\t120005\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120006,\n\t\t\t120006\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120007,\n\t\t\t120007\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120008,\n\t\t\t120008\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120009,\n\t\t\t120009\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120010,\n\t\t\t120010\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120011,\n\t\t\t120011\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120012,\n\t\t\t120012\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120013,\n\t\t\t120013\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120014,\n\t\t\t120014\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120015,\n\t\t\t120015\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120016,\n\t\t\t120016\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120017,\n\t\t\t120017\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120018,\n\t\t\t120018\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120019,\n\t\t\t120019\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120020,\n\t\t\t120020\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120021,\n\t\t\t120021\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120022,\n\t\t\t120022\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120023,\n\t\t\t120023\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120024,\n\t\t\t120024\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120025,\n\t\t\t120025\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120026,\n\t\t\t120026\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120027,\n\t\t\t120027\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120028,\n\t\t\t120028\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120029,\n\t\t\t120029\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120030,\n\t\t\t120030\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120031,\n\t\t\t120031\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120032,\n\t\t\t120032\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120033,\n\t\t\t120033\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120034,\n\t\t\t120034\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120035,\n\t\t\t120035\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120036,\n\t\t\t120036\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120037,\n\t\t\t120037\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120038,\n\t\t\t120038\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120039,\n\t\t\t120039\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120040,\n\t\t\t120040\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120041,\n\t\t\t120041\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120042,\n\t\t\t120042\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120043,\n\t\t\t120043\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120044,\n\t\t\t120044\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120045,\n\t\t\t120045\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120046,\n\t\t\t120046\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120047,\n\t\t\t120047\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120048,\n\t\t\t120048\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120049,\n\t\t\t120049\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120050,\n\t\t\t120050\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120051,\n\t\t\t120051\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120052,\n\t\t\t120052\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120053,\n\t\t\t120053\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120054,\n\t\t\t120054\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120055,\n\t\t\t120055\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120056,\n\t\t\t120056\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120057,\n\t\t\t120057\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120058,\n\t\t\t120058\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120059,\n\t\t\t120059\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120060,\n\t\t\t120060\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120061,\n\t\t\t120061\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120062,\n\t\t\t120062\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120063,\n\t\t\t120063\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120064,\n\t\t\t120064\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120065,\n\t\t\t120065\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120066,\n\t\t\t120066\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120067,\n\t\t\t120067\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120068,\n\t\t\t120068\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120069,\n\t\t\t120069\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120070,\n\t\t\t120070\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120071,\n\t\t\t120071\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120072,\n\t\t\t120072\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120073,\n\t\t\t120073\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120074,\n\t\t\t120074\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120075,\n\t\t\t120076\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120077,\n\t\t\t120077\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120078,\n\t\t\t120078\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120079,\n\t\t\t120079\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120080,\n\t\t\t120080\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120081,\n\t\t\t120081\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120082,\n\t\t\t120082\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120083,\n\t\t\t120083\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120084,\n\t\t\t120084\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120085,\n\t\t\t120085\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120086,\n\t\t\t120086\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120087,\n\t\t\t120087\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120088,\n\t\t\t120088\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120089,\n\t\t\t120089\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120090,\n\t\t\t120090\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120091,\n\t\t\t120091\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120092,\n\t\t\t120092\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120093,\n\t\t\t120093\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120094,\n\t\t\t120094\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120095,\n\t\t\t120095\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120096,\n\t\t\t120096\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120097,\n\t\t\t120097\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120098,\n\t\t\t120098\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120099,\n\t\t\t120099\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120100,\n\t\t\t120100\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120101,\n\t\t\t120101\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120102,\n\t\t\t120102\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120103,\n\t\t\t120103\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120104,\n\t\t\t120104\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120105,\n\t\t\t120105\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120106,\n\t\t\t120106\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120107,\n\t\t\t120107\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120108,\n\t\t\t120108\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120109,\n\t\t\t120109\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120110,\n\t\t\t120110\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120111,\n\t\t\t120111\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120112,\n\t\t\t120112\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120113,\n\t\t\t120113\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120114,\n\t\t\t120114\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120115,\n\t\t\t120115\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120116,\n\t\t\t120116\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120117,\n\t\t\t120117\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120118,\n\t\t\t120118\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120119,\n\t\t\t120119\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120120,\n\t\t\t120120\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120121,\n\t\t\t120121\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120122,\n\t\t\t120122\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120123,\n\t\t\t120123\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120124,\n\t\t\t120124\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120125,\n\t\t\t120125\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120126,\n\t\t\t120126\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120127,\n\t\t\t120127\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120128,\n\t\t\t120128\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120129,\n\t\t\t120129\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120130,\n\t\t\t120130\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120131,\n\t\t\t120131\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120132,\n\t\t\t120132\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120133,\n\t\t\t120133\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120134,\n\t\t\t120134\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120135,\n\t\t\t120137\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120138,\n\t\t\t120138\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120139,\n\t\t\t120139\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120140,\n\t\t\t120140\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120141,\n\t\t\t120141\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120142,\n\t\t\t120142\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120143,\n\t\t\t120143\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120144,\n\t\t\t120144\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120145,\n\t\t\t120145\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120146,\n\t\t\t120146\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120147,\n\t\t\t120147\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120148,\n\t\t\t120148\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120149,\n\t\t\t120149\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120150,\n\t\t\t120150\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120151,\n\t\t\t120151\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120152,\n\t\t\t120152\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120153,\n\t\t\t120153\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120154,\n\t\t\t120154\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120155,\n\t\t\t120155\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120156,\n\t\t\t120156\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120157,\n\t\t\t120157\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120158,\n\t\t\t120158\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120159,\n\t\t\t120159\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120160,\n\t\t\t120160\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120161,\n\t\t\t120161\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120162,\n\t\t\t120162\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120163,\n\t\t\t120163\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120164,\n\t\t\t120164\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120165,\n\t\t\t120165\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120166,\n\t\t\t120166\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120167,\n\t\t\t120167\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120168,\n\t\t\t120168\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120169,\n\t\t\t120169\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120170,\n\t\t\t120170\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120171,\n\t\t\t120171\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120172,\n\t\t\t120172\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120173,\n\t\t\t120173\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120174,\n\t\t\t120174\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120175,\n\t\t\t120175\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120176,\n\t\t\t120176\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120177,\n\t\t\t120177\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120178,\n\t\t\t120178\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120179,\n\t\t\t120179\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120180,\n\t\t\t120180\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120181,\n\t\t\t120181\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120182,\n\t\t\t120182\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120183,\n\t\t\t120183\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120184,\n\t\t\t120184\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120185,\n\t\t\t120185\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120186,\n\t\t\t120186\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120187,\n\t\t\t120187\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120188,\n\t\t\t120188\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120189,\n\t\t\t120189\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120190,\n\t\t\t120190\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120191,\n\t\t\t120191\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120192,\n\t\t\t120192\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120193,\n\t\t\t120193\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120194,\n\t\t\t120194\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120195,\n\t\t\t120195\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120196,\n\t\t\t120196\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120197,\n\t\t\t120197\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120198,\n\t\t\t120198\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120199,\n\t\t\t120199\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120200,\n\t\t\t120200\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120201,\n\t\t\t120201\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120202,\n\t\t\t120202\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120203,\n\t\t\t120203\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120204,\n\t\t\t120204\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120205,\n\t\t\t120205\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120206,\n\t\t\t120206\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120207,\n\t\t\t120207\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120208,\n\t\t\t120208\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120209,\n\t\t\t120209\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120210,\n\t\t\t120210\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120211,\n\t\t\t120211\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120212,\n\t\t\t120212\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120213,\n\t\t\t120213\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120214,\n\t\t\t120214\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120215,\n\t\t\t120215\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120216,\n\t\t\t120216\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120217,\n\t\t\t120217\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120218,\n\t\t\t120218\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120219,\n\t\t\t120219\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120220,\n\t\t\t120220\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120221,\n\t\t\t120221\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120222,\n\t\t\t120222\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120223,\n\t\t\t120223\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120224,\n\t\t\t120224\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120225,\n\t\t\t120225\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120226,\n\t\t\t120226\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120227,\n\t\t\t120227\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120228,\n\t\t\t120228\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120229,\n\t\t\t120229\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120230,\n\t\t\t120230\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120231,\n\t\t\t120231\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120232,\n\t\t\t120232\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120233,\n\t\t\t120233\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120234,\n\t\t\t120234\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120235,\n\t\t\t120235\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120236,\n\t\t\t120236\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120237,\n\t\t\t120237\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120238,\n\t\t\t120238\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120239,\n\t\t\t120239\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120240,\n\t\t\t120240\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120241,\n\t\t\t120241\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120242,\n\t\t\t120242\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120243,\n\t\t\t120243\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120244,\n\t\t\t120244\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120245,\n\t\t\t120245\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120246,\n\t\t\t120246\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120247,\n\t\t\t120247\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120248,\n\t\t\t120248\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120249,\n\t\t\t120249\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120250,\n\t\t\t120250\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120251,\n\t\t\t120251\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120252,\n\t\t\t120252\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120253,\n\t\t\t120253\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120254,\n\t\t\t120254\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120255,\n\t\t\t120255\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120256,\n\t\t\t120256\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120257,\n\t\t\t120257\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120258,\n\t\t\t120258\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120259,\n\t\t\t120259\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120260,\n\t\t\t120260\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120261,\n\t\t\t120261\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120262,\n\t\t\t120262\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120263,\n\t\t\t120263\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120264,\n\t\t\t120264\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120265,\n\t\t\t120265\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120266,\n\t\t\t120266\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120267,\n\t\t\t120267\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120268,\n\t\t\t120268\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120269,\n\t\t\t120269\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120270,\n\t\t\t120270\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120271,\n\t\t\t120271\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120272,\n\t\t\t120272\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120273,\n\t\t\t120273\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120274,\n\t\t\t120274\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120275,\n\t\t\t120275\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120276,\n\t\t\t120276\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120277,\n\t\t\t120277\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120278,\n\t\t\t120278\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120279,\n\t\t\t120279\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120280,\n\t\t\t120280\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120281,\n\t\t\t120281\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120282,\n\t\t\t120282\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120283,\n\t\t\t120283\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120284,\n\t\t\t120284\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120285,\n\t\t\t120285\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120286,\n\t\t\t120286\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120287,\n\t\t\t120287\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120288,\n\t\t\t120288\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120289,\n\t\t\t120289\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120290,\n\t\t\t120290\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120291,\n\t\t\t120291\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120292,\n\t\t\t120292\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120293,\n\t\t\t120293\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120294,\n\t\t\t120294\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120295,\n\t\t\t120295\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120296,\n\t\t\t120296\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120297,\n\t\t\t120297\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120298,\n\t\t\t120298\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120299,\n\t\t\t120299\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120300,\n\t\t\t120300\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120301,\n\t\t\t120301\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120302,\n\t\t\t120302\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120303,\n\t\t\t120303\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120304,\n\t\t\t120304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120305,\n\t\t\t120305\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120306,\n\t\t\t120306\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120307,\n\t\t\t120307\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120308,\n\t\t\t120308\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120309,\n\t\t\t120309\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120310,\n\t\t\t120310\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120311,\n\t\t\t120311\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120312,\n\t\t\t120312\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120313,\n\t\t\t120313\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120314,\n\t\t\t120314\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120315,\n\t\t\t120315\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120316,\n\t\t\t120316\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120317,\n\t\t\t120317\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120318,\n\t\t\t120318\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120319,\n\t\t\t120319\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120320,\n\t\t\t120320\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120321,\n\t\t\t120321\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120322,\n\t\t\t120322\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120323,\n\t\t\t120323\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120324,\n\t\t\t120324\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120325,\n\t\t\t120325\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120326,\n\t\t\t120326\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120327,\n\t\t\t120327\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120328,\n\t\t\t120328\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120329,\n\t\t\t120329\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120330,\n\t\t\t120330\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120331,\n\t\t\t120331\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120332,\n\t\t\t120332\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120333,\n\t\t\t120333\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120334,\n\t\t\t120334\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120335,\n\t\t\t120335\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120336,\n\t\t\t120336\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120337,\n\t\t\t120337\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120338,\n\t\t\t120338\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120339,\n\t\t\t120339\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120340,\n\t\t\t120340\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120341,\n\t\t\t120341\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120342,\n\t\t\t120342\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120343,\n\t\t\t120343\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120344,\n\t\t\t120344\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120345,\n\t\t\t120345\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120346,\n\t\t\t120346\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120347,\n\t\t\t120347\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120348,\n\t\t\t120348\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120349,\n\t\t\t120349\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120350,\n\t\t\t120350\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120351,\n\t\t\t120351\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120352,\n\t\t\t120352\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120353,\n\t\t\t120353\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120354,\n\t\t\t120354\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120355,\n\t\t\t120355\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120356,\n\t\t\t120356\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120357,\n\t\t\t120357\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120358,\n\t\t\t120358\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120359,\n\t\t\t120359\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120360,\n\t\t\t120360\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120361,\n\t\t\t120361\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120362,\n\t\t\t120362\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120363,\n\t\t\t120363\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120364,\n\t\t\t120364\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120365,\n\t\t\t120365\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120366,\n\t\t\t120366\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120367,\n\t\t\t120367\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120368,\n\t\t\t120368\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120369,\n\t\t\t120369\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120370,\n\t\t\t120370\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120371,\n\t\t\t120371\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120372,\n\t\t\t120372\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120373,\n\t\t\t120373\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120374,\n\t\t\t120374\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120375,\n\t\t\t120375\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120376,\n\t\t\t120376\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120377,\n\t\t\t120377\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120378,\n\t\t\t120378\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120379,\n\t\t\t120379\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120380,\n\t\t\t120380\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120381,\n\t\t\t120381\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120382,\n\t\t\t120382\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120383,\n\t\t\t120383\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120384,\n\t\t\t120384\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120385,\n\t\t\t120385\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120386,\n\t\t\t120386\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120387,\n\t\t\t120387\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120388,\n\t\t\t120388\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120389,\n\t\t\t120389\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120390,\n\t\t\t120390\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120391,\n\t\t\t120391\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120392,\n\t\t\t120392\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120393,\n\t\t\t120393\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120394,\n\t\t\t120394\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120395,\n\t\t\t120395\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120396,\n\t\t\t120396\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120397,\n\t\t\t120397\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120398,\n\t\t\t120398\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120399,\n\t\t\t120399\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120400,\n\t\t\t120400\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120401,\n\t\t\t120401\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120402,\n\t\t\t120402\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120403,\n\t\t\t120403\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120404,\n\t\t\t120404\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120405,\n\t\t\t120405\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120406,\n\t\t\t120406\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120407,\n\t\t\t120407\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120408,\n\t\t\t120408\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120409,\n\t\t\t120409\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120410,\n\t\t\t120410\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120411,\n\t\t\t120411\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120412,\n\t\t\t120412\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120413,\n\t\t\t120413\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120414,\n\t\t\t120414\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120415,\n\t\t\t120415\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120416,\n\t\t\t120416\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120417,\n\t\t\t120417\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120418,\n\t\t\t120418\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120419,\n\t\t\t120419\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120420,\n\t\t\t120420\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120421,\n\t\t\t120421\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120422,\n\t\t\t120422\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120423,\n\t\t\t120423\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120424,\n\t\t\t120424\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120425,\n\t\t\t120425\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120426,\n\t\t\t120426\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120427,\n\t\t\t120427\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120428,\n\t\t\t120428\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120429,\n\t\t\t120429\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120430,\n\t\t\t120430\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120431,\n\t\t\t120431\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120432,\n\t\t\t120432\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120433,\n\t\t\t120433\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120434,\n\t\t\t120434\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120435,\n\t\t\t120435\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120436,\n\t\t\t120436\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120437,\n\t\t\t120437\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120438,\n\t\t\t120438\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120439,\n\t\t\t120439\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120440,\n\t\t\t120440\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120441,\n\t\t\t120441\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120442,\n\t\t\t120442\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120443,\n\t\t\t120443\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120444,\n\t\t\t120444\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120445,\n\t\t\t120445\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120446,\n\t\t\t120446\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120447,\n\t\t\t120447\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120448,\n\t\t\t120448\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120449,\n\t\t\t120449\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120450,\n\t\t\t120450\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120451,\n\t\t\t120451\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120452,\n\t\t\t120452\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120453,\n\t\t\t120453\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120454,\n\t\t\t120454\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120455,\n\t\t\t120455\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120456,\n\t\t\t120456\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120457,\n\t\t\t120457\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120458,\n\t\t\t120458\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120459,\n\t\t\t120459\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120460,\n\t\t\t120460\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120461,\n\t\t\t120461\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120462,\n\t\t\t120462\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120463,\n\t\t\t120463\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120464,\n\t\t\t120464\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120465,\n\t\t\t120465\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120466,\n\t\t\t120466\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120467,\n\t\t\t120467\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120468,\n\t\t\t120468\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120469,\n\t\t\t120469\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120470,\n\t\t\t120470\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120471,\n\t\t\t120471\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120472,\n\t\t\t120472\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120473,\n\t\t\t120473\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120474,\n\t\t\t120474\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120475,\n\t\t\t120475\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120476,\n\t\t\t120476\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120477,\n\t\t\t120477\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120478,\n\t\t\t120478\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120479,\n\t\t\t120479\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120480,\n\t\t\t120480\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120481,\n\t\t\t120481\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120482,\n\t\t\t120482\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120483,\n\t\t\t120483\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120484,\n\t\t\t120484\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t305\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120485,\n\t\t\t120485\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t567\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120486,\n\t\t\t120487\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120488,\n\t\t\t120488\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120489,\n\t\t\t120489\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120490,\n\t\t\t120490\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120491,\n\t\t\t120491\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120492,\n\t\t\t120492\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120493,\n\t\t\t120493\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120494,\n\t\t\t120494\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120495,\n\t\t\t120495\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120496,\n\t\t\t120496\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120497,\n\t\t\t120497\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120498,\n\t\t\t120498\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120499,\n\t\t\t120499\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120500,\n\t\t\t120500\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120501,\n\t\t\t120501\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120502,\n\t\t\t120502\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120503,\n\t\t\t120503\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120504,\n\t\t\t120504\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120505,\n\t\t\t120505\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120506,\n\t\t\t120506\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120507,\n\t\t\t120507\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120508,\n\t\t\t120508\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120509,\n\t\t\t120509\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120510,\n\t\t\t120510\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120511,\n\t\t\t120511\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120512,\n\t\t\t120512\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120513,\n\t\t\t120513\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120514,\n\t\t\t120514\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120515,\n\t\t\t120515\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120516,\n\t\t\t120516\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120517,\n\t\t\t120517\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120518,\n\t\t\t120518\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120519,\n\t\t\t120519\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120520,\n\t\t\t120520\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120521,\n\t\t\t120521\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120522,\n\t\t\t120522\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120523,\n\t\t\t120523\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120524,\n\t\t\t120524\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120525,\n\t\t\t120525\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120526,\n\t\t\t120526\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120527,\n\t\t\t120527\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120528,\n\t\t\t120528\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120529,\n\t\t\t120529\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120530,\n\t\t\t120530\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120531,\n\t\t\t120532\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120533,\n\t\t\t120533\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120534,\n\t\t\t120534\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120535,\n\t\t\t120535\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120536,\n\t\t\t120536\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120537,\n\t\t\t120537\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120538,\n\t\t\t120538\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120539,\n\t\t\t120539\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120540,\n\t\t\t120540\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120541,\n\t\t\t120541\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120542,\n\t\t\t120542\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120543,\n\t\t\t120543\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120544,\n\t\t\t120544\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120545,\n\t\t\t120545\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120546,\n\t\t\t120546\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120547,\n\t\t\t120547\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120548,\n\t\t\t120548\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120549,\n\t\t\t120549\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120550,\n\t\t\t120550\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120551,\n\t\t\t120551\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120552,\n\t\t\t120552\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120553,\n\t\t\t120553\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120554,\n\t\t\t120554\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120555,\n\t\t\t120555\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120556,\n\t\t\t120556\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120557,\n\t\t\t120557\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120558,\n\t\t\t120558\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120559,\n\t\t\t120559\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120560,\n\t\t\t120560\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120561,\n\t\t\t120561\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120562,\n\t\t\t120562\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120563,\n\t\t\t120563\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120564,\n\t\t\t120564\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120565,\n\t\t\t120565\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120566,\n\t\t\t120566\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120567,\n\t\t\t120567\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120568,\n\t\t\t120568\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120569,\n\t\t\t120569\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120570,\n\t\t\t120570\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120571,\n\t\t\t120571\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120572,\n\t\t\t120572\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120573,\n\t\t\t120573\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120574,\n\t\t\t120574\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120575,\n\t\t\t120575\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120576,\n\t\t\t120576\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120577,\n\t\t\t120577\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120578,\n\t\t\t120578\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120579,\n\t\t\t120579\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120580,\n\t\t\t120580\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120581,\n\t\t\t120581\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120582,\n\t\t\t120582\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120583,\n\t\t\t120583\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120584,\n\t\t\t120584\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120585,\n\t\t\t120585\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120586,\n\t\t\t120586\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120587,\n\t\t\t120587\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120588,\n\t\t\t120588\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120589,\n\t\t\t120590\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120591,\n\t\t\t120591\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120592,\n\t\t\t120592\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120593,\n\t\t\t120593\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120594,\n\t\t\t120594\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120595,\n\t\t\t120595\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120596,\n\t\t\t120596\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120597,\n\t\t\t120597\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120598,\n\t\t\t120598\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120599,\n\t\t\t120599\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120600,\n\t\t\t120600\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120601,\n\t\t\t120601\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120602,\n\t\t\t120602\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120603,\n\t\t\t120603\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120604,\n\t\t\t120604\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120605,\n\t\t\t120605\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120606,\n\t\t\t120606\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120607,\n\t\t\t120607\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120608,\n\t\t\t120608\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120609,\n\t\t\t120609\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120610,\n\t\t\t120610\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120611,\n\t\t\t120611\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120612,\n\t\t\t120612\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120613,\n\t\t\t120613\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120614,\n\t\t\t120614\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120615,\n\t\t\t120615\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120616,\n\t\t\t120616\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120617,\n\t\t\t120617\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120618,\n\t\t\t120618\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120619,\n\t\t\t120619\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120620,\n\t\t\t120620\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120621,\n\t\t\t120621\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120622,\n\t\t\t120622\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120623,\n\t\t\t120623\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120624,\n\t\t\t120624\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120625,\n\t\t\t120625\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120626,\n\t\t\t120626\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120627,\n\t\t\t120627\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120628,\n\t\t\t120628\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120629,\n\t\t\t120629\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120630,\n\t\t\t120630\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120631,\n\t\t\t120631\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120632,\n\t\t\t120632\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120633,\n\t\t\t120633\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120634,\n\t\t\t120634\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120635,\n\t\t\t120635\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120636,\n\t\t\t120636\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120637,\n\t\t\t120637\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120638,\n\t\t\t120638\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120639,\n\t\t\t120639\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120640,\n\t\t\t120640\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120641,\n\t\t\t120641\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120642,\n\t\t\t120642\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120643,\n\t\t\t120643\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120644,\n\t\t\t120644\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120645,\n\t\t\t120645\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120646,\n\t\t\t120646\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120647,\n\t\t\t120648\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120649,\n\t\t\t120649\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120650,\n\t\t\t120650\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120651,\n\t\t\t120651\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120652,\n\t\t\t120652\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120653,\n\t\t\t120653\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120654,\n\t\t\t120654\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120655,\n\t\t\t120655\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120656,\n\t\t\t120656\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120657,\n\t\t\t120657\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120658,\n\t\t\t120658\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120659,\n\t\t\t120659\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120660,\n\t\t\t120660\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120661,\n\t\t\t120661\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120662,\n\t\t\t120662\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120663,\n\t\t\t120663\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120664,\n\t\t\t120664\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120665,\n\t\t\t120665\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120666,\n\t\t\t120666\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120667,\n\t\t\t120667\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120668,\n\t\t\t120668\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120669,\n\t\t\t120669\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120670,\n\t\t\t120670\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120671,\n\t\t\t120671\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120672,\n\t\t\t120672\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120673,\n\t\t\t120673\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120674,\n\t\t\t120674\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120675,\n\t\t\t120675\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120676,\n\t\t\t120676\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120677,\n\t\t\t120677\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120678,\n\t\t\t120678\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120679,\n\t\t\t120679\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120680,\n\t\t\t120680\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120681,\n\t\t\t120681\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120682,\n\t\t\t120682\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120683,\n\t\t\t120683\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120684,\n\t\t\t120684\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120685,\n\t\t\t120685\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120686,\n\t\t\t120686\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120687,\n\t\t\t120687\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120688,\n\t\t\t120688\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120689,\n\t\t\t120689\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120690,\n\t\t\t120690\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120691,\n\t\t\t120691\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120692,\n\t\t\t120692\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120693,\n\t\t\t120693\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120694,\n\t\t\t120694\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120695,\n\t\t\t120695\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120696,\n\t\t\t120696\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120697,\n\t\t\t120697\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120698,\n\t\t\t120698\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120699,\n\t\t\t120699\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120700,\n\t\t\t120700\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120701,\n\t\t\t120701\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120702,\n\t\t\t120702\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120703,\n\t\t\t120703\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120704,\n\t\t\t120704\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120705,\n\t\t\t120706\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120707,\n\t\t\t120707\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120708,\n\t\t\t120708\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120709,\n\t\t\t120709\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120710,\n\t\t\t120710\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120711,\n\t\t\t120711\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120712,\n\t\t\t120712\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120713,\n\t\t\t120713\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120714,\n\t\t\t120714\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120715,\n\t\t\t120715\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120716,\n\t\t\t120716\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120717,\n\t\t\t120717\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120718,\n\t\t\t120718\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120719,\n\t\t\t120719\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120720,\n\t\t\t120720\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120721,\n\t\t\t120721\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120722,\n\t\t\t120722\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120723,\n\t\t\t120723\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120724,\n\t\t\t120724\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120725,\n\t\t\t120725\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120726,\n\t\t\t120726\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120727,\n\t\t\t120727\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120728,\n\t\t\t120728\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120729,\n\t\t\t120729\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120730,\n\t\t\t120730\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120731,\n\t\t\t120731\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120732,\n\t\t\t120732\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120733,\n\t\t\t120733\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120734,\n\t\t\t120734\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120735,\n\t\t\t120735\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120736,\n\t\t\t120736\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120737,\n\t\t\t120737\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120738,\n\t\t\t120738\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120739,\n\t\t\t120739\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120740,\n\t\t\t120740\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120741,\n\t\t\t120741\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120742,\n\t\t\t120742\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120743,\n\t\t\t120743\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120744,\n\t\t\t120744\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120745,\n\t\t\t120745\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120746,\n\t\t\t120746\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t945\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120747,\n\t\t\t120747\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120748,\n\t\t\t120748\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t947\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120749,\n\t\t\t120749\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t948\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120750,\n\t\t\t120750\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120751,\n\t\t\t120751\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t950\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120752,\n\t\t\t120752\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t951\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120753,\n\t\t\t120753\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120754,\n\t\t\t120754\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120755,\n\t\t\t120755\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120756,\n\t\t\t120756\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t955\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120757,\n\t\t\t120757\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120758,\n\t\t\t120758\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t957\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120759,\n\t\t\t120759\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t958\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120760,\n\t\t\t120760\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t959\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120761,\n\t\t\t120761\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120762,\n\t\t\t120762\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120763,\n\t\t\t120764\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120765,\n\t\t\t120765\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120766,\n\t\t\t120766\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t965\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120767,\n\t\t\t120767\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120768,\n\t\t\t120768\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t967\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120769,\n\t\t\t120769\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120770,\n\t\t\t120770\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120771,\n\t\t\t120771\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t8706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120772,\n\t\t\t120772\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t949\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120773,\n\t\t\t120773\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t952\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120774,\n\t\t\t120774\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120775,\n\t\t\t120775\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120776,\n\t\t\t120776\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120777,\n\t\t\t120777\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t960\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120778,\n\t\t\t120779\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t989\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120780,\n\t\t\t120781\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t120782,\n\t\t\t120782\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120783,\n\t\t\t120783\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120784,\n\t\t\t120784\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120785,\n\t\t\t120785\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120786,\n\t\t\t120786\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120787,\n\t\t\t120787\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120788,\n\t\t\t120788\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120789,\n\t\t\t120789\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120790,\n\t\t\t120790\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120791,\n\t\t\t120791\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120792,\n\t\t\t120792\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120793,\n\t\t\t120793\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120794,\n\t\t\t120794\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120795,\n\t\t\t120795\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120796,\n\t\t\t120796\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120797,\n\t\t\t120797\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120798,\n\t\t\t120798\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120799,\n\t\t\t120799\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120800,\n\t\t\t120800\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120801,\n\t\t\t120801\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120802,\n\t\t\t120802\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120803,\n\t\t\t120803\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120804,\n\t\t\t120804\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120805,\n\t\t\t120805\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120806,\n\t\t\t120806\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120807,\n\t\t\t120807\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120808,\n\t\t\t120808\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120809,\n\t\t\t120809\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120810,\n\t\t\t120810\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120811,\n\t\t\t120811\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120812,\n\t\t\t120812\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120813,\n\t\t\t120813\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120814,\n\t\t\t120814\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120815,\n\t\t\t120815\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120816,\n\t\t\t120816\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120817,\n\t\t\t120817\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120818,\n\t\t\t120818\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120819,\n\t\t\t120819\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120820,\n\t\t\t120820\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120821,\n\t\t\t120821\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120822,\n\t\t\t120822\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t48\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120823,\n\t\t\t120823\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t49\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120824,\n\t\t\t120824\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t50\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120825,\n\t\t\t120825\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t51\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120826,\n\t\t\t120826\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t52\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120827,\n\t\t\t120827\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t53\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120828,\n\t\t\t120828\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t54\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120829,\n\t\t\t120829\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t55\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120830,\n\t\t\t120830\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t56\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120831,\n\t\t\t120831\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t57\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t120832,\n\t\t\t121343\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t121344,\n\t\t\t121398\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t121399,\n\t\t\t121402\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t121403,\n\t\t\t121452\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t121453,\n\t\t\t121460\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t121461,\n\t\t\t121461\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t121462,\n\t\t\t121475\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t121476,\n\t\t\t121476\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t121477,\n\t\t\t121483\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t121484,\n\t\t\t121498\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t121499,\n\t\t\t121503\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t121504,\n\t\t\t121504\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t121505,\n\t\t\t121519\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t121520,\n\t\t\t124927\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t124928,\n\t\t\t125124\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t125125,\n\t\t\t125126\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t125127,\n\t\t\t125135\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t125136,\n\t\t\t125142\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t125143,\n\t\t\t126463\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126464,\n\t\t\t126464\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126465,\n\t\t\t126465\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126466,\n\t\t\t126466\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126467,\n\t\t\t126467\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1583\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126468,\n\t\t\t126468\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126469,\n\t\t\t126469\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126470,\n\t\t\t126470\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126471,\n\t\t\t126471\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126472,\n\t\t\t126472\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126473,\n\t\t\t126473\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126474,\n\t\t\t126474\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126475,\n\t\t\t126475\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126476,\n\t\t\t126476\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126477,\n\t\t\t126477\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126478,\n\t\t\t126478\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126479,\n\t\t\t126479\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126480,\n\t\t\t126480\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126481,\n\t\t\t126481\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126482,\n\t\t\t126482\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126483,\n\t\t\t126483\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126484,\n\t\t\t126484\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126485,\n\t\t\t126485\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126486,\n\t\t\t126486\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126487,\n\t\t\t126487\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126488,\n\t\t\t126488\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1584\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126489,\n\t\t\t126489\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126490,\n\t\t\t126490\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126491,\n\t\t\t126491\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126492,\n\t\t\t126492\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1646\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126493,\n\t\t\t126493\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1722\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126494,\n\t\t\t126494\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1697\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126495,\n\t\t\t126495\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1647\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126496,\n\t\t\t126496\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126497,\n\t\t\t126497\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126498,\n\t\t\t126498\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126499,\n\t\t\t126499\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126500,\n\t\t\t126500\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126501,\n\t\t\t126502\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126503,\n\t\t\t126503\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126504,\n\t\t\t126504\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126505,\n\t\t\t126505\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126506,\n\t\t\t126506\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126507,\n\t\t\t126507\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126508,\n\t\t\t126508\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126509,\n\t\t\t126509\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126510,\n\t\t\t126510\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126511,\n\t\t\t126511\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126512,\n\t\t\t126512\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126513,\n\t\t\t126513\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126514,\n\t\t\t126514\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126515,\n\t\t\t126515\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126516,\n\t\t\t126516\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126517,\n\t\t\t126517\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126518,\n\t\t\t126518\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126519,\n\t\t\t126519\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126520,\n\t\t\t126520\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126521,\n\t\t\t126521\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126522,\n\t\t\t126522\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126523,\n\t\t\t126523\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126524,\n\t\t\t126529\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126530,\n\t\t\t126530\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126531,\n\t\t\t126534\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126535,\n\t\t\t126535\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126536,\n\t\t\t126536\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126537,\n\t\t\t126537\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126538,\n\t\t\t126538\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126539,\n\t\t\t126539\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126540,\n\t\t\t126540\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126541,\n\t\t\t126541\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126542,\n\t\t\t126542\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126543,\n\t\t\t126543\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126544,\n\t\t\t126544\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126545,\n\t\t\t126545\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126546,\n\t\t\t126546\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126547,\n\t\t\t126547\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126548,\n\t\t\t126548\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126549,\n\t\t\t126550\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126551,\n\t\t\t126551\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126552,\n\t\t\t126552\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126553,\n\t\t\t126553\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126554,\n\t\t\t126554\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126555,\n\t\t\t126555\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126556,\n\t\t\t126556\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126557,\n\t\t\t126557\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1722\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126558,\n\t\t\t126558\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126559,\n\t\t\t126559\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1647\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126560,\n\t\t\t126560\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126561,\n\t\t\t126561\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126562,\n\t\t\t126562\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126563,\n\t\t\t126563\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126564,\n\t\t\t126564\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126565,\n\t\t\t126566\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126567,\n\t\t\t126567\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126568,\n\t\t\t126568\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126569,\n\t\t\t126569\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126570,\n\t\t\t126570\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126571,\n\t\t\t126571\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126572,\n\t\t\t126572\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126573,\n\t\t\t126573\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126574,\n\t\t\t126574\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126575,\n\t\t\t126575\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126576,\n\t\t\t126576\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126577,\n\t\t\t126577\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126578,\n\t\t\t126578\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126579,\n\t\t\t126579\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126580,\n\t\t\t126580\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126581,\n\t\t\t126581\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126582,\n\t\t\t126582\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126583,\n\t\t\t126583\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126584,\n\t\t\t126584\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126585,\n\t\t\t126585\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126586,\n\t\t\t126586\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126587,\n\t\t\t126587\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126588,\n\t\t\t126588\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1646\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126589,\n\t\t\t126589\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126590,\n\t\t\t126590\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1697\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126591,\n\t\t\t126591\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126592,\n\t\t\t126592\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126593,\n\t\t\t126593\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126594,\n\t\t\t126594\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126595,\n\t\t\t126595\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1583\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126596,\n\t\t\t126596\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126597,\n\t\t\t126597\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126598,\n\t\t\t126598\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126599,\n\t\t\t126599\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126600,\n\t\t\t126600\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126601,\n\t\t\t126601\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126602,\n\t\t\t126602\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126603,\n\t\t\t126603\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126604,\n\t\t\t126604\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126605,\n\t\t\t126605\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126606,\n\t\t\t126606\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126607,\n\t\t\t126607\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126608,\n\t\t\t126608\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126609,\n\t\t\t126609\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126610,\n\t\t\t126610\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126611,\n\t\t\t126611\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126612,\n\t\t\t126612\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126613,\n\t\t\t126613\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126614,\n\t\t\t126614\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126615,\n\t\t\t126615\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126616,\n\t\t\t126616\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1584\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126617,\n\t\t\t126617\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126618,\n\t\t\t126618\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126619,\n\t\t\t126619\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126620,\n\t\t\t126624\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126625,\n\t\t\t126625\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126626,\n\t\t\t126626\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1580\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126627,\n\t\t\t126627\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1583\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126628,\n\t\t\t126628\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126629,\n\t\t\t126629\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126630,\n\t\t\t126630\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126631,\n\t\t\t126631\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1581\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126632,\n\t\t\t126632\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1591\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126633,\n\t\t\t126633\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1610\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126634,\n\t\t\t126634\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126635,\n\t\t\t126635\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1604\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126636,\n\t\t\t126636\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126637,\n\t\t\t126637\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1606\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126638,\n\t\t\t126638\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1587\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126639,\n\t\t\t126639\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1593\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126640,\n\t\t\t126640\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1601\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126641,\n\t\t\t126641\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126642,\n\t\t\t126642\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126643,\n\t\t\t126643\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1585\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126644,\n\t\t\t126644\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1588\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126645,\n\t\t\t126645\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126646,\n\t\t\t126646\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126647,\n\t\t\t126647\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126648,\n\t\t\t126648\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1584\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126649,\n\t\t\t126649\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1590\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126650,\n\t\t\t126650\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126651,\n\t\t\t126651\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t1594\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t126652,\n\t\t\t126703\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126704,\n\t\t\t126705\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t126706,\n\t\t\t126975\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t126976,\n\t\t\t127019\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127020,\n\t\t\t127023\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127024,\n\t\t\t127123\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127124,\n\t\t\t127135\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127136,\n\t\t\t127150\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127151,\n\t\t\t127152\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127153,\n\t\t\t127166\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127167,\n\t\t\t127167\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127168,\n\t\t\t127168\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127169,\n\t\t\t127183\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127184,\n\t\t\t127184\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127185,\n\t\t\t127199\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127200,\n\t\t\t127221\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127222,\n\t\t\t127231\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127232,\n\t\t\t127232\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127233,\n\t\t\t127233\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t48,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127234,\n\t\t\t127234\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t49,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127235,\n\t\t\t127235\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t50,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127236,\n\t\t\t127236\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t51,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127237,\n\t\t\t127237\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t52,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127238,\n\t\t\t127238\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t53,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127239,\n\t\t\t127239\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t54,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127240,\n\t\t\t127240\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t55,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127241,\n\t\t\t127241\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t56,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127242,\n\t\t\t127242\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t57,\n\t\t\t44\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127243,\n\t\t\t127244\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127245,\n\t\t\t127247\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127248,\n\t\t\t127248\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t97,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127249,\n\t\t\t127249\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t98,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127250,\n\t\t\t127250\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t99,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127251,\n\t\t\t127251\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t100,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127252,\n\t\t\t127252\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t101,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127253,\n\t\t\t127253\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t102,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127254,\n\t\t\t127254\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t103,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127255,\n\t\t\t127255\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t104,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127256,\n\t\t\t127256\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t105,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127257,\n\t\t\t127257\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t106,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127258,\n\t\t\t127258\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t107,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127259,\n\t\t\t127259\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t108,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127260,\n\t\t\t127260\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t109,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127261,\n\t\t\t127261\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t110,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127262,\n\t\t\t127262\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t111,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127263,\n\t\t\t127263\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t112,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127264,\n\t\t\t127264\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t113,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127265,\n\t\t\t127265\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t114,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127266,\n\t\t\t127266\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t115,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127267,\n\t\t\t127267\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t116,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127268,\n\t\t\t127268\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t117,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127269,\n\t\t\t127269\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t118,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127270,\n\t\t\t127270\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t119,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127271,\n\t\t\t127271\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t120,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127272,\n\t\t\t127272\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t121,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127273,\n\t\t\t127273\n\t\t],\n\t\t\"disallowed_STD3_mapped\",\n\t\t[\n\t\t\t40,\n\t\t\t122,\n\t\t\t41\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127274,\n\t\t\t127274\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t115,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127275,\n\t\t\t127275\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127276,\n\t\t\t127276\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127277,\n\t\t\t127277\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99,\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127278,\n\t\t\t127278\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119,\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127279,\n\t\t\t127279\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127280,\n\t\t\t127280\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t97\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127281,\n\t\t\t127281\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t98\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127282,\n\t\t\t127282\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127283,\n\t\t\t127283\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127284,\n\t\t\t127284\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t101\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127285,\n\t\t\t127285\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t102\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127286,\n\t\t\t127286\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t103\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127287,\n\t\t\t127287\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127288,\n\t\t\t127288\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127289,\n\t\t\t127289\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127290,\n\t\t\t127290\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t107\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127291,\n\t\t\t127291\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127292,\n\t\t\t127292\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127293,\n\t\t\t127293\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127294,\n\t\t\t127294\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127295,\n\t\t\t127295\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127296,\n\t\t\t127296\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t113\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127297,\n\t\t\t127297\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127298,\n\t\t\t127298\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127299,\n\t\t\t127299\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t116\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127300,\n\t\t\t127300\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t117\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127301,\n\t\t\t127301\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127302,\n\t\t\t127302\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127303,\n\t\t\t127303\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t120\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127304,\n\t\t\t127304\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t121\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127305,\n\t\t\t127305\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127306,\n\t\t\t127306\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t104,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127307,\n\t\t\t127307\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127308,\n\t\t\t127308\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115,\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127309,\n\t\t\t127309\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t115,\n\t\t\t115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127310,\n\t\t\t127310\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t112,\n\t\t\t112,\n\t\t\t118\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127311,\n\t\t\t127311\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t119,\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127312,\n\t\t\t127318\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127319,\n\t\t\t127319\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127320,\n\t\t\t127326\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127327,\n\t\t\t127327\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127328,\n\t\t\t127337\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127338,\n\t\t\t127338\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t99\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127339,\n\t\t\t127339\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t109,\n\t\t\t100\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127340,\n\t\t\t127343\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127344,\n\t\t\t127352\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127353,\n\t\t\t127353\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127354,\n\t\t\t127354\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127355,\n\t\t\t127356\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127357,\n\t\t\t127358\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127359,\n\t\t\t127359\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127360,\n\t\t\t127369\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127370,\n\t\t\t127373\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127374,\n\t\t\t127375\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127376,\n\t\t\t127376\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t100,\n\t\t\t106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127377,\n\t\t\t127386\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127387,\n\t\t\t127461\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127462,\n\t\t\t127487\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127488,\n\t\t\t127488\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12411,\n\t\t\t12363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127489,\n\t\t\t127489\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12467,\n\t\t\t12467\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127490,\n\t\t\t127490\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12469\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127491,\n\t\t\t127503\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127504,\n\t\t\t127504\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25163\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127505,\n\t\t\t127505\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23383\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127506,\n\t\t\t127506\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21452\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127507,\n\t\t\t127507\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12487\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127508,\n\t\t\t127508\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20108\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127509,\n\t\t\t127509\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22810\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127510,\n\t\t\t127510\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35299\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127511,\n\t\t\t127511\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22825\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127512,\n\t\t\t127512\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20132\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127513,\n\t\t\t127513\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26144\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127514,\n\t\t\t127514\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28961\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127515,\n\t\t\t127515\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26009\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127516,\n\t\t\t127516\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21069\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127517,\n\t\t\t127517\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24460\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127518,\n\t\t\t127518\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20877\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127519,\n\t\t\t127519\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26032\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127520,\n\t\t\t127520\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21021\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127521,\n\t\t\t127521\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32066\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127522,\n\t\t\t127522\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29983\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127523,\n\t\t\t127523\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36009\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127524,\n\t\t\t127524\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22768\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127525,\n\t\t\t127525\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21561\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127526,\n\t\t\t127526\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28436\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127527,\n\t\t\t127527\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25237\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127528,\n\t\t\t127528\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25429\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127529,\n\t\t\t127529\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19968\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127530,\n\t\t\t127530\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19977\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127531,\n\t\t\t127531\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36938\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127532,\n\t\t\t127532\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127533,\n\t\t\t127533\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20013\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127534,\n\t\t\t127534\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127535,\n\t\t\t127535\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25351\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127536,\n\t\t\t127536\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36208\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127537,\n\t\t\t127537\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25171\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127538,\n\t\t\t127538\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127539,\n\t\t\t127539\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31354\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127540,\n\t\t\t127540\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127541,\n\t\t\t127541\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28288\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127542,\n\t\t\t127542\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26377\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127543,\n\t\t\t127543\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26376\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127544,\n\t\t\t127544\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30003\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127545,\n\t\t\t127545\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127546,\n\t\t\t127546\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21942\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127547,\n\t\t\t127551\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127552,\n\t\t\t127552\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t26412,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127553,\n\t\t\t127553\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t19977,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127554,\n\t\t\t127554\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t20108,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127555,\n\t\t\t127555\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t23433,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127556,\n\t\t\t127556\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t28857,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127557,\n\t\t\t127557\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t25171,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127558,\n\t\t\t127558\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t30423,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127559,\n\t\t\t127559\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t21213,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127560,\n\t\t\t127560\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t12308,\n\t\t\t25943,\n\t\t\t12309\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127561,\n\t\t\t127567\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127568,\n\t\t\t127568\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127569,\n\t\t\t127569\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21487\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t127570,\n\t\t\t127743\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t127744,\n\t\t\t127776\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127777,\n\t\t\t127788\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127789,\n\t\t\t127791\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127792,\n\t\t\t127797\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127798,\n\t\t\t127798\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127799,\n\t\t\t127868\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127869,\n\t\t\t127869\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127870,\n\t\t\t127871\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127872,\n\t\t\t127891\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127892,\n\t\t\t127903\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127904,\n\t\t\t127940\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127941,\n\t\t\t127941\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127942,\n\t\t\t127946\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127947,\n\t\t\t127950\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127951,\n\t\t\t127955\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127956,\n\t\t\t127967\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127968,\n\t\t\t127984\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127985,\n\t\t\t127991\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t127992,\n\t\t\t127999\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128000,\n\t\t\t128062\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128063,\n\t\t\t128063\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128064,\n\t\t\t128064\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128065,\n\t\t\t128065\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128066,\n\t\t\t128247\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128248,\n\t\t\t128248\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128249,\n\t\t\t128252\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128253,\n\t\t\t128254\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128255,\n\t\t\t128255\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128256,\n\t\t\t128317\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128318,\n\t\t\t128319\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128320,\n\t\t\t128323\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128324,\n\t\t\t128330\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128331,\n\t\t\t128335\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128336,\n\t\t\t128359\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128360,\n\t\t\t128377\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128378,\n\t\t\t128378\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t128379,\n\t\t\t128419\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128420,\n\t\t\t128420\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t128421,\n\t\t\t128506\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128507,\n\t\t\t128511\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128512,\n\t\t\t128512\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128513,\n\t\t\t128528\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128529,\n\t\t\t128529\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128530,\n\t\t\t128532\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128533,\n\t\t\t128533\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128534,\n\t\t\t128534\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128535,\n\t\t\t128535\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128536,\n\t\t\t128536\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128537,\n\t\t\t128537\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128538,\n\t\t\t128538\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128539,\n\t\t\t128539\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128540,\n\t\t\t128542\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128543,\n\t\t\t128543\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128544,\n\t\t\t128549\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128550,\n\t\t\t128551\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128552,\n\t\t\t128555\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128556,\n\t\t\t128556\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128557,\n\t\t\t128557\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128558,\n\t\t\t128559\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128560,\n\t\t\t128563\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128564,\n\t\t\t128564\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128565,\n\t\t\t128576\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128577,\n\t\t\t128578\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128579,\n\t\t\t128580\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128581,\n\t\t\t128591\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128592,\n\t\t\t128639\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128640,\n\t\t\t128709\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128710,\n\t\t\t128719\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128720,\n\t\t\t128720\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128721,\n\t\t\t128735\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t128736,\n\t\t\t128748\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128749,\n\t\t\t128751\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t128752,\n\t\t\t128755\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128756,\n\t\t\t128767\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t128768,\n\t\t\t128883\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128884,\n\t\t\t128895\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t128896,\n\t\t\t128980\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t128981,\n\t\t\t129023\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t129024,\n\t\t\t129035\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t129036,\n\t\t\t129039\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t129040,\n\t\t\t129095\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t129096,\n\t\t\t129103\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t129104,\n\t\t\t129113\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t129114,\n\t\t\t129119\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t129120,\n\t\t\t129159\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t129160,\n\t\t\t129167\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t129168,\n\t\t\t129197\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t129198,\n\t\t\t129295\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t129296,\n\t\t\t129304\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t129305,\n\t\t\t129407\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t129408,\n\t\t\t129412\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t129413,\n\t\t\t129471\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t129472,\n\t\t\t129472\n\t\t],\n\t\t\"valid\",\n\t\t[\n\t\t],\n\t\t\"NV8\"\n\t],\n\t[\n\t\t[\n\t\t\t129473,\n\t\t\t131069\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t131070,\n\t\t\t131071\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t131072,\n\t\t\t173782\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t173783,\n\t\t\t173823\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t173824,\n\t\t\t177972\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t177973,\n\t\t\t177983\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t177984,\n\t\t\t178205\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t178206,\n\t\t\t178207\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t178208,\n\t\t\t183969\n\t\t],\n\t\t\"valid\"\n\t],\n\t[\n\t\t[\n\t\t\t183970,\n\t\t\t194559\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t194560,\n\t\t\t194560\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20029\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194561,\n\t\t\t194561\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20024\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194562,\n\t\t\t194562\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20033\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194563,\n\t\t\t194563\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t131362\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194564,\n\t\t\t194564\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20320\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194565,\n\t\t\t194565\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20398\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194566,\n\t\t\t194566\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20411\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194567,\n\t\t\t194567\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20482\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194568,\n\t\t\t194568\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20602\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194569,\n\t\t\t194569\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20633\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194570,\n\t\t\t194570\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20711\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194571,\n\t\t\t194571\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20687\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194572,\n\t\t\t194572\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t13470\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194573,\n\t\t\t194573\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t132666\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194574,\n\t\t\t194574\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20813\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194575,\n\t\t\t194575\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20820\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194576,\n\t\t\t194576\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20836\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194577,\n\t\t\t194577\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20855\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194578,\n\t\t\t194578\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t132380\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194579,\n\t\t\t194579\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t13497\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194580,\n\t\t\t194580\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20839\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194581,\n\t\t\t194581\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20877\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194582,\n\t\t\t194582\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t132427\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194583,\n\t\t\t194583\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20887\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194584,\n\t\t\t194584\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20900\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194585,\n\t\t\t194585\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20172\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194586,\n\t\t\t194586\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20908\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194587,\n\t\t\t194587\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20917\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194588,\n\t\t\t194588\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t168415\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194589,\n\t\t\t194589\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20981\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194590,\n\t\t\t194590\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20995\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194591,\n\t\t\t194591\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t13535\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194592,\n\t\t\t194592\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21051\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194593,\n\t\t\t194593\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21062\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194594,\n\t\t\t194594\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21106\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194595,\n\t\t\t194595\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21111\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194596,\n\t\t\t194596\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t13589\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194597,\n\t\t\t194597\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21191\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194598,\n\t\t\t194598\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21193\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194599,\n\t\t\t194599\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21220\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194600,\n\t\t\t194600\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21242\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194601,\n\t\t\t194601\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21253\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194602,\n\t\t\t194602\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21254\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194603,\n\t\t\t194603\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21271\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194604,\n\t\t\t194604\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21321\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194605,\n\t\t\t194605\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21329\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194606,\n\t\t\t194606\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21338\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194607,\n\t\t\t194607\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194608,\n\t\t\t194608\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21373\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194609,\n\t\t\t194611\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21375\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194612,\n\t\t\t194612\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t133676\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194613,\n\t\t\t194613\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28784\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194614,\n\t\t\t194614\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21450\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194615,\n\t\t\t194615\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21471\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194616,\n\t\t\t194616\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t133987\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194617,\n\t\t\t194617\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21483\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194618,\n\t\t\t194618\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21489\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194619,\n\t\t\t194619\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21510\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194620,\n\t\t\t194620\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21662\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194621,\n\t\t\t194621\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21560\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194622,\n\t\t\t194622\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21576\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194623,\n\t\t\t194623\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21608\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194624,\n\t\t\t194624\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21666\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194625,\n\t\t\t194625\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21750\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194626,\n\t\t\t194626\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21776\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194627,\n\t\t\t194627\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21843\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194628,\n\t\t\t194628\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21859\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194629,\n\t\t\t194630\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21892\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194631,\n\t\t\t194631\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21913\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194632,\n\t\t\t194632\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21931\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194633,\n\t\t\t194633\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21939\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194634,\n\t\t\t194634\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194635,\n\t\t\t194635\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22294\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194636,\n\t\t\t194636\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22022\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194637,\n\t\t\t194637\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22295\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194638,\n\t\t\t194638\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22097\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194639,\n\t\t\t194639\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22132\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194640,\n\t\t\t194640\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20999\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194641,\n\t\t\t194641\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22766\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194642,\n\t\t\t194642\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22478\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194643,\n\t\t\t194643\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22516\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194644,\n\t\t\t194644\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22541\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194645,\n\t\t\t194645\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22411\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194646,\n\t\t\t194646\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194647,\n\t\t\t194647\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22577\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194648,\n\t\t\t194648\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22700\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194649,\n\t\t\t194649\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t136420\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194650,\n\t\t\t194650\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22770\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194651,\n\t\t\t194651\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22775\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194652,\n\t\t\t194652\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22790\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194653,\n\t\t\t194653\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22810\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194654,\n\t\t\t194654\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22818\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194655,\n\t\t\t194655\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t22882\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194656,\n\t\t\t194656\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t136872\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194657,\n\t\t\t194657\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t136938\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194658,\n\t\t\t194658\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23020\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194659,\n\t\t\t194659\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23067\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194660,\n\t\t\t194660\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23079\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194661,\n\t\t\t194661\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23000\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194662,\n\t\t\t194662\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23142\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194663,\n\t\t\t194663\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14062\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194664,\n\t\t\t194664\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t194665,\n\t\t\t194665\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23304\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194666,\n\t\t\t194667\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23358\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194668,\n\t\t\t194668\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t137672\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194669,\n\t\t\t194669\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23491\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194670,\n\t\t\t194670\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23512\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194671,\n\t\t\t194671\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23527\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194672,\n\t\t\t194672\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23539\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194673,\n\t\t\t194673\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t138008\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194674,\n\t\t\t194674\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23551\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194675,\n\t\t\t194675\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23558\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194676,\n\t\t\t194676\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t194677,\n\t\t\t194677\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23586\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194678,\n\t\t\t194678\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14209\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194679,\n\t\t\t194679\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23648\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194680,\n\t\t\t194680\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23662\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194681,\n\t\t\t194681\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23744\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194682,\n\t\t\t194682\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23693\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194683,\n\t\t\t194683\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t138724\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194684,\n\t\t\t194684\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23875\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194685,\n\t\t\t194685\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t138726\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194686,\n\t\t\t194686\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23918\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194687,\n\t\t\t194687\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23915\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194688,\n\t\t\t194688\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23932\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194689,\n\t\t\t194689\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24033\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194690,\n\t\t\t194690\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24034\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194691,\n\t\t\t194691\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14383\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194692,\n\t\t\t194692\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24061\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194693,\n\t\t\t194693\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194694,\n\t\t\t194694\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24125\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194695,\n\t\t\t194695\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24169\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194696,\n\t\t\t194696\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14434\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194697,\n\t\t\t194697\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t139651\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194698,\n\t\t\t194698\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14460\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194699,\n\t\t\t194699\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24240\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194700,\n\t\t\t194700\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24243\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194701,\n\t\t\t194701\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24246\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194702,\n\t\t\t194702\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24266\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194703,\n\t\t\t194703\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t172946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194704,\n\t\t\t194704\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24318\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194705,\n\t\t\t194706\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t140081\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194707,\n\t\t\t194707\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33281\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194708,\n\t\t\t194709\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24354\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194710,\n\t\t\t194710\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14535\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194711,\n\t\t\t194711\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t144056\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194712,\n\t\t\t194712\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t156122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194713,\n\t\t\t194713\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24418\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194714,\n\t\t\t194714\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24427\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194715,\n\t\t\t194715\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14563\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194716,\n\t\t\t194716\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24474\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194717,\n\t\t\t194717\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24525\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194718,\n\t\t\t194718\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24535\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194719,\n\t\t\t194719\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24569\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194720,\n\t\t\t194720\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24705\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194721,\n\t\t\t194721\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14650\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194722,\n\t\t\t194722\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194723,\n\t\t\t194723\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24724\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194724,\n\t\t\t194724\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t141012\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194725,\n\t\t\t194725\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24775\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194726,\n\t\t\t194726\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24904\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194727,\n\t\t\t194727\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24908\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194728,\n\t\t\t194728\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24910\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194729,\n\t\t\t194729\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24908\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194730,\n\t\t\t194730\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194731,\n\t\t\t194731\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24974\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194732,\n\t\t\t194732\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25010\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194733,\n\t\t\t194733\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t24996\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194734,\n\t\t\t194734\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25007\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194735,\n\t\t\t194735\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25054\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194736,\n\t\t\t194736\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25074\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194737,\n\t\t\t194737\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25078\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194738,\n\t\t\t194738\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25104\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194739,\n\t\t\t194739\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25115\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194740,\n\t\t\t194740\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25181\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194741,\n\t\t\t194741\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25265\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194742,\n\t\t\t194742\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25300\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194743,\n\t\t\t194743\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25424\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194744,\n\t\t\t194744\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t142092\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194745,\n\t\t\t194745\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25405\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194746,\n\t\t\t194746\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25340\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194747,\n\t\t\t194747\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25448\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194748,\n\t\t\t194748\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25475\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194749,\n\t\t\t194749\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25572\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194750,\n\t\t\t194750\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t142321\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194751,\n\t\t\t194751\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25634\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194752,\n\t\t\t194752\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25541\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194753,\n\t\t\t194753\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25513\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194754,\n\t\t\t194754\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14894\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194755,\n\t\t\t194755\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25705\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194756,\n\t\t\t194756\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25726\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194757,\n\t\t\t194757\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25757\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194758,\n\t\t\t194758\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25719\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194759,\n\t\t\t194759\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t14956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194760,\n\t\t\t194760\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25935\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194761,\n\t\t\t194761\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t25964\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194762,\n\t\t\t194762\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t143370\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194763,\n\t\t\t194763\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26083\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194764,\n\t\t\t194764\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26360\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194765,\n\t\t\t194765\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26185\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194766,\n\t\t\t194766\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15129\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194767,\n\t\t\t194767\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26257\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194768,\n\t\t\t194768\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15112\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194769,\n\t\t\t194769\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15076\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194770,\n\t\t\t194770\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20882\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194771,\n\t\t\t194771\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t20885\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194772,\n\t\t\t194772\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26368\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194773,\n\t\t\t194773\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26268\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194774,\n\t\t\t194774\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32941\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194775,\n\t\t\t194775\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17369\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194776,\n\t\t\t194776\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26391\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194777,\n\t\t\t194777\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26395\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194778,\n\t\t\t194778\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26401\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194779,\n\t\t\t194779\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26462\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194780,\n\t\t\t194780\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26451\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194781,\n\t\t\t194781\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t144323\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194782,\n\t\t\t194782\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15177\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194783,\n\t\t\t194783\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26618\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194784,\n\t\t\t194784\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26501\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194785,\n\t\t\t194785\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26706\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194786,\n\t\t\t194786\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26757\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194787,\n\t\t\t194787\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t144493\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194788,\n\t\t\t194788\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26766\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194789,\n\t\t\t194789\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26655\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194790,\n\t\t\t194790\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26900\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194791,\n\t\t\t194791\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15261\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194792,\n\t\t\t194792\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t26946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194793,\n\t\t\t194793\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27043\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194794,\n\t\t\t194794\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27114\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194795,\n\t\t\t194795\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27304\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194796,\n\t\t\t194796\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t145059\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194797,\n\t\t\t194797\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27355\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194798,\n\t\t\t194798\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15384\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194799,\n\t\t\t194799\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27425\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194800,\n\t\t\t194800\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t145575\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194801,\n\t\t\t194801\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27476\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194802,\n\t\t\t194802\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15438\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194803,\n\t\t\t194803\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27506\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194804,\n\t\t\t194804\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27551\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194805,\n\t\t\t194805\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27578\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194806,\n\t\t\t194806\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194807,\n\t\t\t194807\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t146061\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194808,\n\t\t\t194808\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t138507\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194809,\n\t\t\t194809\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t146170\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194810,\n\t\t\t194810\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27726\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194811,\n\t\t\t194811\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t146620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194812,\n\t\t\t194812\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27839\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194813,\n\t\t\t194813\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27853\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194814,\n\t\t\t194814\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27751\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194815,\n\t\t\t194815\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27926\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194816,\n\t\t\t194816\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194817,\n\t\t\t194817\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28023\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194818,\n\t\t\t194818\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27969\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194819,\n\t\t\t194819\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28009\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194820,\n\t\t\t194820\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28024\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194821,\n\t\t\t194821\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28037\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194822,\n\t\t\t194822\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t146718\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194823,\n\t\t\t194823\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t27956\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194824,\n\t\t\t194824\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28207\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194825,\n\t\t\t194825\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28270\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194826,\n\t\t\t194826\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15667\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194827,\n\t\t\t194827\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28363\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194828,\n\t\t\t194828\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28359\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194829,\n\t\t\t194829\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t147153\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194830,\n\t\t\t194830\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28153\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194831,\n\t\t\t194831\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28526\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194832,\n\t\t\t194832\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t147294\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194833,\n\t\t\t194833\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t147342\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194834,\n\t\t\t194834\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28614\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194835,\n\t\t\t194835\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28729\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194836,\n\t\t\t194836\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28702\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194837,\n\t\t\t194837\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28699\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194838,\n\t\t\t194838\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t15766\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194839,\n\t\t\t194839\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28746\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194840,\n\t\t\t194840\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28797\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194841,\n\t\t\t194841\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28791\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194842,\n\t\t\t194842\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28845\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194843,\n\t\t\t194843\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t132389\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194844,\n\t\t\t194844\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t28997\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194845,\n\t\t\t194845\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t148067\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194846,\n\t\t\t194846\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29084\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194847,\n\t\t\t194847\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t194848,\n\t\t\t194848\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29224\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194849,\n\t\t\t194849\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29237\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194850,\n\t\t\t194850\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29264\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194851,\n\t\t\t194851\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t149000\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194852,\n\t\t\t194852\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29312\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194853,\n\t\t\t194853\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29333\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194854,\n\t\t\t194854\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t149301\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194855,\n\t\t\t194855\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t149524\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194856,\n\t\t\t194856\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29562\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194857,\n\t\t\t194857\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29579\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194858,\n\t\t\t194858\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16044\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194859,\n\t\t\t194859\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194860,\n\t\t\t194861\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16056\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194862,\n\t\t\t194862\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29767\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194863,\n\t\t\t194863\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29788\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194864,\n\t\t\t194864\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29809\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194865,\n\t\t\t194865\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29829\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194866,\n\t\t\t194866\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29898\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194867,\n\t\t\t194867\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16155\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194868,\n\t\t\t194868\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t29988\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194869,\n\t\t\t194869\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t150582\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194870,\n\t\t\t194870\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30014\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194871,\n\t\t\t194871\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t150674\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194872,\n\t\t\t194872\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30064\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194873,\n\t\t\t194873\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t139679\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194874,\n\t\t\t194874\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30224\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194875,\n\t\t\t194875\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t151457\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194876,\n\t\t\t194876\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t151480\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194877,\n\t\t\t194877\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t151620\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194878,\n\t\t\t194878\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16380\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194879,\n\t\t\t194879\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16392\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194880,\n\t\t\t194880\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30452\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194881,\n\t\t\t194881\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t151795\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194882,\n\t\t\t194882\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t151794\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194883,\n\t\t\t194883\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t151833\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194884,\n\t\t\t194884\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t151859\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194885,\n\t\t\t194885\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30494\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194886,\n\t\t\t194887\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30495\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194888,\n\t\t\t194888\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30538\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194889,\n\t\t\t194889\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16441\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194890,\n\t\t\t194890\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30603\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194891,\n\t\t\t194891\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16454\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194892,\n\t\t\t194892\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16534\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194893,\n\t\t\t194893\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t152605\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194894,\n\t\t\t194894\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30798\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194895,\n\t\t\t194895\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30860\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194896,\n\t\t\t194896\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t30924\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194897,\n\t\t\t194897\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16611\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194898,\n\t\t\t194898\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t153126\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194899,\n\t\t\t194899\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31062\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194900,\n\t\t\t194900\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t153242\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194901,\n\t\t\t194901\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t153285\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194902,\n\t\t\t194902\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194903,\n\t\t\t194903\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31211\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194904,\n\t\t\t194904\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16687\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194905,\n\t\t\t194905\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31296\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194906,\n\t\t\t194906\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31306\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194907,\n\t\t\t194907\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31311\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194908,\n\t\t\t194908\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t153980\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194909,\n\t\t\t194910\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t154279\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194911,\n\t\t\t194911\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t194912,\n\t\t\t194912\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16898\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194913,\n\t\t\t194913\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t154539\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194914,\n\t\t\t194914\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31686\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194915,\n\t\t\t194915\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31689\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194916,\n\t\t\t194916\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t16935\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194917,\n\t\t\t194917\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t154752\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194918,\n\t\t\t194918\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194919,\n\t\t\t194919\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17056\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194920,\n\t\t\t194920\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31976\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194921,\n\t\t\t194921\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t31971\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194922,\n\t\t\t194922\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32000\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194923,\n\t\t\t194923\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t155526\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194924,\n\t\t\t194924\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32099\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194925,\n\t\t\t194925\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17153\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194926,\n\t\t\t194926\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32199\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194927,\n\t\t\t194927\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32258\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194928,\n\t\t\t194928\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32325\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194929,\n\t\t\t194929\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17204\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194930,\n\t\t\t194930\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t156200\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194931,\n\t\t\t194931\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t156231\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194932,\n\t\t\t194932\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17241\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194933,\n\t\t\t194933\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t156377\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194934,\n\t\t\t194934\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32634\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194935,\n\t\t\t194935\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t156478\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194936,\n\t\t\t194936\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32661\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194937,\n\t\t\t194937\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32762\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194938,\n\t\t\t194938\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32773\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194939,\n\t\t\t194939\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t156890\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194940,\n\t\t\t194940\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t156963\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194941,\n\t\t\t194941\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32864\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194942,\n\t\t\t194942\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t157096\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194943,\n\t\t\t194943\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32880\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194944,\n\t\t\t194944\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t144223\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194945,\n\t\t\t194945\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17365\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194946,\n\t\t\t194946\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t32946\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194947,\n\t\t\t194947\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33027\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194948,\n\t\t\t194948\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17419\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194949,\n\t\t\t194949\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33086\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194950,\n\t\t\t194950\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23221\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194951,\n\t\t\t194951\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t157607\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194952,\n\t\t\t194952\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t157621\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194953,\n\t\t\t194953\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t144275\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194954,\n\t\t\t194954\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t144284\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194955,\n\t\t\t194955\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33281\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194956,\n\t\t\t194956\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33284\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194957,\n\t\t\t194957\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36766\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194958,\n\t\t\t194958\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17515\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194959,\n\t\t\t194959\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33425\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194960,\n\t\t\t194960\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33419\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194961,\n\t\t\t194961\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33437\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194962,\n\t\t\t194962\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t21171\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194963,\n\t\t\t194963\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33457\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194964,\n\t\t\t194964\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33459\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194965,\n\t\t\t194965\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33469\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194966,\n\t\t\t194966\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33510\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194967,\n\t\t\t194967\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t158524\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194968,\n\t\t\t194968\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33509\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194969,\n\t\t\t194969\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33565\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194970,\n\t\t\t194970\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33635\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194971,\n\t\t\t194971\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33709\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194972,\n\t\t\t194972\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33571\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194973,\n\t\t\t194973\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33725\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194974,\n\t\t\t194974\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33767\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194975,\n\t\t\t194975\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33879\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194976,\n\t\t\t194976\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33619\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194977,\n\t\t\t194977\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33738\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194978,\n\t\t\t194978\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33740\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194979,\n\t\t\t194979\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t33756\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194980,\n\t\t\t194980\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t158774\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194981,\n\t\t\t194981\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t159083\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194982,\n\t\t\t194982\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t158933\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194983,\n\t\t\t194983\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17707\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194984,\n\t\t\t194984\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34033\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194985,\n\t\t\t194985\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34035\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194986,\n\t\t\t194986\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34070\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194987,\n\t\t\t194987\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t160714\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194988,\n\t\t\t194988\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34148\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194989,\n\t\t\t194989\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t159532\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194990,\n\t\t\t194990\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17757\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194991,\n\t\t\t194991\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17761\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194992,\n\t\t\t194992\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t159665\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194993,\n\t\t\t194993\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t159954\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194994,\n\t\t\t194994\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17771\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194995,\n\t\t\t194995\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34384\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194996,\n\t\t\t194996\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34396\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194997,\n\t\t\t194997\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34407\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194998,\n\t\t\t194998\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34409\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t194999,\n\t\t\t194999\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34473\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195000,\n\t\t\t195000\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34440\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195001,\n\t\t\t195001\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34574\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195002,\n\t\t\t195002\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34530\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195003,\n\t\t\t195003\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34681\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195004,\n\t\t\t195004\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34600\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195005,\n\t\t\t195005\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34667\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195006,\n\t\t\t195006\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34694\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195007,\n\t\t\t195007\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t195008,\n\t\t\t195008\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34785\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195009,\n\t\t\t195009\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34817\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195010,\n\t\t\t195010\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17913\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195011,\n\t\t\t195011\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34912\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195012,\n\t\t\t195012\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t34915\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195013,\n\t\t\t195013\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t161383\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195014,\n\t\t\t195014\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35031\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195015,\n\t\t\t195015\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35038\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195016,\n\t\t\t195016\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t17973\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195017,\n\t\t\t195017\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35066\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195018,\n\t\t\t195018\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t13499\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195019,\n\t\t\t195019\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t161966\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195020,\n\t\t\t195020\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t162150\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195021,\n\t\t\t195021\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t18110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195022,\n\t\t\t195022\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t18119\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195023,\n\t\t\t195023\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35488\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195024,\n\t\t\t195024\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35565\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195025,\n\t\t\t195025\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35722\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195026,\n\t\t\t195026\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t35925\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195027,\n\t\t\t195027\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t162984\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195028,\n\t\t\t195028\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36011\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195029,\n\t\t\t195029\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36033\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195030,\n\t\t\t195030\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36123\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195031,\n\t\t\t195031\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36215\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195032,\n\t\t\t195032\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t163631\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195033,\n\t\t\t195033\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t133124\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195034,\n\t\t\t195034\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36299\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195035,\n\t\t\t195035\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36284\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195036,\n\t\t\t195036\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36336\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195037,\n\t\t\t195037\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t133342\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195038,\n\t\t\t195038\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36564\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195039,\n\t\t\t195039\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t36664\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195040,\n\t\t\t195040\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t165330\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195041,\n\t\t\t195041\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t165357\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195042,\n\t\t\t195042\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37012\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195043,\n\t\t\t195043\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37105\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195044,\n\t\t\t195044\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37137\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195045,\n\t\t\t195045\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t165678\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195046,\n\t\t\t195046\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37147\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195047,\n\t\t\t195047\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37432\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195048,\n\t\t\t195048\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37591\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195049,\n\t\t\t195049\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37592\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195050,\n\t\t\t195050\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37500\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195051,\n\t\t\t195051\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37881\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195052,\n\t\t\t195052\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t37909\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195053,\n\t\t\t195053\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t166906\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195054,\n\t\t\t195054\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38283\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195055,\n\t\t\t195055\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t18837\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195056,\n\t\t\t195056\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38327\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195057,\n\t\t\t195057\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t167287\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195058,\n\t\t\t195058\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t18918\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195059,\n\t\t\t195059\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38595\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195060,\n\t\t\t195060\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t23986\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195061,\n\t\t\t195061\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38691\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195062,\n\t\t\t195062\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t168261\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195063,\n\t\t\t195063\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t168474\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195064,\n\t\t\t195064\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19054\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195065,\n\t\t\t195065\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19062\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195066,\n\t\t\t195066\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38880\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195067,\n\t\t\t195067\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t168970\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195068,\n\t\t\t195068\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19122\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195069,\n\t\t\t195069\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t169110\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195070,\n\t\t\t195071\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38923\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195072,\n\t\t\t195072\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t38953\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195073,\n\t\t\t195073\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t169398\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195074,\n\t\t\t195074\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39138\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195075,\n\t\t\t195075\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19251\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195076,\n\t\t\t195076\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39209\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195077,\n\t\t\t195077\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39335\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195078,\n\t\t\t195078\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39362\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195079,\n\t\t\t195079\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39422\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195080,\n\t\t\t195080\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19406\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195081,\n\t\t\t195081\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t170800\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195082,\n\t\t\t195082\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t39698\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195083,\n\t\t\t195083\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40000\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195084,\n\t\t\t195084\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40189\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195085,\n\t\t\t195085\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19662\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195086,\n\t\t\t195086\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19693\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195087,\n\t\t\t195087\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40295\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195088,\n\t\t\t195088\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t172238\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195089,\n\t\t\t195089\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19704\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195090,\n\t\t\t195090\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t172293\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195091,\n\t\t\t195091\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t172558\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195092,\n\t\t\t195092\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t172689\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195093,\n\t\t\t195093\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40635\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195094,\n\t\t\t195094\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t19798\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195095,\n\t\t\t195095\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40697\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195096,\n\t\t\t195096\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40702\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195097,\n\t\t\t195097\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40709\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195098,\n\t\t\t195098\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40719\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195099,\n\t\t\t195099\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40726\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195100,\n\t\t\t195100\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t40763\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195101,\n\t\t\t195101\n\t\t],\n\t\t\"mapped\",\n\t\t[\n\t\t\t173568\n\t\t]\n\t],\n\t[\n\t\t[\n\t\t\t195102,\n\t\t\t196605\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t196606,\n\t\t\t196607\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t196608,\n\t\t\t262141\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t262142,\n\t\t\t262143\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t262144,\n\t\t\t327677\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t327678,\n\t\t\t327679\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t327680,\n\t\t\t393213\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t393214,\n\t\t\t393215\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t393216,\n\t\t\t458749\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t458750,\n\t\t\t458751\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t458752,\n\t\t\t524285\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t524286,\n\t\t\t524287\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t524288,\n\t\t\t589821\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t589822,\n\t\t\t589823\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t589824,\n\t\t\t655357\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t655358,\n\t\t\t655359\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t655360,\n\t\t\t720893\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t720894,\n\t\t\t720895\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t720896,\n\t\t\t786429\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t786430,\n\t\t\t786431\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t786432,\n\t\t\t851965\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t851966,\n\t\t\t851967\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t851968,\n\t\t\t917501\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t917502,\n\t\t\t917503\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t917504,\n\t\t\t917504\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t917505,\n\t\t\t917505\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t917506,\n\t\t\t917535\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t917536,\n\t\t\t917631\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t917632,\n\t\t\t917759\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t917760,\n\t\t\t917999\n\t\t],\n\t\t\"ignored\"\n\t],\n\t[\n\t\t[\n\t\t\t918000,\n\t\t\t983037\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t983038,\n\t\t\t983039\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t983040,\n\t\t\t1048573\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1048574,\n\t\t\t1048575\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1048576,\n\t\t\t1114109\n\t\t],\n\t\t\"disallowed\"\n\t],\n\t[\n\t\t[\n\t\t\t1114110,\n\t\t\t1114111\n\t\t],\n\t\t\"disallowed\"\n\t]\n];\n\nvar hasRequiredTr46;\n\nfunction requireTr46 () {\n\tif (hasRequiredTr46) return tr46;\n\thasRequiredTr46 = 1;\n\n\tvar punycode = require$$0$h;\n\tvar mappingTable = require$$1;\n\n\tvar PROCESSING_OPTIONS = {\n\t  TRANSITIONAL: 0,\n\t  NONTRANSITIONAL: 1\n\t};\n\n\tfunction normalize(str) { // fix bug in v8\n\t  return str.split('\\u0000').map(function (s) { return s.normalize('NFC'); }).join('\\u0000');\n\t}\n\n\tfunction findStatus(val) {\n\t  var start = 0;\n\t  var end = mappingTable.length - 1;\n\n\t  while (start <= end) {\n\t    var mid = Math.floor((start + end) / 2);\n\n\t    var target = mappingTable[mid];\n\t    if (target[0][0] <= val && target[0][1] >= val) {\n\t      return target;\n\t    } else if (target[0][0] > val) {\n\t      end = mid - 1;\n\t    } else {\n\t      start = mid + 1;\n\t    }\n\t  }\n\n\t  return null;\n\t}\n\n\tvar regexAstralSymbols = /[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g;\n\n\tfunction countSymbols(string) {\n\t  return string\n\t    // replace every surrogate pair with a BMP symbol\n\t    .replace(regexAstralSymbols, '_')\n\t    // then get the length\n\t    .length;\n\t}\n\n\tfunction mapChars(domain_name, useSTD3, processing_option) {\n\t  var hasError = false;\n\t  var processed = \"\";\n\n\t  var len = countSymbols(domain_name);\n\t  for (var i = 0; i < len; ++i) {\n\t    var codePoint = domain_name.codePointAt(i);\n\t    var status = findStatus(codePoint);\n\n\t    switch (status[1]) {\n\t      case \"disallowed\":\n\t        hasError = true;\n\t        processed += String.fromCodePoint(codePoint);\n\t        break;\n\t      case \"ignored\":\n\t        break;\n\t      case \"mapped\":\n\t        processed += String.fromCodePoint.apply(String, status[2]);\n\t        break;\n\t      case \"deviation\":\n\t        if (processing_option === PROCESSING_OPTIONS.TRANSITIONAL) {\n\t          processed += String.fromCodePoint.apply(String, status[2]);\n\t        } else {\n\t          processed += String.fromCodePoint(codePoint);\n\t        }\n\t        break;\n\t      case \"valid\":\n\t        processed += String.fromCodePoint(codePoint);\n\t        break;\n\t      case \"disallowed_STD3_mapped\":\n\t        if (useSTD3) {\n\t          hasError = true;\n\t          processed += String.fromCodePoint(codePoint);\n\t        } else {\n\t          processed += String.fromCodePoint.apply(String, status[2]);\n\t        }\n\t        break;\n\t      case \"disallowed_STD3_valid\":\n\t        if (useSTD3) {\n\t          hasError = true;\n\t        }\n\n\t        processed += String.fromCodePoint(codePoint);\n\t        break;\n\t    }\n\t  }\n\n\t  return {\n\t    string: processed,\n\t    error: hasError\n\t  };\n\t}\n\n\tvar combiningMarksRegex = /[\\u0300-\\u036F\\u0483-\\u0489\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065F\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0859-\\u085B\\u08E4-\\u0903\\u093A-\\u093C\\u093E-\\u094F\\u0951-\\u0957\\u0962\\u0963\\u0981-\\u0983\\u09BC\\u09BE-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CD\\u09D7\\u09E2\\u09E3\\u0A01-\\u0A03\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81-\\u0A83\\u0ABC\\u0ABE-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AE2\\u0AE3\\u0B01-\\u0B03\\u0B3C\\u0B3E-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B62\\u0B63\\u0B82\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD7\\u0C00-\\u0C03\\u0C3E-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0C81-\\u0C83\\u0CBC\\u0CBE-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CE2\\u0CE3\\u0D01-\\u0D03\\u0D3E-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4D\\u0D57\\u0D62\\u0D63\\u0D82\\u0D83\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F3E\\u0F3F\\u0F71-\\u0F84\\u0F86\\u0F87\\u0F8D-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102B-\\u103E\\u1056-\\u1059\\u105E-\\u1060\\u1062-\\u1064\\u1067-\\u106D\\u1071-\\u1074\\u1082-\\u108D\\u108F\\u109A-\\u109D\\u135D-\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B4-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u192B\\u1930-\\u193B\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A17-\\u1A1B\\u1A55-\\u1A5E\\u1A60-\\u1A7C\\u1A7F\\u1AB0-\\u1ABE\\u1B00-\\u1B04\\u1B34-\\u1B44\\u1B6B-\\u1B73\\u1B80-\\u1B82\\u1BA1-\\u1BAD\\u1BE6-\\u1BF3\\u1C24-\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE8\\u1CED\\u1CF2-\\u1CF4\\u1CF8\\u1CF9\\u1DC0-\\u1DF5\\u1DFC-\\u1DFF\\u20D0-\\u20F0\\u2CEF-\\u2CF1\\u2D7F\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F-\\uA672\\uA674-\\uA67D\\uA69F\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA823-\\uA827\\uA880\\uA881\\uA8B4-\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA953\\uA980-\\uA983\\uA9B3-\\uA9C0\\uA9E5\\uAA29-\\uAA36\\uAA43\\uAA4C\\uAA4D\\uAA7B-\\uAA7D\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uAAEB-\\uAAEF\\uAAF5\\uAAF6\\uABE3-\\uABEA\\uABEC\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE2D]|\\uD800[\\uDDFD\\uDEE0\\uDF76-\\uDF7A]|\\uD802[\\uDE01-\\uDE03\\uDE05\\uDE06\\uDE0C-\\uDE0F\\uDE38-\\uDE3A\\uDE3F\\uDEE5\\uDEE6]|\\uD804[\\uDC00-\\uDC02\\uDC38-\\uDC46\\uDC7F-\\uDC82\\uDCB0-\\uDCBA\\uDD00-\\uDD02\\uDD27-\\uDD34\\uDD73\\uDD80-\\uDD82\\uDDB3-\\uDDC0\\uDE2C-\\uDE37\\uDEDF-\\uDEEA\\uDF01-\\uDF03\\uDF3C\\uDF3E-\\uDF44\\uDF47\\uDF48\\uDF4B-\\uDF4D\\uDF57\\uDF62\\uDF63\\uDF66-\\uDF6C\\uDF70-\\uDF74]|\\uD805[\\uDCB0-\\uDCC3\\uDDAF-\\uDDB5\\uDDB8-\\uDDC0\\uDE30-\\uDE40\\uDEAB-\\uDEB7]|\\uD81A[\\uDEF0-\\uDEF4\\uDF30-\\uDF36]|\\uD81B[\\uDF51-\\uDF7E\\uDF8F-\\uDF92]|\\uD82F[\\uDC9D\\uDC9E]|\\uD834[\\uDD65-\\uDD69\\uDD6D-\\uDD72\\uDD7B-\\uDD82\\uDD85-\\uDD8B\\uDDAA-\\uDDAD\\uDE42-\\uDE44]|\\uD83A[\\uDCD0-\\uDCD6]|\\uDB40[\\uDD00-\\uDDEF]/;\n\n\tfunction validateLabel(label, processing_option) {\n\t  if (label.substr(0, 4) === \"xn--\") {\n\t    label = punycode.toUnicode(label);\n\t    PROCESSING_OPTIONS.NONTRANSITIONAL;\n\t  }\n\n\t  var error = false;\n\n\t  if (normalize(label) !== label ||\n\t      (label[3] === \"-\" && label[4] === \"-\") ||\n\t      label[0] === \"-\" || label[label.length - 1] === \"-\" ||\n\t      label.indexOf(\".\") !== -1 ||\n\t      label.search(combiningMarksRegex) === 0) {\n\t    error = true;\n\t  }\n\n\t  var len = countSymbols(label);\n\t  for (var i = 0; i < len; ++i) {\n\t    var status = findStatus(label.codePointAt(i));\n\t    if ((processing === PROCESSING_OPTIONS.TRANSITIONAL && status[1] !== \"valid\") ||\n\t        (processing === PROCESSING_OPTIONS.NONTRANSITIONAL &&\n\t         status[1] !== \"valid\" && status[1] !== \"deviation\")) {\n\t      error = true;\n\t      break;\n\t    }\n\t  }\n\n\t  return {\n\t    label: label,\n\t    error: error\n\t  };\n\t}\n\n\tfunction processing(domain_name, useSTD3, processing_option) {\n\t  var result = mapChars(domain_name, useSTD3, processing_option);\n\t  result.string = normalize(result.string);\n\n\t  var labels = result.string.split(\".\");\n\t  for (var i = 0; i < labels.length; ++i) {\n\t    try {\n\t      var validation = validateLabel(labels[i]);\n\t      labels[i] = validation.label;\n\t      result.error = result.error || validation.error;\n\t    } catch(e) {\n\t      result.error = true;\n\t    }\n\t  }\n\n\t  return {\n\t    string: labels.join(\".\"),\n\t    error: result.error\n\t  };\n\t}\n\n\ttr46.toASCII = function(domain_name, useSTD3, processing_option, verifyDnsLength) {\n\t  var result = processing(domain_name, useSTD3, processing_option);\n\t  var labels = result.string.split(\".\");\n\t  labels = labels.map(function(l) {\n\t    try {\n\t      return punycode.toASCII(l);\n\t    } catch(e) {\n\t      result.error = true;\n\t      return l;\n\t    }\n\t  });\n\n\t  if (verifyDnsLength) {\n\t    var total = labels.slice(0, labels.length - 1).join(\".\").length;\n\t    if (total.length > 253 || total.length === 0) {\n\t      result.error = true;\n\t    }\n\n\t    for (var i=0; i < labels.length; ++i) {\n\t      if (labels.length > 63 || labels.length === 0) {\n\t        result.error = true;\n\t        break;\n\t      }\n\t    }\n\t  }\n\n\t  if (result.error) return null;\n\t  return labels.join(\".\");\n\t};\n\n\ttr46.toUnicode = function(domain_name, useSTD3) {\n\t  var result = processing(domain_name, useSTD3, PROCESSING_OPTIONS.NONTRANSITIONAL);\n\n\t  return {\n\t    domain: result.string,\n\t    error: result.error\n\t  };\n\t};\n\n\ttr46.PROCESSING_OPTIONS = PROCESSING_OPTIONS;\n\treturn tr46;\n}\n\nvar hasRequiredUrlStateMachine;\n\nfunction requireUrlStateMachine () {\n\tif (hasRequiredUrlStateMachine) return urlStateMachine.exports;\n\thasRequiredUrlStateMachine = 1;\n\t(function (module) {\n\t\tconst punycode = require$$0$h;\r\n\t\tconst tr46 = requireTr46();\r\n\r\n\t\tconst specialSchemes = {\r\n\t\t  ftp: 21,\r\n\t\t  file: null,\r\n\t\t  gopher: 70,\r\n\t\t  http: 80,\r\n\t\t  https: 443,\r\n\t\t  ws: 80,\r\n\t\t  wss: 443\r\n\t\t};\r\n\r\n\t\tconst failure = Symbol(\"failure\");\r\n\r\n\t\tfunction countSymbols(str) {\r\n\t\t  return punycode.ucs2.decode(str).length;\r\n\t\t}\r\n\r\n\t\tfunction at(input, idx) {\r\n\t\t  const c = input[idx];\r\n\t\t  return isNaN(c) ? undefined : String.fromCodePoint(c);\r\n\t\t}\r\n\r\n\t\tfunction isASCIIDigit(c) {\r\n\t\t  return c >= 0x30 && c <= 0x39;\r\n\t\t}\r\n\r\n\t\tfunction isASCIIAlpha(c) {\r\n\t\t  return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A);\r\n\t\t}\r\n\r\n\t\tfunction isASCIIAlphanumeric(c) {\r\n\t\t  return isASCIIAlpha(c) || isASCIIDigit(c);\r\n\t\t}\r\n\r\n\t\tfunction isASCIIHex(c) {\r\n\t\t  return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66);\r\n\t\t}\r\n\r\n\t\tfunction isSingleDot(buffer) {\r\n\t\t  return buffer === \".\" || buffer.toLowerCase() === \"%2e\";\r\n\t\t}\r\n\r\n\t\tfunction isDoubleDot(buffer) {\r\n\t\t  buffer = buffer.toLowerCase();\r\n\t\t  return buffer === \"..\" || buffer === \"%2e.\" || buffer === \".%2e\" || buffer === \"%2e%2e\";\r\n\t\t}\r\n\r\n\t\tfunction isWindowsDriveLetterCodePoints(cp1, cp2) {\r\n\t\t  return isASCIIAlpha(cp1) && (cp2 === 58 || cp2 === 124);\r\n\t\t}\r\n\r\n\t\tfunction isWindowsDriveLetterString(string) {\r\n\t\t  return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && (string[1] === \":\" || string[1] === \"|\");\r\n\t\t}\r\n\r\n\t\tfunction isNormalizedWindowsDriveLetterString(string) {\r\n\t\t  return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && string[1] === \":\";\r\n\t\t}\r\n\r\n\t\tfunction containsForbiddenHostCodePoint(string) {\r\n\t\t  return string.search(/\\u0000|\\u0009|\\u000A|\\u000D|\\u0020|#|%|\\/|:|\\?|@|\\[|\\\\|\\]/) !== -1;\r\n\t\t}\r\n\r\n\t\tfunction containsForbiddenHostCodePointExcludingPercent(string) {\r\n\t\t  return string.search(/\\u0000|\\u0009|\\u000A|\\u000D|\\u0020|#|\\/|:|\\?|@|\\[|\\\\|\\]/) !== -1;\r\n\t\t}\r\n\r\n\t\tfunction isSpecialScheme(scheme) {\r\n\t\t  return specialSchemes[scheme] !== undefined;\r\n\t\t}\r\n\r\n\t\tfunction isSpecial(url) {\r\n\t\t  return isSpecialScheme(url.scheme);\r\n\t\t}\r\n\r\n\t\tfunction defaultPort(scheme) {\r\n\t\t  return specialSchemes[scheme];\r\n\t\t}\r\n\r\n\t\tfunction percentEncode(c) {\r\n\t\t  let hex = c.toString(16).toUpperCase();\r\n\t\t  if (hex.length === 1) {\r\n\t\t    hex = \"0\" + hex;\r\n\t\t  }\r\n\r\n\t\t  return \"%\" + hex;\r\n\t\t}\r\n\r\n\t\tfunction utf8PercentEncode(c) {\r\n\t\t  const buf = new Buffer(c);\r\n\r\n\t\t  let str = \"\";\r\n\r\n\t\t  for (let i = 0; i < buf.length; ++i) {\r\n\t\t    str += percentEncode(buf[i]);\r\n\t\t  }\r\n\r\n\t\t  return str;\r\n\t\t}\r\n\r\n\t\tfunction utf8PercentDecode(str) {\r\n\t\t  const input = new Buffer(str);\r\n\t\t  const output = [];\r\n\t\t  for (let i = 0; i < input.length; ++i) {\r\n\t\t    if (input[i] !== 37) {\r\n\t\t      output.push(input[i]);\r\n\t\t    } else if (input[i] === 37 && isASCIIHex(input[i + 1]) && isASCIIHex(input[i + 2])) {\r\n\t\t      output.push(parseInt(input.slice(i + 1, i + 3).toString(), 16));\r\n\t\t      i += 2;\r\n\t\t    } else {\r\n\t\t      output.push(input[i]);\r\n\t\t    }\r\n\t\t  }\r\n\t\t  return new Buffer(output).toString();\r\n\t\t}\r\n\r\n\t\tfunction isC0ControlPercentEncode(c) {\r\n\t\t  return c <= 0x1F || c > 0x7E;\r\n\t\t}\r\n\r\n\t\tconst extraPathPercentEncodeSet = new Set([32, 34, 35, 60, 62, 63, 96, 123, 125]);\r\n\t\tfunction isPathPercentEncode(c) {\r\n\t\t  return isC0ControlPercentEncode(c) || extraPathPercentEncodeSet.has(c);\r\n\t\t}\r\n\r\n\t\tconst extraUserinfoPercentEncodeSet =\r\n\t\t  new Set([47, 58, 59, 61, 64, 91, 92, 93, 94, 124]);\r\n\t\tfunction isUserinfoPercentEncode(c) {\r\n\t\t  return isPathPercentEncode(c) || extraUserinfoPercentEncodeSet.has(c);\r\n\t\t}\r\n\r\n\t\tfunction percentEncodeChar(c, encodeSetPredicate) {\r\n\t\t  const cStr = String.fromCodePoint(c);\r\n\r\n\t\t  if (encodeSetPredicate(c)) {\r\n\t\t    return utf8PercentEncode(cStr);\r\n\t\t  }\r\n\r\n\t\t  return cStr;\r\n\t\t}\r\n\r\n\t\tfunction parseIPv4Number(input) {\r\n\t\t  let R = 10;\r\n\r\n\t\t  if (input.length >= 2 && input.charAt(0) === \"0\" && input.charAt(1).toLowerCase() === \"x\") {\r\n\t\t    input = input.substring(2);\r\n\t\t    R = 16;\r\n\t\t  } else if (input.length >= 2 && input.charAt(0) === \"0\") {\r\n\t\t    input = input.substring(1);\r\n\t\t    R = 8;\r\n\t\t  }\r\n\r\n\t\t  if (input === \"\") {\r\n\t\t    return 0;\r\n\t\t  }\r\n\r\n\t\t  const regex = R === 10 ? /[^0-9]/ : (R === 16 ? /[^0-9A-Fa-f]/ : /[^0-7]/);\r\n\t\t  if (regex.test(input)) {\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  return parseInt(input, R);\r\n\t\t}\r\n\r\n\t\tfunction parseIPv4(input) {\r\n\t\t  const parts = input.split(\".\");\r\n\t\t  if (parts[parts.length - 1] === \"\") {\r\n\t\t    if (parts.length > 1) {\r\n\t\t      parts.pop();\r\n\t\t    }\r\n\t\t  }\r\n\r\n\t\t  if (parts.length > 4) {\r\n\t\t    return input;\r\n\t\t  }\r\n\r\n\t\t  const numbers = [];\r\n\t\t  for (const part of parts) {\r\n\t\t    if (part === \"\") {\r\n\t\t      return input;\r\n\t\t    }\r\n\t\t    const n = parseIPv4Number(part);\r\n\t\t    if (n === failure) {\r\n\t\t      return input;\r\n\t\t    }\r\n\r\n\t\t    numbers.push(n);\r\n\t\t  }\r\n\r\n\t\t  for (let i = 0; i < numbers.length - 1; ++i) {\r\n\t\t    if (numbers[i] > 255) {\r\n\t\t      return failure;\r\n\t\t    }\r\n\t\t  }\r\n\t\t  if (numbers[numbers.length - 1] >= Math.pow(256, 5 - numbers.length)) {\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  let ipv4 = numbers.pop();\r\n\t\t  let counter = 0;\r\n\r\n\t\t  for (const n of numbers) {\r\n\t\t    ipv4 += n * Math.pow(256, 3 - counter);\r\n\t\t    ++counter;\r\n\t\t  }\r\n\r\n\t\t  return ipv4;\r\n\t\t}\r\n\r\n\t\tfunction serializeIPv4(address) {\r\n\t\t  let output = \"\";\r\n\t\t  let n = address;\r\n\r\n\t\t  for (let i = 1; i <= 4; ++i) {\r\n\t\t    output = String(n % 256) + output;\r\n\t\t    if (i !== 4) {\r\n\t\t      output = \".\" + output;\r\n\t\t    }\r\n\t\t    n = Math.floor(n / 256);\r\n\t\t  }\r\n\r\n\t\t  return output;\r\n\t\t}\r\n\r\n\t\tfunction parseIPv6(input) {\r\n\t\t  const address = [0, 0, 0, 0, 0, 0, 0, 0];\r\n\t\t  let pieceIndex = 0;\r\n\t\t  let compress = null;\r\n\t\t  let pointer = 0;\r\n\r\n\t\t  input = punycode.ucs2.decode(input);\r\n\r\n\t\t  if (input[pointer] === 58) {\r\n\t\t    if (input[pointer + 1] !== 58) {\r\n\t\t      return failure;\r\n\t\t    }\r\n\r\n\t\t    pointer += 2;\r\n\t\t    ++pieceIndex;\r\n\t\t    compress = pieceIndex;\r\n\t\t  }\r\n\r\n\t\t  while (pointer < input.length) {\r\n\t\t    if (pieceIndex === 8) {\r\n\t\t      return failure;\r\n\t\t    }\r\n\r\n\t\t    if (input[pointer] === 58) {\r\n\t\t      if (compress !== null) {\r\n\t\t        return failure;\r\n\t\t      }\r\n\t\t      ++pointer;\r\n\t\t      ++pieceIndex;\r\n\t\t      compress = pieceIndex;\r\n\t\t      continue;\r\n\t\t    }\r\n\r\n\t\t    let value = 0;\r\n\t\t    let length = 0;\r\n\r\n\t\t    while (length < 4 && isASCIIHex(input[pointer])) {\r\n\t\t      value = value * 0x10 + parseInt(at(input, pointer), 16);\r\n\t\t      ++pointer;\r\n\t\t      ++length;\r\n\t\t    }\r\n\r\n\t\t    if (input[pointer] === 46) {\r\n\t\t      if (length === 0) {\r\n\t\t        return failure;\r\n\t\t      }\r\n\r\n\t\t      pointer -= length;\r\n\r\n\t\t      if (pieceIndex > 6) {\r\n\t\t        return failure;\r\n\t\t      }\r\n\r\n\t\t      let numbersSeen = 0;\r\n\r\n\t\t      while (input[pointer] !== undefined) {\r\n\t\t        let ipv4Piece = null;\r\n\r\n\t\t        if (numbersSeen > 0) {\r\n\t\t          if (input[pointer] === 46 && numbersSeen < 4) {\r\n\t\t            ++pointer;\r\n\t\t          } else {\r\n\t\t            return failure;\r\n\t\t          }\r\n\t\t        }\r\n\r\n\t\t        if (!isASCIIDigit(input[pointer])) {\r\n\t\t          return failure;\r\n\t\t        }\r\n\r\n\t\t        while (isASCIIDigit(input[pointer])) {\r\n\t\t          const number = parseInt(at(input, pointer));\r\n\t\t          if (ipv4Piece === null) {\r\n\t\t            ipv4Piece = number;\r\n\t\t          } else if (ipv4Piece === 0) {\r\n\t\t            return failure;\r\n\t\t          } else {\r\n\t\t            ipv4Piece = ipv4Piece * 10 + number;\r\n\t\t          }\r\n\t\t          if (ipv4Piece > 255) {\r\n\t\t            return failure;\r\n\t\t          }\r\n\t\t          ++pointer;\r\n\t\t        }\r\n\r\n\t\t        address[pieceIndex] = address[pieceIndex] * 0x100 + ipv4Piece;\r\n\r\n\t\t        ++numbersSeen;\r\n\r\n\t\t        if (numbersSeen === 2 || numbersSeen === 4) {\r\n\t\t          ++pieceIndex;\r\n\t\t        }\r\n\t\t      }\r\n\r\n\t\t      if (numbersSeen !== 4) {\r\n\t\t        return failure;\r\n\t\t      }\r\n\r\n\t\t      break;\r\n\t\t    } else if (input[pointer] === 58) {\r\n\t\t      ++pointer;\r\n\t\t      if (input[pointer] === undefined) {\r\n\t\t        return failure;\r\n\t\t      }\r\n\t\t    } else if (input[pointer] !== undefined) {\r\n\t\t      return failure;\r\n\t\t    }\r\n\r\n\t\t    address[pieceIndex] = value;\r\n\t\t    ++pieceIndex;\r\n\t\t  }\r\n\r\n\t\t  if (compress !== null) {\r\n\t\t    let swaps = pieceIndex - compress;\r\n\t\t    pieceIndex = 7;\r\n\t\t    while (pieceIndex !== 0 && swaps > 0) {\r\n\t\t      const temp = address[compress + swaps - 1];\r\n\t\t      address[compress + swaps - 1] = address[pieceIndex];\r\n\t\t      address[pieceIndex] = temp;\r\n\t\t      --pieceIndex;\r\n\t\t      --swaps;\r\n\t\t    }\r\n\t\t  } else if (compress === null && pieceIndex !== 8) {\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  return address;\r\n\t\t}\r\n\r\n\t\tfunction serializeIPv6(address) {\r\n\t\t  let output = \"\";\r\n\t\t  const seqResult = findLongestZeroSequence(address);\r\n\t\t  const compress = seqResult.idx;\r\n\t\t  let ignore0 = false;\r\n\r\n\t\t  for (let pieceIndex = 0; pieceIndex <= 7; ++pieceIndex) {\r\n\t\t    if (ignore0 && address[pieceIndex] === 0) {\r\n\t\t      continue;\r\n\t\t    } else if (ignore0) {\r\n\t\t      ignore0 = false;\r\n\t\t    }\r\n\r\n\t\t    if (compress === pieceIndex) {\r\n\t\t      const separator = pieceIndex === 0 ? \"::\" : \":\";\r\n\t\t      output += separator;\r\n\t\t      ignore0 = true;\r\n\t\t      continue;\r\n\t\t    }\r\n\r\n\t\t    output += address[pieceIndex].toString(16);\r\n\r\n\t\t    if (pieceIndex !== 7) {\r\n\t\t      output += \":\";\r\n\t\t    }\r\n\t\t  }\r\n\r\n\t\t  return output;\r\n\t\t}\r\n\r\n\t\tfunction parseHost(input, isSpecialArg) {\r\n\t\t  if (input[0] === \"[\") {\r\n\t\t    if (input[input.length - 1] !== \"]\") {\r\n\t\t      return failure;\r\n\t\t    }\r\n\r\n\t\t    return parseIPv6(input.substring(1, input.length - 1));\r\n\t\t  }\r\n\r\n\t\t  if (!isSpecialArg) {\r\n\t\t    return parseOpaqueHost(input);\r\n\t\t  }\r\n\r\n\t\t  const domain = utf8PercentDecode(input);\r\n\t\t  const asciiDomain = tr46.toASCII(domain, false, tr46.PROCESSING_OPTIONS.NONTRANSITIONAL, false);\r\n\t\t  if (asciiDomain === null) {\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  if (containsForbiddenHostCodePoint(asciiDomain)) {\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  const ipv4Host = parseIPv4(asciiDomain);\r\n\t\t  if (typeof ipv4Host === \"number\" || ipv4Host === failure) {\r\n\t\t    return ipv4Host;\r\n\t\t  }\r\n\r\n\t\t  return asciiDomain;\r\n\t\t}\r\n\r\n\t\tfunction parseOpaqueHost(input) {\r\n\t\t  if (containsForbiddenHostCodePointExcludingPercent(input)) {\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  let output = \"\";\r\n\t\t  const decoded = punycode.ucs2.decode(input);\r\n\t\t  for (let i = 0; i < decoded.length; ++i) {\r\n\t\t    output += percentEncodeChar(decoded[i], isC0ControlPercentEncode);\r\n\t\t  }\r\n\t\t  return output;\r\n\t\t}\r\n\r\n\t\tfunction findLongestZeroSequence(arr) {\r\n\t\t  let maxIdx = null;\r\n\t\t  let maxLen = 1; // only find elements > 1\r\n\t\t  let currStart = null;\r\n\t\t  let currLen = 0;\r\n\r\n\t\t  for (let i = 0; i < arr.length; ++i) {\r\n\t\t    if (arr[i] !== 0) {\r\n\t\t      if (currLen > maxLen) {\r\n\t\t        maxIdx = currStart;\r\n\t\t        maxLen = currLen;\r\n\t\t      }\r\n\r\n\t\t      currStart = null;\r\n\t\t      currLen = 0;\r\n\t\t    } else {\r\n\t\t      if (currStart === null) {\r\n\t\t        currStart = i;\r\n\t\t      }\r\n\t\t      ++currLen;\r\n\t\t    }\r\n\t\t  }\r\n\r\n\t\t  // if trailing zeros\r\n\t\t  if (currLen > maxLen) {\r\n\t\t    maxIdx = currStart;\r\n\t\t    maxLen = currLen;\r\n\t\t  }\r\n\r\n\t\t  return {\r\n\t\t    idx: maxIdx,\r\n\t\t    len: maxLen\r\n\t\t  };\r\n\t\t}\r\n\r\n\t\tfunction serializeHost(host) {\r\n\t\t  if (typeof host === \"number\") {\r\n\t\t    return serializeIPv4(host);\r\n\t\t  }\r\n\r\n\t\t  // IPv6 serializer\r\n\t\t  if (host instanceof Array) {\r\n\t\t    return \"[\" + serializeIPv6(host) + \"]\";\r\n\t\t  }\r\n\r\n\t\t  return host;\r\n\t\t}\r\n\r\n\t\tfunction trimControlChars(url) {\r\n\t\t  return url.replace(/^[\\u0000-\\u001F\\u0020]+|[\\u0000-\\u001F\\u0020]+$/g, \"\");\r\n\t\t}\r\n\r\n\t\tfunction trimTabAndNewline(url) {\r\n\t\t  return url.replace(/\\u0009|\\u000A|\\u000D/g, \"\");\r\n\t\t}\r\n\r\n\t\tfunction shortenPath(url) {\r\n\t\t  const path = url.path;\r\n\t\t  if (path.length === 0) {\r\n\t\t    return;\r\n\t\t  }\r\n\t\t  if (url.scheme === \"file\" && path.length === 1 && isNormalizedWindowsDriveLetter(path[0])) {\r\n\t\t    return;\r\n\t\t  }\r\n\r\n\t\t  path.pop();\r\n\t\t}\r\n\r\n\t\tfunction includesCredentials(url) {\r\n\t\t  return url.username !== \"\" || url.password !== \"\";\r\n\t\t}\r\n\r\n\t\tfunction cannotHaveAUsernamePasswordPort(url) {\r\n\t\t  return url.host === null || url.host === \"\" || url.cannotBeABaseURL || url.scheme === \"file\";\r\n\t\t}\r\n\r\n\t\tfunction isNormalizedWindowsDriveLetter(string) {\r\n\t\t  return /^[A-Za-z]:$/.test(string);\r\n\t\t}\r\n\r\n\t\tfunction URLStateMachine(input, base, encodingOverride, url, stateOverride) {\r\n\t\t  this.pointer = 0;\r\n\t\t  this.input = input;\r\n\t\t  this.base = base || null;\r\n\t\t  this.encodingOverride = encodingOverride || \"utf-8\";\r\n\t\t  this.stateOverride = stateOverride;\r\n\t\t  this.url = url;\r\n\t\t  this.failure = false;\r\n\t\t  this.parseError = false;\r\n\r\n\t\t  if (!this.url) {\r\n\t\t    this.url = {\r\n\t\t      scheme: \"\",\r\n\t\t      username: \"\",\r\n\t\t      password: \"\",\r\n\t\t      host: null,\r\n\t\t      port: null,\r\n\t\t      path: [],\r\n\t\t      query: null,\r\n\t\t      fragment: null,\r\n\r\n\t\t      cannotBeABaseURL: false\r\n\t\t    };\r\n\r\n\t\t    const res = trimControlChars(this.input);\r\n\t\t    if (res !== this.input) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\t\t    this.input = res;\r\n\t\t  }\r\n\r\n\t\t  const res = trimTabAndNewline(this.input);\r\n\t\t  if (res !== this.input) {\r\n\t\t    this.parseError = true;\r\n\t\t  }\r\n\t\t  this.input = res;\r\n\r\n\t\t  this.state = stateOverride || \"scheme start\";\r\n\r\n\t\t  this.buffer = \"\";\r\n\t\t  this.atFlag = false;\r\n\t\t  this.arrFlag = false;\r\n\t\t  this.passwordTokenSeenFlag = false;\r\n\r\n\t\t  this.input = punycode.ucs2.decode(this.input);\r\n\r\n\t\t  for (; this.pointer <= this.input.length; ++this.pointer) {\r\n\t\t    const c = this.input[this.pointer];\r\n\t\t    const cStr = isNaN(c) ? undefined : String.fromCodePoint(c);\r\n\r\n\t\t    // exec state machine\r\n\t\t    const ret = this[\"parse \" + this.state](c, cStr);\r\n\t\t    if (!ret) {\r\n\t\t      break; // terminate algorithm\r\n\t\t    } else if (ret === failure) {\r\n\t\t      this.failure = true;\r\n\t\t      break;\r\n\t\t    }\r\n\t\t  }\r\n\t\t}\r\n\r\n\t\tURLStateMachine.prototype[\"parse scheme start\"] = function parseSchemeStart(c, cStr) {\r\n\t\t  if (isASCIIAlpha(c)) {\r\n\t\t    this.buffer += cStr.toLowerCase();\r\n\t\t    this.state = \"scheme\";\r\n\t\t  } else if (!this.stateOverride) {\r\n\t\t    this.state = \"no scheme\";\r\n\t\t    --this.pointer;\r\n\t\t  } else {\r\n\t\t    this.parseError = true;\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse scheme\"] = function parseScheme(c, cStr) {\r\n\t\t  if (isASCIIAlphanumeric(c) || c === 43 || c === 45 || c === 46) {\r\n\t\t    this.buffer += cStr.toLowerCase();\r\n\t\t  } else if (c === 58) {\r\n\t\t    if (this.stateOverride) {\r\n\t\t      if (isSpecial(this.url) && !isSpecialScheme(this.buffer)) {\r\n\t\t        return false;\r\n\t\t      }\r\n\r\n\t\t      if (!isSpecial(this.url) && isSpecialScheme(this.buffer)) {\r\n\t\t        return false;\r\n\t\t      }\r\n\r\n\t\t      if ((includesCredentials(this.url) || this.url.port !== null) && this.buffer === \"file\") {\r\n\t\t        return false;\r\n\t\t      }\r\n\r\n\t\t      if (this.url.scheme === \"file\" && (this.url.host === \"\" || this.url.host === null)) {\r\n\t\t        return false;\r\n\t\t      }\r\n\t\t    }\r\n\t\t    this.url.scheme = this.buffer;\r\n\t\t    this.buffer = \"\";\r\n\t\t    if (this.stateOverride) {\r\n\t\t      return false;\r\n\t\t    }\r\n\t\t    if (this.url.scheme === \"file\") {\r\n\t\t      if (this.input[this.pointer + 1] !== 47 || this.input[this.pointer + 2] !== 47) {\r\n\t\t        this.parseError = true;\r\n\t\t      }\r\n\t\t      this.state = \"file\";\r\n\t\t    } else if (isSpecial(this.url) && this.base !== null && this.base.scheme === this.url.scheme) {\r\n\t\t      this.state = \"special relative or authority\";\r\n\t\t    } else if (isSpecial(this.url)) {\r\n\t\t      this.state = \"special authority slashes\";\r\n\t\t    } else if (this.input[this.pointer + 1] === 47) {\r\n\t\t      this.state = \"path or authority\";\r\n\t\t      ++this.pointer;\r\n\t\t    } else {\r\n\t\t      this.url.cannotBeABaseURL = true;\r\n\t\t      this.url.path.push(\"\");\r\n\t\t      this.state = \"cannot-be-a-base-URL path\";\r\n\t\t    }\r\n\t\t  } else if (!this.stateOverride) {\r\n\t\t    this.buffer = \"\";\r\n\t\t    this.state = \"no scheme\";\r\n\t\t    this.pointer = -1;\r\n\t\t  } else {\r\n\t\t    this.parseError = true;\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse no scheme\"] = function parseNoScheme(c) {\r\n\t\t  if (this.base === null || (this.base.cannotBeABaseURL && c !== 35)) {\r\n\t\t    return failure;\r\n\t\t  } else if (this.base.cannotBeABaseURL && c === 35) {\r\n\t\t    this.url.scheme = this.base.scheme;\r\n\t\t    this.url.path = this.base.path.slice();\r\n\t\t    this.url.query = this.base.query;\r\n\t\t    this.url.fragment = \"\";\r\n\t\t    this.url.cannotBeABaseURL = true;\r\n\t\t    this.state = \"fragment\";\r\n\t\t  } else if (this.base.scheme === \"file\") {\r\n\t\t    this.state = \"file\";\r\n\t\t    --this.pointer;\r\n\t\t  } else {\r\n\t\t    this.state = \"relative\";\r\n\t\t    --this.pointer;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse special relative or authority\"] = function parseSpecialRelativeOrAuthority(c) {\r\n\t\t  if (c === 47 && this.input[this.pointer + 1] === 47) {\r\n\t\t    this.state = \"special authority ignore slashes\";\r\n\t\t    ++this.pointer;\r\n\t\t  } else {\r\n\t\t    this.parseError = true;\r\n\t\t    this.state = \"relative\";\r\n\t\t    --this.pointer;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse path or authority\"] = function parsePathOrAuthority(c) {\r\n\t\t  if (c === 47) {\r\n\t\t    this.state = \"authority\";\r\n\t\t  } else {\r\n\t\t    this.state = \"path\";\r\n\t\t    --this.pointer;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse relative\"] = function parseRelative(c) {\r\n\t\t  this.url.scheme = this.base.scheme;\r\n\t\t  if (isNaN(c)) {\r\n\t\t    this.url.username = this.base.username;\r\n\t\t    this.url.password = this.base.password;\r\n\t\t    this.url.host = this.base.host;\r\n\t\t    this.url.port = this.base.port;\r\n\t\t    this.url.path = this.base.path.slice();\r\n\t\t    this.url.query = this.base.query;\r\n\t\t  } else if (c === 47) {\r\n\t\t    this.state = \"relative slash\";\r\n\t\t  } else if (c === 63) {\r\n\t\t    this.url.username = this.base.username;\r\n\t\t    this.url.password = this.base.password;\r\n\t\t    this.url.host = this.base.host;\r\n\t\t    this.url.port = this.base.port;\r\n\t\t    this.url.path = this.base.path.slice();\r\n\t\t    this.url.query = \"\";\r\n\t\t    this.state = \"query\";\r\n\t\t  } else if (c === 35) {\r\n\t\t    this.url.username = this.base.username;\r\n\t\t    this.url.password = this.base.password;\r\n\t\t    this.url.host = this.base.host;\r\n\t\t    this.url.port = this.base.port;\r\n\t\t    this.url.path = this.base.path.slice();\r\n\t\t    this.url.query = this.base.query;\r\n\t\t    this.url.fragment = \"\";\r\n\t\t    this.state = \"fragment\";\r\n\t\t  } else if (isSpecial(this.url) && c === 92) {\r\n\t\t    this.parseError = true;\r\n\t\t    this.state = \"relative slash\";\r\n\t\t  } else {\r\n\t\t    this.url.username = this.base.username;\r\n\t\t    this.url.password = this.base.password;\r\n\t\t    this.url.host = this.base.host;\r\n\t\t    this.url.port = this.base.port;\r\n\t\t    this.url.path = this.base.path.slice(0, this.base.path.length - 1);\r\n\r\n\t\t    this.state = \"path\";\r\n\t\t    --this.pointer;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse relative slash\"] = function parseRelativeSlash(c) {\r\n\t\t  if (isSpecial(this.url) && (c === 47 || c === 92)) {\r\n\t\t    if (c === 92) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\t\t    this.state = \"special authority ignore slashes\";\r\n\t\t  } else if (c === 47) {\r\n\t\t    this.state = \"authority\";\r\n\t\t  } else {\r\n\t\t    this.url.username = this.base.username;\r\n\t\t    this.url.password = this.base.password;\r\n\t\t    this.url.host = this.base.host;\r\n\t\t    this.url.port = this.base.port;\r\n\t\t    this.state = \"path\";\r\n\t\t    --this.pointer;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse special authority slashes\"] = function parseSpecialAuthoritySlashes(c) {\r\n\t\t  if (c === 47 && this.input[this.pointer + 1] === 47) {\r\n\t\t    this.state = \"special authority ignore slashes\";\r\n\t\t    ++this.pointer;\r\n\t\t  } else {\r\n\t\t    this.parseError = true;\r\n\t\t    this.state = \"special authority ignore slashes\";\r\n\t\t    --this.pointer;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse special authority ignore slashes\"] = function parseSpecialAuthorityIgnoreSlashes(c) {\r\n\t\t  if (c !== 47 && c !== 92) {\r\n\t\t    this.state = \"authority\";\r\n\t\t    --this.pointer;\r\n\t\t  } else {\r\n\t\t    this.parseError = true;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse authority\"] = function parseAuthority(c, cStr) {\r\n\t\t  if (c === 64) {\r\n\t\t    this.parseError = true;\r\n\t\t    if (this.atFlag) {\r\n\t\t      this.buffer = \"%40\" + this.buffer;\r\n\t\t    }\r\n\t\t    this.atFlag = true;\r\n\r\n\t\t    // careful, this is based on buffer and has its own pointer (this.pointer != pointer) and inner chars\r\n\t\t    const len = countSymbols(this.buffer);\r\n\t\t    for (let pointer = 0; pointer < len; ++pointer) {\r\n\t\t      const codePoint = this.buffer.codePointAt(pointer);\r\n\r\n\t\t      if (codePoint === 58 && !this.passwordTokenSeenFlag) {\r\n\t\t        this.passwordTokenSeenFlag = true;\r\n\t\t        continue;\r\n\t\t      }\r\n\t\t      const encodedCodePoints = percentEncodeChar(codePoint, isUserinfoPercentEncode);\r\n\t\t      if (this.passwordTokenSeenFlag) {\r\n\t\t        this.url.password += encodedCodePoints;\r\n\t\t      } else {\r\n\t\t        this.url.username += encodedCodePoints;\r\n\t\t      }\r\n\t\t    }\r\n\t\t    this.buffer = \"\";\r\n\t\t  } else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||\r\n\t\t             (isSpecial(this.url) && c === 92)) {\r\n\t\t    if (this.atFlag && this.buffer === \"\") {\r\n\t\t      this.parseError = true;\r\n\t\t      return failure;\r\n\t\t    }\r\n\t\t    this.pointer -= countSymbols(this.buffer) + 1;\r\n\t\t    this.buffer = \"\";\r\n\t\t    this.state = \"host\";\r\n\t\t  } else {\r\n\t\t    this.buffer += cStr;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse hostname\"] =\r\n\t\tURLStateMachine.prototype[\"parse host\"] = function parseHostName(c, cStr) {\r\n\t\t  if (this.stateOverride && this.url.scheme === \"file\") {\r\n\t\t    --this.pointer;\r\n\t\t    this.state = \"file host\";\r\n\t\t  } else if (c === 58 && !this.arrFlag) {\r\n\t\t    if (this.buffer === \"\") {\r\n\t\t      this.parseError = true;\r\n\t\t      return failure;\r\n\t\t    }\r\n\r\n\t\t    const host = parseHost(this.buffer, isSpecial(this.url));\r\n\t\t    if (host === failure) {\r\n\t\t      return failure;\r\n\t\t    }\r\n\r\n\t\t    this.url.host = host;\r\n\t\t    this.buffer = \"\";\r\n\t\t    this.state = \"port\";\r\n\t\t    if (this.stateOverride === \"hostname\") {\r\n\t\t      return false;\r\n\t\t    }\r\n\t\t  } else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||\r\n\t\t             (isSpecial(this.url) && c === 92)) {\r\n\t\t    --this.pointer;\r\n\t\t    if (isSpecial(this.url) && this.buffer === \"\") {\r\n\t\t      this.parseError = true;\r\n\t\t      return failure;\r\n\t\t    } else if (this.stateOverride && this.buffer === \"\" &&\r\n\t\t               (includesCredentials(this.url) || this.url.port !== null)) {\r\n\t\t      this.parseError = true;\r\n\t\t      return false;\r\n\t\t    }\r\n\r\n\t\t    const host = parseHost(this.buffer, isSpecial(this.url));\r\n\t\t    if (host === failure) {\r\n\t\t      return failure;\r\n\t\t    }\r\n\r\n\t\t    this.url.host = host;\r\n\t\t    this.buffer = \"\";\r\n\t\t    this.state = \"path start\";\r\n\t\t    if (this.stateOverride) {\r\n\t\t      return false;\r\n\t\t    }\r\n\t\t  } else {\r\n\t\t    if (c === 91) {\r\n\t\t      this.arrFlag = true;\r\n\t\t    } else if (c === 93) {\r\n\t\t      this.arrFlag = false;\r\n\t\t    }\r\n\t\t    this.buffer += cStr;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse port\"] = function parsePort(c, cStr) {\r\n\t\t  if (isASCIIDigit(c)) {\r\n\t\t    this.buffer += cStr;\r\n\t\t  } else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||\r\n\t\t             (isSpecial(this.url) && c === 92) ||\r\n\t\t             this.stateOverride) {\r\n\t\t    if (this.buffer !== \"\") {\r\n\t\t      const port = parseInt(this.buffer);\r\n\t\t      if (port > Math.pow(2, 16) - 1) {\r\n\t\t        this.parseError = true;\r\n\t\t        return failure;\r\n\t\t      }\r\n\t\t      this.url.port = port === defaultPort(this.url.scheme) ? null : port;\r\n\t\t      this.buffer = \"\";\r\n\t\t    }\r\n\t\t    if (this.stateOverride) {\r\n\t\t      return false;\r\n\t\t    }\r\n\t\t    this.state = \"path start\";\r\n\t\t    --this.pointer;\r\n\t\t  } else {\r\n\t\t    this.parseError = true;\r\n\t\t    return failure;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tconst fileOtherwiseCodePoints = new Set([47, 92, 63, 35]);\r\n\r\n\t\tURLStateMachine.prototype[\"parse file\"] = function parseFile(c) {\r\n\t\t  this.url.scheme = \"file\";\r\n\r\n\t\t  if (c === 47 || c === 92) {\r\n\t\t    if (c === 92) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\t\t    this.state = \"file slash\";\r\n\t\t  } else if (this.base !== null && this.base.scheme === \"file\") {\r\n\t\t    if (isNaN(c)) {\r\n\t\t      this.url.host = this.base.host;\r\n\t\t      this.url.path = this.base.path.slice();\r\n\t\t      this.url.query = this.base.query;\r\n\t\t    } else if (c === 63) {\r\n\t\t      this.url.host = this.base.host;\r\n\t\t      this.url.path = this.base.path.slice();\r\n\t\t      this.url.query = \"\";\r\n\t\t      this.state = \"query\";\r\n\t\t    } else if (c === 35) {\r\n\t\t      this.url.host = this.base.host;\r\n\t\t      this.url.path = this.base.path.slice();\r\n\t\t      this.url.query = this.base.query;\r\n\t\t      this.url.fragment = \"\";\r\n\t\t      this.state = \"fragment\";\r\n\t\t    } else {\r\n\t\t      if (this.input.length - this.pointer - 1 === 0 || // remaining consists of 0 code points\r\n\t\t          !isWindowsDriveLetterCodePoints(c, this.input[this.pointer + 1]) ||\r\n\t\t          (this.input.length - this.pointer - 1 >= 2 && // remaining has at least 2 code points\r\n\t\t           !fileOtherwiseCodePoints.has(this.input[this.pointer + 2]))) {\r\n\t\t        this.url.host = this.base.host;\r\n\t\t        this.url.path = this.base.path.slice();\r\n\t\t        shortenPath(this.url);\r\n\t\t      } else {\r\n\t\t        this.parseError = true;\r\n\t\t      }\r\n\r\n\t\t      this.state = \"path\";\r\n\t\t      --this.pointer;\r\n\t\t    }\r\n\t\t  } else {\r\n\t\t    this.state = \"path\";\r\n\t\t    --this.pointer;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse file slash\"] = function parseFileSlash(c) {\r\n\t\t  if (c === 47 || c === 92) {\r\n\t\t    if (c === 92) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\t\t    this.state = \"file host\";\r\n\t\t  } else {\r\n\t\t    if (this.base !== null && this.base.scheme === \"file\") {\r\n\t\t      if (isNormalizedWindowsDriveLetterString(this.base.path[0])) {\r\n\t\t        this.url.path.push(this.base.path[0]);\r\n\t\t      } else {\r\n\t\t        this.url.host = this.base.host;\r\n\t\t      }\r\n\t\t    }\r\n\t\t    this.state = \"path\";\r\n\t\t    --this.pointer;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse file host\"] = function parseFileHost(c, cStr) {\r\n\t\t  if (isNaN(c) || c === 47 || c === 92 || c === 63 || c === 35) {\r\n\t\t    --this.pointer;\r\n\t\t    if (!this.stateOverride && isWindowsDriveLetterString(this.buffer)) {\r\n\t\t      this.parseError = true;\r\n\t\t      this.state = \"path\";\r\n\t\t    } else if (this.buffer === \"\") {\r\n\t\t      this.url.host = \"\";\r\n\t\t      if (this.stateOverride) {\r\n\t\t        return false;\r\n\t\t      }\r\n\t\t      this.state = \"path start\";\r\n\t\t    } else {\r\n\t\t      let host = parseHost(this.buffer, isSpecial(this.url));\r\n\t\t      if (host === failure) {\r\n\t\t        return failure;\r\n\t\t      }\r\n\t\t      if (host === \"localhost\") {\r\n\t\t        host = \"\";\r\n\t\t      }\r\n\t\t      this.url.host = host;\r\n\r\n\t\t      if (this.stateOverride) {\r\n\t\t        return false;\r\n\t\t      }\r\n\r\n\t\t      this.buffer = \"\";\r\n\t\t      this.state = \"path start\";\r\n\t\t    }\r\n\t\t  } else {\r\n\t\t    this.buffer += cStr;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse path start\"] = function parsePathStart(c) {\r\n\t\t  if (isSpecial(this.url)) {\r\n\t\t    if (c === 92) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\t\t    this.state = \"path\";\r\n\r\n\t\t    if (c !== 47 && c !== 92) {\r\n\t\t      --this.pointer;\r\n\t\t    }\r\n\t\t  } else if (!this.stateOverride && c === 63) {\r\n\t\t    this.url.query = \"\";\r\n\t\t    this.state = \"query\";\r\n\t\t  } else if (!this.stateOverride && c === 35) {\r\n\t\t    this.url.fragment = \"\";\r\n\t\t    this.state = \"fragment\";\r\n\t\t  } else if (c !== undefined) {\r\n\t\t    this.state = \"path\";\r\n\t\t    if (c !== 47) {\r\n\t\t      --this.pointer;\r\n\t\t    }\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse path\"] = function parsePath(c) {\r\n\t\t  if (isNaN(c) || c === 47 || (isSpecial(this.url) && c === 92) ||\r\n\t\t      (!this.stateOverride && (c === 63 || c === 35))) {\r\n\t\t    if (isSpecial(this.url) && c === 92) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\r\n\t\t    if (isDoubleDot(this.buffer)) {\r\n\t\t      shortenPath(this.url);\r\n\t\t      if (c !== 47 && !(isSpecial(this.url) && c === 92)) {\r\n\t\t        this.url.path.push(\"\");\r\n\t\t      }\r\n\t\t    } else if (isSingleDot(this.buffer) && c !== 47 &&\r\n\t\t               !(isSpecial(this.url) && c === 92)) {\r\n\t\t      this.url.path.push(\"\");\r\n\t\t    } else if (!isSingleDot(this.buffer)) {\r\n\t\t      if (this.url.scheme === \"file\" && this.url.path.length === 0 && isWindowsDriveLetterString(this.buffer)) {\r\n\t\t        if (this.url.host !== \"\" && this.url.host !== null) {\r\n\t\t          this.parseError = true;\r\n\t\t          this.url.host = \"\";\r\n\t\t        }\r\n\t\t        this.buffer = this.buffer[0] + \":\";\r\n\t\t      }\r\n\t\t      this.url.path.push(this.buffer);\r\n\t\t    }\r\n\t\t    this.buffer = \"\";\r\n\t\t    if (this.url.scheme === \"file\" && (c === undefined || c === 63 || c === 35)) {\r\n\t\t      while (this.url.path.length > 1 && this.url.path[0] === \"\") {\r\n\t\t        this.parseError = true;\r\n\t\t        this.url.path.shift();\r\n\t\t      }\r\n\t\t    }\r\n\t\t    if (c === 63) {\r\n\t\t      this.url.query = \"\";\r\n\t\t      this.state = \"query\";\r\n\t\t    }\r\n\t\t    if (c === 35) {\r\n\t\t      this.url.fragment = \"\";\r\n\t\t      this.state = \"fragment\";\r\n\t\t    }\r\n\t\t  } else {\r\n\t\t    // TODO: If c is not a URL code point and not \"%\", parse error.\r\n\r\n\t\t    if (c === 37 &&\r\n\t\t      (!isASCIIHex(this.input[this.pointer + 1]) ||\r\n\t\t        !isASCIIHex(this.input[this.pointer + 2]))) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\r\n\t\t    this.buffer += percentEncodeChar(c, isPathPercentEncode);\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse cannot-be-a-base-URL path\"] = function parseCannotBeABaseURLPath(c) {\r\n\t\t  if (c === 63) {\r\n\t\t    this.url.query = \"\";\r\n\t\t    this.state = \"query\";\r\n\t\t  } else if (c === 35) {\r\n\t\t    this.url.fragment = \"\";\r\n\t\t    this.state = \"fragment\";\r\n\t\t  } else {\r\n\t\t    // TODO: Add: not a URL code point\r\n\t\t    if (!isNaN(c) && c !== 37) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\r\n\t\t    if (c === 37 &&\r\n\t\t        (!isASCIIHex(this.input[this.pointer + 1]) ||\r\n\t\t         !isASCIIHex(this.input[this.pointer + 2]))) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\r\n\t\t    if (!isNaN(c)) {\r\n\t\t      this.url.path[0] = this.url.path[0] + percentEncodeChar(c, isC0ControlPercentEncode);\r\n\t\t    }\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse query\"] = function parseQuery(c, cStr) {\r\n\t\t  if (isNaN(c) || (!this.stateOverride && c === 35)) {\r\n\t\t    if (!isSpecial(this.url) || this.url.scheme === \"ws\" || this.url.scheme === \"wss\") {\r\n\t\t      this.encodingOverride = \"utf-8\";\r\n\t\t    }\r\n\r\n\t\t    const buffer = new Buffer(this.buffer); // TODO: Use encoding override instead\r\n\t\t    for (let i = 0; i < buffer.length; ++i) {\r\n\t\t      if (buffer[i] < 0x21 || buffer[i] > 0x7E || buffer[i] === 0x22 || buffer[i] === 0x23 ||\r\n\t\t          buffer[i] === 0x3C || buffer[i] === 0x3E) {\r\n\t\t        this.url.query += percentEncode(buffer[i]);\r\n\t\t      } else {\r\n\t\t        this.url.query += String.fromCodePoint(buffer[i]);\r\n\t\t      }\r\n\t\t    }\r\n\r\n\t\t    this.buffer = \"\";\r\n\t\t    if (c === 35) {\r\n\t\t      this.url.fragment = \"\";\r\n\t\t      this.state = \"fragment\";\r\n\t\t    }\r\n\t\t  } else {\r\n\t\t    // TODO: If c is not a URL code point and not \"%\", parse error.\r\n\t\t    if (c === 37 &&\r\n\t\t      (!isASCIIHex(this.input[this.pointer + 1]) ||\r\n\t\t        !isASCIIHex(this.input[this.pointer + 2]))) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\r\n\t\t    this.buffer += cStr;\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tURLStateMachine.prototype[\"parse fragment\"] = function parseFragment(c) {\r\n\t\t  if (isNaN(c)) ; else if (c === 0x0) {\r\n\t\t    this.parseError = true;\r\n\t\t  } else {\r\n\t\t    // TODO: If c is not a URL code point and not \"%\", parse error.\r\n\t\t    if (c === 37 &&\r\n\t\t      (!isASCIIHex(this.input[this.pointer + 1]) ||\r\n\t\t        !isASCIIHex(this.input[this.pointer + 2]))) {\r\n\t\t      this.parseError = true;\r\n\t\t    }\r\n\r\n\t\t    this.url.fragment += percentEncodeChar(c, isC0ControlPercentEncode);\r\n\t\t  }\r\n\r\n\t\t  return true;\r\n\t\t};\r\n\r\n\t\tfunction serializeURL(url, excludeFragment) {\r\n\t\t  let output = url.scheme + \":\";\r\n\t\t  if (url.host !== null) {\r\n\t\t    output += \"//\";\r\n\r\n\t\t    if (url.username !== \"\" || url.password !== \"\") {\r\n\t\t      output += url.username;\r\n\t\t      if (url.password !== \"\") {\r\n\t\t        output += \":\" + url.password;\r\n\t\t      }\r\n\t\t      output += \"@\";\r\n\t\t    }\r\n\r\n\t\t    output += serializeHost(url.host);\r\n\r\n\t\t    if (url.port !== null) {\r\n\t\t      output += \":\" + url.port;\r\n\t\t    }\r\n\t\t  } else if (url.host === null && url.scheme === \"file\") {\r\n\t\t    output += \"//\";\r\n\t\t  }\r\n\r\n\t\t  if (url.cannotBeABaseURL) {\r\n\t\t    output += url.path[0];\r\n\t\t  } else {\r\n\t\t    for (const string of url.path) {\r\n\t\t      output += \"/\" + string;\r\n\t\t    }\r\n\t\t  }\r\n\r\n\t\t  if (url.query !== null) {\r\n\t\t    output += \"?\" + url.query;\r\n\t\t  }\r\n\r\n\t\t  if (!excludeFragment && url.fragment !== null) {\r\n\t\t    output += \"#\" + url.fragment;\r\n\t\t  }\r\n\r\n\t\t  return output;\r\n\t\t}\r\n\r\n\t\tfunction serializeOrigin(tuple) {\r\n\t\t  let result = tuple.scheme + \"://\";\r\n\t\t  result += serializeHost(tuple.host);\r\n\r\n\t\t  if (tuple.port !== null) {\r\n\t\t    result += \":\" + tuple.port;\r\n\t\t  }\r\n\r\n\t\t  return result;\r\n\t\t}\r\n\r\n\t\tmodule.exports.serializeURL = serializeURL;\r\n\r\n\t\tmodule.exports.serializeURLOrigin = function (url) {\r\n\t\t  // https://url.spec.whatwg.org/#concept-url-origin\r\n\t\t  switch (url.scheme) {\r\n\t\t    case \"blob\":\r\n\t\t      try {\r\n\t\t        return module.exports.serializeURLOrigin(module.exports.parseURL(url.path[0]));\r\n\t\t      } catch (e) {\r\n\t\t        // serializing an opaque origin returns \"null\"\r\n\t\t        return \"null\";\r\n\t\t      }\r\n\t\t    case \"ftp\":\r\n\t\t    case \"gopher\":\r\n\t\t    case \"http\":\r\n\t\t    case \"https\":\r\n\t\t    case \"ws\":\r\n\t\t    case \"wss\":\r\n\t\t      return serializeOrigin({\r\n\t\t        scheme: url.scheme,\r\n\t\t        host: url.host,\r\n\t\t        port: url.port\r\n\t\t      });\r\n\t\t    case \"file\":\r\n\t\t      // spec says \"exercise to the reader\", chrome says \"file://\"\r\n\t\t      return \"file://\";\r\n\t\t    default:\r\n\t\t      // serializing an opaque origin returns \"null\"\r\n\t\t      return \"null\";\r\n\t\t  }\r\n\t\t};\r\n\r\n\t\tmodule.exports.basicURLParse = function (input, options) {\r\n\t\t  if (options === undefined) {\r\n\t\t    options = {};\r\n\t\t  }\r\n\r\n\t\t  const usm = new URLStateMachine(input, options.baseURL, options.encodingOverride, options.url, options.stateOverride);\r\n\t\t  if (usm.failure) {\r\n\t\t    return \"failure\";\r\n\t\t  }\r\n\r\n\t\t  return usm.url;\r\n\t\t};\r\n\r\n\t\tmodule.exports.setTheUsername = function (url, username) {\r\n\t\t  url.username = \"\";\r\n\t\t  const decoded = punycode.ucs2.decode(username);\r\n\t\t  for (let i = 0; i < decoded.length; ++i) {\r\n\t\t    url.username += percentEncodeChar(decoded[i], isUserinfoPercentEncode);\r\n\t\t  }\r\n\t\t};\r\n\r\n\t\tmodule.exports.setThePassword = function (url, password) {\r\n\t\t  url.password = \"\";\r\n\t\t  const decoded = punycode.ucs2.decode(password);\r\n\t\t  for (let i = 0; i < decoded.length; ++i) {\r\n\t\t    url.password += percentEncodeChar(decoded[i], isUserinfoPercentEncode);\r\n\t\t  }\r\n\t\t};\r\n\r\n\t\tmodule.exports.serializeHost = serializeHost;\r\n\r\n\t\tmodule.exports.cannotHaveAUsernamePasswordPort = cannotHaveAUsernamePasswordPort;\r\n\r\n\t\tmodule.exports.serializeInteger = function (integer) {\r\n\t\t  return String(integer);\r\n\t\t};\r\n\r\n\t\tmodule.exports.parseURL = function (input, options) {\r\n\t\t  if (options === undefined) {\r\n\t\t    options = {};\r\n\t\t  }\r\n\r\n\t\t  // We don't handle blobs, so this just delegates:\r\n\t\t  return module.exports.basicURLParse(input, { baseURL: options.baseURL, encodingOverride: options.encodingOverride });\r\n\t\t}; \n\t} (urlStateMachine));\n\treturn urlStateMachine.exports;\n}\n\nvar hasRequiredURLImpl;\n\nfunction requireURLImpl () {\n\tif (hasRequiredURLImpl) return URLImpl;\n\thasRequiredURLImpl = 1;\n\tconst usm = requireUrlStateMachine();\n\n\tURLImpl.implementation = class URLImpl {\n\t  constructor(constructorArgs) {\n\t    const url = constructorArgs[0];\n\t    const base = constructorArgs[1];\n\n\t    let parsedBase = null;\n\t    if (base !== undefined) {\n\t      parsedBase = usm.basicURLParse(base);\n\t      if (parsedBase === \"failure\") {\n\t        throw new TypeError(\"Invalid base URL\");\n\t      }\n\t    }\n\n\t    const parsedURL = usm.basicURLParse(url, { baseURL: parsedBase });\n\t    if (parsedURL === \"failure\") {\n\t      throw new TypeError(\"Invalid URL\");\n\t    }\n\n\t    this._url = parsedURL;\n\n\t    // TODO: query stuff\n\t  }\n\n\t  get href() {\n\t    return usm.serializeURL(this._url);\n\t  }\n\n\t  set href(v) {\n\t    const parsedURL = usm.basicURLParse(v);\n\t    if (parsedURL === \"failure\") {\n\t      throw new TypeError(\"Invalid URL\");\n\t    }\n\n\t    this._url = parsedURL;\n\t  }\n\n\t  get origin() {\n\t    return usm.serializeURLOrigin(this._url);\n\t  }\n\n\t  get protocol() {\n\t    return this._url.scheme + \":\";\n\t  }\n\n\t  set protocol(v) {\n\t    usm.basicURLParse(v + \":\", { url: this._url, stateOverride: \"scheme start\" });\n\t  }\n\n\t  get username() {\n\t    return this._url.username;\n\t  }\n\n\t  set username(v) {\n\t    if (usm.cannotHaveAUsernamePasswordPort(this._url)) {\n\t      return;\n\t    }\n\n\t    usm.setTheUsername(this._url, v);\n\t  }\n\n\t  get password() {\n\t    return this._url.password;\n\t  }\n\n\t  set password(v) {\n\t    if (usm.cannotHaveAUsernamePasswordPort(this._url)) {\n\t      return;\n\t    }\n\n\t    usm.setThePassword(this._url, v);\n\t  }\n\n\t  get host() {\n\t    const url = this._url;\n\n\t    if (url.host === null) {\n\t      return \"\";\n\t    }\n\n\t    if (url.port === null) {\n\t      return usm.serializeHost(url.host);\n\t    }\n\n\t    return usm.serializeHost(url.host) + \":\" + usm.serializeInteger(url.port);\n\t  }\n\n\t  set host(v) {\n\t    if (this._url.cannotBeABaseURL) {\n\t      return;\n\t    }\n\n\t    usm.basicURLParse(v, { url: this._url, stateOverride: \"host\" });\n\t  }\n\n\t  get hostname() {\n\t    if (this._url.host === null) {\n\t      return \"\";\n\t    }\n\n\t    return usm.serializeHost(this._url.host);\n\t  }\n\n\t  set hostname(v) {\n\t    if (this._url.cannotBeABaseURL) {\n\t      return;\n\t    }\n\n\t    usm.basicURLParse(v, { url: this._url, stateOverride: \"hostname\" });\n\t  }\n\n\t  get port() {\n\t    if (this._url.port === null) {\n\t      return \"\";\n\t    }\n\n\t    return usm.serializeInteger(this._url.port);\n\t  }\n\n\t  set port(v) {\n\t    if (usm.cannotHaveAUsernamePasswordPort(this._url)) {\n\t      return;\n\t    }\n\n\t    if (v === \"\") {\n\t      this._url.port = null;\n\t    } else {\n\t      usm.basicURLParse(v, { url: this._url, stateOverride: \"port\" });\n\t    }\n\t  }\n\n\t  get pathname() {\n\t    if (this._url.cannotBeABaseURL) {\n\t      return this._url.path[0];\n\t    }\n\n\t    if (this._url.path.length === 0) {\n\t      return \"\";\n\t    }\n\n\t    return \"/\" + this._url.path.join(\"/\");\n\t  }\n\n\t  set pathname(v) {\n\t    if (this._url.cannotBeABaseURL) {\n\t      return;\n\t    }\n\n\t    this._url.path = [];\n\t    usm.basicURLParse(v, { url: this._url, stateOverride: \"path start\" });\n\t  }\n\n\t  get search() {\n\t    if (this._url.query === null || this._url.query === \"\") {\n\t      return \"\";\n\t    }\n\n\t    return \"?\" + this._url.query;\n\t  }\n\n\t  set search(v) {\n\t    // TODO: query stuff\n\n\t    const url = this._url;\n\n\t    if (v === \"\") {\n\t      url.query = null;\n\t      return;\n\t    }\n\n\t    const input = v[0] === \"?\" ? v.substring(1) : v;\n\t    url.query = \"\";\n\t    usm.basicURLParse(input, { url, stateOverride: \"query\" });\n\t  }\n\n\t  get hash() {\n\t    if (this._url.fragment === null || this._url.fragment === \"\") {\n\t      return \"\";\n\t    }\n\n\t    return \"#\" + this._url.fragment;\n\t  }\n\n\t  set hash(v) {\n\t    if (v === \"\") {\n\t      this._url.fragment = null;\n\t      return;\n\t    }\n\n\t    const input = v[0] === \"#\" ? v.substring(1) : v;\n\t    this._url.fragment = \"\";\n\t    usm.basicURLParse(input, { url: this._url, stateOverride: \"fragment\" });\n\t  }\n\n\t  toJSON() {\n\t    return this.href;\n\t  }\n\t};\n\treturn URLImpl;\n}\n\nvar hasRequiredURL;\n\nfunction requireURL () {\n\tif (hasRequiredURL) return URL$2.exports;\n\thasRequiredURL = 1;\n\t(function (module) {\n\n\t\tconst conversions = requireLib();\n\t\tconst utils = requireUtils$1();\n\t\tconst Impl = requireURLImpl();\n\n\t\tconst impl = utils.implSymbol;\n\n\t\tfunction URL(url) {\n\t\t  if (!this || this[impl] || !(this instanceof URL)) {\n\t\t    throw new TypeError(\"Failed to construct 'URL': Please use the 'new' operator, this DOM object constructor cannot be called as a function.\");\n\t\t  }\n\t\t  if (arguments.length < 1) {\n\t\t    throw new TypeError(\"Failed to construct 'URL': 1 argument required, but only \" + arguments.length + \" present.\");\n\t\t  }\n\t\t  const args = [];\n\t\t  for (let i = 0; i < arguments.length && i < 2; ++i) {\n\t\t    args[i] = arguments[i];\n\t\t  }\n\t\t  args[0] = conversions[\"USVString\"](args[0]);\n\t\t  if (args[1] !== undefined) {\n\t\t  args[1] = conversions[\"USVString\"](args[1]);\n\t\t  }\n\n\t\t  module.exports.setup(this, args);\n\t\t}\n\n\t\tURL.prototype.toJSON = function toJSON() {\n\t\t  if (!this || !module.exports.is(this)) {\n\t\t    throw new TypeError(\"Illegal invocation\");\n\t\t  }\n\t\t  const args = [];\n\t\t  for (let i = 0; i < arguments.length && i < 0; ++i) {\n\t\t    args[i] = arguments[i];\n\t\t  }\n\t\t  return this[impl].toJSON.apply(this[impl], args);\n\t\t};\n\t\tObject.defineProperty(URL.prototype, \"href\", {\n\t\t  get() {\n\t\t    return this[impl].href;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].href = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tURL.prototype.toString = function () {\n\t\t  if (!this || !module.exports.is(this)) {\n\t\t    throw new TypeError(\"Illegal invocation\");\n\t\t  }\n\t\t  return this.href;\n\t\t};\n\n\t\tObject.defineProperty(URL.prototype, \"origin\", {\n\t\t  get() {\n\t\t    return this[impl].origin;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"protocol\", {\n\t\t  get() {\n\t\t    return this[impl].protocol;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].protocol = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"username\", {\n\t\t  get() {\n\t\t    return this[impl].username;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].username = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"password\", {\n\t\t  get() {\n\t\t    return this[impl].password;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].password = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"host\", {\n\t\t  get() {\n\t\t    return this[impl].host;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].host = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"hostname\", {\n\t\t  get() {\n\t\t    return this[impl].hostname;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].hostname = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"port\", {\n\t\t  get() {\n\t\t    return this[impl].port;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].port = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"pathname\", {\n\t\t  get() {\n\t\t    return this[impl].pathname;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].pathname = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"search\", {\n\t\t  get() {\n\t\t    return this[impl].search;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].search = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\t\tObject.defineProperty(URL.prototype, \"hash\", {\n\t\t  get() {\n\t\t    return this[impl].hash;\n\t\t  },\n\t\t  set(V) {\n\t\t    V = conversions[\"USVString\"](V);\n\t\t    this[impl].hash = V;\n\t\t  },\n\t\t  enumerable: true,\n\t\t  configurable: true\n\t\t});\n\n\n\t\tmodule.exports = {\n\t\t  is(obj) {\n\t\t    return !!obj && obj[impl] instanceof Impl.implementation;\n\t\t  },\n\t\t  create(constructorArgs, privateData) {\n\t\t    let obj = Object.create(URL.prototype);\n\t\t    this.setup(obj, constructorArgs, privateData);\n\t\t    return obj;\n\t\t  },\n\t\t  setup(obj, constructorArgs, privateData) {\n\t\t    if (!privateData) privateData = {};\n\t\t    privateData.wrapper = obj;\n\n\t\t    obj[impl] = new Impl.implementation(constructorArgs, privateData);\n\t\t    obj[impl][utils.wrapperSymbol] = obj;\n\t\t  },\n\t\t  interface: URL,\n\t\t  expose: {\n\t\t    Window: { URL: URL },\n\t\t    Worker: { URL: URL }\n\t\t  }\n\t\t}; \n\t} (URL$2));\n\treturn URL$2.exports;\n}\n\nvar hasRequiredPublicApi;\n\nfunction requirePublicApi () {\n\tif (hasRequiredPublicApi) return publicApi;\n\thasRequiredPublicApi = 1;\n\n\tpublicApi.URL = requireURL().interface;\n\tpublicApi.serializeURL = requireUrlStateMachine().serializeURL;\n\tpublicApi.serializeURLOrigin = requireUrlStateMachine().serializeURLOrigin;\n\tpublicApi.basicURLParse = requireUrlStateMachine().basicURLParse;\n\tpublicApi.setTheUsername = requireUrlStateMachine().setTheUsername;\n\tpublicApi.setThePassword = requireUrlStateMachine().setThePassword;\n\tpublicApi.serializeHost = requireUrlStateMachine().serializeHost;\n\tpublicApi.serializeInteger = requireUrlStateMachine().serializeInteger;\n\tpublicApi.parseURL = requireUrlStateMachine().parseURL;\n\treturn publicApi;\n}\n\nvar publicApiExports = requirePublicApi();\nvar whatwgUrl = /*@__PURE__*/getDefaultExportFromCjs(publicApiExports);\n\n// Based on https://github.com/tmpvar/jsdom/blob/aa85b2abf07766ff7bf5c1f6daafb3726f2f2db5/lib/jsdom/living/blob.js\n\n// fix for \"Readable\" isn't a named export issue\nconst Readable = require$$0$b.Readable;\n\nconst BUFFER = Symbol('buffer');\nconst TYPE = Symbol('type');\n\nlet Blob$1 = class Blob {\n\tconstructor() {\n\t\tthis[TYPE] = '';\n\n\t\tconst blobParts = arguments[0];\n\t\tconst options = arguments[1];\n\n\t\tconst buffers = [];\n\t\tlet size = 0;\n\n\t\tif (blobParts) {\n\t\t\tconst a = blobParts;\n\t\t\tconst length = Number(a.length);\n\t\t\tfor (let i = 0; i < length; i++) {\n\t\t\t\tconst element = a[i];\n\t\t\t\tlet buffer;\n\t\t\t\tif (element instanceof Buffer) {\n\t\t\t\t\tbuffer = element;\n\t\t\t\t} else if (ArrayBuffer.isView(element)) {\n\t\t\t\t\tbuffer = Buffer.from(element.buffer, element.byteOffset, element.byteLength);\n\t\t\t\t} else if (element instanceof ArrayBuffer) {\n\t\t\t\t\tbuffer = Buffer.from(element);\n\t\t\t\t} else if (element instanceof Blob) {\n\t\t\t\t\tbuffer = element[BUFFER];\n\t\t\t\t} else {\n\t\t\t\t\tbuffer = Buffer.from(typeof element === 'string' ? element : String(element));\n\t\t\t\t}\n\t\t\t\tsize += buffer.length;\n\t\t\t\tbuffers.push(buffer);\n\t\t\t}\n\t\t}\n\n\t\tthis[BUFFER] = Buffer.concat(buffers);\n\n\t\tlet type = options && options.type !== undefined && String(options.type).toLowerCase();\n\t\tif (type && !/[^\\u0020-\\u007E]/.test(type)) {\n\t\t\tthis[TYPE] = type;\n\t\t}\n\t}\n\tget size() {\n\t\treturn this[BUFFER].length;\n\t}\n\tget type() {\n\t\treturn this[TYPE];\n\t}\n\ttext() {\n\t\treturn Promise.resolve(this[BUFFER].toString());\n\t}\n\tarrayBuffer() {\n\t\tconst buf = this[BUFFER];\n\t\tconst ab = buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength);\n\t\treturn Promise.resolve(ab);\n\t}\n\tstream() {\n\t\tconst readable = new Readable();\n\t\treadable._read = function () {};\n\t\treadable.push(this[BUFFER]);\n\t\treadable.push(null);\n\t\treturn readable;\n\t}\n\ttoString() {\n\t\treturn '[object Blob]';\n\t}\n\tslice() {\n\t\tconst size = this.size;\n\n\t\tconst start = arguments[0];\n\t\tconst end = arguments[1];\n\t\tlet relativeStart, relativeEnd;\n\t\tif (start === undefined) {\n\t\t\trelativeStart = 0;\n\t\t} else if (start < 0) {\n\t\t\trelativeStart = Math.max(size + start, 0);\n\t\t} else {\n\t\t\trelativeStart = Math.min(start, size);\n\t\t}\n\t\tif (end === undefined) {\n\t\t\trelativeEnd = size;\n\t\t} else if (end < 0) {\n\t\t\trelativeEnd = Math.max(size + end, 0);\n\t\t} else {\n\t\t\trelativeEnd = Math.min(end, size);\n\t\t}\n\t\tconst span = Math.max(relativeEnd - relativeStart, 0);\n\n\t\tconst buffer = this[BUFFER];\n\t\tconst slicedBuffer = buffer.slice(relativeStart, relativeStart + span);\n\t\tconst blob = new Blob([], { type: arguments[2] });\n\t\tblob[BUFFER] = slicedBuffer;\n\t\treturn blob;\n\t}\n};\n\nObject.defineProperties(Blob$1.prototype, {\n\tsize: { enumerable: true },\n\ttype: { enumerable: true },\n\tslice: { enumerable: true }\n});\n\nObject.defineProperty(Blob$1.prototype, Symbol.toStringTag, {\n\tvalue: 'Blob',\n\twritable: false,\n\tenumerable: false,\n\tconfigurable: true\n});\n\n/**\n * fetch-error.js\n *\n * FetchError interface for operational errors\n */\n\n/**\n * Create FetchError instance\n *\n * @param   String      message      Error message for human\n * @param   String      type         Error type for machine\n * @param   String      systemError  For Node.js system error\n * @return  FetchError\n */\nfunction FetchError(message, type, systemError) {\n  Error.call(this, message);\n\n  this.message = message;\n  this.type = type;\n\n  // when err.type is `system`, err.code contains system error code\n  if (systemError) {\n    this.code = this.errno = systemError.code;\n  }\n\n  // hide custom error implementation details from end-users\n  Error.captureStackTrace(this, this.constructor);\n}\n\nFetchError.prototype = Object.create(Error.prototype);\nFetchError.prototype.constructor = FetchError;\nFetchError.prototype.name = 'FetchError';\n\nlet convert;\ntry {\n\tconvert = require('encoding').convert;\n} catch (e) {}\n\nconst INTERNALS = Symbol('Body internals');\n\n// fix an issue where \"PassThrough\" isn't a named export for node <10\nconst PassThrough = require$$0$b.PassThrough;\n\n/**\n * Body mixin\n *\n * Ref: https://fetch.spec.whatwg.org/#body\n *\n * @param   Stream  body  Readable stream\n * @param   Object  opts  Response options\n * @return  Void\n */\nfunction Body(body) {\n\tvar _this = this;\n\n\tvar _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},\n\t    _ref$size = _ref.size;\n\n\tlet size = _ref$size === undefined ? 0 : _ref$size;\n\tvar _ref$timeout = _ref.timeout;\n\tlet timeout = _ref$timeout === undefined ? 0 : _ref$timeout;\n\n\tif (body == null) {\n\t\t// body is undefined or null\n\t\tbody = null;\n\t} else if (isURLSearchParams(body)) {\n\t\t// body is a URLSearchParams\n\t\tbody = Buffer.from(body.toString());\n\t} else if (isBlob(body)) ; else if (Buffer.isBuffer(body)) ; else if (Object.prototype.toString.call(body) === '[object ArrayBuffer]') {\n\t\t// body is ArrayBuffer\n\t\tbody = Buffer.from(body);\n\t} else if (ArrayBuffer.isView(body)) {\n\t\t// body is ArrayBufferView\n\t\tbody = Buffer.from(body.buffer, body.byteOffset, body.byteLength);\n\t} else if (body instanceof require$$0$b) ; else {\n\t\t// none of the above\n\t\t// coerce to string then buffer\n\t\tbody = Buffer.from(String(body));\n\t}\n\tthis[INTERNALS] = {\n\t\tbody,\n\t\tdisturbed: false,\n\t\terror: null\n\t};\n\tthis.size = size;\n\tthis.timeout = timeout;\n\n\tif (body instanceof require$$0$b) {\n\t\tbody.on('error', function (err) {\n\t\t\tconst error = err.name === 'AbortError' ? err : new FetchError(`Invalid response body while trying to fetch ${_this.url}: ${err.message}`, 'system', err);\n\t\t\t_this[INTERNALS].error = error;\n\t\t});\n\t}\n}\n\nBody.prototype = {\n\tget body() {\n\t\treturn this[INTERNALS].body;\n\t},\n\n\tget bodyUsed() {\n\t\treturn this[INTERNALS].disturbed;\n\t},\n\n\t/**\n  * Decode response as ArrayBuffer\n  *\n  * @return  Promise\n  */\n\tarrayBuffer() {\n\t\treturn consumeBody.call(this).then(function (buf) {\n\t\t\treturn buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength);\n\t\t});\n\t},\n\n\t/**\n  * Return raw response as Blob\n  *\n  * @return Promise\n  */\n\tblob() {\n\t\tlet ct = this.headers && this.headers.get('content-type') || '';\n\t\treturn consumeBody.call(this).then(function (buf) {\n\t\t\treturn Object.assign(\n\t\t\t// Prevent copying\n\t\t\tnew Blob$1([], {\n\t\t\t\ttype: ct.toLowerCase()\n\t\t\t}), {\n\t\t\t\t[BUFFER]: buf\n\t\t\t});\n\t\t});\n\t},\n\n\t/**\n  * Decode response as json\n  *\n  * @return  Promise\n  */\n\tjson() {\n\t\tvar _this2 = this;\n\n\t\treturn consumeBody.call(this).then(function (buffer) {\n\t\t\ttry {\n\t\t\t\treturn JSON.parse(buffer.toString());\n\t\t\t} catch (err) {\n\t\t\t\treturn Body.Promise.reject(new FetchError(`invalid json response body at ${_this2.url} reason: ${err.message}`, 'invalid-json'));\n\t\t\t}\n\t\t});\n\t},\n\n\t/**\n  * Decode response as text\n  *\n  * @return  Promise\n  */\n\ttext() {\n\t\treturn consumeBody.call(this).then(function (buffer) {\n\t\t\treturn buffer.toString();\n\t\t});\n\t},\n\n\t/**\n  * Decode response as buffer (non-spec api)\n  *\n  * @return  Promise\n  */\n\tbuffer() {\n\t\treturn consumeBody.call(this);\n\t},\n\n\t/**\n  * Decode response as text, while automatically detecting the encoding and\n  * trying to decode to UTF-8 (non-spec api)\n  *\n  * @return  Promise\n  */\n\ttextConverted() {\n\t\tvar _this3 = this;\n\n\t\treturn consumeBody.call(this).then(function (buffer) {\n\t\t\treturn convertBody(buffer, _this3.headers);\n\t\t});\n\t}\n};\n\n// In browsers, all properties are enumerable.\nObject.defineProperties(Body.prototype, {\n\tbody: { enumerable: true },\n\tbodyUsed: { enumerable: true },\n\tarrayBuffer: { enumerable: true },\n\tblob: { enumerable: true },\n\tjson: { enumerable: true },\n\ttext: { enumerable: true }\n});\n\nBody.mixIn = function (proto) {\n\tfor (const name of Object.getOwnPropertyNames(Body.prototype)) {\n\t\t// istanbul ignore else: future proof\n\t\tif (!(name in proto)) {\n\t\t\tconst desc = Object.getOwnPropertyDescriptor(Body.prototype, name);\n\t\t\tObject.defineProperty(proto, name, desc);\n\t\t}\n\t}\n};\n\n/**\n * Consume and convert an entire Body to a Buffer.\n *\n * Ref: https://fetch.spec.whatwg.org/#concept-body-consume-body\n *\n * @return  Promise\n */\nfunction consumeBody() {\n\tvar _this4 = this;\n\n\tif (this[INTERNALS].disturbed) {\n\t\treturn Body.Promise.reject(new TypeError(`body used already for: ${this.url}`));\n\t}\n\n\tthis[INTERNALS].disturbed = true;\n\n\tif (this[INTERNALS].error) {\n\t\treturn Body.Promise.reject(this[INTERNALS].error);\n\t}\n\n\tlet body = this.body;\n\n\t// body is null\n\tif (body === null) {\n\t\treturn Body.Promise.resolve(Buffer.alloc(0));\n\t}\n\n\t// body is blob\n\tif (isBlob(body)) {\n\t\tbody = body.stream();\n\t}\n\n\t// body is buffer\n\tif (Buffer.isBuffer(body)) {\n\t\treturn Body.Promise.resolve(body);\n\t}\n\n\t// istanbul ignore if: should never happen\n\tif (!(body instanceof require$$0$b)) {\n\t\treturn Body.Promise.resolve(Buffer.alloc(0));\n\t}\n\n\t// body is stream\n\t// get ready to actually consume the body\n\tlet accum = [];\n\tlet accumBytes = 0;\n\tlet abort = false;\n\n\treturn new Body.Promise(function (resolve, reject) {\n\t\tlet resTimeout;\n\n\t\t// allow timeout on slow response body\n\t\tif (_this4.timeout) {\n\t\t\tresTimeout = setTimeout(function () {\n\t\t\t\tabort = true;\n\t\t\t\treject(new FetchError(`Response timeout while trying to fetch ${_this4.url} (over ${_this4.timeout}ms)`, 'body-timeout'));\n\t\t\t}, _this4.timeout);\n\t\t}\n\n\t\t// handle stream errors\n\t\tbody.on('error', function (err) {\n\t\t\tif (err.name === 'AbortError') {\n\t\t\t\t// if the request was aborted, reject with this Error\n\t\t\t\tabort = true;\n\t\t\t\treject(err);\n\t\t\t} else {\n\t\t\t\t// other errors, such as incorrect content-encoding\n\t\t\t\treject(new FetchError(`Invalid response body while trying to fetch ${_this4.url}: ${err.message}`, 'system', err));\n\t\t\t}\n\t\t});\n\n\t\tbody.on('data', function (chunk) {\n\t\t\tif (abort || chunk === null) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (_this4.size && accumBytes + chunk.length > _this4.size) {\n\t\t\t\tabort = true;\n\t\t\t\treject(new FetchError(`content size at ${_this4.url} over limit: ${_this4.size}`, 'max-size'));\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\taccumBytes += chunk.length;\n\t\t\taccum.push(chunk);\n\t\t});\n\n\t\tbody.on('end', function () {\n\t\t\tif (abort) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tclearTimeout(resTimeout);\n\n\t\t\ttry {\n\t\t\t\tresolve(Buffer.concat(accum, accumBytes));\n\t\t\t} catch (err) {\n\t\t\t\t// handle streams that have accumulated too much data (issue #414)\n\t\t\t\treject(new FetchError(`Could not create Buffer from response body for ${_this4.url}: ${err.message}`, 'system', err));\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Detect buffer encoding and convert to target encoding\n * ref: http://www.w3.org/TR/2011/WD-html5-20110113/parsing.html#determining-the-character-encoding\n *\n * @param   Buffer  buffer    Incoming buffer\n * @param   String  encoding  Target encoding\n * @return  String\n */\nfunction convertBody(buffer, headers) {\n\tif (typeof convert !== 'function') {\n\t\tthrow new Error('The package `encoding` must be installed to use the textConverted() function');\n\t}\n\n\tconst ct = headers.get('content-type');\n\tlet charset = 'utf-8';\n\tlet res, str;\n\n\t// header\n\tif (ct) {\n\t\tres = /charset=([^;]*)/i.exec(ct);\n\t}\n\n\t// no charset in content type, peek at response body for at most 1024 bytes\n\tstr = buffer.slice(0, 1024).toString();\n\n\t// html5\n\tif (!res && str) {\n\t\tres = /<meta.+?charset=(['\"])(.+?)\\1/i.exec(str);\n\t}\n\n\t// html4\n\tif (!res && str) {\n\t\tres = /<meta[\\s]+?http-equiv=(['\"])content-type\\1[\\s]+?content=(['\"])(.+?)\\2/i.exec(str);\n\t\tif (!res) {\n\t\t\tres = /<meta[\\s]+?content=(['\"])(.+?)\\1[\\s]+?http-equiv=(['\"])content-type\\3/i.exec(str);\n\t\t\tif (res) {\n\t\t\t\tres.pop(); // drop last quote\n\t\t\t}\n\t\t}\n\n\t\tif (res) {\n\t\t\tres = /charset=(.*)/i.exec(res.pop());\n\t\t}\n\t}\n\n\t// xml\n\tif (!res && str) {\n\t\tres = /<\\?xml.+?encoding=(['\"])(.+?)\\1/i.exec(str);\n\t}\n\n\t// found charset\n\tif (res) {\n\t\tcharset = res.pop();\n\n\t\t// prevent decode issues when sites use incorrect encoding\n\t\t// ref: https://hsivonen.fi/encoding-menu/\n\t\tif (charset === 'gb2312' || charset === 'gbk') {\n\t\t\tcharset = 'gb18030';\n\t\t}\n\t}\n\n\t// turn raw buffers into a single utf-8 buffer\n\treturn convert(buffer, 'UTF-8', charset).toString();\n}\n\n/**\n * Detect a URLSearchParams object\n * ref: https://github.com/bitinn/node-fetch/issues/296#issuecomment-307598143\n *\n * @param   Object  obj     Object to detect by type or brand\n * @return  String\n */\nfunction isURLSearchParams(obj) {\n\t// Duck-typing as a necessary condition.\n\tif (typeof obj !== 'object' || typeof obj.append !== 'function' || typeof obj.delete !== 'function' || typeof obj.get !== 'function' || typeof obj.getAll !== 'function' || typeof obj.has !== 'function' || typeof obj.set !== 'function') {\n\t\treturn false;\n\t}\n\n\t// Brand-checking and more duck-typing as optional condition.\n\treturn obj.constructor.name === 'URLSearchParams' || Object.prototype.toString.call(obj) === '[object URLSearchParams]' || typeof obj.sort === 'function';\n}\n\n/**\n * Check if `obj` is a W3C `Blob` object (which `File` inherits from)\n * @param  {*} obj\n * @return {boolean}\n */\nfunction isBlob(obj) {\n\treturn typeof obj === 'object' && typeof obj.arrayBuffer === 'function' && typeof obj.type === 'string' && typeof obj.stream === 'function' && typeof obj.constructor === 'function' && typeof obj.constructor.name === 'string' && /^(Blob|File)$/.test(obj.constructor.name) && /^(Blob|File)$/.test(obj[Symbol.toStringTag]);\n}\n\n/**\n * Clone body given Res/Req instance\n *\n * @param   Mixed  instance  Response or Request instance\n * @return  Mixed\n */\nfunction clone(instance) {\n\tlet p1, p2;\n\tlet body = instance.body;\n\n\t// don't allow cloning a used body\n\tif (instance.bodyUsed) {\n\t\tthrow new Error('cannot clone body after it is used');\n\t}\n\n\t// check that body is a stream and not form-data object\n\t// note: we can't clone the form-data object without having it as a dependency\n\tif (body instanceof require$$0$b && typeof body.getBoundary !== 'function') {\n\t\t// tee instance body\n\t\tp1 = new PassThrough();\n\t\tp2 = new PassThrough();\n\t\tbody.pipe(p1);\n\t\tbody.pipe(p2);\n\t\t// set instance body to teed body and return the other teed body\n\t\tinstance[INTERNALS].body = p1;\n\t\tbody = p2;\n\t}\n\n\treturn body;\n}\n\n/**\n * Performs the operation \"extract a `Content-Type` value from |object|\" as\n * specified in the specification:\n * https://fetch.spec.whatwg.org/#concept-bodyinit-extract\n *\n * This function assumes that instance.body is present.\n *\n * @param   Mixed  instance  Any options.body input\n */\nfunction extractContentType(body) {\n\tif (body === null) {\n\t\t// body is null\n\t\treturn null;\n\t} else if (typeof body === 'string') {\n\t\t// body is string\n\t\treturn 'text/plain;charset=UTF-8';\n\t} else if (isURLSearchParams(body)) {\n\t\t// body is a URLSearchParams\n\t\treturn 'application/x-www-form-urlencoded;charset=UTF-8';\n\t} else if (isBlob(body)) {\n\t\t// body is blob\n\t\treturn body.type || null;\n\t} else if (Buffer.isBuffer(body)) {\n\t\t// body is buffer\n\t\treturn null;\n\t} else if (Object.prototype.toString.call(body) === '[object ArrayBuffer]') {\n\t\t// body is ArrayBuffer\n\t\treturn null;\n\t} else if (ArrayBuffer.isView(body)) {\n\t\t// body is ArrayBufferView\n\t\treturn null;\n\t} else if (typeof body.getBoundary === 'function') {\n\t\t// detect form data input from form-data module\n\t\treturn `multipart/form-data;boundary=${body.getBoundary()}`;\n\t} else if (body instanceof require$$0$b) {\n\t\t// body is stream\n\t\t// can't really do much about this\n\t\treturn null;\n\t} else {\n\t\t// Body constructor defaults other things to string\n\t\treturn 'text/plain;charset=UTF-8';\n\t}\n}\n\n/**\n * The Fetch Standard treats this as if \"total bytes\" is a property on the body.\n * For us, we have to explicitly get it with a function.\n *\n * ref: https://fetch.spec.whatwg.org/#concept-body-total-bytes\n *\n * @param   Body    instance   Instance of Body\n * @return  Number?            Number of bytes, or null if not possible\n */\nfunction getTotalBytes(instance) {\n\tconst body = instance.body;\n\n\n\tif (body === null) {\n\t\t// body is null\n\t\treturn 0;\n\t} else if (isBlob(body)) {\n\t\treturn body.size;\n\t} else if (Buffer.isBuffer(body)) {\n\t\t// body is buffer\n\t\treturn body.length;\n\t} else if (body && typeof body.getLengthSync === 'function') {\n\t\t// detect form data input from form-data module\n\t\tif (body._lengthRetrievers && body._lengthRetrievers.length == 0 || // 1.x\n\t\tbody.hasKnownLength && body.hasKnownLength()) {\n\t\t\t// 2.x\n\t\t\treturn body.getLengthSync();\n\t\t}\n\t\treturn null;\n\t} else {\n\t\t// body is stream\n\t\treturn null;\n\t}\n}\n\n/**\n * Write a Body to a Node.js WritableStream (e.g. http.Request) object.\n *\n * @param   Body    instance   Instance of Body\n * @return  Void\n */\nfunction writeToStream(dest, instance) {\n\tconst body = instance.body;\n\n\n\tif (body === null) {\n\t\t// body is null\n\t\tdest.end();\n\t} else if (isBlob(body)) {\n\t\tbody.stream().pipe(dest);\n\t} else if (Buffer.isBuffer(body)) {\n\t\t// body is buffer\n\t\tdest.write(body);\n\t\tdest.end();\n\t} else {\n\t\t// body is stream\n\t\tbody.pipe(dest);\n\t}\n}\n\n// expose Promise\nBody.Promise = global.Promise;\n\n/**\n * headers.js\n *\n * Headers class offers convenient helpers\n */\n\nconst invalidTokenRegex = /[^\\^_`a-zA-Z\\-0-9!#$%&'*+.|~]/;\nconst invalidHeaderCharRegex = /[^\\t\\x20-\\x7e\\x80-\\xff]/;\n\nfunction validateName(name) {\n\tname = `${name}`;\n\tif (invalidTokenRegex.test(name) || name === '') {\n\t\tthrow new TypeError(`${name} is not a legal HTTP header name`);\n\t}\n}\n\nfunction validateValue(value) {\n\tvalue = `${value}`;\n\tif (invalidHeaderCharRegex.test(value)) {\n\t\tthrow new TypeError(`${value} is not a legal HTTP header value`);\n\t}\n}\n\n/**\n * Find the key in the map object given a header name.\n *\n * Returns undefined if not found.\n *\n * @param   String  name  Header name\n * @return  String|Undefined\n */\nfunction find(map, name) {\n\tname = name.toLowerCase();\n\tfor (const key in map) {\n\t\tif (key.toLowerCase() === name) {\n\t\t\treturn key;\n\t\t}\n\t}\n\treturn undefined;\n}\n\nconst MAP = Symbol('map');\nclass Headers {\n\t/**\n  * Headers class\n  *\n  * @param   Object  headers  Response headers\n  * @return  Void\n  */\n\tconstructor() {\n\t\tlet init = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : undefined;\n\n\t\tthis[MAP] = Object.create(null);\n\n\t\tif (init instanceof Headers) {\n\t\t\tconst rawHeaders = init.raw();\n\t\t\tconst headerNames = Object.keys(rawHeaders);\n\n\t\t\tfor (const headerName of headerNames) {\n\t\t\t\tfor (const value of rawHeaders[headerName]) {\n\t\t\t\t\tthis.append(headerName, value);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\t// We don't worry about converting prop to ByteString here as append()\n\t\t// will handle it.\n\t\tif (init == null) ; else if (typeof init === 'object') {\n\t\t\tconst method = init[Symbol.iterator];\n\t\t\tif (method != null) {\n\t\t\t\tif (typeof method !== 'function') {\n\t\t\t\t\tthrow new TypeError('Header pairs must be iterable');\n\t\t\t\t}\n\n\t\t\t\t// sequence<sequence<ByteString>>\n\t\t\t\t// Note: per spec we have to first exhaust the lists then process them\n\t\t\t\tconst pairs = [];\n\t\t\t\tfor (const pair of init) {\n\t\t\t\t\tif (typeof pair !== 'object' || typeof pair[Symbol.iterator] !== 'function') {\n\t\t\t\t\t\tthrow new TypeError('Each header pair must be iterable');\n\t\t\t\t\t}\n\t\t\t\t\tpairs.push(Array.from(pair));\n\t\t\t\t}\n\n\t\t\t\tfor (const pair of pairs) {\n\t\t\t\t\tif (pair.length !== 2) {\n\t\t\t\t\t\tthrow new TypeError('Each header pair must be a name/value tuple');\n\t\t\t\t\t}\n\t\t\t\t\tthis.append(pair[0], pair[1]);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// record<ByteString, ByteString>\n\t\t\t\tfor (const key of Object.keys(init)) {\n\t\t\t\t\tconst value = init[key];\n\t\t\t\t\tthis.append(key, value);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tthrow new TypeError('Provided initializer must be an object');\n\t\t}\n\t}\n\n\t/**\n  * Return combined header value given name\n  *\n  * @param   String  name  Header name\n  * @return  Mixed\n  */\n\tget(name) {\n\t\tname = `${name}`;\n\t\tvalidateName(name);\n\t\tconst key = find(this[MAP], name);\n\t\tif (key === undefined) {\n\t\t\treturn null;\n\t\t}\n\n\t\treturn this[MAP][key].join(', ');\n\t}\n\n\t/**\n  * Iterate over all headers\n  *\n  * @param   Function  callback  Executed for each item with parameters (value, name, thisArg)\n  * @param   Boolean   thisArg   `this` context for callback function\n  * @return  Void\n  */\n\tforEach(callback) {\n\t\tlet thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : undefined;\n\n\t\tlet pairs = getHeaders(this);\n\t\tlet i = 0;\n\t\twhile (i < pairs.length) {\n\t\t\tvar _pairs$i = pairs[i];\n\t\t\tconst name = _pairs$i[0],\n\t\t\t      value = _pairs$i[1];\n\n\t\t\tcallback.call(thisArg, value, name, this);\n\t\t\tpairs = getHeaders(this);\n\t\t\ti++;\n\t\t}\n\t}\n\n\t/**\n  * Overwrite header values given name\n  *\n  * @param   String  name   Header name\n  * @param   String  value  Header value\n  * @return  Void\n  */\n\tset(name, value) {\n\t\tname = `${name}`;\n\t\tvalue = `${value}`;\n\t\tvalidateName(name);\n\t\tvalidateValue(value);\n\t\tconst key = find(this[MAP], name);\n\t\tthis[MAP][key !== undefined ? key : name] = [value];\n\t}\n\n\t/**\n  * Append a value onto existing header\n  *\n  * @param   String  name   Header name\n  * @param   String  value  Header value\n  * @return  Void\n  */\n\tappend(name, value) {\n\t\tname = `${name}`;\n\t\tvalue = `${value}`;\n\t\tvalidateName(name);\n\t\tvalidateValue(value);\n\t\tconst key = find(this[MAP], name);\n\t\tif (key !== undefined) {\n\t\t\tthis[MAP][key].push(value);\n\t\t} else {\n\t\t\tthis[MAP][name] = [value];\n\t\t}\n\t}\n\n\t/**\n  * Check for header name existence\n  *\n  * @param   String   name  Header name\n  * @return  Boolean\n  */\n\thas(name) {\n\t\tname = `${name}`;\n\t\tvalidateName(name);\n\t\treturn find(this[MAP], name) !== undefined;\n\t}\n\n\t/**\n  * Delete all header values given name\n  *\n  * @param   String  name  Header name\n  * @return  Void\n  */\n\tdelete(name) {\n\t\tname = `${name}`;\n\t\tvalidateName(name);\n\t\tconst key = find(this[MAP], name);\n\t\tif (key !== undefined) {\n\t\t\tdelete this[MAP][key];\n\t\t}\n\t}\n\n\t/**\n  * Return raw headers (non-spec api)\n  *\n  * @return  Object\n  */\n\traw() {\n\t\treturn this[MAP];\n\t}\n\n\t/**\n  * Get an iterator on keys.\n  *\n  * @return  Iterator\n  */\n\tkeys() {\n\t\treturn createHeadersIterator(this, 'key');\n\t}\n\n\t/**\n  * Get an iterator on values.\n  *\n  * @return  Iterator\n  */\n\tvalues() {\n\t\treturn createHeadersIterator(this, 'value');\n\t}\n\n\t/**\n  * Get an iterator on entries.\n  *\n  * This is the default iterator of the Headers object.\n  *\n  * @return  Iterator\n  */\n\t[Symbol.iterator]() {\n\t\treturn createHeadersIterator(this, 'key+value');\n\t}\n}\nHeaders.prototype.entries = Headers.prototype[Symbol.iterator];\n\nObject.defineProperty(Headers.prototype, Symbol.toStringTag, {\n\tvalue: 'Headers',\n\twritable: false,\n\tenumerable: false,\n\tconfigurable: true\n});\n\nObject.defineProperties(Headers.prototype, {\n\tget: { enumerable: true },\n\tforEach: { enumerable: true },\n\tset: { enumerable: true },\n\tappend: { enumerable: true },\n\thas: { enumerable: true },\n\tdelete: { enumerable: true },\n\tkeys: { enumerable: true },\n\tvalues: { enumerable: true },\n\tentries: { enumerable: true }\n});\n\nfunction getHeaders(headers) {\n\tlet kind = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'key+value';\n\n\tconst keys = Object.keys(headers[MAP]).sort();\n\treturn keys.map(kind === 'key' ? function (k) {\n\t\treturn k.toLowerCase();\n\t} : kind === 'value' ? function (k) {\n\t\treturn headers[MAP][k].join(', ');\n\t} : function (k) {\n\t\treturn [k.toLowerCase(), headers[MAP][k].join(', ')];\n\t});\n}\n\nconst INTERNAL = Symbol('internal');\n\nfunction createHeadersIterator(target, kind) {\n\tconst iterator = Object.create(HeadersIteratorPrototype);\n\titerator[INTERNAL] = {\n\t\ttarget,\n\t\tkind,\n\t\tindex: 0\n\t};\n\treturn iterator;\n}\n\nconst HeadersIteratorPrototype = Object.setPrototypeOf({\n\tnext() {\n\t\t// istanbul ignore if\n\t\tif (!this || Object.getPrototypeOf(this) !== HeadersIteratorPrototype) {\n\t\t\tthrow new TypeError('Value of `this` is not a HeadersIterator');\n\t\t}\n\n\t\tvar _INTERNAL = this[INTERNAL];\n\t\tconst target = _INTERNAL.target,\n\t\t      kind = _INTERNAL.kind,\n\t\t      index = _INTERNAL.index;\n\n\t\tconst values = getHeaders(target, kind);\n\t\tconst len = values.length;\n\t\tif (index >= len) {\n\t\t\treturn {\n\t\t\t\tvalue: undefined,\n\t\t\t\tdone: true\n\t\t\t};\n\t\t}\n\n\t\tthis[INTERNAL].index = index + 1;\n\n\t\treturn {\n\t\t\tvalue: values[index],\n\t\t\tdone: false\n\t\t};\n\t}\n}, Object.getPrototypeOf(Object.getPrototypeOf([][Symbol.iterator]())));\n\nObject.defineProperty(HeadersIteratorPrototype, Symbol.toStringTag, {\n\tvalue: 'HeadersIterator',\n\twritable: false,\n\tenumerable: false,\n\tconfigurable: true\n});\n\n/**\n * Export the Headers object in a form that Node.js can consume.\n *\n * @param   Headers  headers\n * @return  Object\n */\nfunction exportNodeCompatibleHeaders(headers) {\n\tconst obj = Object.assign({ __proto__: null }, headers[MAP]);\n\n\t// http.request() only supports string as Host header. This hack makes\n\t// specifying custom Host header possible.\n\tconst hostHeaderKey = find(headers[MAP], 'Host');\n\tif (hostHeaderKey !== undefined) {\n\t\tobj[hostHeaderKey] = obj[hostHeaderKey][0];\n\t}\n\n\treturn obj;\n}\n\n/**\n * Create a Headers object from an object of headers, ignoring those that do\n * not conform to HTTP grammar productions.\n *\n * @param   Object  obj  Object of headers\n * @return  Headers\n */\nfunction createHeadersLenient(obj) {\n\tconst headers = new Headers();\n\tfor (const name of Object.keys(obj)) {\n\t\tif (invalidTokenRegex.test(name)) {\n\t\t\tcontinue;\n\t\t}\n\t\tif (Array.isArray(obj[name])) {\n\t\t\tfor (const val of obj[name]) {\n\t\t\t\tif (invalidHeaderCharRegex.test(val)) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif (headers[MAP][name] === undefined) {\n\t\t\t\t\theaders[MAP][name] = [val];\n\t\t\t\t} else {\n\t\t\t\t\theaders[MAP][name].push(val);\n\t\t\t\t}\n\t\t\t}\n\t\t} else if (!invalidHeaderCharRegex.test(obj[name])) {\n\t\t\theaders[MAP][name] = [obj[name]];\n\t\t}\n\t}\n\treturn headers;\n}\n\nconst INTERNALS$1 = Symbol('Response internals');\n\n// fix an issue where \"STATUS_CODES\" aren't a named export for node <10\nconst STATUS_CODES = require$$2$3.STATUS_CODES;\n\n/**\n * Response class\n *\n * @param   Stream  body  Readable stream\n * @param   Object  opts  Response options\n * @return  Void\n */\nclass Response {\n\tconstructor() {\n\t\tlet body = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n\t\tlet opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t\tBody.call(this, body, opts);\n\n\t\tconst status = opts.status || 200;\n\t\tconst headers = new Headers(opts.headers);\n\n\t\tif (body != null && !headers.has('Content-Type')) {\n\t\t\tconst contentType = extractContentType(body);\n\t\t\tif (contentType) {\n\t\t\t\theaders.append('Content-Type', contentType);\n\t\t\t}\n\t\t}\n\n\t\tthis[INTERNALS$1] = {\n\t\t\turl: opts.url,\n\t\t\tstatus,\n\t\t\tstatusText: opts.statusText || STATUS_CODES[status],\n\t\t\theaders,\n\t\t\tcounter: opts.counter\n\t\t};\n\t}\n\n\tget url() {\n\t\treturn this[INTERNALS$1].url || '';\n\t}\n\n\tget status() {\n\t\treturn this[INTERNALS$1].status;\n\t}\n\n\t/**\n  * Convenience property representing if the request ended normally\n  */\n\tget ok() {\n\t\treturn this[INTERNALS$1].status >= 200 && this[INTERNALS$1].status < 300;\n\t}\n\n\tget redirected() {\n\t\treturn this[INTERNALS$1].counter > 0;\n\t}\n\n\tget statusText() {\n\t\treturn this[INTERNALS$1].statusText;\n\t}\n\n\tget headers() {\n\t\treturn this[INTERNALS$1].headers;\n\t}\n\n\t/**\n  * Clone this response\n  *\n  * @return  Response\n  */\n\tclone() {\n\t\treturn new Response(clone(this), {\n\t\t\turl: this.url,\n\t\t\tstatus: this.status,\n\t\t\tstatusText: this.statusText,\n\t\t\theaders: this.headers,\n\t\t\tok: this.ok,\n\t\t\tredirected: this.redirected\n\t\t});\n\t}\n}\n\nBody.mixIn(Response.prototype);\n\nObject.defineProperties(Response.prototype, {\n\turl: { enumerable: true },\n\tstatus: { enumerable: true },\n\tok: { enumerable: true },\n\tredirected: { enumerable: true },\n\tstatusText: { enumerable: true },\n\theaders: { enumerable: true },\n\tclone: { enumerable: true }\n});\n\nObject.defineProperty(Response.prototype, Symbol.toStringTag, {\n\tvalue: 'Response',\n\twritable: false,\n\tenumerable: false,\n\tconfigurable: true\n});\n\nconst INTERNALS$2 = Symbol('Request internals');\nconst URL$1 = Url.URL || whatwgUrl.URL;\n\n// fix an issue where \"format\", \"parse\" aren't a named export for node <10\nconst parse_url = Url.parse;\nconst format_url = Url.format;\n\n/**\n * Wrapper around `new URL` to handle arbitrary URLs\n *\n * @param  {string} urlStr\n * @return {void}\n */\nfunction parseURL(urlStr) {\n\t/*\n \tCheck whether the URL is absolute or not\n \t\tScheme: https://tools.ietf.org/html/rfc3986#section-3.1\n \tAbsolute URL: https://tools.ietf.org/html/rfc3986#section-4.3\n */\n\tif (/^[a-zA-Z][a-zA-Z\\d+\\-.]*:/.exec(urlStr)) {\n\t\turlStr = new URL$1(urlStr).toString();\n\t}\n\n\t// Fallback to old implementation for arbitrary URLs\n\treturn parse_url(urlStr);\n}\n\nconst streamDestructionSupported = 'destroy' in require$$0$b.Readable.prototype;\n\n/**\n * Check if a value is an instance of Request.\n *\n * @param   Mixed   input\n * @return  Boolean\n */\nfunction isRequest(input) {\n\treturn typeof input === 'object' && typeof input[INTERNALS$2] === 'object';\n}\n\nfunction isAbortSignal(signal) {\n\tconst proto = signal && typeof signal === 'object' && Object.getPrototypeOf(signal);\n\treturn !!(proto && proto.constructor.name === 'AbortSignal');\n}\n\n/**\n * Request class\n *\n * @param   Mixed   input  Url or Request instance\n * @param   Object  init   Custom options\n * @return  Void\n */\nclass Request {\n\tconstructor(input) {\n\t\tlet init = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t\tlet parsedURL;\n\n\t\t// normalize input\n\t\tif (!isRequest(input)) {\n\t\t\tif (input && input.href) {\n\t\t\t\t// in order to support Node.js' Url objects; though WHATWG's URL objects\n\t\t\t\t// will fall into this branch also (since their `toString()` will return\n\t\t\t\t// `href` property anyway)\n\t\t\t\tparsedURL = parseURL(input.href);\n\t\t\t} else {\n\t\t\t\t// coerce input to a string before attempting to parse\n\t\t\t\tparsedURL = parseURL(`${input}`);\n\t\t\t}\n\t\t\tinput = {};\n\t\t} else {\n\t\t\tparsedURL = parseURL(input.url);\n\t\t}\n\n\t\tlet method = init.method || input.method || 'GET';\n\t\tmethod = method.toUpperCase();\n\n\t\tif ((init.body != null || isRequest(input) && input.body !== null) && (method === 'GET' || method === 'HEAD')) {\n\t\t\tthrow new TypeError('Request with GET/HEAD method cannot have body');\n\t\t}\n\n\t\tlet inputBody = init.body != null ? init.body : isRequest(input) && input.body !== null ? clone(input) : null;\n\n\t\tBody.call(this, inputBody, {\n\t\t\ttimeout: init.timeout || input.timeout || 0,\n\t\t\tsize: init.size || input.size || 0\n\t\t});\n\n\t\tconst headers = new Headers(init.headers || input.headers || {});\n\n\t\tif (inputBody != null && !headers.has('Content-Type')) {\n\t\t\tconst contentType = extractContentType(inputBody);\n\t\t\tif (contentType) {\n\t\t\t\theaders.append('Content-Type', contentType);\n\t\t\t}\n\t\t}\n\n\t\tlet signal = isRequest(input) ? input.signal : null;\n\t\tif ('signal' in init) signal = init.signal;\n\n\t\tif (signal != null && !isAbortSignal(signal)) {\n\t\t\tthrow new TypeError('Expected signal to be an instanceof AbortSignal');\n\t\t}\n\n\t\tthis[INTERNALS$2] = {\n\t\t\tmethod,\n\t\t\tredirect: init.redirect || input.redirect || 'follow',\n\t\t\theaders,\n\t\t\tparsedURL,\n\t\t\tsignal\n\t\t};\n\n\t\t// node-fetch-only options\n\t\tthis.follow = init.follow !== undefined ? init.follow : input.follow !== undefined ? input.follow : 20;\n\t\tthis.compress = init.compress !== undefined ? init.compress : input.compress !== undefined ? input.compress : true;\n\t\tthis.counter = init.counter || input.counter || 0;\n\t\tthis.agent = init.agent || input.agent;\n\t}\n\n\tget method() {\n\t\treturn this[INTERNALS$2].method;\n\t}\n\n\tget url() {\n\t\treturn format_url(this[INTERNALS$2].parsedURL);\n\t}\n\n\tget headers() {\n\t\treturn this[INTERNALS$2].headers;\n\t}\n\n\tget redirect() {\n\t\treturn this[INTERNALS$2].redirect;\n\t}\n\n\tget signal() {\n\t\treturn this[INTERNALS$2].signal;\n\t}\n\n\t/**\n  * Clone this request\n  *\n  * @return  Request\n  */\n\tclone() {\n\t\treturn new Request(this);\n\t}\n}\n\nBody.mixIn(Request.prototype);\n\nObject.defineProperty(Request.prototype, Symbol.toStringTag, {\n\tvalue: 'Request',\n\twritable: false,\n\tenumerable: false,\n\tconfigurable: true\n});\n\nObject.defineProperties(Request.prototype, {\n\tmethod: { enumerable: true },\n\turl: { enumerable: true },\n\theaders: { enumerable: true },\n\tredirect: { enumerable: true },\n\tclone: { enumerable: true },\n\tsignal: { enumerable: true }\n});\n\n/**\n * Convert a Request to Node.js http request options.\n *\n * @param   Request  A Request instance\n * @return  Object   The options object to be passed to http.request\n */\nfunction getNodeRequestOptions(request) {\n\tconst parsedURL = request[INTERNALS$2].parsedURL;\n\tconst headers = new Headers(request[INTERNALS$2].headers);\n\n\t// fetch step 1.3\n\tif (!headers.has('Accept')) {\n\t\theaders.set('Accept', '*/*');\n\t}\n\n\t// Basic fetch\n\tif (!parsedURL.protocol || !parsedURL.hostname) {\n\t\tthrow new TypeError('Only absolute URLs are supported');\n\t}\n\n\tif (!/^https?:$/.test(parsedURL.protocol)) {\n\t\tthrow new TypeError('Only HTTP(S) protocols are supported');\n\t}\n\n\tif (request.signal && request.body instanceof require$$0$b.Readable && !streamDestructionSupported) {\n\t\tthrow new Error('Cancellation of streamed requests with AbortSignal is not supported in node < 8');\n\t}\n\n\t// HTTP-network-or-cache fetch steps 2.4-2.7\n\tlet contentLengthValue = null;\n\tif (request.body == null && /^(POST|PUT)$/i.test(request.method)) {\n\t\tcontentLengthValue = '0';\n\t}\n\tif (request.body != null) {\n\t\tconst totalBytes = getTotalBytes(request);\n\t\tif (typeof totalBytes === 'number') {\n\t\t\tcontentLengthValue = String(totalBytes);\n\t\t}\n\t}\n\tif (contentLengthValue) {\n\t\theaders.set('Content-Length', contentLengthValue);\n\t}\n\n\t// HTTP-network-or-cache fetch step 2.11\n\tif (!headers.has('User-Agent')) {\n\t\theaders.set('User-Agent', 'node-fetch/1.0 (+https://github.com/bitinn/node-fetch)');\n\t}\n\n\t// HTTP-network-or-cache fetch step 2.15\n\tif (request.compress && !headers.has('Accept-Encoding')) {\n\t\theaders.set('Accept-Encoding', 'gzip,deflate');\n\t}\n\n\tlet agent = request.agent;\n\tif (typeof agent === 'function') {\n\t\tagent = agent(parsedURL);\n\t}\n\n\t// HTTP-network fetch step 4.2\n\t// chunked encoding is handled by Node.js\n\n\treturn Object.assign({}, parsedURL, {\n\t\tmethod: request.method,\n\t\theaders: exportNodeCompatibleHeaders(headers),\n\t\tagent\n\t});\n}\n\n/**\n * abort-error.js\n *\n * AbortError interface for cancelled requests\n */\n\n/**\n * Create AbortError instance\n *\n * @param   String      message      Error message for human\n * @return  AbortError\n */\nfunction AbortError(message) {\n  Error.call(this, message);\n\n  this.type = 'aborted';\n  this.message = message;\n\n  // hide custom error implementation details from end-users\n  Error.captureStackTrace(this, this.constructor);\n}\n\nAbortError.prototype = Object.create(Error.prototype);\nAbortError.prototype.constructor = AbortError;\nAbortError.prototype.name = 'AbortError';\n\nconst URL$1$1 = Url.URL || whatwgUrl.URL;\n\n// fix an issue where \"PassThrough\", \"resolve\" aren't a named export for node <10\nconst PassThrough$1 = require$$0$b.PassThrough;\n\nconst isDomainOrSubdomain = function isDomainOrSubdomain(destination, original) {\n\tconst orig = new URL$1$1(original).hostname;\n\tconst dest = new URL$1$1(destination).hostname;\n\n\treturn orig === dest || orig[orig.length - dest.length - 1] === '.' && orig.endsWith(dest);\n};\n\n/**\n * isSameProtocol reports whether the two provided URLs use the same protocol.\n *\n * Both domains must already be in canonical form.\n * @param {string|URL} original\n * @param {string|URL} destination\n */\nconst isSameProtocol = function isSameProtocol(destination, original) {\n\tconst orig = new URL$1$1(original).protocol;\n\tconst dest = new URL$1$1(destination).protocol;\n\n\treturn orig === dest;\n};\n\n/**\n * Fetch function\n *\n * @param   Mixed    url   Absolute url or Request instance\n * @param   Object   opts  Fetch options\n * @return  Promise\n */\nfunction fetch(url, opts) {\n\n\t// allow custom promise\n\tif (!fetch.Promise) {\n\t\tthrow new Error('native promise missing, set fetch.Promise to your favorite alternative');\n\t}\n\n\tBody.Promise = fetch.Promise;\n\n\t// wrap http.request into fetch\n\treturn new fetch.Promise(function (resolve, reject) {\n\t\t// build request object\n\t\tconst request = new Request(url, opts);\n\t\tconst options = getNodeRequestOptions(request);\n\n\t\tconst send = (options.protocol === 'https:' ? require$$1$3 : require$$2$3).request;\n\t\tconst signal = request.signal;\n\n\t\tlet response = null;\n\n\t\tconst abort = function abort() {\n\t\t\tlet error = new AbortError('The user aborted a request.');\n\t\t\treject(error);\n\t\t\tif (request.body && request.body instanceof require$$0$b.Readable) {\n\t\t\t\tdestroyStream(request.body, error);\n\t\t\t}\n\t\t\tif (!response || !response.body) return;\n\t\t\tresponse.body.emit('error', error);\n\t\t};\n\n\t\tif (signal && signal.aborted) {\n\t\t\tabort();\n\t\t\treturn;\n\t\t}\n\n\t\tconst abortAndFinalize = function abortAndFinalize() {\n\t\t\tabort();\n\t\t\tfinalize();\n\t\t};\n\n\t\t// send request\n\t\tconst req = send(options);\n\t\tlet reqTimeout;\n\n\t\tif (signal) {\n\t\t\tsignal.addEventListener('abort', abortAndFinalize);\n\t\t}\n\n\t\tfunction finalize() {\n\t\t\treq.abort();\n\t\t\tif (signal) signal.removeEventListener('abort', abortAndFinalize);\n\t\t\tclearTimeout(reqTimeout);\n\t\t}\n\n\t\tif (request.timeout) {\n\t\t\treq.once('socket', function (socket) {\n\t\t\t\treqTimeout = setTimeout(function () {\n\t\t\t\t\treject(new FetchError(`network timeout at: ${request.url}`, 'request-timeout'));\n\t\t\t\t\tfinalize();\n\t\t\t\t}, request.timeout);\n\t\t\t});\n\t\t}\n\n\t\treq.on('error', function (err) {\n\t\t\treject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, 'system', err));\n\n\t\t\tif (response && response.body) {\n\t\t\t\tdestroyStream(response.body, err);\n\t\t\t}\n\n\t\t\tfinalize();\n\t\t});\n\n\t\tfixResponseChunkedTransferBadEnding(req, function (err) {\n\t\t\tif (signal && signal.aborted) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (response && response.body) {\n\t\t\t\tdestroyStream(response.body, err);\n\t\t\t}\n\t\t});\n\n\t\t/* c8 ignore next 18 */\n\t\tif (parseInt(process.version.substring(1)) < 14) {\n\t\t\t// Before Node.js 14, pipeline() does not fully support async iterators and does not always\n\t\t\t// properly handle when the socket close/end events are out of order.\n\t\t\treq.on('socket', function (s) {\n\t\t\t\ts.addListener('close', function (hadError) {\n\t\t\t\t\t// if a data listener is still present we didn't end cleanly\n\t\t\t\t\tconst hasDataListener = s.listenerCount('data') > 0;\n\n\t\t\t\t\t// if end happened before close but the socket didn't emit an error, do it now\n\t\t\t\t\tif (response && hasDataListener && !hadError && !(signal && signal.aborted)) {\n\t\t\t\t\t\tconst err = new Error('Premature close');\n\t\t\t\t\t\terr.code = 'ERR_STREAM_PREMATURE_CLOSE';\n\t\t\t\t\t\tresponse.body.emit('error', err);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\n\t\treq.on('response', function (res) {\n\t\t\tclearTimeout(reqTimeout);\n\n\t\t\tconst headers = createHeadersLenient(res.headers);\n\n\t\t\t// HTTP fetch step 5\n\t\t\tif (fetch.isRedirect(res.statusCode)) {\n\t\t\t\t// HTTP fetch step 5.2\n\t\t\t\tconst location = headers.get('Location');\n\n\t\t\t\t// HTTP fetch step 5.3\n\t\t\t\tlet locationURL = null;\n\t\t\t\ttry {\n\t\t\t\t\tlocationURL = location === null ? null : new URL$1$1(location, request.url).toString();\n\t\t\t\t} catch (err) {\n\t\t\t\t\t// error here can only be invalid URL in Location: header\n\t\t\t\t\t// do not throw when options.redirect == manual\n\t\t\t\t\t// let the user extract the errorneous redirect URL\n\t\t\t\t\tif (request.redirect !== 'manual') {\n\t\t\t\t\t\treject(new FetchError(`uri requested responds with an invalid redirect URL: ${location}`, 'invalid-redirect'));\n\t\t\t\t\t\tfinalize();\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// HTTP fetch step 5.5\n\t\t\t\tswitch (request.redirect) {\n\t\t\t\t\tcase 'error':\n\t\t\t\t\t\treject(new FetchError(`uri requested responds with a redirect, redirect mode is set to error: ${request.url}`, 'no-redirect'));\n\t\t\t\t\t\tfinalize();\n\t\t\t\t\t\treturn;\n\t\t\t\t\tcase 'manual':\n\t\t\t\t\t\t// node-fetch-specific step: make manual redirect a bit easier to use by setting the Location header value to the resolved URL.\n\t\t\t\t\t\tif (locationURL !== null) {\n\t\t\t\t\t\t\t// handle corrupted header\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\theaders.set('Location', locationURL);\n\t\t\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\t\t\t// istanbul ignore next: nodejs server prevent invalid response headers, we can't test this through normal request\n\t\t\t\t\t\t\t\treject(err);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'follow':\n\t\t\t\t\t\t// HTTP-redirect fetch step 2\n\t\t\t\t\t\tif (locationURL === null) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// HTTP-redirect fetch step 5\n\t\t\t\t\t\tif (request.counter >= request.follow) {\n\t\t\t\t\t\t\treject(new FetchError(`maximum redirect reached at: ${request.url}`, 'max-redirect'));\n\t\t\t\t\t\t\tfinalize();\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// HTTP-redirect fetch step 6 (counter increment)\n\t\t\t\t\t\t// Create a new Request object.\n\t\t\t\t\t\tconst requestOpts = {\n\t\t\t\t\t\t\theaders: new Headers(request.headers),\n\t\t\t\t\t\t\tfollow: request.follow,\n\t\t\t\t\t\t\tcounter: request.counter + 1,\n\t\t\t\t\t\t\tagent: request.agent,\n\t\t\t\t\t\t\tcompress: request.compress,\n\t\t\t\t\t\t\tmethod: request.method,\n\t\t\t\t\t\t\tbody: request.body,\n\t\t\t\t\t\t\tsignal: request.signal,\n\t\t\t\t\t\t\ttimeout: request.timeout,\n\t\t\t\t\t\t\tsize: request.size\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tif (!isDomainOrSubdomain(request.url, locationURL) || !isSameProtocol(request.url, locationURL)) {\n\t\t\t\t\t\t\tfor (const name of ['authorization', 'www-authenticate', 'cookie', 'cookie2']) {\n\t\t\t\t\t\t\t\trequestOpts.headers.delete(name);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// HTTP-redirect fetch step 9\n\t\t\t\t\t\tif (res.statusCode !== 303 && request.body && getTotalBytes(request) === null) {\n\t\t\t\t\t\t\treject(new FetchError('Cannot follow redirect with body being a readable stream', 'unsupported-redirect'));\n\t\t\t\t\t\t\tfinalize();\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// HTTP-redirect fetch step 11\n\t\t\t\t\t\tif (res.statusCode === 303 || (res.statusCode === 301 || res.statusCode === 302) && request.method === 'POST') {\n\t\t\t\t\t\t\trequestOpts.method = 'GET';\n\t\t\t\t\t\t\trequestOpts.body = undefined;\n\t\t\t\t\t\t\trequestOpts.headers.delete('content-length');\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// HTTP-redirect fetch step 15\n\t\t\t\t\t\tresolve(fetch(new Request(locationURL, requestOpts)));\n\t\t\t\t\t\tfinalize();\n\t\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// prepare response\n\t\t\tres.once('end', function () {\n\t\t\t\tif (signal) signal.removeEventListener('abort', abortAndFinalize);\n\t\t\t});\n\t\t\tlet body = res.pipe(new PassThrough$1());\n\n\t\t\tconst response_options = {\n\t\t\t\turl: request.url,\n\t\t\t\tstatus: res.statusCode,\n\t\t\t\tstatusText: res.statusMessage,\n\t\t\t\theaders: headers,\n\t\t\t\tsize: request.size,\n\t\t\t\ttimeout: request.timeout,\n\t\t\t\tcounter: request.counter\n\t\t\t};\n\n\t\t\t// HTTP-network fetch step 12.1.1.3\n\t\t\tconst codings = headers.get('Content-Encoding');\n\n\t\t\t// HTTP-network fetch step 12.1.1.4: handle content codings\n\n\t\t\t// in following scenarios we ignore compression support\n\t\t\t// 1. compression support is disabled\n\t\t\t// 2. HEAD request\n\t\t\t// 3. no Content-Encoding header\n\t\t\t// 4. no content response (204)\n\t\t\t// 5. content not modified response (304)\n\t\t\tif (!request.compress || request.method === 'HEAD' || codings === null || res.statusCode === 204 || res.statusCode === 304) {\n\t\t\t\tresponse = new Response(body, response_options);\n\t\t\t\tresolve(response);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// For Node v6+\n\t\t\t// Be less strict when decoding compressed responses, since sometimes\n\t\t\t// servers send slightly invalid responses that are still accepted\n\t\t\t// by common browsers.\n\t\t\t// Always using Z_SYNC_FLUSH is what cURL does.\n\t\t\tconst zlibOptions = {\n\t\t\t\tflush: zlib$1.Z_SYNC_FLUSH,\n\t\t\t\tfinishFlush: zlib$1.Z_SYNC_FLUSH\n\t\t\t};\n\n\t\t\t// for gzip\n\t\t\tif (codings == 'gzip' || codings == 'x-gzip') {\n\t\t\t\tbody = body.pipe(zlib$1.createGunzip(zlibOptions));\n\t\t\t\tresponse = new Response(body, response_options);\n\t\t\t\tresolve(response);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// for deflate\n\t\t\tif (codings == 'deflate' || codings == 'x-deflate') {\n\t\t\t\t// handle the infamous raw deflate response from old servers\n\t\t\t\t// a hack for old IIS and Apache servers\n\t\t\t\tconst raw = res.pipe(new PassThrough$1());\n\t\t\t\traw.once('data', function (chunk) {\n\t\t\t\t\t// see http://stackoverflow.com/questions/37519828\n\t\t\t\t\tif ((chunk[0] & 0x0F) === 0x08) {\n\t\t\t\t\t\tbody = body.pipe(zlib$1.createInflate());\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbody = body.pipe(zlib$1.createInflateRaw());\n\t\t\t\t\t}\n\t\t\t\t\tresponse = new Response(body, response_options);\n\t\t\t\t\tresolve(response);\n\t\t\t\t});\n\t\t\t\traw.on('end', function () {\n\t\t\t\t\t// some old IIS servers return zero-length OK deflate responses, so 'data' is never emitted.\n\t\t\t\t\tif (!response) {\n\t\t\t\t\t\tresponse = new Response(body, response_options);\n\t\t\t\t\t\tresolve(response);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// for br\n\t\t\tif (codings == 'br' && typeof zlib$1.createBrotliDecompress === 'function') {\n\t\t\t\tbody = body.pipe(zlib$1.createBrotliDecompress());\n\t\t\t\tresponse = new Response(body, response_options);\n\t\t\t\tresolve(response);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// otherwise, use response as-is\n\t\t\tresponse = new Response(body, response_options);\n\t\t\tresolve(response);\n\t\t});\n\n\t\twriteToStream(req, request);\n\t});\n}\nfunction fixResponseChunkedTransferBadEnding(request, errorCallback) {\n\tlet socket;\n\n\trequest.on('socket', function (s) {\n\t\tsocket = s;\n\t});\n\n\trequest.on('response', function (response) {\n\t\tconst headers = response.headers;\n\n\t\tif (headers['transfer-encoding'] === 'chunked' && !headers['content-length']) {\n\t\t\tresponse.once('close', function (hadError) {\n\t\t\t\t// tests for socket presence, as in some situations the\n\t\t\t\t// the 'socket' event is not triggered for the request\n\t\t\t\t// (happens in deno), avoids `TypeError`\n\t\t\t\t// if a data listener is still present we didn't end cleanly\n\t\t\t\tconst hasDataListener = socket && socket.listenerCount('data') > 0;\n\n\t\t\t\tif (hasDataListener && !hadError) {\n\t\t\t\t\tconst err = new Error('Premature close');\n\t\t\t\t\terr.code = 'ERR_STREAM_PREMATURE_CLOSE';\n\t\t\t\t\terrorCallback(err);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n}\n\nfunction destroyStream(stream, err) {\n\tif (stream.destroy) {\n\t\tstream.destroy(err);\n\t} else {\n\t\t// node < 8\n\t\tstream.emit('error', err);\n\t\tstream.end();\n\t}\n}\n\n/**\n * Redirect code matching\n *\n * @param   Number   code  Status code\n * @return  Boolean\n */\nfetch.isRedirect = function (code) {\n\treturn code === 301 || code === 302 || code === 303 || code === 307 || code === 308;\n};\n\n// expose Promise\nfetch.Promise = global.Promise;\n\nclass Deprecation extends Error {\n  constructor(message) {\n    super(message); // Maintains proper stack trace (only available on V8)\n\n    /* istanbul ignore next */\n\n    if (Error.captureStackTrace) {\n      Error.captureStackTrace(this, this.constructor);\n    }\n\n    this.name = 'Deprecation';\n  }\n\n}\n\nvar once$1 = {exports: {}};\n\nvar wrappy_1;\nvar hasRequiredWrappy;\n\nfunction requireWrappy () {\n\tif (hasRequiredWrappy) return wrappy_1;\n\thasRequiredWrappy = 1;\n\t// Returns a wrapper function that returns a wrapped callback\n\t// The wrapper function should do some stuff, and return a\n\t// presumably different callback function.\n\t// This makes sure that own properties are retained, so that\n\t// decorations and such are not lost along the way.\n\twrappy_1 = wrappy;\n\tfunction wrappy (fn, cb) {\n\t  if (fn && cb) return wrappy(fn)(cb)\n\n\t  if (typeof fn !== 'function')\n\t    throw new TypeError('need wrapper function')\n\n\t  Object.keys(fn).forEach(function (k) {\n\t    wrapper[k] = fn[k];\n\t  });\n\n\t  return wrapper\n\n\t  function wrapper() {\n\t    var args = new Array(arguments.length);\n\t    for (var i = 0; i < args.length; i++) {\n\t      args[i] = arguments[i];\n\t    }\n\t    var ret = fn.apply(this, args);\n\t    var cb = args[args.length-1];\n\t    if (typeof ret === 'function' && ret !== cb) {\n\t      Object.keys(cb).forEach(function (k) {\n\t        ret[k] = cb[k];\n\t      });\n\t    }\n\t    return ret\n\t  }\n\t}\n\treturn wrappy_1;\n}\n\nvar hasRequiredOnce;\n\nfunction requireOnce () {\n\tif (hasRequiredOnce) return once$1.exports;\n\thasRequiredOnce = 1;\n\tvar wrappy = requireWrappy();\n\tonce$1.exports = wrappy(once);\n\tonce$1.exports.strict = wrappy(onceStrict);\n\n\tonce.proto = once(function () {\n\t  Object.defineProperty(Function.prototype, 'once', {\n\t    value: function () {\n\t      return once(this)\n\t    },\n\t    configurable: true\n\t  });\n\n\t  Object.defineProperty(Function.prototype, 'onceStrict', {\n\t    value: function () {\n\t      return onceStrict(this)\n\t    },\n\t    configurable: true\n\t  });\n\t});\n\n\tfunction once (fn) {\n\t  var f = function () {\n\t    if (f.called) return f.value\n\t    f.called = true;\n\t    return f.value = fn.apply(this, arguments)\n\t  };\n\t  f.called = false;\n\t  return f\n\t}\n\n\tfunction onceStrict (fn) {\n\t  var f = function () {\n\t    if (f.called)\n\t      throw new Error(f.onceError)\n\t    f.called = true;\n\t    return f.value = fn.apply(this, arguments)\n\t  };\n\t  var name = fn.name || 'Function wrapped with `once`';\n\t  f.onceError = name + \" shouldn't be called more than once\";\n\t  f.called = false;\n\t  return f\n\t}\n\treturn once$1.exports;\n}\n\nvar onceExports = requireOnce();\nvar once = /*@__PURE__*/getDefaultExportFromCjs(onceExports);\n\nconst logOnceCode = once((deprecation) => console.warn(deprecation));\nconst logOnceHeaders = once((deprecation) => console.warn(deprecation));\n/**\n * Error with extra properties to help with debugging\n */\nclass RequestError extends Error {\n    constructor(message, statusCode, options) {\n        super(message);\n        // Maintains proper stack trace (only available on V8)\n        /* istanbul ignore next */\n        if (Error.captureStackTrace) {\n            Error.captureStackTrace(this, this.constructor);\n        }\n        this.name = \"HttpError\";\n        this.status = statusCode;\n        let headers;\n        if (\"headers\" in options && typeof options.headers !== \"undefined\") {\n            headers = options.headers;\n        }\n        if (\"response\" in options) {\n            this.response = options.response;\n            headers = options.response.headers;\n        }\n        // redact request credentials without mutating original request options\n        const requestCopy = Object.assign({}, options.request);\n        if (options.request.headers.authorization) {\n            requestCopy.headers = Object.assign({}, options.request.headers, {\n                authorization: options.request.headers.authorization.replace(/ .*$/, \" [REDACTED]\"),\n            });\n        }\n        requestCopy.url = requestCopy.url\n            // client_id & client_secret can be passed as URL query parameters to increase rate limit\n            // see https://developer.github.com/v3/#increasing-the-unauthenticated-rate-limit-for-oauth-applications\n            .replace(/\\bclient_secret=\\w+/g, \"client_secret=[REDACTED]\")\n            // OAuth tokens can be passed as URL query parameters, although it is not recommended\n            // see https://developer.github.com/v3/#oauth2-token-sent-in-a-header\n            .replace(/\\baccess_token=\\w+/g, \"access_token=[REDACTED]\");\n        this.request = requestCopy;\n        // deprecations\n        Object.defineProperty(this, \"code\", {\n            get() {\n                logOnceCode(new Deprecation(\"[@octokit/request-error] `error.code` is deprecated, use `error.status`.\"));\n                return statusCode;\n            },\n        });\n        Object.defineProperty(this, \"headers\", {\n            get() {\n                logOnceHeaders(new Deprecation(\"[@octokit/request-error] `error.headers` is deprecated, use `error.response.headers`.\"));\n                return headers || {};\n            },\n        });\n    }\n}\n\nconst VERSION$6 = \"5.6.3\";\n\nfunction getBufferResponse(response) {\n    return response.arrayBuffer();\n}\n\nfunction fetchWrapper(requestOptions) {\n    const log = requestOptions.request && requestOptions.request.log\n        ? requestOptions.request.log\n        : console;\n    if (isPlainObject(requestOptions.body) ||\n        Array.isArray(requestOptions.body)) {\n        requestOptions.body = JSON.stringify(requestOptions.body);\n    }\n    let headers = {};\n    let status;\n    let url;\n    const fetch$1 = (requestOptions.request && requestOptions.request.fetch) || fetch;\n    return fetch$1(requestOptions.url, Object.assign({\n        method: requestOptions.method,\n        body: requestOptions.body,\n        headers: requestOptions.headers,\n        redirect: requestOptions.redirect,\n    }, \n    // `requestOptions.request.agent` type is incompatible\n    // see https://github.com/octokit/types.ts/pull/264\n    requestOptions.request))\n        .then(async (response) => {\n        url = response.url;\n        status = response.status;\n        for (const keyAndValue of response.headers) {\n            headers[keyAndValue[0]] = keyAndValue[1];\n        }\n        if (\"deprecation\" in headers) {\n            const matches = headers.link && headers.link.match(/<([^>]+)>; rel=\"deprecation\"/);\n            const deprecationLink = matches && matches.pop();\n            log.warn(`[@octokit/request] \"${requestOptions.method} ${requestOptions.url}\" is deprecated. It is scheduled to be removed on ${headers.sunset}${deprecationLink ? `. See ${deprecationLink}` : \"\"}`);\n        }\n        if (status === 204 || status === 205) {\n            return;\n        }\n        // GitHub API returns 200 for HEAD requests\n        if (requestOptions.method === \"HEAD\") {\n            if (status < 400) {\n                return;\n            }\n            throw new RequestError(response.statusText, status, {\n                response: {\n                    url,\n                    status,\n                    headers,\n                    data: undefined,\n                },\n                request: requestOptions,\n            });\n        }\n        if (status === 304) {\n            throw new RequestError(\"Not modified\", status, {\n                response: {\n                    url,\n                    status,\n                    headers,\n                    data: await getResponseData(response),\n                },\n                request: requestOptions,\n            });\n        }\n        if (status >= 400) {\n            const data = await getResponseData(response);\n            const error = new RequestError(toErrorMessage(data), status, {\n                response: {\n                    url,\n                    status,\n                    headers,\n                    data,\n                },\n                request: requestOptions,\n            });\n            throw error;\n        }\n        return getResponseData(response);\n    })\n        .then((data) => {\n        return {\n            status,\n            url,\n            headers,\n            data,\n        };\n    })\n        .catch((error) => {\n        if (error instanceof RequestError)\n            throw error;\n        throw new RequestError(error.message, 500, {\n            request: requestOptions,\n        });\n    });\n}\nasync function getResponseData(response) {\n    const contentType = response.headers.get(\"content-type\");\n    if (/application\\/json/.test(contentType)) {\n        return response.json();\n    }\n    if (!contentType || /^text\\/|charset=utf-8$/.test(contentType)) {\n        return response.text();\n    }\n    return getBufferResponse(response);\n}\nfunction toErrorMessage(data) {\n    if (typeof data === \"string\")\n        return data;\n    // istanbul ignore else - just in case\n    if (\"message\" in data) {\n        if (Array.isArray(data.errors)) {\n            return `${data.message}: ${data.errors.map(JSON.stringify).join(\", \")}`;\n        }\n        return data.message;\n    }\n    // istanbul ignore next - just in case\n    return `Unknown error: ${JSON.stringify(data)}`;\n}\n\nfunction withDefaults$1(oldEndpoint, newDefaults) {\n    const endpoint = oldEndpoint.defaults(newDefaults);\n    const newApi = function (route, parameters) {\n        const endpointOptions = endpoint.merge(route, parameters);\n        if (!endpointOptions.request || !endpointOptions.request.hook) {\n            return fetchWrapper(endpoint.parse(endpointOptions));\n        }\n        const request = (route, parameters) => {\n            return fetchWrapper(endpoint.parse(endpoint.merge(route, parameters)));\n        };\n        Object.assign(request, {\n            endpoint,\n            defaults: withDefaults$1.bind(null, endpoint),\n        });\n        return endpointOptions.request.hook(request, endpointOptions);\n    };\n    return Object.assign(newApi, {\n        endpoint,\n        defaults: withDefaults$1.bind(null, endpoint),\n    });\n}\n\nconst request = withDefaults$1(endpoint, {\n    headers: {\n        \"user-agent\": `octokit-request.js/${VERSION$6} ${getUserAgent()}`,\n    },\n});\n\nconst VERSION$5 = \"4.8.0\";\n\nfunction _buildMessageForResponseErrors(data) {\n    return (`Request failed due to following response errors:\\n` +\n        data.errors.map((e) => ` - ${e.message}`).join(\"\\n\"));\n}\nclass GraphqlResponseError extends Error {\n    constructor(request, headers, response) {\n        super(_buildMessageForResponseErrors(response));\n        this.request = request;\n        this.headers = headers;\n        this.response = response;\n        this.name = \"GraphqlResponseError\";\n        // Expose the errors and response data in their shorthand properties.\n        this.errors = response.errors;\n        this.data = response.data;\n        // Maintains proper stack trace (only available on V8)\n        /* istanbul ignore next */\n        if (Error.captureStackTrace) {\n            Error.captureStackTrace(this, this.constructor);\n        }\n    }\n}\n\nconst NON_VARIABLE_OPTIONS = [\n    \"method\",\n    \"baseUrl\",\n    \"url\",\n    \"headers\",\n    \"request\",\n    \"query\",\n    \"mediaType\",\n];\nconst FORBIDDEN_VARIABLE_OPTIONS = [\"query\", \"method\", \"url\"];\nconst GHES_V3_SUFFIX_REGEX = /\\/api\\/v3\\/?$/;\nfunction graphql(request, query, options) {\n    if (options) {\n        if (typeof query === \"string\" && \"query\" in options) {\n            return Promise.reject(new Error(`[@octokit/graphql] \"query\" cannot be used as variable name`));\n        }\n        for (const key in options) {\n            if (!FORBIDDEN_VARIABLE_OPTIONS.includes(key))\n                continue;\n            return Promise.reject(new Error(`[@octokit/graphql] \"${key}\" cannot be used as variable name`));\n        }\n    }\n    const parsedOptions = typeof query === \"string\" ? Object.assign({ query }, options) : query;\n    const requestOptions = Object.keys(parsedOptions).reduce((result, key) => {\n        if (NON_VARIABLE_OPTIONS.includes(key)) {\n            result[key] = parsedOptions[key];\n            return result;\n        }\n        if (!result.variables) {\n            result.variables = {};\n        }\n        result.variables[key] = parsedOptions[key];\n        return result;\n    }, {});\n    // workaround for GitHub Enterprise baseUrl set with /api/v3 suffix\n    // https://github.com/octokit/auth-app.js/issues/111#issuecomment-657610451\n    const baseUrl = parsedOptions.baseUrl || request.endpoint.DEFAULTS.baseUrl;\n    if (GHES_V3_SUFFIX_REGEX.test(baseUrl)) {\n        requestOptions.url = baseUrl.replace(GHES_V3_SUFFIX_REGEX, \"/api/graphql\");\n    }\n    return request(requestOptions).then((response) => {\n        if (response.data.errors) {\n            const headers = {};\n            for (const key of Object.keys(response.headers)) {\n                headers[key] = response.headers[key];\n            }\n            throw new GraphqlResponseError(requestOptions, headers, response.data);\n        }\n        return response.data.data;\n    });\n}\n\nfunction withDefaults(request$1, newDefaults) {\n    const newRequest = request$1.defaults(newDefaults);\n    const newApi = (query, options) => {\n        return graphql(newRequest, query, options);\n    };\n    return Object.assign(newApi, {\n        defaults: withDefaults.bind(null, newRequest),\n        endpoint: request.endpoint,\n    });\n}\n\nwithDefaults(request, {\n    headers: {\n        \"user-agent\": `octokit-graphql.js/${VERSION$5} ${getUserAgent()}`,\n    },\n    method: \"POST\",\n    url: \"/graphql\",\n});\nfunction withCustomRequest(customRequest) {\n    return withDefaults(customRequest, {\n        method: \"POST\",\n        url: \"/graphql\",\n    });\n}\n\nconst REGEX_IS_INSTALLATION_LEGACY = /^v1\\./;\nconst REGEX_IS_INSTALLATION = /^ghs_/;\nconst REGEX_IS_USER_TO_SERVER = /^ghu_/;\nasync function auth(token) {\n    const isApp = token.split(/\\./).length === 3;\n    const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) ||\n        REGEX_IS_INSTALLATION.test(token);\n    const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token);\n    const tokenType = isApp\n        ? \"app\"\n        : isInstallation\n            ? \"installation\"\n            : isUserToServer\n                ? \"user-to-server\"\n                : \"oauth\";\n    return {\n        type: \"token\",\n        token: token,\n        tokenType,\n    };\n}\n\n/**\n * Prefix token for usage in the Authorization header\n *\n * @param token OAuth token or JSON Web Token\n */\nfunction withAuthorizationPrefix(token) {\n    if (token.split(/\\./).length === 3) {\n        return `bearer ${token}`;\n    }\n    return `token ${token}`;\n}\n\nasync function hook(token, request, route, parameters) {\n    const endpoint = request.endpoint.merge(route, parameters);\n    endpoint.headers.authorization = withAuthorizationPrefix(token);\n    return request(endpoint);\n}\n\nconst createTokenAuth = function createTokenAuth(token) {\n    if (!token) {\n        throw new Error(\"[@octokit/auth-token] No token passed to createTokenAuth\");\n    }\n    if (typeof token !== \"string\") {\n        throw new Error(\"[@octokit/auth-token] Token passed to createTokenAuth is not a string\");\n    }\n    token = token.replace(/^(token|bearer) +/i, \"\");\n    return Object.assign(auth.bind(null, token), {\n        hook: hook.bind(null, token),\n    });\n};\n\nconst VERSION$4 = \"3.6.0\";\n\nclass Octokit {\n    constructor(options = {}) {\n        const hook = new beforeAfterHookExports.Collection();\n        const requestDefaults = {\n            baseUrl: request.endpoint.DEFAULTS.baseUrl,\n            headers: {},\n            request: Object.assign({}, options.request, {\n                // @ts-ignore internal usage only, no need to type\n                hook: hook.bind(null, \"request\"),\n            }),\n            mediaType: {\n                previews: [],\n                format: \"\",\n            },\n        };\n        // prepend default user agent with `options.userAgent` if set\n        requestDefaults.headers[\"user-agent\"] = [\n            options.userAgent,\n            `octokit-core.js/${VERSION$4} ${getUserAgent()}`,\n        ]\n            .filter(Boolean)\n            .join(\" \");\n        if (options.baseUrl) {\n            requestDefaults.baseUrl = options.baseUrl;\n        }\n        if (options.previews) {\n            requestDefaults.mediaType.previews = options.previews;\n        }\n        if (options.timeZone) {\n            requestDefaults.headers[\"time-zone\"] = options.timeZone;\n        }\n        this.request = request.defaults(requestDefaults);\n        this.graphql = withCustomRequest(this.request).defaults(requestDefaults);\n        this.log = Object.assign({\n            debug: () => { },\n            info: () => { },\n            warn: console.warn.bind(console),\n            error: console.error.bind(console),\n        }, options.log);\n        this.hook = hook;\n        // (1) If neither `options.authStrategy` nor `options.auth` are set, the `octokit` instance\n        //     is unauthenticated. The `this.auth()` method is a no-op and no request hook is registered.\n        // (2) If only `options.auth` is set, use the default token authentication strategy.\n        // (3) If `options.authStrategy` is set then use it and pass in `options.auth`. Always pass own request as many strategies accept a custom request instance.\n        // TODO: type `options.auth` based on `options.authStrategy`.\n        if (!options.authStrategy) {\n            if (!options.auth) {\n                // (1)\n                this.auth = async () => ({\n                    type: \"unauthenticated\",\n                });\n            }\n            else {\n                // (2)\n                const auth = createTokenAuth(options.auth);\n                // @ts-ignore  ¯\\_(ツ)_/¯\n                hook.wrap(\"request\", auth.hook);\n                this.auth = auth;\n            }\n        }\n        else {\n            const { authStrategy, ...otherOptions } = options;\n            const auth = authStrategy(Object.assign({\n                request: this.request,\n                log: this.log,\n                // we pass the current octokit instance as well as its constructor options\n                // to allow for authentication strategies that return a new octokit instance\n                // that shares the same internal state as the current one. The original\n                // requirement for this was the \"event-octokit\" authentication strategy\n                // of https://github.com/probot/octokit-auth-probot.\n                octokit: this,\n                octokitOptions: otherOptions,\n            }, options.auth));\n            // @ts-ignore  ¯\\_(ツ)_/¯\n            hook.wrap(\"request\", auth.hook);\n            this.auth = auth;\n        }\n        // apply plugins\n        // https://stackoverflow.com/a/16345172\n        const classConstructor = this.constructor;\n        classConstructor.plugins.forEach((plugin) => {\n            Object.assign(this, plugin(this, options));\n        });\n    }\n    static defaults(defaults) {\n        const OctokitWithDefaults = class extends this {\n            constructor(...args) {\n                const options = args[0] || {};\n                if (typeof defaults === \"function\") {\n                    super(defaults(options));\n                    return;\n                }\n                super(Object.assign({}, defaults, options, options.userAgent && defaults.userAgent\n                    ? {\n                        userAgent: `${options.userAgent} ${defaults.userAgent}`,\n                    }\n                    : null));\n            }\n        };\n        return OctokitWithDefaults;\n    }\n    /**\n     * Attach a plugin (or many) to your Octokit instance.\n     *\n     * @example\n     * const API = Octokit.plugin(plugin1, plugin2, plugin3, ...)\n     */\n    static plugin(...newPlugins) {\n        var _a;\n        const currentPlugins = this.plugins;\n        const NewOctokit = (_a = class extends this {\n            },\n            _a.plugins = currentPlugins.concat(newPlugins.filter((plugin) => !currentPlugins.includes(plugin))),\n            _a);\n        return NewOctokit;\n    }\n}\nOctokit.VERSION = VERSION$4;\nOctokit.plugins = [];\n\nvar distWeb$4 = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tOctokit: Octokit\n});\n\nvar require$$2 = /*@__PURE__*/getAugmentedNamespace(distWeb$4);\n\nconst Endpoints = {\n    actions: {\n        addCustomLabelsToSelfHostedRunnerForOrg: [\n            \"POST /orgs/{org}/actions/runners/{runner_id}/labels\",\n        ],\n        addCustomLabelsToSelfHostedRunnerForRepo: [\n            \"POST /repos/{owner}/{repo}/actions/runners/{runner_id}/labels\",\n        ],\n        addSelectedRepoToOrgSecret: [\n            \"PUT /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}\",\n        ],\n        approveWorkflowRun: [\n            \"POST /repos/{owner}/{repo}/actions/runs/{run_id}/approve\",\n        ],\n        cancelWorkflowRun: [\n            \"POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel\",\n        ],\n        createOrUpdateEnvironmentSecret: [\n            \"PUT /repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}\",\n        ],\n        createOrUpdateOrgSecret: [\"PUT /orgs/{org}/actions/secrets/{secret_name}\"],\n        createOrUpdateRepoSecret: [\n            \"PUT /repos/{owner}/{repo}/actions/secrets/{secret_name}\",\n        ],\n        createRegistrationTokenForOrg: [\n            \"POST /orgs/{org}/actions/runners/registration-token\",\n        ],\n        createRegistrationTokenForRepo: [\n            \"POST /repos/{owner}/{repo}/actions/runners/registration-token\",\n        ],\n        createRemoveTokenForOrg: [\"POST /orgs/{org}/actions/runners/remove-token\"],\n        createRemoveTokenForRepo: [\n            \"POST /repos/{owner}/{repo}/actions/runners/remove-token\",\n        ],\n        createWorkflowDispatch: [\n            \"POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches\",\n        ],\n        deleteActionsCacheById: [\n            \"DELETE /repos/{owner}/{repo}/actions/caches/{cache_id}\",\n        ],\n        deleteActionsCacheByKey: [\n            \"DELETE /repos/{owner}/{repo}/actions/caches{?key,ref}\",\n        ],\n        deleteArtifact: [\n            \"DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}\",\n        ],\n        deleteEnvironmentSecret: [\n            \"DELETE /repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}\",\n        ],\n        deleteOrgSecret: [\"DELETE /orgs/{org}/actions/secrets/{secret_name}\"],\n        deleteRepoSecret: [\n            \"DELETE /repos/{owner}/{repo}/actions/secrets/{secret_name}\",\n        ],\n        deleteSelfHostedRunnerFromOrg: [\n            \"DELETE /orgs/{org}/actions/runners/{runner_id}\",\n        ],\n        deleteSelfHostedRunnerFromRepo: [\n            \"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}\",\n        ],\n        deleteWorkflowRun: [\"DELETE /repos/{owner}/{repo}/actions/runs/{run_id}\"],\n        deleteWorkflowRunLogs: [\n            \"DELETE /repos/{owner}/{repo}/actions/runs/{run_id}/logs\",\n        ],\n        disableSelectedRepositoryGithubActionsOrganization: [\n            \"DELETE /orgs/{org}/actions/permissions/repositories/{repository_id}\",\n        ],\n        disableWorkflow: [\n            \"PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable\",\n        ],\n        downloadArtifact: [\n            \"GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}\",\n        ],\n        downloadJobLogsForWorkflowRun: [\n            \"GET /repos/{owner}/{repo}/actions/jobs/{job_id}/logs\",\n        ],\n        downloadWorkflowRunAttemptLogs: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs\",\n        ],\n        downloadWorkflowRunLogs: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/logs\",\n        ],\n        enableSelectedRepositoryGithubActionsOrganization: [\n            \"PUT /orgs/{org}/actions/permissions/repositories/{repository_id}\",\n        ],\n        enableWorkflow: [\n            \"PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable\",\n        ],\n        getActionsCacheList: [\"GET /repos/{owner}/{repo}/actions/caches\"],\n        getActionsCacheUsage: [\"GET /repos/{owner}/{repo}/actions/cache/usage\"],\n        getActionsCacheUsageByRepoForOrg: [\n            \"GET /orgs/{org}/actions/cache/usage-by-repository\",\n        ],\n        getActionsCacheUsageForEnterprise: [\n            \"GET /enterprises/{enterprise}/actions/cache/usage\",\n        ],\n        getActionsCacheUsageForOrg: [\"GET /orgs/{org}/actions/cache/usage\"],\n        getAllowedActionsOrganization: [\n            \"GET /orgs/{org}/actions/permissions/selected-actions\",\n        ],\n        getAllowedActionsRepository: [\n            \"GET /repos/{owner}/{repo}/actions/permissions/selected-actions\",\n        ],\n        getArtifact: [\"GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}\"],\n        getEnvironmentPublicKey: [\n            \"GET /repositories/{repository_id}/environments/{environment_name}/secrets/public-key\",\n        ],\n        getEnvironmentSecret: [\n            \"GET /repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}\",\n        ],\n        getGithubActionsDefaultWorkflowPermissionsEnterprise: [\n            \"GET /enterprises/{enterprise}/actions/permissions/workflow\",\n        ],\n        getGithubActionsDefaultWorkflowPermissionsOrganization: [\n            \"GET /orgs/{org}/actions/permissions/workflow\",\n        ],\n        getGithubActionsDefaultWorkflowPermissionsRepository: [\n            \"GET /repos/{owner}/{repo}/actions/permissions/workflow\",\n        ],\n        getGithubActionsPermissionsOrganization: [\n            \"GET /orgs/{org}/actions/permissions\",\n        ],\n        getGithubActionsPermissionsRepository: [\n            \"GET /repos/{owner}/{repo}/actions/permissions\",\n        ],\n        getJobForWorkflowRun: [\"GET /repos/{owner}/{repo}/actions/jobs/{job_id}\"],\n        getOrgPublicKey: [\"GET /orgs/{org}/actions/secrets/public-key\"],\n        getOrgSecret: [\"GET /orgs/{org}/actions/secrets/{secret_name}\"],\n        getPendingDeploymentsForRun: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments\",\n        ],\n        getRepoPermissions: [\n            \"GET /repos/{owner}/{repo}/actions/permissions\",\n            {},\n            { renamed: [\"actions\", \"getGithubActionsPermissionsRepository\"] },\n        ],\n        getRepoPublicKey: [\"GET /repos/{owner}/{repo}/actions/secrets/public-key\"],\n        getRepoSecret: [\"GET /repos/{owner}/{repo}/actions/secrets/{secret_name}\"],\n        getReviewsForRun: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/approvals\",\n        ],\n        getSelfHostedRunnerForOrg: [\"GET /orgs/{org}/actions/runners/{runner_id}\"],\n        getSelfHostedRunnerForRepo: [\n            \"GET /repos/{owner}/{repo}/actions/runners/{runner_id}\",\n        ],\n        getWorkflow: [\"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}\"],\n        getWorkflowAccessToRepository: [\n            \"GET /repos/{owner}/{repo}/actions/permissions/access\",\n        ],\n        getWorkflowRun: [\"GET /repos/{owner}/{repo}/actions/runs/{run_id}\"],\n        getWorkflowRunAttempt: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}\",\n        ],\n        getWorkflowRunUsage: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/timing\",\n        ],\n        getWorkflowUsage: [\n            \"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing\",\n        ],\n        listArtifactsForRepo: [\"GET /repos/{owner}/{repo}/actions/artifacts\"],\n        listEnvironmentSecrets: [\n            \"GET /repositories/{repository_id}/environments/{environment_name}/secrets\",\n        ],\n        listJobsForWorkflowRun: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs\",\n        ],\n        listJobsForWorkflowRunAttempt: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs\",\n        ],\n        listLabelsForSelfHostedRunnerForOrg: [\n            \"GET /orgs/{org}/actions/runners/{runner_id}/labels\",\n        ],\n        listLabelsForSelfHostedRunnerForRepo: [\n            \"GET /repos/{owner}/{repo}/actions/runners/{runner_id}/labels\",\n        ],\n        listOrgSecrets: [\"GET /orgs/{org}/actions/secrets\"],\n        listRepoSecrets: [\"GET /repos/{owner}/{repo}/actions/secrets\"],\n        listRepoWorkflows: [\"GET /repos/{owner}/{repo}/actions/workflows\"],\n        listRunnerApplicationsForOrg: [\"GET /orgs/{org}/actions/runners/downloads\"],\n        listRunnerApplicationsForRepo: [\n            \"GET /repos/{owner}/{repo}/actions/runners/downloads\",\n        ],\n        listSelectedReposForOrgSecret: [\n            \"GET /orgs/{org}/actions/secrets/{secret_name}/repositories\",\n        ],\n        listSelectedRepositoriesEnabledGithubActionsOrganization: [\n            \"GET /orgs/{org}/actions/permissions/repositories\",\n        ],\n        listSelfHostedRunnersForOrg: [\"GET /orgs/{org}/actions/runners\"],\n        listSelfHostedRunnersForRepo: [\"GET /repos/{owner}/{repo}/actions/runners\"],\n        listWorkflowRunArtifacts: [\n            \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts\",\n        ],\n        listWorkflowRuns: [\n            \"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs\",\n        ],\n        listWorkflowRunsForRepo: [\"GET /repos/{owner}/{repo}/actions/runs\"],\n        reRunJobForWorkflowRun: [\n            \"POST /repos/{owner}/{repo}/actions/jobs/{job_id}/rerun\",\n        ],\n        reRunWorkflow: [\"POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun\"],\n        reRunWorkflowFailedJobs: [\n            \"POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs\",\n        ],\n        removeAllCustomLabelsFromSelfHostedRunnerForOrg: [\n            \"DELETE /orgs/{org}/actions/runners/{runner_id}/labels\",\n        ],\n        removeAllCustomLabelsFromSelfHostedRunnerForRepo: [\n            \"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels\",\n        ],\n        removeCustomLabelFromSelfHostedRunnerForOrg: [\n            \"DELETE /orgs/{org}/actions/runners/{runner_id}/labels/{name}\",\n        ],\n        removeCustomLabelFromSelfHostedRunnerForRepo: [\n            \"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name}\",\n        ],\n        removeSelectedRepoFromOrgSecret: [\n            \"DELETE /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}\",\n        ],\n        reviewPendingDeploymentsForRun: [\n            \"POST /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments\",\n        ],\n        setAllowedActionsOrganization: [\n            \"PUT /orgs/{org}/actions/permissions/selected-actions\",\n        ],\n        setAllowedActionsRepository: [\n            \"PUT /repos/{owner}/{repo}/actions/permissions/selected-actions\",\n        ],\n        setCustomLabelsForSelfHostedRunnerForOrg: [\n            \"PUT /orgs/{org}/actions/runners/{runner_id}/labels\",\n        ],\n        setCustomLabelsForSelfHostedRunnerForRepo: [\n            \"PUT /repos/{owner}/{repo}/actions/runners/{runner_id}/labels\",\n        ],\n        setGithubActionsDefaultWorkflowPermissionsEnterprise: [\n            \"PUT /enterprises/{enterprise}/actions/permissions/workflow\",\n        ],\n        setGithubActionsDefaultWorkflowPermissionsOrganization: [\n            \"PUT /orgs/{org}/actions/permissions/workflow\",\n        ],\n        setGithubActionsDefaultWorkflowPermissionsRepository: [\n            \"PUT /repos/{owner}/{repo}/actions/permissions/workflow\",\n        ],\n        setGithubActionsPermissionsOrganization: [\n            \"PUT /orgs/{org}/actions/permissions\",\n        ],\n        setGithubActionsPermissionsRepository: [\n            \"PUT /repos/{owner}/{repo}/actions/permissions\",\n        ],\n        setSelectedReposForOrgSecret: [\n            \"PUT /orgs/{org}/actions/secrets/{secret_name}/repositories\",\n        ],\n        setSelectedRepositoriesEnabledGithubActionsOrganization: [\n            \"PUT /orgs/{org}/actions/permissions/repositories\",\n        ],\n        setWorkflowAccessToRepository: [\n            \"PUT /repos/{owner}/{repo}/actions/permissions/access\",\n        ],\n    },\n    activity: {\n        checkRepoIsStarredByAuthenticatedUser: [\"GET /user/starred/{owner}/{repo}\"],\n        deleteRepoSubscription: [\"DELETE /repos/{owner}/{repo}/subscription\"],\n        deleteThreadSubscription: [\n            \"DELETE /notifications/threads/{thread_id}/subscription\",\n        ],\n        getFeeds: [\"GET /feeds\"],\n        getRepoSubscription: [\"GET /repos/{owner}/{repo}/subscription\"],\n        getThread: [\"GET /notifications/threads/{thread_id}\"],\n        getThreadSubscriptionForAuthenticatedUser: [\n            \"GET /notifications/threads/{thread_id}/subscription\",\n        ],\n        listEventsForAuthenticatedUser: [\"GET /users/{username}/events\"],\n        listNotificationsForAuthenticatedUser: [\"GET /notifications\"],\n        listOrgEventsForAuthenticatedUser: [\n            \"GET /users/{username}/events/orgs/{org}\",\n        ],\n        listPublicEvents: [\"GET /events\"],\n        listPublicEventsForRepoNetwork: [\"GET /networks/{owner}/{repo}/events\"],\n        listPublicEventsForUser: [\"GET /users/{username}/events/public\"],\n        listPublicOrgEvents: [\"GET /orgs/{org}/events\"],\n        listReceivedEventsForUser: [\"GET /users/{username}/received_events\"],\n        listReceivedPublicEventsForUser: [\n            \"GET /users/{username}/received_events/public\",\n        ],\n        listRepoEvents: [\"GET /repos/{owner}/{repo}/events\"],\n        listRepoNotificationsForAuthenticatedUser: [\n            \"GET /repos/{owner}/{repo}/notifications\",\n        ],\n        listReposStarredByAuthenticatedUser: [\"GET /user/starred\"],\n        listReposStarredByUser: [\"GET /users/{username}/starred\"],\n        listReposWatchedByUser: [\"GET /users/{username}/subscriptions\"],\n        listStargazersForRepo: [\"GET /repos/{owner}/{repo}/stargazers\"],\n        listWatchedReposForAuthenticatedUser: [\"GET /user/subscriptions\"],\n        listWatchersForRepo: [\"GET /repos/{owner}/{repo}/subscribers\"],\n        markNotificationsAsRead: [\"PUT /notifications\"],\n        markRepoNotificationsAsRead: [\"PUT /repos/{owner}/{repo}/notifications\"],\n        markThreadAsRead: [\"PATCH /notifications/threads/{thread_id}\"],\n        setRepoSubscription: [\"PUT /repos/{owner}/{repo}/subscription\"],\n        setThreadSubscription: [\n            \"PUT /notifications/threads/{thread_id}/subscription\",\n        ],\n        starRepoForAuthenticatedUser: [\"PUT /user/starred/{owner}/{repo}\"],\n        unstarRepoForAuthenticatedUser: [\"DELETE /user/starred/{owner}/{repo}\"],\n    },\n    apps: {\n        addRepoToInstallation: [\n            \"PUT /user/installations/{installation_id}/repositories/{repository_id}\",\n            {},\n            { renamed: [\"apps\", \"addRepoToInstallationForAuthenticatedUser\"] },\n        ],\n        addRepoToInstallationForAuthenticatedUser: [\n            \"PUT /user/installations/{installation_id}/repositories/{repository_id}\",\n        ],\n        checkToken: [\"POST /applications/{client_id}/token\"],\n        createFromManifest: [\"POST /app-manifests/{code}/conversions\"],\n        createInstallationAccessToken: [\n            \"POST /app/installations/{installation_id}/access_tokens\",\n        ],\n        deleteAuthorization: [\"DELETE /applications/{client_id}/grant\"],\n        deleteInstallation: [\"DELETE /app/installations/{installation_id}\"],\n        deleteToken: [\"DELETE /applications/{client_id}/token\"],\n        getAuthenticated: [\"GET /app\"],\n        getBySlug: [\"GET /apps/{app_slug}\"],\n        getInstallation: [\"GET /app/installations/{installation_id}\"],\n        getOrgInstallation: [\"GET /orgs/{org}/installation\"],\n        getRepoInstallation: [\"GET /repos/{owner}/{repo}/installation\"],\n        getSubscriptionPlanForAccount: [\n            \"GET /marketplace_listing/accounts/{account_id}\",\n        ],\n        getSubscriptionPlanForAccountStubbed: [\n            \"GET /marketplace_listing/stubbed/accounts/{account_id}\",\n        ],\n        getUserInstallation: [\"GET /users/{username}/installation\"],\n        getWebhookConfigForApp: [\"GET /app/hook/config\"],\n        getWebhookDelivery: [\"GET /app/hook/deliveries/{delivery_id}\"],\n        listAccountsForPlan: [\"GET /marketplace_listing/plans/{plan_id}/accounts\"],\n        listAccountsForPlanStubbed: [\n            \"GET /marketplace_listing/stubbed/plans/{plan_id}/accounts\",\n        ],\n        listInstallationReposForAuthenticatedUser: [\n            \"GET /user/installations/{installation_id}/repositories\",\n        ],\n        listInstallations: [\"GET /app/installations\"],\n        listInstallationsForAuthenticatedUser: [\"GET /user/installations\"],\n        listPlans: [\"GET /marketplace_listing/plans\"],\n        listPlansStubbed: [\"GET /marketplace_listing/stubbed/plans\"],\n        listReposAccessibleToInstallation: [\"GET /installation/repositories\"],\n        listSubscriptionsForAuthenticatedUser: [\"GET /user/marketplace_purchases\"],\n        listSubscriptionsForAuthenticatedUserStubbed: [\n            \"GET /user/marketplace_purchases/stubbed\",\n        ],\n        listWebhookDeliveries: [\"GET /app/hook/deliveries\"],\n        redeliverWebhookDelivery: [\n            \"POST /app/hook/deliveries/{delivery_id}/attempts\",\n        ],\n        removeRepoFromInstallation: [\n            \"DELETE /user/installations/{installation_id}/repositories/{repository_id}\",\n            {},\n            { renamed: [\"apps\", \"removeRepoFromInstallationForAuthenticatedUser\"] },\n        ],\n        removeRepoFromInstallationForAuthenticatedUser: [\n            \"DELETE /user/installations/{installation_id}/repositories/{repository_id}\",\n        ],\n        resetToken: [\"PATCH /applications/{client_id}/token\"],\n        revokeInstallationAccessToken: [\"DELETE /installation/token\"],\n        scopeToken: [\"POST /applications/{client_id}/token/scoped\"],\n        suspendInstallation: [\"PUT /app/installations/{installation_id}/suspended\"],\n        unsuspendInstallation: [\n            \"DELETE /app/installations/{installation_id}/suspended\",\n        ],\n        updateWebhookConfigForApp: [\"PATCH /app/hook/config\"],\n    },\n    billing: {\n        getGithubActionsBillingOrg: [\"GET /orgs/{org}/settings/billing/actions\"],\n        getGithubActionsBillingUser: [\n            \"GET /users/{username}/settings/billing/actions\",\n        ],\n        getGithubAdvancedSecurityBillingGhe: [\n            \"GET /enterprises/{enterprise}/settings/billing/advanced-security\",\n        ],\n        getGithubAdvancedSecurityBillingOrg: [\n            \"GET /orgs/{org}/settings/billing/advanced-security\",\n        ],\n        getGithubPackagesBillingOrg: [\"GET /orgs/{org}/settings/billing/packages\"],\n        getGithubPackagesBillingUser: [\n            \"GET /users/{username}/settings/billing/packages\",\n        ],\n        getSharedStorageBillingOrg: [\n            \"GET /orgs/{org}/settings/billing/shared-storage\",\n        ],\n        getSharedStorageBillingUser: [\n            \"GET /users/{username}/settings/billing/shared-storage\",\n        ],\n    },\n    checks: {\n        create: [\"POST /repos/{owner}/{repo}/check-runs\"],\n        createSuite: [\"POST /repos/{owner}/{repo}/check-suites\"],\n        get: [\"GET /repos/{owner}/{repo}/check-runs/{check_run_id}\"],\n        getSuite: [\"GET /repos/{owner}/{repo}/check-suites/{check_suite_id}\"],\n        listAnnotations: [\n            \"GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations\",\n        ],\n        listForRef: [\"GET /repos/{owner}/{repo}/commits/{ref}/check-runs\"],\n        listForSuite: [\n            \"GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs\",\n        ],\n        listSuitesForRef: [\"GET /repos/{owner}/{repo}/commits/{ref}/check-suites\"],\n        rerequestRun: [\n            \"POST /repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest\",\n        ],\n        rerequestSuite: [\n            \"POST /repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest\",\n        ],\n        setSuitesPreferences: [\n            \"PATCH /repos/{owner}/{repo}/check-suites/preferences\",\n        ],\n        update: [\"PATCH /repos/{owner}/{repo}/check-runs/{check_run_id}\"],\n    },\n    codeScanning: {\n        deleteAnalysis: [\n            \"DELETE /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}{?confirm_delete}\",\n        ],\n        getAlert: [\n            \"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}\",\n            {},\n            { renamedParameters: { alert_id: \"alert_number\" } },\n        ],\n        getAnalysis: [\n            \"GET /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}\",\n        ],\n        getSarif: [\"GET /repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}\"],\n        listAlertInstances: [\n            \"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances\",\n        ],\n        listAlertsForOrg: [\"GET /orgs/{org}/code-scanning/alerts\"],\n        listAlertsForRepo: [\"GET /repos/{owner}/{repo}/code-scanning/alerts\"],\n        listAlertsInstances: [\n            \"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances\",\n            {},\n            { renamed: [\"codeScanning\", \"listAlertInstances\"] },\n        ],\n        listRecentAnalyses: [\"GET /repos/{owner}/{repo}/code-scanning/analyses\"],\n        updateAlert: [\n            \"PATCH /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}\",\n        ],\n        uploadSarif: [\"POST /repos/{owner}/{repo}/code-scanning/sarifs\"],\n    },\n    codesOfConduct: {\n        getAllCodesOfConduct: [\"GET /codes_of_conduct\"],\n        getConductCode: [\"GET /codes_of_conduct/{key}\"],\n    },\n    codespaces: {\n        addRepositoryForSecretForAuthenticatedUser: [\n            \"PUT /user/codespaces/secrets/{secret_name}/repositories/{repository_id}\",\n        ],\n        codespaceMachinesForAuthenticatedUser: [\n            \"GET /user/codespaces/{codespace_name}/machines\",\n        ],\n        createForAuthenticatedUser: [\"POST /user/codespaces\"],\n        createOrUpdateRepoSecret: [\n            \"PUT /repos/{owner}/{repo}/codespaces/secrets/{secret_name}\",\n        ],\n        createOrUpdateSecretForAuthenticatedUser: [\n            \"PUT /user/codespaces/secrets/{secret_name}\",\n        ],\n        createWithPrForAuthenticatedUser: [\n            \"POST /repos/{owner}/{repo}/pulls/{pull_number}/codespaces\",\n        ],\n        createWithRepoForAuthenticatedUser: [\n            \"POST /repos/{owner}/{repo}/codespaces\",\n        ],\n        deleteForAuthenticatedUser: [\"DELETE /user/codespaces/{codespace_name}\"],\n        deleteFromOrganization: [\n            \"DELETE /orgs/{org}/members/{username}/codespaces/{codespace_name}\",\n        ],\n        deleteRepoSecret: [\n            \"DELETE /repos/{owner}/{repo}/codespaces/secrets/{secret_name}\",\n        ],\n        deleteSecretForAuthenticatedUser: [\n            \"DELETE /user/codespaces/secrets/{secret_name}\",\n        ],\n        exportForAuthenticatedUser: [\n            \"POST /user/codespaces/{codespace_name}/exports\",\n        ],\n        getExportDetailsForAuthenticatedUser: [\n            \"GET /user/codespaces/{codespace_name}/exports/{export_id}\",\n        ],\n        getForAuthenticatedUser: [\"GET /user/codespaces/{codespace_name}\"],\n        getPublicKeyForAuthenticatedUser: [\n            \"GET /user/codespaces/secrets/public-key\",\n        ],\n        getRepoPublicKey: [\n            \"GET /repos/{owner}/{repo}/codespaces/secrets/public-key\",\n        ],\n        getRepoSecret: [\n            \"GET /repos/{owner}/{repo}/codespaces/secrets/{secret_name}\",\n        ],\n        getSecretForAuthenticatedUser: [\n            \"GET /user/codespaces/secrets/{secret_name}\",\n        ],\n        listDevcontainersInRepositoryForAuthenticatedUser: [\n            \"GET /repos/{owner}/{repo}/codespaces/devcontainers\",\n        ],\n        listForAuthenticatedUser: [\"GET /user/codespaces\"],\n        listInOrganization: [\n            \"GET /orgs/{org}/codespaces\",\n            {},\n            { renamedParameters: { org_id: \"org\" } },\n        ],\n        listInRepositoryForAuthenticatedUser: [\n            \"GET /repos/{owner}/{repo}/codespaces\",\n        ],\n        listRepoSecrets: [\"GET /repos/{owner}/{repo}/codespaces/secrets\"],\n        listRepositoriesForSecretForAuthenticatedUser: [\n            \"GET /user/codespaces/secrets/{secret_name}/repositories\",\n        ],\n        listSecretsForAuthenticatedUser: [\"GET /user/codespaces/secrets\"],\n        removeRepositoryForSecretForAuthenticatedUser: [\n            \"DELETE /user/codespaces/secrets/{secret_name}/repositories/{repository_id}\",\n        ],\n        repoMachinesForAuthenticatedUser: [\n            \"GET /repos/{owner}/{repo}/codespaces/machines\",\n        ],\n        setRepositoriesForSecretForAuthenticatedUser: [\n            \"PUT /user/codespaces/secrets/{secret_name}/repositories\",\n        ],\n        startForAuthenticatedUser: [\"POST /user/codespaces/{codespace_name}/start\"],\n        stopForAuthenticatedUser: [\"POST /user/codespaces/{codespace_name}/stop\"],\n        stopInOrganization: [\n            \"POST /orgs/{org}/members/{username}/codespaces/{codespace_name}/stop\",\n        ],\n        updateForAuthenticatedUser: [\"PATCH /user/codespaces/{codespace_name}\"],\n    },\n    dependabot: {\n        addSelectedRepoToOrgSecret: [\n            \"PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}\",\n        ],\n        createOrUpdateOrgSecret: [\n            \"PUT /orgs/{org}/dependabot/secrets/{secret_name}\",\n        ],\n        createOrUpdateRepoSecret: [\n            \"PUT /repos/{owner}/{repo}/dependabot/secrets/{secret_name}\",\n        ],\n        deleteOrgSecret: [\"DELETE /orgs/{org}/dependabot/secrets/{secret_name}\"],\n        deleteRepoSecret: [\n            \"DELETE /repos/{owner}/{repo}/dependabot/secrets/{secret_name}\",\n        ],\n        getOrgPublicKey: [\"GET /orgs/{org}/dependabot/secrets/public-key\"],\n        getOrgSecret: [\"GET /orgs/{org}/dependabot/secrets/{secret_name}\"],\n        getRepoPublicKey: [\n            \"GET /repos/{owner}/{repo}/dependabot/secrets/public-key\",\n        ],\n        getRepoSecret: [\n            \"GET /repos/{owner}/{repo}/dependabot/secrets/{secret_name}\",\n        ],\n        listOrgSecrets: [\"GET /orgs/{org}/dependabot/secrets\"],\n        listRepoSecrets: [\"GET /repos/{owner}/{repo}/dependabot/secrets\"],\n        listSelectedReposForOrgSecret: [\n            \"GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories\",\n        ],\n        removeSelectedRepoFromOrgSecret: [\n            \"DELETE /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}\",\n        ],\n        setSelectedReposForOrgSecret: [\n            \"PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories\",\n        ],\n    },\n    dependencyGraph: {\n        createRepositorySnapshot: [\n            \"POST /repos/{owner}/{repo}/dependency-graph/snapshots\",\n        ],\n        diffRange: [\n            \"GET /repos/{owner}/{repo}/dependency-graph/compare/{basehead}\",\n        ],\n    },\n    emojis: { get: [\"GET /emojis\"] },\n    enterpriseAdmin: {\n        addCustomLabelsToSelfHostedRunnerForEnterprise: [\n            \"POST /enterprises/{enterprise}/actions/runners/{runner_id}/labels\",\n        ],\n        disableSelectedOrganizationGithubActionsEnterprise: [\n            \"DELETE /enterprises/{enterprise}/actions/permissions/organizations/{org_id}\",\n        ],\n        enableSelectedOrganizationGithubActionsEnterprise: [\n            \"PUT /enterprises/{enterprise}/actions/permissions/organizations/{org_id}\",\n        ],\n        getAllowedActionsEnterprise: [\n            \"GET /enterprises/{enterprise}/actions/permissions/selected-actions\",\n        ],\n        getGithubActionsPermissionsEnterprise: [\n            \"GET /enterprises/{enterprise}/actions/permissions\",\n        ],\n        getServerStatistics: [\n            \"GET /enterprise-installation/{enterprise_or_org}/server-statistics\",\n        ],\n        listLabelsForSelfHostedRunnerForEnterprise: [\n            \"GET /enterprises/{enterprise}/actions/runners/{runner_id}/labels\",\n        ],\n        listSelectedOrganizationsEnabledGithubActionsEnterprise: [\n            \"GET /enterprises/{enterprise}/actions/permissions/organizations\",\n        ],\n        removeAllCustomLabelsFromSelfHostedRunnerForEnterprise: [\n            \"DELETE /enterprises/{enterprise}/actions/runners/{runner_id}/labels\",\n        ],\n        removeCustomLabelFromSelfHostedRunnerForEnterprise: [\n            \"DELETE /enterprises/{enterprise}/actions/runners/{runner_id}/labels/{name}\",\n        ],\n        setAllowedActionsEnterprise: [\n            \"PUT /enterprises/{enterprise}/actions/permissions/selected-actions\",\n        ],\n        setCustomLabelsForSelfHostedRunnerForEnterprise: [\n            \"PUT /enterprises/{enterprise}/actions/runners/{runner_id}/labels\",\n        ],\n        setGithubActionsPermissionsEnterprise: [\n            \"PUT /enterprises/{enterprise}/actions/permissions\",\n        ],\n        setSelectedOrganizationsEnabledGithubActionsEnterprise: [\n            \"PUT /enterprises/{enterprise}/actions/permissions/organizations\",\n        ],\n    },\n    gists: {\n        checkIsStarred: [\"GET /gists/{gist_id}/star\"],\n        create: [\"POST /gists\"],\n        createComment: [\"POST /gists/{gist_id}/comments\"],\n        delete: [\"DELETE /gists/{gist_id}\"],\n        deleteComment: [\"DELETE /gists/{gist_id}/comments/{comment_id}\"],\n        fork: [\"POST /gists/{gist_id}/forks\"],\n        get: [\"GET /gists/{gist_id}\"],\n        getComment: [\"GET /gists/{gist_id}/comments/{comment_id}\"],\n        getRevision: [\"GET /gists/{gist_id}/{sha}\"],\n        list: [\"GET /gists\"],\n        listComments: [\"GET /gists/{gist_id}/comments\"],\n        listCommits: [\"GET /gists/{gist_id}/commits\"],\n        listForUser: [\"GET /users/{username}/gists\"],\n        listForks: [\"GET /gists/{gist_id}/forks\"],\n        listPublic: [\"GET /gists/public\"],\n        listStarred: [\"GET /gists/starred\"],\n        star: [\"PUT /gists/{gist_id}/star\"],\n        unstar: [\"DELETE /gists/{gist_id}/star\"],\n        update: [\"PATCH /gists/{gist_id}\"],\n        updateComment: [\"PATCH /gists/{gist_id}/comments/{comment_id}\"],\n    },\n    git: {\n        createBlob: [\"POST /repos/{owner}/{repo}/git/blobs\"],\n        createCommit: [\"POST /repos/{owner}/{repo}/git/commits\"],\n        createRef: [\"POST /repos/{owner}/{repo}/git/refs\"],\n        createTag: [\"POST /repos/{owner}/{repo}/git/tags\"],\n        createTree: [\"POST /repos/{owner}/{repo}/git/trees\"],\n        deleteRef: [\"DELETE /repos/{owner}/{repo}/git/refs/{ref}\"],\n        getBlob: [\"GET /repos/{owner}/{repo}/git/blobs/{file_sha}\"],\n        getCommit: [\"GET /repos/{owner}/{repo}/git/commits/{commit_sha}\"],\n        getRef: [\"GET /repos/{owner}/{repo}/git/ref/{ref}\"],\n        getTag: [\"GET /repos/{owner}/{repo}/git/tags/{tag_sha}\"],\n        getTree: [\"GET /repos/{owner}/{repo}/git/trees/{tree_sha}\"],\n        listMatchingRefs: [\"GET /repos/{owner}/{repo}/git/matching-refs/{ref}\"],\n        updateRef: [\"PATCH /repos/{owner}/{repo}/git/refs/{ref}\"],\n    },\n    gitignore: {\n        getAllTemplates: [\"GET /gitignore/templates\"],\n        getTemplate: [\"GET /gitignore/templates/{name}\"],\n    },\n    interactions: {\n        getRestrictionsForAuthenticatedUser: [\"GET /user/interaction-limits\"],\n        getRestrictionsForOrg: [\"GET /orgs/{org}/interaction-limits\"],\n        getRestrictionsForRepo: [\"GET /repos/{owner}/{repo}/interaction-limits\"],\n        getRestrictionsForYourPublicRepos: [\n            \"GET /user/interaction-limits\",\n            {},\n            { renamed: [\"interactions\", \"getRestrictionsForAuthenticatedUser\"] },\n        ],\n        removeRestrictionsForAuthenticatedUser: [\"DELETE /user/interaction-limits\"],\n        removeRestrictionsForOrg: [\"DELETE /orgs/{org}/interaction-limits\"],\n        removeRestrictionsForRepo: [\n            \"DELETE /repos/{owner}/{repo}/interaction-limits\",\n        ],\n        removeRestrictionsForYourPublicRepos: [\n            \"DELETE /user/interaction-limits\",\n            {},\n            { renamed: [\"interactions\", \"removeRestrictionsForAuthenticatedUser\"] },\n        ],\n        setRestrictionsForAuthenticatedUser: [\"PUT /user/interaction-limits\"],\n        setRestrictionsForOrg: [\"PUT /orgs/{org}/interaction-limits\"],\n        setRestrictionsForRepo: [\"PUT /repos/{owner}/{repo}/interaction-limits\"],\n        setRestrictionsForYourPublicRepos: [\n            \"PUT /user/interaction-limits\",\n            {},\n            { renamed: [\"interactions\", \"setRestrictionsForAuthenticatedUser\"] },\n        ],\n    },\n    issues: {\n        addAssignees: [\n            \"POST /repos/{owner}/{repo}/issues/{issue_number}/assignees\",\n        ],\n        addLabels: [\"POST /repos/{owner}/{repo}/issues/{issue_number}/labels\"],\n        checkUserCanBeAssigned: [\"GET /repos/{owner}/{repo}/assignees/{assignee}\"],\n        create: [\"POST /repos/{owner}/{repo}/issues\"],\n        createComment: [\n            \"POST /repos/{owner}/{repo}/issues/{issue_number}/comments\",\n        ],\n        createLabel: [\"POST /repos/{owner}/{repo}/labels\"],\n        createMilestone: [\"POST /repos/{owner}/{repo}/milestones\"],\n        deleteComment: [\n            \"DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}\",\n        ],\n        deleteLabel: [\"DELETE /repos/{owner}/{repo}/labels/{name}\"],\n        deleteMilestone: [\n            \"DELETE /repos/{owner}/{repo}/milestones/{milestone_number}\",\n        ],\n        get: [\"GET /repos/{owner}/{repo}/issues/{issue_number}\"],\n        getComment: [\"GET /repos/{owner}/{repo}/issues/comments/{comment_id}\"],\n        getEvent: [\"GET /repos/{owner}/{repo}/issues/events/{event_id}\"],\n        getLabel: [\"GET /repos/{owner}/{repo}/labels/{name}\"],\n        getMilestone: [\"GET /repos/{owner}/{repo}/milestones/{milestone_number}\"],\n        list: [\"GET /issues\"],\n        listAssignees: [\"GET /repos/{owner}/{repo}/assignees\"],\n        listComments: [\"GET /repos/{owner}/{repo}/issues/{issue_number}/comments\"],\n        listCommentsForRepo: [\"GET /repos/{owner}/{repo}/issues/comments\"],\n        listEvents: [\"GET /repos/{owner}/{repo}/issues/{issue_number}/events\"],\n        listEventsForRepo: [\"GET /repos/{owner}/{repo}/issues/events\"],\n        listEventsForTimeline: [\n            \"GET /repos/{owner}/{repo}/issues/{issue_number}/timeline\",\n        ],\n        listForAuthenticatedUser: [\"GET /user/issues\"],\n        listForOrg: [\"GET /orgs/{org}/issues\"],\n        listForRepo: [\"GET /repos/{owner}/{repo}/issues\"],\n        listLabelsForMilestone: [\n            \"GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels\",\n        ],\n        listLabelsForRepo: [\"GET /repos/{owner}/{repo}/labels\"],\n        listLabelsOnIssue: [\n            \"GET /repos/{owner}/{repo}/issues/{issue_number}/labels\",\n        ],\n        listMilestones: [\"GET /repos/{owner}/{repo}/milestones\"],\n        lock: [\"PUT /repos/{owner}/{repo}/issues/{issue_number}/lock\"],\n        removeAllLabels: [\n            \"DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels\",\n        ],\n        removeAssignees: [\n            \"DELETE /repos/{owner}/{repo}/issues/{issue_number}/assignees\",\n        ],\n        removeLabel: [\n            \"DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels/{name}\",\n        ],\n        setLabels: [\"PUT /repos/{owner}/{repo}/issues/{issue_number}/labels\"],\n        unlock: [\"DELETE /repos/{owner}/{repo}/issues/{issue_number}/lock\"],\n        update: [\"PATCH /repos/{owner}/{repo}/issues/{issue_number}\"],\n        updateComment: [\"PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}\"],\n        updateLabel: [\"PATCH /repos/{owner}/{repo}/labels/{name}\"],\n        updateMilestone: [\n            \"PATCH /repos/{owner}/{repo}/milestones/{milestone_number}\",\n        ],\n    },\n    licenses: {\n        get: [\"GET /licenses/{license}\"],\n        getAllCommonlyUsed: [\"GET /licenses\"],\n        getForRepo: [\"GET /repos/{owner}/{repo}/license\"],\n    },\n    markdown: {\n        render: [\"POST /markdown\"],\n        renderRaw: [\n            \"POST /markdown/raw\",\n            { headers: { \"content-type\": \"text/plain; charset=utf-8\" } },\n        ],\n    },\n    meta: {\n        get: [\"GET /meta\"],\n        getOctocat: [\"GET /octocat\"],\n        getZen: [\"GET /zen\"],\n        root: [\"GET /\"],\n    },\n    migrations: {\n        cancelImport: [\"DELETE /repos/{owner}/{repo}/import\"],\n        deleteArchiveForAuthenticatedUser: [\n            \"DELETE /user/migrations/{migration_id}/archive\",\n        ],\n        deleteArchiveForOrg: [\n            \"DELETE /orgs/{org}/migrations/{migration_id}/archive\",\n        ],\n        downloadArchiveForOrg: [\n            \"GET /orgs/{org}/migrations/{migration_id}/archive\",\n        ],\n        getArchiveForAuthenticatedUser: [\n            \"GET /user/migrations/{migration_id}/archive\",\n        ],\n        getCommitAuthors: [\"GET /repos/{owner}/{repo}/import/authors\"],\n        getImportStatus: [\"GET /repos/{owner}/{repo}/import\"],\n        getLargeFiles: [\"GET /repos/{owner}/{repo}/import/large_files\"],\n        getStatusForAuthenticatedUser: [\"GET /user/migrations/{migration_id}\"],\n        getStatusForOrg: [\"GET /orgs/{org}/migrations/{migration_id}\"],\n        listForAuthenticatedUser: [\"GET /user/migrations\"],\n        listForOrg: [\"GET /orgs/{org}/migrations\"],\n        listReposForAuthenticatedUser: [\n            \"GET /user/migrations/{migration_id}/repositories\",\n        ],\n        listReposForOrg: [\"GET /orgs/{org}/migrations/{migration_id}/repositories\"],\n        listReposForUser: [\n            \"GET /user/migrations/{migration_id}/repositories\",\n            {},\n            { renamed: [\"migrations\", \"listReposForAuthenticatedUser\"] },\n        ],\n        mapCommitAuthor: [\"PATCH /repos/{owner}/{repo}/import/authors/{author_id}\"],\n        setLfsPreference: [\"PATCH /repos/{owner}/{repo}/import/lfs\"],\n        startForAuthenticatedUser: [\"POST /user/migrations\"],\n        startForOrg: [\"POST /orgs/{org}/migrations\"],\n        startImport: [\"PUT /repos/{owner}/{repo}/import\"],\n        unlockRepoForAuthenticatedUser: [\n            \"DELETE /user/migrations/{migration_id}/repos/{repo_name}/lock\",\n        ],\n        unlockRepoForOrg: [\n            \"DELETE /orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock\",\n        ],\n        updateImport: [\"PATCH /repos/{owner}/{repo}/import\"],\n    },\n    orgs: {\n        blockUser: [\"PUT /orgs/{org}/blocks/{username}\"],\n        cancelInvitation: [\"DELETE /orgs/{org}/invitations/{invitation_id}\"],\n        checkBlockedUser: [\"GET /orgs/{org}/blocks/{username}\"],\n        checkMembershipForUser: [\"GET /orgs/{org}/members/{username}\"],\n        checkPublicMembershipForUser: [\"GET /orgs/{org}/public_members/{username}\"],\n        convertMemberToOutsideCollaborator: [\n            \"PUT /orgs/{org}/outside_collaborators/{username}\",\n        ],\n        createInvitation: [\"POST /orgs/{org}/invitations\"],\n        createWebhook: [\"POST /orgs/{org}/hooks\"],\n        deleteWebhook: [\"DELETE /orgs/{org}/hooks/{hook_id}\"],\n        get: [\"GET /orgs/{org}\"],\n        getMembershipForAuthenticatedUser: [\"GET /user/memberships/orgs/{org}\"],\n        getMembershipForUser: [\"GET /orgs/{org}/memberships/{username}\"],\n        getWebhook: [\"GET /orgs/{org}/hooks/{hook_id}\"],\n        getWebhookConfigForOrg: [\"GET /orgs/{org}/hooks/{hook_id}/config\"],\n        getWebhookDelivery: [\n            \"GET /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}\",\n        ],\n        list: [\"GET /organizations\"],\n        listAppInstallations: [\"GET /orgs/{org}/installations\"],\n        listBlockedUsers: [\"GET /orgs/{org}/blocks\"],\n        listCustomRoles: [\"GET /organizations/{organization_id}/custom_roles\"],\n        listFailedInvitations: [\"GET /orgs/{org}/failed_invitations\"],\n        listForAuthenticatedUser: [\"GET /user/orgs\"],\n        listForUser: [\"GET /users/{username}/orgs\"],\n        listInvitationTeams: [\"GET /orgs/{org}/invitations/{invitation_id}/teams\"],\n        listMembers: [\"GET /orgs/{org}/members\"],\n        listMembershipsForAuthenticatedUser: [\"GET /user/memberships/orgs\"],\n        listOutsideCollaborators: [\"GET /orgs/{org}/outside_collaborators\"],\n        listPendingInvitations: [\"GET /orgs/{org}/invitations\"],\n        listPublicMembers: [\"GET /orgs/{org}/public_members\"],\n        listWebhookDeliveries: [\"GET /orgs/{org}/hooks/{hook_id}/deliveries\"],\n        listWebhooks: [\"GET /orgs/{org}/hooks\"],\n        pingWebhook: [\"POST /orgs/{org}/hooks/{hook_id}/pings\"],\n        redeliverWebhookDelivery: [\n            \"POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts\",\n        ],\n        removeMember: [\"DELETE /orgs/{org}/members/{username}\"],\n        removeMembershipForUser: [\"DELETE /orgs/{org}/memberships/{username}\"],\n        removeOutsideCollaborator: [\n            \"DELETE /orgs/{org}/outside_collaborators/{username}\",\n        ],\n        removePublicMembershipForAuthenticatedUser: [\n            \"DELETE /orgs/{org}/public_members/{username}\",\n        ],\n        setMembershipForUser: [\"PUT /orgs/{org}/memberships/{username}\"],\n        setPublicMembershipForAuthenticatedUser: [\n            \"PUT /orgs/{org}/public_members/{username}\",\n        ],\n        unblockUser: [\"DELETE /orgs/{org}/blocks/{username}\"],\n        update: [\"PATCH /orgs/{org}\"],\n        updateMembershipForAuthenticatedUser: [\n            \"PATCH /user/memberships/orgs/{org}\",\n        ],\n        updateWebhook: [\"PATCH /orgs/{org}/hooks/{hook_id}\"],\n        updateWebhookConfigForOrg: [\"PATCH /orgs/{org}/hooks/{hook_id}/config\"],\n    },\n    packages: {\n        deletePackageForAuthenticatedUser: [\n            \"DELETE /user/packages/{package_type}/{package_name}\",\n        ],\n        deletePackageForOrg: [\n            \"DELETE /orgs/{org}/packages/{package_type}/{package_name}\",\n        ],\n        deletePackageForUser: [\n            \"DELETE /users/{username}/packages/{package_type}/{package_name}\",\n        ],\n        deletePackageVersionForAuthenticatedUser: [\n            \"DELETE /user/packages/{package_type}/{package_name}/versions/{package_version_id}\",\n        ],\n        deletePackageVersionForOrg: [\n            \"DELETE /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}\",\n        ],\n        deletePackageVersionForUser: [\n            \"DELETE /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}\",\n        ],\n        getAllPackageVersionsForAPackageOwnedByAnOrg: [\n            \"GET /orgs/{org}/packages/{package_type}/{package_name}/versions\",\n            {},\n            { renamed: [\"packages\", \"getAllPackageVersionsForPackageOwnedByOrg\"] },\n        ],\n        getAllPackageVersionsForAPackageOwnedByTheAuthenticatedUser: [\n            \"GET /user/packages/{package_type}/{package_name}/versions\",\n            {},\n            {\n                renamed: [\n                    \"packages\",\n                    \"getAllPackageVersionsForPackageOwnedByAuthenticatedUser\",\n                ],\n            },\n        ],\n        getAllPackageVersionsForPackageOwnedByAuthenticatedUser: [\n            \"GET /user/packages/{package_type}/{package_name}/versions\",\n        ],\n        getAllPackageVersionsForPackageOwnedByOrg: [\n            \"GET /orgs/{org}/packages/{package_type}/{package_name}/versions\",\n        ],\n        getAllPackageVersionsForPackageOwnedByUser: [\n            \"GET /users/{username}/packages/{package_type}/{package_name}/versions\",\n        ],\n        getPackageForAuthenticatedUser: [\n            \"GET /user/packages/{package_type}/{package_name}\",\n        ],\n        getPackageForOrganization: [\n            \"GET /orgs/{org}/packages/{package_type}/{package_name}\",\n        ],\n        getPackageForUser: [\n            \"GET /users/{username}/packages/{package_type}/{package_name}\",\n        ],\n        getPackageVersionForAuthenticatedUser: [\n            \"GET /user/packages/{package_type}/{package_name}/versions/{package_version_id}\",\n        ],\n        getPackageVersionForOrganization: [\n            \"GET /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}\",\n        ],\n        getPackageVersionForUser: [\n            \"GET /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}\",\n        ],\n        listPackagesForAuthenticatedUser: [\"GET /user/packages\"],\n        listPackagesForOrganization: [\"GET /orgs/{org}/packages\"],\n        listPackagesForUser: [\"GET /users/{username}/packages\"],\n        restorePackageForAuthenticatedUser: [\n            \"POST /user/packages/{package_type}/{package_name}/restore{?token}\",\n        ],\n        restorePackageForOrg: [\n            \"POST /orgs/{org}/packages/{package_type}/{package_name}/restore{?token}\",\n        ],\n        restorePackageForUser: [\n            \"POST /users/{username}/packages/{package_type}/{package_name}/restore{?token}\",\n        ],\n        restorePackageVersionForAuthenticatedUser: [\n            \"POST /user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore\",\n        ],\n        restorePackageVersionForOrg: [\n            \"POST /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore\",\n        ],\n        restorePackageVersionForUser: [\n            \"POST /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore\",\n        ],\n    },\n    projects: {\n        addCollaborator: [\"PUT /projects/{project_id}/collaborators/{username}\"],\n        createCard: [\"POST /projects/columns/{column_id}/cards\"],\n        createColumn: [\"POST /projects/{project_id}/columns\"],\n        createForAuthenticatedUser: [\"POST /user/projects\"],\n        createForOrg: [\"POST /orgs/{org}/projects\"],\n        createForRepo: [\"POST /repos/{owner}/{repo}/projects\"],\n        delete: [\"DELETE /projects/{project_id}\"],\n        deleteCard: [\"DELETE /projects/columns/cards/{card_id}\"],\n        deleteColumn: [\"DELETE /projects/columns/{column_id}\"],\n        get: [\"GET /projects/{project_id}\"],\n        getCard: [\"GET /projects/columns/cards/{card_id}\"],\n        getColumn: [\"GET /projects/columns/{column_id}\"],\n        getPermissionForUser: [\n            \"GET /projects/{project_id}/collaborators/{username}/permission\",\n        ],\n        listCards: [\"GET /projects/columns/{column_id}/cards\"],\n        listCollaborators: [\"GET /projects/{project_id}/collaborators\"],\n        listColumns: [\"GET /projects/{project_id}/columns\"],\n        listForOrg: [\"GET /orgs/{org}/projects\"],\n        listForRepo: [\"GET /repos/{owner}/{repo}/projects\"],\n        listForUser: [\"GET /users/{username}/projects\"],\n        moveCard: [\"POST /projects/columns/cards/{card_id}/moves\"],\n        moveColumn: [\"POST /projects/columns/{column_id}/moves\"],\n        removeCollaborator: [\n            \"DELETE /projects/{project_id}/collaborators/{username}\",\n        ],\n        update: [\"PATCH /projects/{project_id}\"],\n        updateCard: [\"PATCH /projects/columns/cards/{card_id}\"],\n        updateColumn: [\"PATCH /projects/columns/{column_id}\"],\n    },\n    pulls: {\n        checkIfMerged: [\"GET /repos/{owner}/{repo}/pulls/{pull_number}/merge\"],\n        create: [\"POST /repos/{owner}/{repo}/pulls\"],\n        createReplyForReviewComment: [\n            \"POST /repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies\",\n        ],\n        createReview: [\"POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews\"],\n        createReviewComment: [\n            \"POST /repos/{owner}/{repo}/pulls/{pull_number}/comments\",\n        ],\n        deletePendingReview: [\n            \"DELETE /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}\",\n        ],\n        deleteReviewComment: [\n            \"DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}\",\n        ],\n        dismissReview: [\n            \"PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals\",\n        ],\n        get: [\"GET /repos/{owner}/{repo}/pulls/{pull_number}\"],\n        getReview: [\n            \"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}\",\n        ],\n        getReviewComment: [\"GET /repos/{owner}/{repo}/pulls/comments/{comment_id}\"],\n        list: [\"GET /repos/{owner}/{repo}/pulls\"],\n        listCommentsForReview: [\n            \"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments\",\n        ],\n        listCommits: [\"GET /repos/{owner}/{repo}/pulls/{pull_number}/commits\"],\n        listFiles: [\"GET /repos/{owner}/{repo}/pulls/{pull_number}/files\"],\n        listRequestedReviewers: [\n            \"GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers\",\n        ],\n        listReviewComments: [\n            \"GET /repos/{owner}/{repo}/pulls/{pull_number}/comments\",\n        ],\n        listReviewCommentsForRepo: [\"GET /repos/{owner}/{repo}/pulls/comments\"],\n        listReviews: [\"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews\"],\n        merge: [\"PUT /repos/{owner}/{repo}/pulls/{pull_number}/merge\"],\n        removeRequestedReviewers: [\n            \"DELETE /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers\",\n        ],\n        requestReviewers: [\n            \"POST /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers\",\n        ],\n        submitReview: [\n            \"POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events\",\n        ],\n        update: [\"PATCH /repos/{owner}/{repo}/pulls/{pull_number}\"],\n        updateBranch: [\n            \"PUT /repos/{owner}/{repo}/pulls/{pull_number}/update-branch\",\n        ],\n        updateReview: [\n            \"PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}\",\n        ],\n        updateReviewComment: [\n            \"PATCH /repos/{owner}/{repo}/pulls/comments/{comment_id}\",\n        ],\n    },\n    rateLimit: { get: [\"GET /rate_limit\"] },\n    reactions: {\n        createForCommitComment: [\n            \"POST /repos/{owner}/{repo}/comments/{comment_id}/reactions\",\n        ],\n        createForIssue: [\n            \"POST /repos/{owner}/{repo}/issues/{issue_number}/reactions\",\n        ],\n        createForIssueComment: [\n            \"POST /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions\",\n        ],\n        createForPullRequestReviewComment: [\n            \"POST /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions\",\n        ],\n        createForRelease: [\n            \"POST /repos/{owner}/{repo}/releases/{release_id}/reactions\",\n        ],\n        createForTeamDiscussionCommentInOrg: [\n            \"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions\",\n        ],\n        createForTeamDiscussionInOrg: [\n            \"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions\",\n        ],\n        deleteForCommitComment: [\n            \"DELETE /repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}\",\n        ],\n        deleteForIssue: [\n            \"DELETE /repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}\",\n        ],\n        deleteForIssueComment: [\n            \"DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}\",\n        ],\n        deleteForPullRequestComment: [\n            \"DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}\",\n        ],\n        deleteForRelease: [\n            \"DELETE /repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}\",\n        ],\n        deleteForTeamDiscussion: [\n            \"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}\",\n        ],\n        deleteForTeamDiscussionComment: [\n            \"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}\",\n        ],\n        listForCommitComment: [\n            \"GET /repos/{owner}/{repo}/comments/{comment_id}/reactions\",\n        ],\n        listForIssue: [\"GET /repos/{owner}/{repo}/issues/{issue_number}/reactions\"],\n        listForIssueComment: [\n            \"GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions\",\n        ],\n        listForPullRequestReviewComment: [\n            \"GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions\",\n        ],\n        listForRelease: [\n            \"GET /repos/{owner}/{repo}/releases/{release_id}/reactions\",\n        ],\n        listForTeamDiscussionCommentInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions\",\n        ],\n        listForTeamDiscussionInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions\",\n        ],\n    },\n    repos: {\n        acceptInvitation: [\n            \"PATCH /user/repository_invitations/{invitation_id}\",\n            {},\n            { renamed: [\"repos\", \"acceptInvitationForAuthenticatedUser\"] },\n        ],\n        acceptInvitationForAuthenticatedUser: [\n            \"PATCH /user/repository_invitations/{invitation_id}\",\n        ],\n        addAppAccessRestrictions: [\n            \"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps\",\n            {},\n            { mapToData: \"apps\" },\n        ],\n        addCollaborator: [\"PUT /repos/{owner}/{repo}/collaborators/{username}\"],\n        addStatusCheckContexts: [\n            \"POST /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts\",\n            {},\n            { mapToData: \"contexts\" },\n        ],\n        addTeamAccessRestrictions: [\n            \"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams\",\n            {},\n            { mapToData: \"teams\" },\n        ],\n        addUserAccessRestrictions: [\n            \"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users\",\n            {},\n            { mapToData: \"users\" },\n        ],\n        checkCollaborator: [\"GET /repos/{owner}/{repo}/collaborators/{username}\"],\n        checkVulnerabilityAlerts: [\n            \"GET /repos/{owner}/{repo}/vulnerability-alerts\",\n        ],\n        codeownersErrors: [\"GET /repos/{owner}/{repo}/codeowners/errors\"],\n        compareCommits: [\"GET /repos/{owner}/{repo}/compare/{base}...{head}\"],\n        compareCommitsWithBasehead: [\n            \"GET /repos/{owner}/{repo}/compare/{basehead}\",\n        ],\n        createAutolink: [\"POST /repos/{owner}/{repo}/autolinks\"],\n        createCommitComment: [\n            \"POST /repos/{owner}/{repo}/commits/{commit_sha}/comments\",\n        ],\n        createCommitSignatureProtection: [\n            \"POST /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures\",\n        ],\n        createCommitStatus: [\"POST /repos/{owner}/{repo}/statuses/{sha}\"],\n        createDeployKey: [\"POST /repos/{owner}/{repo}/keys\"],\n        createDeployment: [\"POST /repos/{owner}/{repo}/deployments\"],\n        createDeploymentStatus: [\n            \"POST /repos/{owner}/{repo}/deployments/{deployment_id}/statuses\",\n        ],\n        createDispatchEvent: [\"POST /repos/{owner}/{repo}/dispatches\"],\n        createForAuthenticatedUser: [\"POST /user/repos\"],\n        createFork: [\"POST /repos/{owner}/{repo}/forks\"],\n        createInOrg: [\"POST /orgs/{org}/repos\"],\n        createOrUpdateEnvironment: [\n            \"PUT /repos/{owner}/{repo}/environments/{environment_name}\",\n        ],\n        createOrUpdateFileContents: [\"PUT /repos/{owner}/{repo}/contents/{path}\"],\n        createPagesSite: [\"POST /repos/{owner}/{repo}/pages\"],\n        createRelease: [\"POST /repos/{owner}/{repo}/releases\"],\n        createTagProtection: [\"POST /repos/{owner}/{repo}/tags/protection\"],\n        createUsingTemplate: [\n            \"POST /repos/{template_owner}/{template_repo}/generate\",\n        ],\n        createWebhook: [\"POST /repos/{owner}/{repo}/hooks\"],\n        declineInvitation: [\n            \"DELETE /user/repository_invitations/{invitation_id}\",\n            {},\n            { renamed: [\"repos\", \"declineInvitationForAuthenticatedUser\"] },\n        ],\n        declineInvitationForAuthenticatedUser: [\n            \"DELETE /user/repository_invitations/{invitation_id}\",\n        ],\n        delete: [\"DELETE /repos/{owner}/{repo}\"],\n        deleteAccessRestrictions: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions\",\n        ],\n        deleteAdminBranchProtection: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins\",\n        ],\n        deleteAnEnvironment: [\n            \"DELETE /repos/{owner}/{repo}/environments/{environment_name}\",\n        ],\n        deleteAutolink: [\"DELETE /repos/{owner}/{repo}/autolinks/{autolink_id}\"],\n        deleteBranchProtection: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection\",\n        ],\n        deleteCommitComment: [\"DELETE /repos/{owner}/{repo}/comments/{comment_id}\"],\n        deleteCommitSignatureProtection: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures\",\n        ],\n        deleteDeployKey: [\"DELETE /repos/{owner}/{repo}/keys/{key_id}\"],\n        deleteDeployment: [\n            \"DELETE /repos/{owner}/{repo}/deployments/{deployment_id}\",\n        ],\n        deleteFile: [\"DELETE /repos/{owner}/{repo}/contents/{path}\"],\n        deleteInvitation: [\n            \"DELETE /repos/{owner}/{repo}/invitations/{invitation_id}\",\n        ],\n        deletePagesSite: [\"DELETE /repos/{owner}/{repo}/pages\"],\n        deletePullRequestReviewProtection: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews\",\n        ],\n        deleteRelease: [\"DELETE /repos/{owner}/{repo}/releases/{release_id}\"],\n        deleteReleaseAsset: [\n            \"DELETE /repos/{owner}/{repo}/releases/assets/{asset_id}\",\n        ],\n        deleteTagProtection: [\n            \"DELETE /repos/{owner}/{repo}/tags/protection/{tag_protection_id}\",\n        ],\n        deleteWebhook: [\"DELETE /repos/{owner}/{repo}/hooks/{hook_id}\"],\n        disableAutomatedSecurityFixes: [\n            \"DELETE /repos/{owner}/{repo}/automated-security-fixes\",\n        ],\n        disableLfsForRepo: [\"DELETE /repos/{owner}/{repo}/lfs\"],\n        disableVulnerabilityAlerts: [\n            \"DELETE /repos/{owner}/{repo}/vulnerability-alerts\",\n        ],\n        downloadArchive: [\n            \"GET /repos/{owner}/{repo}/zipball/{ref}\",\n            {},\n            { renamed: [\"repos\", \"downloadZipballArchive\"] },\n        ],\n        downloadTarballArchive: [\"GET /repos/{owner}/{repo}/tarball/{ref}\"],\n        downloadZipballArchive: [\"GET /repos/{owner}/{repo}/zipball/{ref}\"],\n        enableAutomatedSecurityFixes: [\n            \"PUT /repos/{owner}/{repo}/automated-security-fixes\",\n        ],\n        enableLfsForRepo: [\"PUT /repos/{owner}/{repo}/lfs\"],\n        enableVulnerabilityAlerts: [\n            \"PUT /repos/{owner}/{repo}/vulnerability-alerts\",\n        ],\n        generateReleaseNotes: [\n            \"POST /repos/{owner}/{repo}/releases/generate-notes\",\n        ],\n        get: [\"GET /repos/{owner}/{repo}\"],\n        getAccessRestrictions: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions\",\n        ],\n        getAdminBranchProtection: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins\",\n        ],\n        getAllEnvironments: [\"GET /repos/{owner}/{repo}/environments\"],\n        getAllStatusCheckContexts: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts\",\n        ],\n        getAllTopics: [\"GET /repos/{owner}/{repo}/topics\"],\n        getAppsWithAccessToProtectedBranch: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps\",\n        ],\n        getAutolink: [\"GET /repos/{owner}/{repo}/autolinks/{autolink_id}\"],\n        getBranch: [\"GET /repos/{owner}/{repo}/branches/{branch}\"],\n        getBranchProtection: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection\",\n        ],\n        getClones: [\"GET /repos/{owner}/{repo}/traffic/clones\"],\n        getCodeFrequencyStats: [\"GET /repos/{owner}/{repo}/stats/code_frequency\"],\n        getCollaboratorPermissionLevel: [\n            \"GET /repos/{owner}/{repo}/collaborators/{username}/permission\",\n        ],\n        getCombinedStatusForRef: [\"GET /repos/{owner}/{repo}/commits/{ref}/status\"],\n        getCommit: [\"GET /repos/{owner}/{repo}/commits/{ref}\"],\n        getCommitActivityStats: [\"GET /repos/{owner}/{repo}/stats/commit_activity\"],\n        getCommitComment: [\"GET /repos/{owner}/{repo}/comments/{comment_id}\"],\n        getCommitSignatureProtection: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures\",\n        ],\n        getCommunityProfileMetrics: [\"GET /repos/{owner}/{repo}/community/profile\"],\n        getContent: [\"GET /repos/{owner}/{repo}/contents/{path}\"],\n        getContributorsStats: [\"GET /repos/{owner}/{repo}/stats/contributors\"],\n        getDeployKey: [\"GET /repos/{owner}/{repo}/keys/{key_id}\"],\n        getDeployment: [\"GET /repos/{owner}/{repo}/deployments/{deployment_id}\"],\n        getDeploymentStatus: [\n            \"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}\",\n        ],\n        getEnvironment: [\n            \"GET /repos/{owner}/{repo}/environments/{environment_name}\",\n        ],\n        getLatestPagesBuild: [\"GET /repos/{owner}/{repo}/pages/builds/latest\"],\n        getLatestRelease: [\"GET /repos/{owner}/{repo}/releases/latest\"],\n        getPages: [\"GET /repos/{owner}/{repo}/pages\"],\n        getPagesBuild: [\"GET /repos/{owner}/{repo}/pages/builds/{build_id}\"],\n        getPagesHealthCheck: [\"GET /repos/{owner}/{repo}/pages/health\"],\n        getParticipationStats: [\"GET /repos/{owner}/{repo}/stats/participation\"],\n        getPullRequestReviewProtection: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews\",\n        ],\n        getPunchCardStats: [\"GET /repos/{owner}/{repo}/stats/punch_card\"],\n        getReadme: [\"GET /repos/{owner}/{repo}/readme\"],\n        getReadmeInDirectory: [\"GET /repos/{owner}/{repo}/readme/{dir}\"],\n        getRelease: [\"GET /repos/{owner}/{repo}/releases/{release_id}\"],\n        getReleaseAsset: [\"GET /repos/{owner}/{repo}/releases/assets/{asset_id}\"],\n        getReleaseByTag: [\"GET /repos/{owner}/{repo}/releases/tags/{tag}\"],\n        getStatusChecksProtection: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks\",\n        ],\n        getTeamsWithAccessToProtectedBranch: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams\",\n        ],\n        getTopPaths: [\"GET /repos/{owner}/{repo}/traffic/popular/paths\"],\n        getTopReferrers: [\"GET /repos/{owner}/{repo}/traffic/popular/referrers\"],\n        getUsersWithAccessToProtectedBranch: [\n            \"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users\",\n        ],\n        getViews: [\"GET /repos/{owner}/{repo}/traffic/views\"],\n        getWebhook: [\"GET /repos/{owner}/{repo}/hooks/{hook_id}\"],\n        getWebhookConfigForRepo: [\n            \"GET /repos/{owner}/{repo}/hooks/{hook_id}/config\",\n        ],\n        getWebhookDelivery: [\n            \"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}\",\n        ],\n        listAutolinks: [\"GET /repos/{owner}/{repo}/autolinks\"],\n        listBranches: [\"GET /repos/{owner}/{repo}/branches\"],\n        listBranchesForHeadCommit: [\n            \"GET /repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head\",\n        ],\n        listCollaborators: [\"GET /repos/{owner}/{repo}/collaborators\"],\n        listCommentsForCommit: [\n            \"GET /repos/{owner}/{repo}/commits/{commit_sha}/comments\",\n        ],\n        listCommitCommentsForRepo: [\"GET /repos/{owner}/{repo}/comments\"],\n        listCommitStatusesForRef: [\n            \"GET /repos/{owner}/{repo}/commits/{ref}/statuses\",\n        ],\n        listCommits: [\"GET /repos/{owner}/{repo}/commits\"],\n        listContributors: [\"GET /repos/{owner}/{repo}/contributors\"],\n        listDeployKeys: [\"GET /repos/{owner}/{repo}/keys\"],\n        listDeploymentStatuses: [\n            \"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses\",\n        ],\n        listDeployments: [\"GET /repos/{owner}/{repo}/deployments\"],\n        listForAuthenticatedUser: [\"GET /user/repos\"],\n        listForOrg: [\"GET /orgs/{org}/repos\"],\n        listForUser: [\"GET /users/{username}/repos\"],\n        listForks: [\"GET /repos/{owner}/{repo}/forks\"],\n        listInvitations: [\"GET /repos/{owner}/{repo}/invitations\"],\n        listInvitationsForAuthenticatedUser: [\"GET /user/repository_invitations\"],\n        listLanguages: [\"GET /repos/{owner}/{repo}/languages\"],\n        listPagesBuilds: [\"GET /repos/{owner}/{repo}/pages/builds\"],\n        listPublic: [\"GET /repositories\"],\n        listPullRequestsAssociatedWithCommit: [\n            \"GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls\",\n        ],\n        listReleaseAssets: [\n            \"GET /repos/{owner}/{repo}/releases/{release_id}/assets\",\n        ],\n        listReleases: [\"GET /repos/{owner}/{repo}/releases\"],\n        listTagProtection: [\"GET /repos/{owner}/{repo}/tags/protection\"],\n        listTags: [\"GET /repos/{owner}/{repo}/tags\"],\n        listTeams: [\"GET /repos/{owner}/{repo}/teams\"],\n        listWebhookDeliveries: [\n            \"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries\",\n        ],\n        listWebhooks: [\"GET /repos/{owner}/{repo}/hooks\"],\n        merge: [\"POST /repos/{owner}/{repo}/merges\"],\n        mergeUpstream: [\"POST /repos/{owner}/{repo}/merge-upstream\"],\n        pingWebhook: [\"POST /repos/{owner}/{repo}/hooks/{hook_id}/pings\"],\n        redeliverWebhookDelivery: [\n            \"POST /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts\",\n        ],\n        removeAppAccessRestrictions: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps\",\n            {},\n            { mapToData: \"apps\" },\n        ],\n        removeCollaborator: [\n            \"DELETE /repos/{owner}/{repo}/collaborators/{username}\",\n        ],\n        removeStatusCheckContexts: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts\",\n            {},\n            { mapToData: \"contexts\" },\n        ],\n        removeStatusCheckProtection: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks\",\n        ],\n        removeTeamAccessRestrictions: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams\",\n            {},\n            { mapToData: \"teams\" },\n        ],\n        removeUserAccessRestrictions: [\n            \"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users\",\n            {},\n            { mapToData: \"users\" },\n        ],\n        renameBranch: [\"POST /repos/{owner}/{repo}/branches/{branch}/rename\"],\n        replaceAllTopics: [\"PUT /repos/{owner}/{repo}/topics\"],\n        requestPagesBuild: [\"POST /repos/{owner}/{repo}/pages/builds\"],\n        setAdminBranchProtection: [\n            \"POST /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins\",\n        ],\n        setAppAccessRestrictions: [\n            \"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps\",\n            {},\n            { mapToData: \"apps\" },\n        ],\n        setStatusCheckContexts: [\n            \"PUT /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts\",\n            {},\n            { mapToData: \"contexts\" },\n        ],\n        setTeamAccessRestrictions: [\n            \"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams\",\n            {},\n            { mapToData: \"teams\" },\n        ],\n        setUserAccessRestrictions: [\n            \"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users\",\n            {},\n            { mapToData: \"users\" },\n        ],\n        testPushWebhook: [\"POST /repos/{owner}/{repo}/hooks/{hook_id}/tests\"],\n        transfer: [\"POST /repos/{owner}/{repo}/transfer\"],\n        update: [\"PATCH /repos/{owner}/{repo}\"],\n        updateBranchProtection: [\n            \"PUT /repos/{owner}/{repo}/branches/{branch}/protection\",\n        ],\n        updateCommitComment: [\"PATCH /repos/{owner}/{repo}/comments/{comment_id}\"],\n        updateInformationAboutPagesSite: [\"PUT /repos/{owner}/{repo}/pages\"],\n        updateInvitation: [\n            \"PATCH /repos/{owner}/{repo}/invitations/{invitation_id}\",\n        ],\n        updatePullRequestReviewProtection: [\n            \"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews\",\n        ],\n        updateRelease: [\"PATCH /repos/{owner}/{repo}/releases/{release_id}\"],\n        updateReleaseAsset: [\n            \"PATCH /repos/{owner}/{repo}/releases/assets/{asset_id}\",\n        ],\n        updateStatusCheckPotection: [\n            \"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks\",\n            {},\n            { renamed: [\"repos\", \"updateStatusCheckProtection\"] },\n        ],\n        updateStatusCheckProtection: [\n            \"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks\",\n        ],\n        updateWebhook: [\"PATCH /repos/{owner}/{repo}/hooks/{hook_id}\"],\n        updateWebhookConfigForRepo: [\n            \"PATCH /repos/{owner}/{repo}/hooks/{hook_id}/config\",\n        ],\n        uploadReleaseAsset: [\n            \"POST /repos/{owner}/{repo}/releases/{release_id}/assets{?name,label}\",\n            { baseUrl: \"https://uploads.github.com\" },\n        ],\n    },\n    search: {\n        code: [\"GET /search/code\"],\n        commits: [\"GET /search/commits\"],\n        issuesAndPullRequests: [\"GET /search/issues\"],\n        labels: [\"GET /search/labels\"],\n        repos: [\"GET /search/repositories\"],\n        topics: [\"GET /search/topics\"],\n        users: [\"GET /search/users\"],\n    },\n    secretScanning: {\n        getAlert: [\n            \"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}\",\n        ],\n        listAlertsForEnterprise: [\n            \"GET /enterprises/{enterprise}/secret-scanning/alerts\",\n        ],\n        listAlertsForOrg: [\"GET /orgs/{org}/secret-scanning/alerts\"],\n        listAlertsForRepo: [\"GET /repos/{owner}/{repo}/secret-scanning/alerts\"],\n        listLocationsForAlert: [\n            \"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations\",\n        ],\n        updateAlert: [\n            \"PATCH /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}\",\n        ],\n    },\n    teams: {\n        addOrUpdateMembershipForUserInOrg: [\n            \"PUT /orgs/{org}/teams/{team_slug}/memberships/{username}\",\n        ],\n        addOrUpdateProjectPermissionsInOrg: [\n            \"PUT /orgs/{org}/teams/{team_slug}/projects/{project_id}\",\n        ],\n        addOrUpdateRepoPermissionsInOrg: [\n            \"PUT /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}\",\n        ],\n        checkPermissionsForProjectInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/projects/{project_id}\",\n        ],\n        checkPermissionsForRepoInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}\",\n        ],\n        create: [\"POST /orgs/{org}/teams\"],\n        createDiscussionCommentInOrg: [\n            \"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments\",\n        ],\n        createDiscussionInOrg: [\"POST /orgs/{org}/teams/{team_slug}/discussions\"],\n        deleteDiscussionCommentInOrg: [\n            \"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}\",\n        ],\n        deleteDiscussionInOrg: [\n            \"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}\",\n        ],\n        deleteInOrg: [\"DELETE /orgs/{org}/teams/{team_slug}\"],\n        getByName: [\"GET /orgs/{org}/teams/{team_slug}\"],\n        getDiscussionCommentInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}\",\n        ],\n        getDiscussionInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}\",\n        ],\n        getMembershipForUserInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/memberships/{username}\",\n        ],\n        list: [\"GET /orgs/{org}/teams\"],\n        listChildInOrg: [\"GET /orgs/{org}/teams/{team_slug}/teams\"],\n        listDiscussionCommentsInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments\",\n        ],\n        listDiscussionsInOrg: [\"GET /orgs/{org}/teams/{team_slug}/discussions\"],\n        listForAuthenticatedUser: [\"GET /user/teams\"],\n        listMembersInOrg: [\"GET /orgs/{org}/teams/{team_slug}/members\"],\n        listPendingInvitationsInOrg: [\n            \"GET /orgs/{org}/teams/{team_slug}/invitations\",\n        ],\n        listProjectsInOrg: [\"GET /orgs/{org}/teams/{team_slug}/projects\"],\n        listReposInOrg: [\"GET /orgs/{org}/teams/{team_slug}/repos\"],\n        removeMembershipForUserInOrg: [\n            \"DELETE /orgs/{org}/teams/{team_slug}/memberships/{username}\",\n        ],\n        removeProjectInOrg: [\n            \"DELETE /orgs/{org}/teams/{team_slug}/projects/{project_id}\",\n        ],\n        removeRepoInOrg: [\n            \"DELETE /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}\",\n        ],\n        updateDiscussionCommentInOrg: [\n            \"PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}\",\n        ],\n        updateDiscussionInOrg: [\n            \"PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}\",\n        ],\n        updateInOrg: [\"PATCH /orgs/{org}/teams/{team_slug}\"],\n    },\n    users: {\n        addEmailForAuthenticated: [\n            \"POST /user/emails\",\n            {},\n            { renamed: [\"users\", \"addEmailForAuthenticatedUser\"] },\n        ],\n        addEmailForAuthenticatedUser: [\"POST /user/emails\"],\n        block: [\"PUT /user/blocks/{username}\"],\n        checkBlocked: [\"GET /user/blocks/{username}\"],\n        checkFollowingForUser: [\"GET /users/{username}/following/{target_user}\"],\n        checkPersonIsFollowedByAuthenticated: [\"GET /user/following/{username}\"],\n        createGpgKeyForAuthenticated: [\n            \"POST /user/gpg_keys\",\n            {},\n            { renamed: [\"users\", \"createGpgKeyForAuthenticatedUser\"] },\n        ],\n        createGpgKeyForAuthenticatedUser: [\"POST /user/gpg_keys\"],\n        createPublicSshKeyForAuthenticated: [\n            \"POST /user/keys\",\n            {},\n            { renamed: [\"users\", \"createPublicSshKeyForAuthenticatedUser\"] },\n        ],\n        createPublicSshKeyForAuthenticatedUser: [\"POST /user/keys\"],\n        deleteEmailForAuthenticated: [\n            \"DELETE /user/emails\",\n            {},\n            { renamed: [\"users\", \"deleteEmailForAuthenticatedUser\"] },\n        ],\n        deleteEmailForAuthenticatedUser: [\"DELETE /user/emails\"],\n        deleteGpgKeyForAuthenticated: [\n            \"DELETE /user/gpg_keys/{gpg_key_id}\",\n            {},\n            { renamed: [\"users\", \"deleteGpgKeyForAuthenticatedUser\"] },\n        ],\n        deleteGpgKeyForAuthenticatedUser: [\"DELETE /user/gpg_keys/{gpg_key_id}\"],\n        deletePublicSshKeyForAuthenticated: [\n            \"DELETE /user/keys/{key_id}\",\n            {},\n            { renamed: [\"users\", \"deletePublicSshKeyForAuthenticatedUser\"] },\n        ],\n        deletePublicSshKeyForAuthenticatedUser: [\"DELETE /user/keys/{key_id}\"],\n        follow: [\"PUT /user/following/{username}\"],\n        getAuthenticated: [\"GET /user\"],\n        getByUsername: [\"GET /users/{username}\"],\n        getContextForUser: [\"GET /users/{username}/hovercard\"],\n        getGpgKeyForAuthenticated: [\n            \"GET /user/gpg_keys/{gpg_key_id}\",\n            {},\n            { renamed: [\"users\", \"getGpgKeyForAuthenticatedUser\"] },\n        ],\n        getGpgKeyForAuthenticatedUser: [\"GET /user/gpg_keys/{gpg_key_id}\"],\n        getPublicSshKeyForAuthenticated: [\n            \"GET /user/keys/{key_id}\",\n            {},\n            { renamed: [\"users\", \"getPublicSshKeyForAuthenticatedUser\"] },\n        ],\n        getPublicSshKeyForAuthenticatedUser: [\"GET /user/keys/{key_id}\"],\n        list: [\"GET /users\"],\n        listBlockedByAuthenticated: [\n            \"GET /user/blocks\",\n            {},\n            { renamed: [\"users\", \"listBlockedByAuthenticatedUser\"] },\n        ],\n        listBlockedByAuthenticatedUser: [\"GET /user/blocks\"],\n        listEmailsForAuthenticated: [\n            \"GET /user/emails\",\n            {},\n            { renamed: [\"users\", \"listEmailsForAuthenticatedUser\"] },\n        ],\n        listEmailsForAuthenticatedUser: [\"GET /user/emails\"],\n        listFollowedByAuthenticated: [\n            \"GET /user/following\",\n            {},\n            { renamed: [\"users\", \"listFollowedByAuthenticatedUser\"] },\n        ],\n        listFollowedByAuthenticatedUser: [\"GET /user/following\"],\n        listFollowersForAuthenticatedUser: [\"GET /user/followers\"],\n        listFollowersForUser: [\"GET /users/{username}/followers\"],\n        listFollowingForUser: [\"GET /users/{username}/following\"],\n        listGpgKeysForAuthenticated: [\n            \"GET /user/gpg_keys\",\n            {},\n            { renamed: [\"users\", \"listGpgKeysForAuthenticatedUser\"] },\n        ],\n        listGpgKeysForAuthenticatedUser: [\"GET /user/gpg_keys\"],\n        listGpgKeysForUser: [\"GET /users/{username}/gpg_keys\"],\n        listPublicEmailsForAuthenticated: [\n            \"GET /user/public_emails\",\n            {},\n            { renamed: [\"users\", \"listPublicEmailsForAuthenticatedUser\"] },\n        ],\n        listPublicEmailsForAuthenticatedUser: [\"GET /user/public_emails\"],\n        listPublicKeysForUser: [\"GET /users/{username}/keys\"],\n        listPublicSshKeysForAuthenticated: [\n            \"GET /user/keys\",\n            {},\n            { renamed: [\"users\", \"listPublicSshKeysForAuthenticatedUser\"] },\n        ],\n        listPublicSshKeysForAuthenticatedUser: [\"GET /user/keys\"],\n        setPrimaryEmailVisibilityForAuthenticated: [\n            \"PATCH /user/email/visibility\",\n            {},\n            { renamed: [\"users\", \"setPrimaryEmailVisibilityForAuthenticatedUser\"] },\n        ],\n        setPrimaryEmailVisibilityForAuthenticatedUser: [\n            \"PATCH /user/email/visibility\",\n        ],\n        unblock: [\"DELETE /user/blocks/{username}\"],\n        unfollow: [\"DELETE /user/following/{username}\"],\n        updateAuthenticated: [\"PATCH /user\"],\n    },\n};\n\nconst VERSION$3 = \"5.16.2\";\n\nfunction endpointsToMethods(octokit, endpointsMap) {\n    const newMethods = {};\n    for (const [scope, endpoints] of Object.entries(endpointsMap)) {\n        for (const [methodName, endpoint] of Object.entries(endpoints)) {\n            const [route, defaults, decorations] = endpoint;\n            const [method, url] = route.split(/ /);\n            const endpointDefaults = Object.assign({ method, url }, defaults);\n            if (!newMethods[scope]) {\n                newMethods[scope] = {};\n            }\n            const scopeMethods = newMethods[scope];\n            if (decorations) {\n                scopeMethods[methodName] = decorate(octokit, scope, methodName, endpointDefaults, decorations);\n                continue;\n            }\n            scopeMethods[methodName] = octokit.request.defaults(endpointDefaults);\n        }\n    }\n    return newMethods;\n}\nfunction decorate(octokit, scope, methodName, defaults, decorations) {\n    const requestWithDefaults = octokit.request.defaults(defaults);\n    /* istanbul ignore next */\n    function withDecorations(...args) {\n        // @ts-ignore https://github.com/microsoft/TypeScript/issues/25488\n        let options = requestWithDefaults.endpoint.merge(...args);\n        // There are currently no other decorations than `.mapToData`\n        if (decorations.mapToData) {\n            options = Object.assign({}, options, {\n                data: options[decorations.mapToData],\n                [decorations.mapToData]: undefined,\n            });\n            return requestWithDefaults(options);\n        }\n        if (decorations.renamed) {\n            const [newScope, newMethodName] = decorations.renamed;\n            octokit.log.warn(`octokit.${scope}.${methodName}() has been renamed to octokit.${newScope}.${newMethodName}()`);\n        }\n        if (decorations.deprecated) {\n            octokit.log.warn(decorations.deprecated);\n        }\n        if (decorations.renamedParameters) {\n            // @ts-ignore https://github.com/microsoft/TypeScript/issues/25488\n            const options = requestWithDefaults.endpoint.merge(...args);\n            for (const [name, alias] of Object.entries(decorations.renamedParameters)) {\n                if (name in options) {\n                    octokit.log.warn(`\"${name}\" parameter is deprecated for \"octokit.${scope}.${methodName}()\". Use \"${alias}\" instead`);\n                    if (!(alias in options)) {\n                        options[alias] = options[name];\n                    }\n                    delete options[name];\n                }\n            }\n            return requestWithDefaults(options);\n        }\n        // @ts-ignore https://github.com/microsoft/TypeScript/issues/25488\n        return requestWithDefaults(...args);\n    }\n    return Object.assign(withDecorations, requestWithDefaults);\n}\n\nfunction restEndpointMethods(octokit) {\n    const api = endpointsToMethods(octokit, Endpoints);\n    return {\n        rest: api,\n    };\n}\nrestEndpointMethods.VERSION = VERSION$3;\nfunction legacyRestEndpointMethods(octokit) {\n    const api = endpointsToMethods(octokit, Endpoints);\n    return {\n        ...api,\n        rest: api,\n    };\n}\nlegacyRestEndpointMethods.VERSION = VERSION$3;\n\nvar distWeb$3 = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tlegacyRestEndpointMethods: legacyRestEndpointMethods,\n\trestEndpointMethods: restEndpointMethods\n});\n\nvar require$$3 = /*@__PURE__*/getAugmentedNamespace(distWeb$3);\n\nconst VERSION$2 = \"2.21.3\";\n\n/**\n * Some “list” response that can be paginated have a different response structure\n *\n * They have a `total_count` key in the response (search also has `incomplete_results`,\n * /installation/repositories also has `repository_selection`), as well as a key with\n * the list of the items which name varies from endpoint to endpoint.\n *\n * Octokit normalizes these responses so that paginated results are always returned following\n * the same structure. One challenge is that if the list response has only one page, no Link\n * header is provided, so this header alone is not sufficient to check wether a response is\n * paginated or not.\n *\n * We check if a \"total_count\" key is present in the response data, but also make sure that\n * a \"url\" property is not, as the \"Get the combined status for a specific ref\" endpoint would\n * otherwise match: https://developer.github.com/v3/repos/statuses/#get-the-combined-status-for-a-specific-ref\n */\nfunction normalizePaginatedListResponse(response) {\n    // endpoints can respond with 204 if repository is empty\n    if (!response.data) {\n        return {\n            ...response,\n            data: [],\n        };\n    }\n    const responseNeedsNormalization = \"total_count\" in response.data && !(\"url\" in response.data);\n    if (!responseNeedsNormalization)\n        return response;\n    // keep the additional properties intact as there is currently no other way\n    // to retrieve the same information.\n    const incompleteResults = response.data.incomplete_results;\n    const repositorySelection = response.data.repository_selection;\n    const totalCount = response.data.total_count;\n    delete response.data.incomplete_results;\n    delete response.data.repository_selection;\n    delete response.data.total_count;\n    const namespaceKey = Object.keys(response.data)[0];\n    const data = response.data[namespaceKey];\n    response.data = data;\n    if (typeof incompleteResults !== \"undefined\") {\n        response.data.incomplete_results = incompleteResults;\n    }\n    if (typeof repositorySelection !== \"undefined\") {\n        response.data.repository_selection = repositorySelection;\n    }\n    response.data.total_count = totalCount;\n    return response;\n}\n\nfunction iterator(octokit, route, parameters) {\n    const options = typeof route === \"function\"\n        ? route.endpoint(parameters)\n        : octokit.request.endpoint(route, parameters);\n    const requestMethod = typeof route === \"function\" ? route : octokit.request;\n    const method = options.method;\n    const headers = options.headers;\n    let url = options.url;\n    return {\n        [Symbol.asyncIterator]: () => ({\n            async next() {\n                if (!url)\n                    return { done: true };\n                try {\n                    const response = await requestMethod({ method, url, headers });\n                    const normalizedResponse = normalizePaginatedListResponse(response);\n                    // `response.headers.link` format:\n                    // '<https://api.github.com/users/aseemk/followers?page=2>; rel=\"next\", <https://api.github.com/users/aseemk/followers?page=2>; rel=\"last\"'\n                    // sets `url` to undefined if \"next\" URL is not present or `link` header is not set\n                    url = ((normalizedResponse.headers.link || \"\").match(/<([^>]+)>;\\s*rel=\"next\"/) || [])[1];\n                    return { value: normalizedResponse };\n                }\n                catch (error) {\n                    if (error.status !== 409)\n                        throw error;\n                    url = \"\";\n                    return {\n                        value: {\n                            status: 200,\n                            headers: {},\n                            data: [],\n                        },\n                    };\n                }\n            },\n        }),\n    };\n}\n\nfunction paginate(octokit, route, parameters, mapFn) {\n    if (typeof parameters === \"function\") {\n        mapFn = parameters;\n        parameters = undefined;\n    }\n    return gather(octokit, [], iterator(octokit, route, parameters)[Symbol.asyncIterator](), mapFn);\n}\nfunction gather(octokit, results, iterator, mapFn) {\n    return iterator.next().then((result) => {\n        if (result.done) {\n            return results;\n        }\n        let earlyExit = false;\n        function done() {\n            earlyExit = true;\n        }\n        results = results.concat(mapFn ? mapFn(result.value, done) : result.value.data);\n        if (earlyExit) {\n            return results;\n        }\n        return gather(octokit, results, iterator, mapFn);\n    });\n}\n\nconst composePaginateRest = Object.assign(paginate, {\n    iterator,\n});\n\nconst paginatingEndpoints = [\n    \"GET /app/hook/deliveries\",\n    \"GET /app/installations\",\n    \"GET /applications/grants\",\n    \"GET /authorizations\",\n    \"GET /enterprises/{enterprise}/actions/permissions/organizations\",\n    \"GET /enterprises/{enterprise}/actions/runner-groups\",\n    \"GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations\",\n    \"GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners\",\n    \"GET /enterprises/{enterprise}/actions/runners\",\n    \"GET /enterprises/{enterprise}/audit-log\",\n    \"GET /enterprises/{enterprise}/secret-scanning/alerts\",\n    \"GET /enterprises/{enterprise}/settings/billing/advanced-security\",\n    \"GET /events\",\n    \"GET /gists\",\n    \"GET /gists/public\",\n    \"GET /gists/starred\",\n    \"GET /gists/{gist_id}/comments\",\n    \"GET /gists/{gist_id}/commits\",\n    \"GET /gists/{gist_id}/forks\",\n    \"GET /installation/repositories\",\n    \"GET /issues\",\n    \"GET /licenses\",\n    \"GET /marketplace_listing/plans\",\n    \"GET /marketplace_listing/plans/{plan_id}/accounts\",\n    \"GET /marketplace_listing/stubbed/plans\",\n    \"GET /marketplace_listing/stubbed/plans/{plan_id}/accounts\",\n    \"GET /networks/{owner}/{repo}/events\",\n    \"GET /notifications\",\n    \"GET /organizations\",\n    \"GET /orgs/{org}/actions/cache/usage-by-repository\",\n    \"GET /orgs/{org}/actions/permissions/repositories\",\n    \"GET /orgs/{org}/actions/runner-groups\",\n    \"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories\",\n    \"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners\",\n    \"GET /orgs/{org}/actions/runners\",\n    \"GET /orgs/{org}/actions/secrets\",\n    \"GET /orgs/{org}/actions/secrets/{secret_name}/repositories\",\n    \"GET /orgs/{org}/audit-log\",\n    \"GET /orgs/{org}/blocks\",\n    \"GET /orgs/{org}/code-scanning/alerts\",\n    \"GET /orgs/{org}/codespaces\",\n    \"GET /orgs/{org}/credential-authorizations\",\n    \"GET /orgs/{org}/dependabot/secrets\",\n    \"GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories\",\n    \"GET /orgs/{org}/events\",\n    \"GET /orgs/{org}/external-groups\",\n    \"GET /orgs/{org}/failed_invitations\",\n    \"GET /orgs/{org}/hooks\",\n    \"GET /orgs/{org}/hooks/{hook_id}/deliveries\",\n    \"GET /orgs/{org}/installations\",\n    \"GET /orgs/{org}/invitations\",\n    \"GET /orgs/{org}/invitations/{invitation_id}/teams\",\n    \"GET /orgs/{org}/issues\",\n    \"GET /orgs/{org}/members\",\n    \"GET /orgs/{org}/migrations\",\n    \"GET /orgs/{org}/migrations/{migration_id}/repositories\",\n    \"GET /orgs/{org}/outside_collaborators\",\n    \"GET /orgs/{org}/packages\",\n    \"GET /orgs/{org}/packages/{package_type}/{package_name}/versions\",\n    \"GET /orgs/{org}/projects\",\n    \"GET /orgs/{org}/public_members\",\n    \"GET /orgs/{org}/repos\",\n    \"GET /orgs/{org}/secret-scanning/alerts\",\n    \"GET /orgs/{org}/settings/billing/advanced-security\",\n    \"GET /orgs/{org}/team-sync/groups\",\n    \"GET /orgs/{org}/teams\",\n    \"GET /orgs/{org}/teams/{team_slug}/discussions\",\n    \"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments\",\n    \"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions\",\n    \"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions\",\n    \"GET /orgs/{org}/teams/{team_slug}/invitations\",\n    \"GET /orgs/{org}/teams/{team_slug}/members\",\n    \"GET /orgs/{org}/teams/{team_slug}/projects\",\n    \"GET /orgs/{org}/teams/{team_slug}/repos\",\n    \"GET /orgs/{org}/teams/{team_slug}/teams\",\n    \"GET /projects/columns/{column_id}/cards\",\n    \"GET /projects/{project_id}/collaborators\",\n    \"GET /projects/{project_id}/columns\",\n    \"GET /repos/{owner}/{repo}/actions/artifacts\",\n    \"GET /repos/{owner}/{repo}/actions/caches\",\n    \"GET /repos/{owner}/{repo}/actions/runners\",\n    \"GET /repos/{owner}/{repo}/actions/runs\",\n    \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts\",\n    \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs\",\n    \"GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs\",\n    \"GET /repos/{owner}/{repo}/actions/secrets\",\n    \"GET /repos/{owner}/{repo}/actions/workflows\",\n    \"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs\",\n    \"GET /repos/{owner}/{repo}/assignees\",\n    \"GET /repos/{owner}/{repo}/branches\",\n    \"GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations\",\n    \"GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs\",\n    \"GET /repos/{owner}/{repo}/code-scanning/alerts\",\n    \"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances\",\n    \"GET /repos/{owner}/{repo}/code-scanning/analyses\",\n    \"GET /repos/{owner}/{repo}/codespaces\",\n    \"GET /repos/{owner}/{repo}/codespaces/devcontainers\",\n    \"GET /repos/{owner}/{repo}/codespaces/secrets\",\n    \"GET /repos/{owner}/{repo}/collaborators\",\n    \"GET /repos/{owner}/{repo}/comments\",\n    \"GET /repos/{owner}/{repo}/comments/{comment_id}/reactions\",\n    \"GET /repos/{owner}/{repo}/commits\",\n    \"GET /repos/{owner}/{repo}/commits/{commit_sha}/comments\",\n    \"GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls\",\n    \"GET /repos/{owner}/{repo}/commits/{ref}/check-runs\",\n    \"GET /repos/{owner}/{repo}/commits/{ref}/check-suites\",\n    \"GET /repos/{owner}/{repo}/commits/{ref}/status\",\n    \"GET /repos/{owner}/{repo}/commits/{ref}/statuses\",\n    \"GET /repos/{owner}/{repo}/contributors\",\n    \"GET /repos/{owner}/{repo}/dependabot/secrets\",\n    \"GET /repos/{owner}/{repo}/deployments\",\n    \"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses\",\n    \"GET /repos/{owner}/{repo}/environments\",\n    \"GET /repos/{owner}/{repo}/events\",\n    \"GET /repos/{owner}/{repo}/forks\",\n    \"GET /repos/{owner}/{repo}/git/matching-refs/{ref}\",\n    \"GET /repos/{owner}/{repo}/hooks\",\n    \"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries\",\n    \"GET /repos/{owner}/{repo}/invitations\",\n    \"GET /repos/{owner}/{repo}/issues\",\n    \"GET /repos/{owner}/{repo}/issues/comments\",\n    \"GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions\",\n    \"GET /repos/{owner}/{repo}/issues/events\",\n    \"GET /repos/{owner}/{repo}/issues/{issue_number}/comments\",\n    \"GET /repos/{owner}/{repo}/issues/{issue_number}/events\",\n    \"GET /repos/{owner}/{repo}/issues/{issue_number}/labels\",\n    \"GET /repos/{owner}/{repo}/issues/{issue_number}/reactions\",\n    \"GET /repos/{owner}/{repo}/issues/{issue_number}/timeline\",\n    \"GET /repos/{owner}/{repo}/keys\",\n    \"GET /repos/{owner}/{repo}/labels\",\n    \"GET /repos/{owner}/{repo}/milestones\",\n    \"GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels\",\n    \"GET /repos/{owner}/{repo}/notifications\",\n    \"GET /repos/{owner}/{repo}/pages/builds\",\n    \"GET /repos/{owner}/{repo}/projects\",\n    \"GET /repos/{owner}/{repo}/pulls\",\n    \"GET /repos/{owner}/{repo}/pulls/comments\",\n    \"GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions\",\n    \"GET /repos/{owner}/{repo}/pulls/{pull_number}/comments\",\n    \"GET /repos/{owner}/{repo}/pulls/{pull_number}/commits\",\n    \"GET /repos/{owner}/{repo}/pulls/{pull_number}/files\",\n    \"GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers\",\n    \"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews\",\n    \"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments\",\n    \"GET /repos/{owner}/{repo}/releases\",\n    \"GET /repos/{owner}/{repo}/releases/{release_id}/assets\",\n    \"GET /repos/{owner}/{repo}/releases/{release_id}/reactions\",\n    \"GET /repos/{owner}/{repo}/secret-scanning/alerts\",\n    \"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations\",\n    \"GET /repos/{owner}/{repo}/stargazers\",\n    \"GET /repos/{owner}/{repo}/subscribers\",\n    \"GET /repos/{owner}/{repo}/tags\",\n    \"GET /repos/{owner}/{repo}/teams\",\n    \"GET /repos/{owner}/{repo}/topics\",\n    \"GET /repositories\",\n    \"GET /repositories/{repository_id}/environments/{environment_name}/secrets\",\n    \"GET /search/code\",\n    \"GET /search/commits\",\n    \"GET /search/issues\",\n    \"GET /search/labels\",\n    \"GET /search/repositories\",\n    \"GET /search/topics\",\n    \"GET /search/users\",\n    \"GET /teams/{team_id}/discussions\",\n    \"GET /teams/{team_id}/discussions/{discussion_number}/comments\",\n    \"GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions\",\n    \"GET /teams/{team_id}/discussions/{discussion_number}/reactions\",\n    \"GET /teams/{team_id}/invitations\",\n    \"GET /teams/{team_id}/members\",\n    \"GET /teams/{team_id}/projects\",\n    \"GET /teams/{team_id}/repos\",\n    \"GET /teams/{team_id}/teams\",\n    \"GET /user/blocks\",\n    \"GET /user/codespaces\",\n    \"GET /user/codespaces/secrets\",\n    \"GET /user/emails\",\n    \"GET /user/followers\",\n    \"GET /user/following\",\n    \"GET /user/gpg_keys\",\n    \"GET /user/installations\",\n    \"GET /user/installations/{installation_id}/repositories\",\n    \"GET /user/issues\",\n    \"GET /user/keys\",\n    \"GET /user/marketplace_purchases\",\n    \"GET /user/marketplace_purchases/stubbed\",\n    \"GET /user/memberships/orgs\",\n    \"GET /user/migrations\",\n    \"GET /user/migrations/{migration_id}/repositories\",\n    \"GET /user/orgs\",\n    \"GET /user/packages\",\n    \"GET /user/packages/{package_type}/{package_name}/versions\",\n    \"GET /user/public_emails\",\n    \"GET /user/repos\",\n    \"GET /user/repository_invitations\",\n    \"GET /user/starred\",\n    \"GET /user/subscriptions\",\n    \"GET /user/teams\",\n    \"GET /users\",\n    \"GET /users/{username}/events\",\n    \"GET /users/{username}/events/orgs/{org}\",\n    \"GET /users/{username}/events/public\",\n    \"GET /users/{username}/followers\",\n    \"GET /users/{username}/following\",\n    \"GET /users/{username}/gists\",\n    \"GET /users/{username}/gpg_keys\",\n    \"GET /users/{username}/keys\",\n    \"GET /users/{username}/orgs\",\n    \"GET /users/{username}/packages\",\n    \"GET /users/{username}/projects\",\n    \"GET /users/{username}/received_events\",\n    \"GET /users/{username}/received_events/public\",\n    \"GET /users/{username}/repos\",\n    \"GET /users/{username}/starred\",\n    \"GET /users/{username}/subscriptions\",\n];\n\nfunction isPaginatingEndpoint(arg) {\n    if (typeof arg === \"string\") {\n        return paginatingEndpoints.includes(arg);\n    }\n    else {\n        return false;\n    }\n}\n\n/**\n * @param octokit Octokit instance\n * @param options Options passed to Octokit constructor\n */\nfunction paginateRest(octokit) {\n    return {\n        paginate: Object.assign(paginate.bind(null, octokit), {\n            iterator: iterator.bind(null, octokit),\n        }),\n    };\n}\npaginateRest.VERSION = VERSION$2;\n\nvar distWeb$2 = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tcomposePaginateRest: composePaginateRest,\n\tisPaginatingEndpoint: isPaginatingEndpoint,\n\tpaginateRest: paginateRest,\n\tpaginatingEndpoints: paginatingEndpoints\n});\n\nvar require$$4 = /*@__PURE__*/getAugmentedNamespace(distWeb$2);\n\nvar hasRequiredUtils;\n\nfunction requireUtils () {\n\tif (hasRequiredUtils) return utils$2;\n\thasRequiredUtils = 1;\n\t(function (exports) {\n\t\tvar __createBinding = (utils$2 && utils$2.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __setModuleDefault = (utils$2 && utils$2.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t\t}) : function(o, v) {\n\t\t    o[\"default\"] = v;\n\t\t});\n\t\tvar __importStar = (utils$2 && utils$2.__importStar) || function (mod) {\n\t\t    if (mod && mod.__esModule) return mod;\n\t\t    var result = {};\n\t\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t\t    __setModuleDefault(result, mod);\n\t\t    return result;\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.getOctokitOptions = exports.GitHub = exports.defaults = exports.context = void 0;\n\t\tconst Context = __importStar(requireContext());\n\t\tconst Utils = __importStar(requireUtils$2());\n\t\t// octokit + plugins\n\t\tconst core_1 = require$$2;\n\t\tconst plugin_rest_endpoint_methods_1 = require$$3;\n\t\tconst plugin_paginate_rest_1 = require$$4;\n\t\texports.context = new Context.Context();\n\t\tconst baseUrl = Utils.getApiBaseUrl();\n\t\texports.defaults = {\n\t\t    baseUrl,\n\t\t    request: {\n\t\t        agent: Utils.getProxyAgent(baseUrl)\n\t\t    }\n\t\t};\n\t\texports.GitHub = core_1.Octokit.plugin(plugin_rest_endpoint_methods_1.restEndpointMethods, plugin_paginate_rest_1.paginateRest).defaults(exports.defaults);\n\t\t/**\n\t\t * Convience function to correctly format Octokit Options to pass into the constructor.\n\t\t *\n\t\t * @param     token    the repo PAT or GITHUB_TOKEN\n\t\t * @param     options  other options to set\n\t\t */\n\t\tfunction getOctokitOptions(token, options) {\n\t\t    const opts = Object.assign({}, options || {}); // Shallow clone - don't mutate the object provided by the caller\n\t\t    // Auth\n\t\t    const auth = Utils.getAuthString(token, opts);\n\t\t    if (auth) {\n\t\t        opts.auth = auth;\n\t\t    }\n\t\t    return opts;\n\t\t}\n\t\texports.getOctokitOptions = getOctokitOptions;\n\t\t\n\t} (utils$2));\n\treturn utils$2;\n}\n\nvar hasRequiredGithub;\n\nfunction requireGithub () {\n\tif (hasRequiredGithub) return github;\n\thasRequiredGithub = 1;\n\tvar __createBinding = (github && github.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (github && github.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (github && github.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(github, \"__esModule\", { value: true });\n\tgithub.getOctokit = github.context = void 0;\n\tconst Context = __importStar(requireContext());\n\tconst utils_1 = requireUtils();\n\tgithub.context = new Context.Context();\n\t/**\n\t * Returns a hydrated octokit ready to use for GitHub Actions\n\t *\n\t * @param     token    the repo PAT or GITHUB_TOKEN\n\t * @param     options  other options to set\n\t */\n\tfunction getOctokit(token, options, ...additionalPlugins) {\n\t    const GitHubWithPlugins = utils_1.GitHub.plugin(...additionalPlugins);\n\t    return new GitHubWithPlugins(utils_1.getOctokitOptions(token, options));\n\t}\n\tgithub.getOctokit = getOctokit;\n\t\n\treturn github;\n}\n\nvar unzip = {};\n\nvar binary = {exports: {}};\n\nvar traverse;\nvar hasRequiredTraverse;\n\nfunction requireTraverse () {\n\tif (hasRequiredTraverse) return traverse;\n\thasRequiredTraverse = 1;\n\ttraverse = Traverse;\n\tfunction Traverse (obj) {\n\t    if (!(this instanceof Traverse)) return new Traverse(obj);\n\t    this.value = obj;\n\t}\n\n\tTraverse.prototype.get = function (ps) {\n\t    var node = this.value;\n\t    for (var i = 0; i < ps.length; i ++) {\n\t        var key = ps[i];\n\t        if (!Object.hasOwnProperty.call(node, key)) {\n\t            node = undefined;\n\t            break;\n\t        }\n\t        node = node[key];\n\t    }\n\t    return node;\n\t};\n\n\tTraverse.prototype.set = function (ps, value) {\n\t    var node = this.value;\n\t    for (var i = 0; i < ps.length - 1; i ++) {\n\t        var key = ps[i];\n\t        if (!Object.hasOwnProperty.call(node, key)) node[key] = {};\n\t        node = node[key];\n\t    }\n\t    node[ps[i]] = value;\n\t    return value;\n\t};\n\n\tTraverse.prototype.map = function (cb) {\n\t    return walk(this.value, cb, true);\n\t};\n\n\tTraverse.prototype.forEach = function (cb) {\n\t    this.value = walk(this.value, cb, false);\n\t    return this.value;\n\t};\n\n\tTraverse.prototype.reduce = function (cb, init) {\n\t    var skip = arguments.length === 1;\n\t    var acc = skip ? this.value : init;\n\t    this.forEach(function (x) {\n\t        if (!this.isRoot || !skip) {\n\t            acc = cb.call(this, acc, x);\n\t        }\n\t    });\n\t    return acc;\n\t};\n\n\tTraverse.prototype.deepEqual = function (obj) {\n\t    if (arguments.length !== 1) {\n\t        throw new Error(\n\t            'deepEqual requires exactly one object to compare against'\n\t        );\n\t    }\n\t    \n\t    var equal = true;\n\t    var node = obj;\n\t    \n\t    this.forEach(function (y) {\n\t        var notEqual = (function () {\n\t            equal = false;\n\t            //this.stop();\n\t            return undefined;\n\t        }).bind(this);\n\t        \n\t        //if (node === undefined || node === null) return notEqual();\n\t        \n\t        if (!this.isRoot) {\n\t        /*\n\t            if (!Object.hasOwnProperty.call(node, this.key)) {\n\t                return notEqual();\n\t            }\n\t        */\n\t            if (typeof node !== 'object') return notEqual();\n\t            node = node[this.key];\n\t        }\n\t        \n\t        var x = node;\n\t        \n\t        this.post(function () {\n\t            node = x;\n\t        });\n\t        \n\t        var toS = function (o) {\n\t            return Object.prototype.toString.call(o);\n\t        };\n\t        \n\t        if (this.circular) {\n\t            if (Traverse(obj).get(this.circular.path) !== x) notEqual();\n\t        }\n\t        else if (typeof x !== typeof y) {\n\t            notEqual();\n\t        }\n\t        else if (x === null || y === null || x === undefined || y === undefined) {\n\t            if (x !== y) notEqual();\n\t        }\n\t        else if (x.__proto__ !== y.__proto__) {\n\t            notEqual();\n\t        }\n\t        else if (x === y) ;\n\t        else if (typeof x === 'function') {\n\t            if (x instanceof RegExp) {\n\t                // both regexps on account of the __proto__ check\n\t                if (x.toString() != y.toString()) notEqual();\n\t            }\n\t            else if (x !== y) notEqual();\n\t        }\n\t        else if (typeof x === 'object') {\n\t            if (toS(y) === '[object Arguments]'\n\t            || toS(x) === '[object Arguments]') {\n\t                if (toS(x) !== toS(y)) {\n\t                    notEqual();\n\t                }\n\t            }\n\t            else if (x instanceof Date || y instanceof Date) {\n\t                if (!(x instanceof Date) || !(y instanceof Date)\n\t                || x.getTime() !== y.getTime()) {\n\t                    notEqual();\n\t                }\n\t            }\n\t            else {\n\t                var kx = Object.keys(x);\n\t                var ky = Object.keys(y);\n\t                if (kx.length !== ky.length) return notEqual();\n\t                for (var i = 0; i < kx.length; i++) {\n\t                    var k = kx[i];\n\t                    if (!Object.hasOwnProperty.call(y, k)) {\n\t                        notEqual();\n\t                    }\n\t                }\n\t            }\n\t        }\n\t    });\n\t    \n\t    return equal;\n\t};\n\n\tTraverse.prototype.paths = function () {\n\t    var acc = [];\n\t    this.forEach(function (x) {\n\t        acc.push(this.path); \n\t    });\n\t    return acc;\n\t};\n\n\tTraverse.prototype.nodes = function () {\n\t    var acc = [];\n\t    this.forEach(function (x) {\n\t        acc.push(this.node);\n\t    });\n\t    return acc;\n\t};\n\n\tTraverse.prototype.clone = function () {\n\t    var parents = [], nodes = [];\n\t    \n\t    return (function clone (src) {\n\t        for (var i = 0; i < parents.length; i++) {\n\t            if (parents[i] === src) {\n\t                return nodes[i];\n\t            }\n\t        }\n\t        \n\t        if (typeof src === 'object' && src !== null) {\n\t            var dst = copy(src);\n\t            \n\t            parents.push(src);\n\t            nodes.push(dst);\n\t            \n\t            Object.keys(src).forEach(function (key) {\n\t                dst[key] = clone(src[key]);\n\t            });\n\t            \n\t            parents.pop();\n\t            nodes.pop();\n\t            return dst;\n\t        }\n\t        else {\n\t            return src;\n\t        }\n\t    })(this.value);\n\t};\n\n\tfunction walk (root, cb, immutable) {\n\t    var path = [];\n\t    var parents = [];\n\t    var alive = true;\n\t    \n\t    return (function walker (node_) {\n\t        var node = immutable ? copy(node_) : node_;\n\t        var modifiers = {};\n\t        \n\t        var state = {\n\t            node : node,\n\t            node_ : node_,\n\t            path : [].concat(path),\n\t            parent : parents.slice(-1)[0],\n\t            key : path.slice(-1)[0],\n\t            isRoot : path.length === 0,\n\t            level : path.length,\n\t            circular : null,\n\t            update : function (x) {\n\t                if (!state.isRoot) {\n\t                    state.parent.node[state.key] = x;\n\t                }\n\t                state.node = x;\n\t            },\n\t            'delete' : function () {\n\t                delete state.parent.node[state.key];\n\t            },\n\t            remove : function () {\n\t                if (Array.isArray(state.parent.node)) {\n\t                    state.parent.node.splice(state.key, 1);\n\t                }\n\t                else {\n\t                    delete state.parent.node[state.key];\n\t                }\n\t            },\n\t            before : function (f) { modifiers.before = f; },\n\t            after : function (f) { modifiers.after = f; },\n\t            pre : function (f) { modifiers.pre = f; },\n\t            post : function (f) { modifiers.post = f; },\n\t            stop : function () { alive = false; }\n\t        };\n\t        \n\t        if (!alive) return state;\n\t        \n\t        if (typeof node === 'object' && node !== null) {\n\t            state.isLeaf = Object.keys(node).length == 0;\n\t            \n\t            for (var i = 0; i < parents.length; i++) {\n\t                if (parents[i].node_ === node_) {\n\t                    state.circular = parents[i];\n\t                    break;\n\t                }\n\t            }\n\t        }\n\t        else {\n\t            state.isLeaf = true;\n\t        }\n\t        \n\t        state.notLeaf = !state.isLeaf;\n\t        state.notRoot = !state.isRoot;\n\t        \n\t        // use return values to update if defined\n\t        var ret = cb.call(state, state.node);\n\t        if (ret !== undefined && state.update) state.update(ret);\n\t        if (modifiers.before) modifiers.before.call(state, state.node);\n\t        \n\t        if (typeof state.node == 'object'\n\t        && state.node !== null && !state.circular) {\n\t            parents.push(state);\n\t            \n\t            var keys = Object.keys(state.node);\n\t            keys.forEach(function (key, i) {\n\t                path.push(key);\n\t                \n\t                if (modifiers.pre) modifiers.pre.call(state, state.node[key], key);\n\t                \n\t                var child = walker(state.node[key]);\n\t                if (immutable && Object.hasOwnProperty.call(state.node, key)) {\n\t                    state.node[key] = child.node;\n\t                }\n\t                \n\t                child.isLast = i == keys.length - 1;\n\t                child.isFirst = i == 0;\n\t                \n\t                if (modifiers.post) modifiers.post.call(state, child);\n\t                \n\t                path.pop();\n\t            });\n\t            parents.pop();\n\t        }\n\t        \n\t        if (modifiers.after) modifiers.after.call(state, state.node);\n\t        \n\t        return state;\n\t    })(root).node;\n\t}\n\n\tObject.keys(Traverse.prototype).forEach(function (key) {\n\t    Traverse[key] = function (obj) {\n\t        var args = [].slice.call(arguments, 1);\n\t        var t = Traverse(obj);\n\t        return t[key].apply(t, args);\n\t    };\n\t});\n\n\tfunction copy (src) {\n\t    if (typeof src === 'object' && src !== null) {\n\t        var dst;\n\t        \n\t        if (Array.isArray(src)) {\n\t            dst = [];\n\t        }\n\t        else if (src instanceof Date) {\n\t            dst = new Date(src);\n\t        }\n\t        else if (src instanceof Boolean) {\n\t            dst = new Boolean(src);\n\t        }\n\t        else if (src instanceof Number) {\n\t            dst = new Number(src);\n\t        }\n\t        else if (src instanceof String) {\n\t            dst = new String(src);\n\t        }\n\t        else {\n\t            dst = Object.create(Object.getPrototypeOf(src));\n\t        }\n\t        \n\t        Object.keys(src).forEach(function (key) {\n\t            dst[key] = src[key];\n\t        });\n\t        return dst;\n\t    }\n\t    else return src;\n\t}\n\treturn traverse;\n}\n\nvar chainsaw;\nvar hasRequiredChainsaw;\n\nfunction requireChainsaw () {\n\tif (hasRequiredChainsaw) return chainsaw;\n\thasRequiredChainsaw = 1;\n\tvar Traverse = requireTraverse();\n\tvar EventEmitter = require$$1$4.EventEmitter;\n\n\tchainsaw = Chainsaw;\n\tfunction Chainsaw (builder) {\n\t    var saw = Chainsaw.saw(builder, {});\n\t    var r = builder.call(saw.handlers, saw);\n\t    if (r !== undefined) saw.handlers = r;\n\t    saw.record();\n\t    return saw.chain();\n\t}\n\tChainsaw.light = function ChainsawLight (builder) {\n\t    var saw = Chainsaw.saw(builder, {});\n\t    var r = builder.call(saw.handlers, saw);\n\t    if (r !== undefined) saw.handlers = r;\n\t    return saw.chain();\n\t};\n\n\tChainsaw.saw = function (builder, handlers) {\n\t    var saw = new EventEmitter;\n\t    saw.handlers = handlers;\n\t    saw.actions = [];\n\n\t    saw.chain = function () {\n\t        var ch = Traverse(saw.handlers).map(function (node) {\n\t            if (this.isRoot) return node;\n\t            var ps = this.path;\n\n\t            if (typeof node === 'function') {\n\t                this.update(function () {\n\t                    saw.actions.push({\n\t                        path : ps,\n\t                        args : [].slice.call(arguments)\n\t                    });\n\t                    return ch;\n\t                });\n\t            }\n\t        });\n\n\t        process.nextTick(function () {\n\t            saw.emit('begin');\n\t            saw.next();\n\t        });\n\n\t        return ch;\n\t    };\n\n\t    saw.pop = function () {\n\t        return saw.actions.shift();\n\t    };\n\n\t    saw.next = function () {\n\t        var action = saw.pop();\n\n\t        if (!action) {\n\t            saw.emit('end');\n\t        }\n\t        else if (!action.trap) {\n\t            var node = saw.handlers;\n\t            action.path.forEach(function (key) { node = node[key]; });\n\t            node.apply(saw.handlers, action.args);\n\t        }\n\t    };\n\n\t    saw.nest = function (cb) {\n\t        var args = [].slice.call(arguments, 1);\n\t        var autonext = true;\n\n\t        if (typeof cb === 'boolean') {\n\t            var autonext = cb;\n\t            cb = args.shift();\n\t        }\n\n\t        var s = Chainsaw.saw(builder, {});\n\t        var r = builder.call(s.handlers, s);\n\n\t        if (r !== undefined) s.handlers = r;\n\n\t        // If we are recording...\n\t        if (\"undefined\" !== typeof saw.step) {\n\t            // ... our children should, too\n\t            s.record();\n\t        }\n\n\t        cb.apply(s.chain(), args);\n\t        if (autonext !== false) s.on('end', saw.next);\n\t    };\n\n\t    saw.record = function () {\n\t        upgradeChainsaw(saw);\n\t    };\n\n\t    ['trap', 'down', 'jump'].forEach(function (method) {\n\t        saw[method] = function () {\n\t            throw new Error(\"To use the trap, down and jump features, please \"+\n\t                            \"call record() first to start recording actions.\");\n\t        };\n\t    });\n\n\t    return saw;\n\t};\n\n\tfunction upgradeChainsaw(saw) {\n\t    saw.step = 0;\n\n\t    // override pop\n\t    saw.pop = function () {\n\t        return saw.actions[saw.step++];\n\t    };\n\n\t    saw.trap = function (name, cb) {\n\t        var ps = Array.isArray(name) ? name : [name];\n\t        saw.actions.push({\n\t            path : ps,\n\t            step : saw.step,\n\t            cb : cb,\n\t            trap : true\n\t        });\n\t    };\n\n\t    saw.down = function (name) {\n\t        var ps = (Array.isArray(name) ? name : [name]).join('/');\n\t        var i = saw.actions.slice(saw.step).map(function (x) {\n\t            if (x.trap && x.step <= saw.step) return false;\n\t            return x.path.join('/') == ps;\n\t        }).indexOf(true);\n\n\t        if (i >= 0) saw.step += i;\n\t        else saw.step = saw.actions.length;\n\n\t        var act = saw.actions[saw.step - 1];\n\t        if (act && act.trap) {\n\t            // It's a trap!\n\t            saw.step = act.step;\n\t            act.cb();\n\t        }\n\t        else saw.next();\n\t    };\n\n\t    saw.jump = function (step) {\n\t        saw.step = step;\n\t        saw.next();\n\t    };\n\t}\treturn chainsaw;\n}\n\nvar buffers;\nvar hasRequiredBuffers;\n\nfunction requireBuffers () {\n\tif (hasRequiredBuffers) return buffers;\n\thasRequiredBuffers = 1;\n\tbuffers = Buffers;\n\n\tfunction Buffers (bufs) {\n\t    if (!(this instanceof Buffers)) return new Buffers(bufs);\n\t    this.buffers = bufs || [];\n\t    this.length = this.buffers.reduce(function (size, buf) {\n\t        return size + buf.length\n\t    }, 0);\n\t}\n\n\tBuffers.prototype.push = function () {\n\t    for (var i = 0; i < arguments.length; i++) {\n\t        if (!Buffer.isBuffer(arguments[i])) {\n\t            throw new TypeError('Tried to push a non-buffer');\n\t        }\n\t    }\n\t    \n\t    for (var i = 0; i < arguments.length; i++) {\n\t        var buf = arguments[i];\n\t        this.buffers.push(buf);\n\t        this.length += buf.length;\n\t    }\n\t    return this.length;\n\t};\n\n\tBuffers.prototype.unshift = function () {\n\t    for (var i = 0; i < arguments.length; i++) {\n\t        if (!Buffer.isBuffer(arguments[i])) {\n\t            throw new TypeError('Tried to unshift a non-buffer');\n\t        }\n\t    }\n\t    \n\t    for (var i = 0; i < arguments.length; i++) {\n\t        var buf = arguments[i];\n\t        this.buffers.unshift(buf);\n\t        this.length += buf.length;\n\t    }\n\t    return this.length;\n\t};\n\n\tBuffers.prototype.copy = function (dst, dStart, start, end) {\n\t    return this.slice(start, end).copy(dst, dStart, 0, end - start);\n\t};\n\n\tBuffers.prototype.splice = function (i, howMany) {\n\t    var buffers = this.buffers;\n\t    var index = i >= 0 ? i : this.length - i;\n\t    var reps = [].slice.call(arguments, 2);\n\t    \n\t    if (howMany === undefined) {\n\t        howMany = this.length - index;\n\t    }\n\t    else if (howMany > this.length - index) {\n\t        howMany = this.length - index;\n\t    }\n\t    \n\t    for (var i = 0; i < reps.length; i++) {\n\t        this.length += reps[i].length;\n\t    }\n\t    \n\t    var removed = new Buffers();\n\t    \n\t    var startBytes = 0;\n\t    for (\n\t        var ii = 0;\n\t        ii < buffers.length && startBytes + buffers[ii].length < index;\n\t        ii ++\n\t    ) { startBytes += buffers[ii].length; }\n\t    \n\t    if (index - startBytes > 0) {\n\t        var start = index - startBytes;\n\t        \n\t        if (start + howMany < buffers[ii].length) {\n\t            removed.push(buffers[ii].slice(start, start + howMany));\n\t            \n\t            var orig = buffers[ii];\n\t            //var buf = new Buffer(orig.length - howMany);\n\t            var buf0 = new Buffer(start);\n\t            for (var i = 0; i < start; i++) {\n\t                buf0[i] = orig[i];\n\t            }\n\t            \n\t            var buf1 = new Buffer(orig.length - start - howMany);\n\t            for (var i = start + howMany; i < orig.length; i++) {\n\t                buf1[ i - howMany - start ] = orig[i];\n\t            }\n\t            \n\t            if (reps.length > 0) {\n\t                var reps_ = reps.slice();\n\t                reps_.unshift(buf0);\n\t                reps_.push(buf1);\n\t                buffers.splice.apply(buffers, [ ii, 1 ].concat(reps_));\n\t                ii += reps_.length;\n\t                reps = [];\n\t            }\n\t            else {\n\t                buffers.splice(ii, 1, buf0, buf1);\n\t                //buffers[ii] = buf;\n\t                ii += 2;\n\t            }\n\t        }\n\t        else {\n\t            removed.push(buffers[ii].slice(start));\n\t            buffers[ii] = buffers[ii].slice(0, start);\n\t            ii ++;\n\t        }\n\t    }\n\t    \n\t    if (reps.length > 0) {\n\t        buffers.splice.apply(buffers, [ ii, 0 ].concat(reps));\n\t        ii += reps.length;\n\t    }\n\t    \n\t    while (removed.length < howMany) {\n\t        var buf = buffers[ii];\n\t        var len = buf.length;\n\t        var take = Math.min(len, howMany - removed.length);\n\t        \n\t        if (take === len) {\n\t            removed.push(buf);\n\t            buffers.splice(ii, 1);\n\t        }\n\t        else {\n\t            removed.push(buf.slice(0, take));\n\t            buffers[ii] = buffers[ii].slice(take);\n\t        }\n\t    }\n\t    \n\t    this.length -= removed.length;\n\t    \n\t    return removed;\n\t};\n\t \n\tBuffers.prototype.slice = function (i, j) {\n\t    var buffers = this.buffers;\n\t    if (j === undefined) j = this.length;\n\t    if (i === undefined) i = 0;\n\t    \n\t    if (j > this.length) j = this.length;\n\t    \n\t    var startBytes = 0;\n\t    for (\n\t        var si = 0;\n\t        si < buffers.length && startBytes + buffers[si].length <= i;\n\t        si ++\n\t    ) { startBytes += buffers[si].length; }\n\t    \n\t    var target = new Buffer(j - i);\n\t    \n\t    var ti = 0;\n\t    for (var ii = si; ti < j - i && ii < buffers.length; ii++) {\n\t        var len = buffers[ii].length;\n\t        \n\t        var start = ti === 0 ? i - startBytes : 0;\n\t        var end = ti + len >= j - i\n\t            ? Math.min(start + (j - i) - ti, len)\n\t            : len\n\t        ;\n\t        \n\t        buffers[ii].copy(target, ti, start, end);\n\t        ti += end - start;\n\t    }\n\t    \n\t    return target;\n\t};\n\n\tBuffers.prototype.pos = function (i) {\n\t    if (i < 0 || i >= this.length) throw new Error('oob');\n\t    var l = i, bi = 0, bu = null;\n\t    for (;;) {\n\t        bu = this.buffers[bi];\n\t        if (l < bu.length) {\n\t            return {buf: bi, offset: l};\n\t        } else {\n\t            l -= bu.length;\n\t        }\n\t        bi++;\n\t    }\n\t};\n\n\tBuffers.prototype.get = function get (i) {\n\t    var pos = this.pos(i);\n\n\t    return this.buffers[pos.buf].get(pos.offset);\n\t};\n\n\tBuffers.prototype.set = function set (i, b) {\n\t    var pos = this.pos(i);\n\n\t    return this.buffers[pos.buf].set(pos.offset, b);\n\t};\n\n\tBuffers.prototype.indexOf = function (needle, offset) {\n\t    if (\"string\" === typeof needle) {\n\t        needle = new Buffer(needle);\n\t    } else if (needle instanceof Buffer) ; else {\n\t        throw new Error('Invalid type for a search string');\n\t    }\n\n\t    if (!needle.length) {\n\t        return 0;\n\t    }\n\n\t    if (!this.length) {\n\t        return -1;\n\t    }\n\n\t    var i = 0, j = 0, match = 0, mstart, pos = 0;\n\n\t    // start search from a particular point in the virtual buffer\n\t    if (offset) {\n\t        var p = this.pos(offset);\n\t        i = p.buf;\n\t        j = p.offset;\n\t        pos = offset;\n\t    }\n\n\t    // for each character in virtual buffer\n\t    for (;;) {\n\t        while (j >= this.buffers[i].length) {\n\t            j = 0;\n\t            i++;\n\n\t            if (i >= this.buffers.length) {\n\t                // search string not found\n\t                return -1;\n\t            }\n\t        }\n\n\t        var char = this.buffers[i][j];\n\n\t        if (char == needle[match]) {\n\t            // keep track where match started\n\t            if (match == 0) {\n\t                mstart = {\n\t                    i: i,\n\t                    j: j,\n\t                    pos: pos\n\t                };\n\t            }\n\t            match++;\n\t            if (match == needle.length) {\n\t                // full match\n\t                return mstart.pos;\n\t            }\n\t        } else if (match != 0) {\n\t            // a partial match ended, go back to match starting position\n\t            // this will continue the search at the next character\n\t            i = mstart.i;\n\t            j = mstart.j;\n\t            pos = mstart.pos;\n\t            match = 0;\n\t        }\n\n\t        j++;\n\t        pos++;\n\t    }\n\t};\n\n\tBuffers.prototype.toBuffer = function() {\n\t    return this.slice();\n\t};\n\n\tBuffers.prototype.toString = function(encoding, start, end) {\n\t    return this.slice(start, end).toString(encoding);\n\t};\n\treturn buffers;\n}\n\nvar vars;\nvar hasRequiredVars;\n\nfunction requireVars () {\n\tif (hasRequiredVars) return vars;\n\thasRequiredVars = 1;\n\tvars = function (store) {\n\t    function getset (name, value) {\n\t        var node = vars.store;\n\t        var keys = name.split('.');\n\t        keys.slice(0,-1).forEach(function (k) {\n\t            if (node[k] === undefined) node[k] = {};\n\t            node = node[k];\n\t        });\n\t        var key = keys[keys.length - 1];\n\t        if (arguments.length == 1) {\n\t            return node[key];\n\t        }\n\t        else {\n\t            return node[key] = value;\n\t        }\n\t    }\n\t    \n\t    var vars = {\n\t        get : function (name) {\n\t            return getset(name);\n\t        },\n\t        set : function (name, value) {\n\t            return getset(name, value);\n\t        },\n\t        store : store || {},\n\t    };\n\t    return vars;\n\t};\n\treturn vars;\n}\n\nvar hasRequiredBinary;\n\nfunction requireBinary () {\n\tif (hasRequiredBinary) return binary.exports;\n\thasRequiredBinary = 1;\n\t(function (module, exports) {\n\t\tvar Chainsaw = requireChainsaw();\n\t\tvar EventEmitter = require$$1$4.EventEmitter;\n\t\tvar Buffers = requireBuffers();\n\t\tvar Vars = requireVars();\n\t\tvar Stream = require$$0$b.Stream;\n\n\t\texports = module.exports = function (bufOrEm, eventName) {\n\t\t    if (Buffer.isBuffer(bufOrEm)) {\n\t\t        return exports.parse(bufOrEm);\n\t\t    }\n\t\t    \n\t\t    var s = exports.stream();\n\t\t    if (bufOrEm && bufOrEm.pipe) {\n\t\t        bufOrEm.pipe(s);\n\t\t    }\n\t\t    else if (bufOrEm) {\n\t\t        bufOrEm.on(eventName || 'data', function (buf) {\n\t\t            s.write(buf);\n\t\t        });\n\t\t        \n\t\t        bufOrEm.on('end', function () {\n\t\t            s.end();\n\t\t        });\n\t\t    }\n\t\t    return s;\n\t\t};\n\n\t\texports.stream = function (input) {\n\t\t    if (input) return exports.apply(null, arguments);\n\t\t    \n\t\t    var pending = null;\n\t\t    function getBytes (bytes, cb, skip) {\n\t\t        pending = {\n\t\t            bytes : bytes,\n\t\t            skip : skip,\n\t\t            cb : function (buf) {\n\t\t                pending = null;\n\t\t                cb(buf);\n\t\t            },\n\t\t        };\n\t\t        dispatch();\n\t\t    }\n\t\t    \n\t\t    var offset = null;\n\t\t    function dispatch () {\n\t\t        if (!pending) {\n\t\t            if (caughtEnd) done = true;\n\t\t            return;\n\t\t        }\n\t\t        if (typeof pending === 'function') {\n\t\t            pending();\n\t\t        }\n\t\t        else {\n\t\t            var bytes = offset + pending.bytes;\n\t\t            \n\t\t            if (buffers.length >= bytes) {\n\t\t                var buf;\n\t\t                if (offset == null) {\n\t\t                    buf = buffers.splice(0, bytes);\n\t\t                    if (!pending.skip) {\n\t\t                        buf = buf.slice();\n\t\t                    }\n\t\t                }\n\t\t                else {\n\t\t                    if (!pending.skip) {\n\t\t                        buf = buffers.slice(offset, bytes);\n\t\t                    }\n\t\t                    offset = bytes;\n\t\t                }\n\t\t                \n\t\t                if (pending.skip) {\n\t\t                    pending.cb();\n\t\t                }\n\t\t                else {\n\t\t                    pending.cb(buf);\n\t\t                }\n\t\t            }\n\t\t        }\n\t\t    }\n\t\t    \n\t\t    function builder (saw) {\n\t\t        function next () { if (!done) saw.next(); }\n\t\t        \n\t\t        var self = words(function (bytes, cb) {\n\t\t            return function (name) {\n\t\t                getBytes(bytes, function (buf) {\n\t\t                    vars.set(name, cb(buf));\n\t\t                    next();\n\t\t                });\n\t\t            };\n\t\t        });\n\t\t        \n\t\t        self.tap = function (cb) {\n\t\t            saw.nest(cb, vars.store);\n\t\t        };\n\t\t        \n\t\t        self.into = function (key, cb) {\n\t\t            if (!vars.get(key)) vars.set(key, {});\n\t\t            var parent = vars;\n\t\t            vars = Vars(parent.get(key));\n\t\t            \n\t\t            saw.nest(function () {\n\t\t                cb.apply(this, arguments);\n\t\t                this.tap(function () {\n\t\t                    vars = parent;\n\t\t                });\n\t\t            }, vars.store);\n\t\t        };\n\t\t        \n\t\t        self.flush = function () {\n\t\t            vars.store = {};\n\t\t            next();\n\t\t        };\n\t\t        \n\t\t        self.loop = function (cb) {\n\t\t            var end = false;\n\t\t            \n\t\t            saw.nest(false, function loop () {\n\t\t                this.vars = vars.store;\n\t\t                cb.call(this, function () {\n\t\t                    end = true;\n\t\t                    next();\n\t\t                }, vars.store);\n\t\t                this.tap(function () {\n\t\t                    if (end) saw.next();\n\t\t                    else loop.call(this);\n\t\t                }.bind(this));\n\t\t            }, vars.store);\n\t\t        };\n\t\t        \n\t\t        self.buffer = function (name, bytes) {\n\t\t            if (typeof bytes === 'string') {\n\t\t                bytes = vars.get(bytes);\n\t\t            }\n\t\t            \n\t\t            getBytes(bytes, function (buf) {\n\t\t                vars.set(name, buf);\n\t\t                next();\n\t\t            });\n\t\t        };\n\t\t        \n\t\t        self.skip = function (bytes) {\n\t\t            if (typeof bytes === 'string') {\n\t\t                bytes = vars.get(bytes);\n\t\t            }\n\t\t            \n\t\t            getBytes(bytes, function () {\n\t\t                next();\n\t\t            });\n\t\t        };\n\t\t        \n\t\t        self.scan = function find (name, search) {\n\t\t            if (typeof search === 'string') {\n\t\t                search = new Buffer(search);\n\t\t            }\n\t\t            else if (!Buffer.isBuffer(search)) {\n\t\t                throw new Error('search must be a Buffer or a string');\n\t\t            }\n\t\t            \n\t\t            var taken = 0;\n\t\t            pending = function () {\n\t\t                var pos = buffers.indexOf(search, offset + taken);\n\t\t                var i = pos-offset-taken;\n\t\t                if (pos !== -1) {\n\t\t                    pending = null;\n\t\t                    if (offset != null) {\n\t\t                        vars.set(\n\t\t                            name,\n\t\t                            buffers.slice(offset, offset + taken + i)\n\t\t                        );\n\t\t                        offset += taken + i + search.length;\n\t\t                    }\n\t\t                    else {\n\t\t                        vars.set(\n\t\t                            name,\n\t\t                            buffers.slice(0, taken + i)\n\t\t                        );\n\t\t                        buffers.splice(0, taken + i + search.length);\n\t\t                    }\n\t\t                    next();\n\t\t                    dispatch();\n\t\t                } else {\n\t\t                    i = Math.max(buffers.length - search.length - offset - taken, 0);\n\t\t\t\t\t\t}\n\t\t                taken += i;\n\t\t            };\n\t\t            dispatch();\n\t\t        };\n\t\t        \n\t\t        self.peek = function (cb) {\n\t\t            offset = 0;\n\t\t            saw.nest(function () {\n\t\t                cb.call(this, vars.store);\n\t\t                this.tap(function () {\n\t\t                    offset = null;\n\t\t                });\n\t\t            });\n\t\t        };\n\t\t        \n\t\t        return self;\n\t\t    }\t\t    \n\t\t    var stream = Chainsaw.light(builder);\n\t\t    stream.writable = true;\n\t\t    \n\t\t    var buffers = Buffers();\n\t\t    \n\t\t    stream.write = function (buf) {\n\t\t        buffers.push(buf);\n\t\t        dispatch();\n\t\t    };\n\t\t    \n\t\t    var vars = Vars();\n\t\t    \n\t\t    var done = false, caughtEnd = false;\n\t\t    stream.end = function () {\n\t\t        caughtEnd = true;\n\t\t    };\n\t\t    \n\t\t    stream.pipe = Stream.prototype.pipe;\n\t\t    Object.getOwnPropertyNames(EventEmitter.prototype).forEach(function (name) {\n\t\t        stream[name] = EventEmitter.prototype[name];\n\t\t    });\n\t\t    \n\t\t    return stream;\n\t\t};\n\n\t\texports.parse = function parse (buffer) {\n\t\t    var self = words(function (bytes, cb) {\n\t\t        return function (name) {\n\t\t            if (offset + bytes <= buffer.length) {\n\t\t                var buf = buffer.slice(offset, offset + bytes);\n\t\t                offset += bytes;\n\t\t                vars.set(name, cb(buf));\n\t\t            }\n\t\t            else {\n\t\t                vars.set(name, null);\n\t\t            }\n\t\t            return self;\n\t\t        };\n\t\t    });\n\t\t    \n\t\t    var offset = 0;\n\t\t    var vars = Vars();\n\t\t    self.vars = vars.store;\n\t\t    \n\t\t    self.tap = function (cb) {\n\t\t        cb.call(self, vars.store);\n\t\t        return self;\n\t\t    };\n\t\t    \n\t\t    self.into = function (key, cb) {\n\t\t        if (!vars.get(key)) {\n\t\t            vars.set(key, {});\n\t\t        }\n\t\t        var parent = vars;\n\t\t        vars = Vars(parent.get(key));\n\t\t        cb.call(self, vars.store);\n\t\t        vars = parent;\n\t\t        return self;\n\t\t    };\n\t\t    \n\t\t    self.loop = function (cb) {\n\t\t        var end = false;\n\t\t        var ender = function () { end = true; };\n\t\t        while (end === false) {\n\t\t            cb.call(self, ender, vars.store);\n\t\t        }\n\t\t        return self;\n\t\t    };\n\t\t    \n\t\t    self.buffer = function (name, size) {\n\t\t        if (typeof size === 'string') {\n\t\t            size = vars.get(size);\n\t\t        }\n\t\t        var buf = buffer.slice(offset, Math.min(buffer.length, offset + size));\n\t\t        offset += size;\n\t\t        vars.set(name, buf);\n\t\t        \n\t\t        return self;\n\t\t    };\n\t\t    \n\t\t    self.skip = function (bytes) {\n\t\t        if (typeof bytes === 'string') {\n\t\t            bytes = vars.get(bytes);\n\t\t        }\n\t\t        offset += bytes;\n\t\t        \n\t\t        return self;\n\t\t    };\n\t\t    \n\t\t    self.scan = function (name, search) {\n\t\t        if (typeof search === 'string') {\n\t\t            search = new Buffer(search);\n\t\t        }\n\t\t        else if (!Buffer.isBuffer(search)) {\n\t\t            throw new Error('search must be a Buffer or a string');\n\t\t        }\n\t\t        vars.set(name, null);\n\t\t        \n\t\t        // simple but slow string search\n\t\t        for (var i = 0; i + offset <= buffer.length - search.length + 1; i++) {\n\t\t            for (\n\t\t                var j = 0;\n\t\t                j < search.length && buffer[offset+i+j] === search[j];\n\t\t                j++\n\t\t            );\n\t\t            if (j === search.length) break;\n\t\t        }\n\t\t        \n\t\t        vars.set(name, buffer.slice(offset, offset + i));\n\t\t        offset += i + search.length;\n\t\t        return self;\n\t\t    };\n\t\t    \n\t\t    self.peek = function (cb) {\n\t\t        var was = offset;\n\t\t        cb.call(self, vars.store);\n\t\t        offset = was;\n\t\t        return self;\n\t\t    };\n\t\t    \n\t\t    self.flush = function () {\n\t\t        vars.store = {};\n\t\t        return self;\n\t\t    };\n\t\t    \n\t\t    self.eof = function () {\n\t\t        return offset >= buffer.length;\n\t\t    };\n\t\t    \n\t\t    return self;\n\t\t};\n\n\t\t// convert byte strings to unsigned little endian numbers\n\t\tfunction decodeLEu (bytes) {\n\t\t    var acc = 0;\n\t\t    for (var i = 0; i < bytes.length; i++) {\n\t\t        acc += Math.pow(256,i) * bytes[i];\n\t\t    }\n\t\t    return acc;\n\t\t}\n\n\t\t// convert byte strings to unsigned big endian numbers\n\t\tfunction decodeBEu (bytes) {\n\t\t    var acc = 0;\n\t\t    for (var i = 0; i < bytes.length; i++) {\n\t\t        acc += Math.pow(256, bytes.length - i - 1) * bytes[i];\n\t\t    }\n\t\t    return acc;\n\t\t}\n\n\t\t// convert byte strings to signed big endian numbers\n\t\tfunction decodeBEs (bytes) {\n\t\t    var val = decodeBEu(bytes);\n\t\t    if ((bytes[0] & 0x80) == 0x80) {\n\t\t        val -= Math.pow(256, bytes.length);\n\t\t    }\n\t\t    return val;\n\t\t}\n\n\t\t// convert byte strings to signed little endian numbers\n\t\tfunction decodeLEs (bytes) {\n\t\t    var val = decodeLEu(bytes);\n\t\t    if ((bytes[bytes.length - 1] & 0x80) == 0x80) {\n\t\t        val -= Math.pow(256, bytes.length);\n\t\t    }\n\t\t    return val;\n\t\t}\n\n\t\tfunction words (decode) {\n\t\t    var self = {};\n\t\t    \n\t\t    [ 1, 2, 4, 8 ].forEach(function (bytes) {\n\t\t        var bits = bytes * 8;\n\t\t        \n\t\t        self['word' + bits + 'le']\n\t\t        = self['word' + bits + 'lu']\n\t\t        = decode(bytes, decodeLEu);\n\t\t        \n\t\t        self['word' + bits + 'ls']\n\t\t        = decode(bytes, decodeLEs);\n\t\t        \n\t\t        self['word' + bits + 'be']\n\t\t        = self['word' + bits + 'bu']\n\t\t        = decode(bytes, decodeBEu);\n\t\t        \n\t\t        self['word' + bits + 'bs']\n\t\t        = decode(bytes, decodeBEs);\n\t\t    });\n\t\t    \n\t\t    // word8be(n) == word8le(n) for all n\n\t\t    self.word8 = self.word8u = self.word8be;\n\t\t    self.word8s = self.word8bs;\n\t\t    \n\t\t    return self;\n\t\t} \n\t} (binary, binary.exports));\n\treturn binary.exports;\n}\n\nvar matcherStream;\nvar hasRequiredMatcherStream;\n\nfunction requireMatcherStream () {\n\tif (hasRequiredMatcherStream) return matcherStream;\n\thasRequiredMatcherStream = 1;\n\tvar Transform = require$$0$b.Transform;\n\tvar util = require$$0__default$1;\n\n\tfunction MatcherStream(patternDesc, matchFn) {\n\t    if (!(this instanceof MatcherStream)) {\n\t        return new MatcherStream();\n\t    }\n\n\t    Transform.call(this);\n\n\t    var p = typeof patternDesc === 'object' ? patternDesc.pattern : patternDesc;\n\n\t    this.pattern = Buffer.isBuffer(p) ? p : Buffer.from(p);\n\t    this.requiredLength = this.pattern.length;\n\t    if (patternDesc.requiredExtraSize) this.requiredLength += patternDesc.requiredExtraSize;\n\n\t    this.data = new Buffer('');\n\t    this.bytesSoFar = 0;\n\n\t    this.matchFn = matchFn;\n\t}\n\n\tutil.inherits(MatcherStream, Transform);\n\n\tMatcherStream.prototype.checkDataChunk = function (ignoreMatchZero) {\n\t    var enoughData = this.data.length >= this.requiredLength; // strict more than ?\n\t    if (!enoughData) { return; }\n\n\t    var matchIndex = this.data.indexOf(this.pattern, ignoreMatchZero ? 1 : 0);\n\t    if (matchIndex >= 0 && matchIndex + this.requiredLength > this.data.length) {\n\t        if (matchIndex > 0) {\n\t            var packet = this.data.slice(0, matchIndex);\n\t            this.push(packet);\n\t            this.bytesSoFar += matchIndex;\n\t            this.data = this.data.slice(matchIndex);\n\t        }\n\t        return;\n\t    }\n\n\t    if (matchIndex === -1) {\n\t        var packetLen = this.data.length - this.requiredLength + 1;\n\n\t        var packet = this.data.slice(0, packetLen);\n\t        this.push(packet);\n\t        this.bytesSoFar += packetLen;\n\t        this.data = this.data.slice(packetLen);\n\t        return;\n\t    }\n\n\t    // found match\n\t    if (matchIndex > 0) {\n\t        var packet = this.data.slice(0, matchIndex);\n\t        this.data = this.data.slice(matchIndex);\n\t        this.push(packet);\n\t        this.bytesSoFar += matchIndex;\n\t    }\n\n\t    var finished = this.matchFn ? this.matchFn(this.data, this.bytesSoFar) : true;\n\t    if (finished) {\n\t        this.data = new Buffer('');\n\t        return;\n\t    }\n\n\t    return true;\n\t};\n\n\tMatcherStream.prototype._transform = function (chunk, encoding, cb) {\n\t    this.data = Buffer.concat([this.data, chunk]);\n\n\t    var firstIteration = true;\n\t    while (this.checkDataChunk(!firstIteration)) {\n\t        firstIteration = false;\n\t    }\n\n\t    cb();\n\t};\n\n\tMatcherStream.prototype._flush = function (cb) {\n\t    if (this.data.length > 0) {\n\t        var firstIteration = true;\n\t        while (this.checkDataChunk(!firstIteration)) {\n\t            firstIteration = false;\n\t        }\n\t    }\n\n\t    if (this.data.length > 0) {\n\t        this.push(this.data);\n\t        this.data = null;\n\t    }\n\n\t    cb();\n\t};\n\n\tmatcherStream = MatcherStream;\n\treturn matcherStream;\n}\n\nvar entry;\nvar hasRequiredEntry;\n\nfunction requireEntry () {\n\tif (hasRequiredEntry) return entry;\n\thasRequiredEntry = 1;\n\n\tvar stream = require$$0$b;\n\tvar inherits = require$$0__default$1.inherits;\n\n\tfunction Entry() {\n\t    if (!(this instanceof Entry)) {\n\t        return new Entry();\n\t    }\n\n\t    stream.PassThrough.call(this);\n\n\t    this.path = null;\n\t    this.type = null;\n\t    this.isDirectory = false;\n\t}\n\n\tinherits(Entry, stream.PassThrough);\n\n\tEntry.prototype.autodrain = function () {\n\t    return this.pipe(new stream.Transform({ transform: function (d, e, cb) { cb(); } }));\n\t};\n\n\tentry = Entry;\n\treturn entry;\n}\n\nvar unzipStream;\nvar hasRequiredUnzipStream;\n\nfunction requireUnzipStream () {\n\tif (hasRequiredUnzipStream) return unzipStream;\n\thasRequiredUnzipStream = 1;\n\n\tvar binary = requireBinary();\n\tvar stream = require$$0$b;\n\tvar util = require$$0__default$1;\n\tvar zlib = zlib$1;\n\tvar MatcherStream = requireMatcherStream();\n\tvar Entry = requireEntry();\n\n\tconst states = {\n\t    STREAM_START:                         0,\n\t    START:                                1,\n\t    LOCAL_FILE_HEADER:                    2,\n\t    LOCAL_FILE_HEADER_SUFFIX:             3,\n\t    FILE_DATA:                            4,\n\t    FILE_DATA_END:                        5,\n\t    DATA_DESCRIPTOR:                      6,\n\t    CENTRAL_DIRECTORY_FILE_HEADER:        7,\n\t    CENTRAL_DIRECTORY_FILE_HEADER_SUFFIX: 8,\n\t    CDIR64_END:                           9,\n\t    CDIR64_END_DATA_SECTOR:               10,\n\t    CDIR64_LOCATOR:                       11,\n\t    CENTRAL_DIRECTORY_END:                12,\n\t    CENTRAL_DIRECTORY_END_COMMENT:        13,\n\t    TRAILING_JUNK:                        14,\n\n\t    ERROR: 99\n\t};\n\n\tconst FOUR_GIGS = 4294967296;\n\n\tconst SIG_LOCAL_FILE_HEADER  = 0x04034b50;\n\tconst SIG_DATA_DESCRIPTOR    = 0x08074b50;\n\tconst SIG_CDIR_RECORD        = 0x02014b50;\n\tconst SIG_CDIR64_RECORD_END  = 0x06064b50;\n\tconst SIG_CDIR64_LOCATOR_END = 0x07064b50;\n\tconst SIG_CDIR_RECORD_END    = 0x06054b50;\n\n\tfunction UnzipStream(options) {\n\t    if (!(this instanceof UnzipStream)) {\n\t        return new UnzipStream(options);\n\t    }\n\n\t    stream.Transform.call(this);\n\n\t    this.options = options || {};\n\t    this.data = new Buffer('');\n\t    this.state = states.STREAM_START;\n\t    this.skippedBytes = 0;\n\t    this.parsedEntity = null;\n\t    this.outStreamInfo = {};\n\t}\n\n\tutil.inherits(UnzipStream, stream.Transform);\n\n\tUnzipStream.prototype.processDataChunk = function (chunk) {\n\t    var requiredLength;\n\n\t    switch (this.state) {\n\t        case states.STREAM_START:\n\t        case states.START:\n\t            requiredLength = 4;\n\t            break;\n\t        case states.LOCAL_FILE_HEADER:\n\t            requiredLength = 26;\n\t            break;\n\t        case states.LOCAL_FILE_HEADER_SUFFIX:\n\t            requiredLength = this.parsedEntity.fileNameLength + this.parsedEntity.extraFieldLength;\n\t            break;\n\t        case states.DATA_DESCRIPTOR:\n\t            requiredLength = 12;\n\t            break;\n\t        case states.CENTRAL_DIRECTORY_FILE_HEADER:\n\t            requiredLength = 42;\n\t            break;\n\t        case states.CENTRAL_DIRECTORY_FILE_HEADER_SUFFIX:\n\t            requiredLength = this.parsedEntity.fileNameLength + this.parsedEntity.extraFieldLength + this.parsedEntity.fileCommentLength;\n\t            break;\n\t        case states.CDIR64_END:\n\t            requiredLength = 52;\n\t            break;\n\t        case states.CDIR64_END_DATA_SECTOR:\n\t            requiredLength = this.parsedEntity.centralDirectoryRecordSize - 44;\n\t            break;\n\t        case states.CDIR64_LOCATOR:\n\t            requiredLength = 16;\n\t            break;\n\t        case states.CENTRAL_DIRECTORY_END:\n\t            requiredLength = 18;\n\t            break;\n\t        case states.CENTRAL_DIRECTORY_END_COMMENT:\n\t            requiredLength = this.parsedEntity.commentLength;\n\t            break;\n\t        case states.FILE_DATA:\n\t            return 0;\n\t        case states.FILE_DATA_END:\n\t            return 0;\n\t        case states.TRAILING_JUNK:\n\t            if (this.options.debug) console.log(\"found\", chunk.length, \"bytes of TRAILING_JUNK\");\n\t            return chunk.length;\n\t        default:\n\t            return chunk.length;\n\t    }\n\n\t    var chunkLength = chunk.length;\n\t    if (chunkLength < requiredLength) {\n\t        return 0;\n\t    }\n\n\t    switch (this.state) {\n\t        case states.STREAM_START:\n\t        case states.START:\n\t            var signature = chunk.readUInt32LE(0);\n\t            switch (signature) {\n\t                case SIG_LOCAL_FILE_HEADER:\n\t                    this.state = states.LOCAL_FILE_HEADER;\n\t                    break;\n\t                case SIG_CDIR_RECORD:\n\t                    this.state = states.CENTRAL_DIRECTORY_FILE_HEADER;\n\t                    break;\n\t                case SIG_CDIR64_RECORD_END:\n\t                    this.state = states.CDIR64_END;\n\t                    break;\n\t                case SIG_CDIR64_LOCATOR_END:\n\t                    this.state = states.CDIR64_LOCATOR;\n\t                    break;\n\t                case SIG_CDIR_RECORD_END:\n\t                    this.state = states.CENTRAL_DIRECTORY_END;\n\t                    break;\n\t                default:\n\t                    var isStreamStart = this.state === states.STREAM_START;\n\t                    if (!isStreamStart && (signature & 0xffff) !== 0x4b50 && this.skippedBytes < 26) {\n\t                        // we'll allow a padding of max 28 bytes\n\t                        var remaining = signature;\n\t                        var toSkip = 4;\n\t                        for (var i = 1; i < 4 && remaining !== 0; i++) {\n\t                            remaining = remaining >>> 8;\n\t                            if ((remaining & 0xff) === 0x50) {\n\t                                toSkip = i;\n\t                                break;\n\t                            }\n\t                        }\n\t                        this.skippedBytes += toSkip;\n\t                        if (this.options.debug) console.log('Skipped', this.skippedBytes, 'bytes');\n\t                        return toSkip;\n\t                    }\n\t                    this.state = states.ERROR;\n\t                    var errMsg = isStreamStart ? \"Not a valid zip file\" : \"Invalid signature in zip file\";\n\t                    if (this.options.debug) {\n\t                        var sig = chunk.readUInt32LE(0);\n\t                        var asString;\n\t                        try { asString = chunk.slice(0, 4).toString(); } catch (e) {}\n\t                        console.log(\"Unexpected signature in zip file: 0x\" + sig.toString(16), '\"' + asString + '\", skipped', this.skippedBytes, 'bytes');\n\t                    }\n\t                    this.emit(\"error\", new Error(errMsg));\n\t                    return chunk.length;\n\t            }\n\t            this.skippedBytes = 0;\n\t            return requiredLength;\n\n\t        case states.LOCAL_FILE_HEADER:\n\t            this.parsedEntity = this._readFile(chunk);\n\t            this.state = states.LOCAL_FILE_HEADER_SUFFIX;\n\n\t            return requiredLength;\n\n\t        case states.LOCAL_FILE_HEADER_SUFFIX:\n\t            var entry = new Entry();\n\t            var isUtf8 = (this.parsedEntity.flags & 0x800) !== 0;\n\t            entry.path = this._decodeString(chunk.slice(0, this.parsedEntity.fileNameLength), isUtf8);\n\t            var extraDataBuffer = chunk.slice(this.parsedEntity.fileNameLength, this.parsedEntity.fileNameLength + this.parsedEntity.extraFieldLength);\n\t            var extra = this._readExtraFields(extraDataBuffer);\n\t            if (extra && extra.parsed) {\n\t                if (extra.parsed.path && !isUtf8) {\n\t                    entry.path = extra.parsed.path;\n\t                }\n\t                if (Number.isFinite(extra.parsed.uncompressedSize) && this.parsedEntity.uncompressedSize === FOUR_GIGS-1) {\n\t                    this.parsedEntity.uncompressedSize = extra.parsed.uncompressedSize;\n\t                }\n\t                if (Number.isFinite(extra.parsed.compressedSize) && this.parsedEntity.compressedSize === FOUR_GIGS-1) {\n\t                    this.parsedEntity.compressedSize = extra.parsed.compressedSize;\n\t                }\n\t            }\n\t            this.parsedEntity.extra = extra.parsed || {};\n\n\t            if (this.options.debug) {\n\t                const debugObj = Object.assign({}, this.parsedEntity, {\n\t                    path: entry.path,\n\t                    flags: '0x' + this.parsedEntity.flags.toString(16),\n\t                    extraFields: extra && extra.debug\n\t                });\n\t                console.log(\"decoded LOCAL_FILE_HEADER:\", JSON.stringify(debugObj, null, 2));\n\t            }\n\t            this._prepareOutStream(this.parsedEntity, entry);\n\n\t            this.emit(\"entry\", entry);\n\n\t            this.state = states.FILE_DATA;\n\n\t            return requiredLength;\n\n\t        case states.CENTRAL_DIRECTORY_FILE_HEADER:\n\t            this.parsedEntity = this._readCentralDirectoryEntry(chunk);\n\t            this.state = states.CENTRAL_DIRECTORY_FILE_HEADER_SUFFIX;\n\n\t            return requiredLength;\n\n\t        case states.CENTRAL_DIRECTORY_FILE_HEADER_SUFFIX:\n\t            // got file name in chunk[0..]\n\t            var isUtf8 = (this.parsedEntity.flags & 0x800) !== 0;\n\t            var path = this._decodeString(chunk.slice(0, this.parsedEntity.fileNameLength), isUtf8);\n\t            var extraDataBuffer = chunk.slice(this.parsedEntity.fileNameLength, this.parsedEntity.fileNameLength + this.parsedEntity.extraFieldLength);\n\t            var extra = this._readExtraFields(extraDataBuffer);\n\t            if (extra && extra.parsed && extra.parsed.path && !isUtf8) {\n\t                path = extra.parsed.path;\n\t            }\n\t            this.parsedEntity.extra = extra.parsed;\n\n\t            var isUnix = ((this.parsedEntity.versionMadeBy & 0xff00) >> 8) === 3;\n\t            var unixAttrs, isSymlink;\n\t            if (isUnix) {\n\t                unixAttrs = this.parsedEntity.externalFileAttributes >>> 16;\n\t                var fileType = unixAttrs >>> 12;\n\t                isSymlink = (fileType & 0o12) === 0o12; // __S_IFLNK\n\t            }\n\t            if (this.options.debug) {\n\t                const debugObj = Object.assign({}, this.parsedEntity, {\n\t                    path: path,\n\t                    flags: '0x' + this.parsedEntity.flags.toString(16),\n\t                    unixAttrs: unixAttrs && '0' + unixAttrs.toString(8),\n\t                    isSymlink: isSymlink,\n\t                    extraFields: extra.debug,\n\t                });\n\t                console.log(\"decoded CENTRAL_DIRECTORY_FILE_HEADER:\", JSON.stringify(debugObj, null, 2));\n\t            }\n\t            this.state = states.START;\n\n\t            return requiredLength;\n\n\t        case states.CDIR64_END:\n\t            this.parsedEntity = this._readEndOfCentralDirectory64(chunk);\n\t            if (this.options.debug) {\n\t                console.log(\"decoded CDIR64_END_RECORD:\", this.parsedEntity);\n\t            }\n\t            this.state = states.CDIR64_END_DATA_SECTOR;\n\n\t            return requiredLength;\n\n\t        case states.CDIR64_END_DATA_SECTOR:\n\t            this.state = states.START;\n\n\t            return requiredLength;\n\n\t        case states.CDIR64_LOCATOR:\n\t            // ignore, nothing interesting\n\t            this.state = states.START;\n\n\t            return requiredLength;\n\n\t        case states.CENTRAL_DIRECTORY_END:\n\t            this.parsedEntity = this._readEndOfCentralDirectory(chunk);\n\t            if (this.options.debug) {\n\t                console.log(\"decoded CENTRAL_DIRECTORY_END:\", this.parsedEntity);\n\t            }\n\t            this.state = states.CENTRAL_DIRECTORY_END_COMMENT;\n\n\t            return requiredLength;\n\n\t        case states.CENTRAL_DIRECTORY_END_COMMENT:\n\t            if (this.options.debug) {\n\t                console.log(\"decoded CENTRAL_DIRECTORY_END_COMMENT:\", chunk.slice(0, requiredLength).toString());\n\t            }\n\t            this.state = states.TRAILING_JUNK;\n\n\t            return requiredLength;\n\n\t        case states.ERROR:\n\t            return chunk.length; // discard\n\n\t        default:\n\t            console.log(\"didn't handle state #\", this.state, \"discarding\");\n\t            return chunk.length;\n\t    }\n\t};\n\n\tUnzipStream.prototype._prepareOutStream = function (vars, entry) {\n\t    var self = this;\n\n\t    var isDirectory = vars.uncompressedSize === 0 && /[\\/\\\\]$/.test(entry.path);\n\t    // protect against malicious zip files which want to extract to parent dirs\n\t    entry.path = entry.path.replace(/(?<=^|[/\\\\]+)[.][.]+(?=[/\\\\]+|$)/g, \".\");\n\t    entry.type = isDirectory ? 'Directory' : 'File';\n\t    entry.isDirectory = isDirectory;\n\n\t    var fileSizeKnown = !(vars.flags & 0x08);\n\t    if (fileSizeKnown) {\n\t        entry.size = vars.uncompressedSize;\n\t    }\n\n\t    var isVersionSupported = vars.versionsNeededToExtract <= 45;\n\n\t    this.outStreamInfo = {\n\t        stream: null,\n\t        limit: fileSizeKnown ? vars.compressedSize : -1,\n\t        written: 0\n\t    };\n\n\t    if (!fileSizeKnown) {\n\t        var pattern = new Buffer(4);\n\t        pattern.writeUInt32LE(SIG_DATA_DESCRIPTOR, 0);\n\t        var zip64Mode = vars.extra.zip64Mode;\n\t        var extraSize = zip64Mode ? 20 : 12;\n\t        var searchPattern = {\n\t            pattern: pattern,\n\t            requiredExtraSize: extraSize\n\t        };\n\n\t        var matcherStream = new MatcherStream(searchPattern, function (matchedChunk, sizeSoFar) {\n\t            var vars = self._readDataDescriptor(matchedChunk, zip64Mode);\n\n\t            var compressedSizeMatches = vars.compressedSize === sizeSoFar;\n\t            // let's also deal with archives with 4GiB+ files without zip64\n\t            if (!zip64Mode && !compressedSizeMatches && sizeSoFar >= FOUR_GIGS) {\n\t                var overflown = sizeSoFar - FOUR_GIGS;\n\t                while (overflown >= 0) {\n\t                    compressedSizeMatches = vars.compressedSize === overflown;\n\t                    if (compressedSizeMatches) break;\n\t                    overflown -= FOUR_GIGS;\n\t                }\n\t            }\n\t            if (!compressedSizeMatches) { return; }\n\n\t            self.state = states.FILE_DATA_END;\n\t            var sliceOffset = zip64Mode ? 24 : 16;\n\t            if (self.data.length > 0) {\n\t                self.data = Buffer.concat([matchedChunk.slice(sliceOffset), self.data]);\n\t            } else {\n\t                self.data = matchedChunk.slice(sliceOffset);\n\t            }\n\n\t            return true;\n\t        });\n\t        this.outStreamInfo.stream = matcherStream;\n\t    } else {\n\t        this.outStreamInfo.stream = new stream.PassThrough();\n\t    }\n\n\t    var isEncrypted = (vars.flags & 0x01) || (vars.flags & 0x40);\n\t    if (isEncrypted || !isVersionSupported) {\n\t        var message = isEncrypted ? \"Encrypted files are not supported!\"\n\t            : (\"Zip version \" + Math.floor(vars.versionsNeededToExtract / 10) + \".\" + vars.versionsNeededToExtract % 10 + \" is not supported\");\n\n\t        entry.skip = true;\n\t        setImmediate(() => {\n\t            self.emit('error', new Error(message));\n\t        });\n\n\t        // try to skip over this entry\n\t        this.outStreamInfo.stream.pipe(new Entry().autodrain());\n\t        return;\n\t    }\n\n\t    var isCompressed = vars.compressionMethod > 0;\n\t    if (isCompressed) {\n\t        var inflater = zlib.createInflateRaw();\n\t        inflater.on('error', function (err) {\n\t            self.state = states.ERROR;\n\t            self.emit('error', err);\n\t        });\n\t        this.outStreamInfo.stream.pipe(inflater).pipe(entry);\n\t    } else {\n\t        this.outStreamInfo.stream.pipe(entry);\n\t    }\n\n\t    if (this._drainAllEntries) {\n\t        entry.autodrain();\n\t    }\n\t};\n\n\tUnzipStream.prototype._readFile = function (data) {\n\t    var vars = binary.parse(data)\n\t        .word16lu('versionsNeededToExtract')\n\t        .word16lu('flags')\n\t        .word16lu('compressionMethod')\n\t        .word16lu('lastModifiedTime')\n\t        .word16lu('lastModifiedDate')\n\t        .word32lu('crc32')\n\t        .word32lu('compressedSize')\n\t        .word32lu('uncompressedSize')\n\t        .word16lu('fileNameLength')\n\t        .word16lu('extraFieldLength')\n\t        .vars;\n\n\t    return vars;\n\t};\n\n\tUnzipStream.prototype._readExtraFields = function (data) {\n\t    var extra = {};\n\t    var result = { parsed: extra };\n\t    if (this.options.debug) {\n\t        result.debug = [];\n\t    }\n\t    var index = 0;\n\t    while (index < data.length) {\n\t        var vars = binary.parse(data)\n\t            .skip(index)\n\t            .word16lu('extraId')\n\t            .word16lu('extraSize')\n\t            .vars;\n\n\t        index += 4;\n\n\t        var fieldType = undefined;\n\t        switch (vars.extraId) {\n\t            case 0x0001:\n\t                fieldType = \"Zip64 extended information extra field\";\n\t                var z64vars = binary.parse(data.slice(index, index+vars.extraSize))\n\t                    .word64lu('uncompressedSize')\n\t                    .word64lu('compressedSize')\n\t                    .word64lu('offsetToLocalHeader')\n\t                    .word32lu('diskStartNumber')\n\t                    .vars;\n\t                if (z64vars.uncompressedSize !== null) {\n\t                    extra.uncompressedSize = z64vars.uncompressedSize;\n\t                }\n\t                if (z64vars.compressedSize !== null) {\n\t                    extra.compressedSize = z64vars.compressedSize;\n\t                }\n\t                extra.zip64Mode = true;\n\t                break;\n\t            case 0x000a:\n\t                fieldType = \"NTFS extra field\";\n\t                break;\n\t            case 0x5455:\n\t                fieldType = \"extended timestamp\";\n\t                var timestampFields = data.readUInt8(index);\n\t                var offset = 1;\n\t                if (vars.extraSize >= offset + 4 && timestampFields & 1) {\n\t                    extra.mtime = new Date(data.readUInt32LE(index + offset) * 1000);\n\t                    offset += 4;\n\t                }\n\t                if (vars.extraSize >= offset + 4 && timestampFields & 2) {\n\t                    extra.atime = new Date(data.readUInt32LE(index + offset) * 1000);\n\t                    offset += 4;\n\t                }\n\t                if (vars.extraSize >= offset + 4 && timestampFields & 4) {\n\t                    extra.ctime = new Date(data.readUInt32LE(index + offset) * 1000);\n\t                }\n\t                break;\n\t            case 0x7075:\n\t                fieldType = \"Info-ZIP Unicode Path Extra Field\";\n\t                var fieldVer = data.readUInt8(index);\n\t                if (fieldVer === 1) {\n\t                    var offset = 1;\n\t                    // TODO: should be checking this against our path buffer\n\t                    data.readUInt32LE(index + offset);\n\t                    offset += 4;\n\t                    var pathBuffer = data.slice(index + offset);\n\t                    extra.path = pathBuffer.toString();\n\t                }\n\t                break;\n\t            case 0x000d:\n\t            case 0x5855:\n\t                fieldType = vars.extraId === 0x000d ? \"PKWARE Unix\" : \"Info-ZIP UNIX (type 1)\";\n\t                var offset = 0;\n\t                if (vars.extraSize >= 8) {\n\t                    var atime = new Date(data.readUInt32LE(index + offset) * 1000);\n\t                    offset += 4;\n\t                    var mtime = new Date(data.readUInt32LE(index + offset) * 1000);\n\t                    offset += 4;\n\t                    extra.atime = atime;\n\t                    extra.mtime = mtime;\n\n\t                    if (vars.extraSize >= 12) {\n\t                        var uid = data.readUInt16LE(index + offset);\n\t                        offset += 2;\n\t                        var gid = data.readUInt16LE(index + offset);\n\t                        offset += 2;\n\t                        extra.uid = uid;\n\t                        extra.gid = gid;\n\t                    }\n\t                }\n\t                break;\n\t            case 0x7855:\n\t                fieldType = \"Info-ZIP UNIX (type 2)\";\n\t                var offset = 0;\n\t                if (vars.extraSize >= 4) {\n\t                    var uid = data.readUInt16LE(index + offset);\n\t                    offset += 2;\n\t                    var gid = data.readUInt16LE(index + offset);\n\t                    offset += 2;\n\t                    extra.uid = uid;\n\t                    extra.gid = gid;\n\t                }\n\t                break;\n\t            case 0x7875:\n\t                fieldType = \"Info-ZIP New Unix\";\n\t                var offset = 0;\n\t                var extraVer = data.readUInt8(index);\n\t                offset += 1;\n\t                if (extraVer === 1) {\n\t                    var uidSize = data.readUInt8(index + offset);\n\t                    offset += 1;\n\t                    if (uidSize <= 6) {\n\t                        extra.uid = data.readUIntLE(index + offset, uidSize);\n\t                    }\n\t                    offset += uidSize;\n\n\t                    var gidSize = data.readUInt8(index + offset);\n\t                    offset += 1;\n\t                    if (gidSize <= 6) {\n\t                        extra.gid = data.readUIntLE(index + offset, gidSize);\n\t                    }\n\t                }\n\t                break;\n\t            case 0x756e:\n\t                fieldType = \"ASi Unix\";\n\t                var offset = 0;\n\t                if (vars.extraSize >= 14) {\n\t                    data.readUInt32LE(index + offset);\n\t                    offset += 4;\n\t                    var mode = data.readUInt16LE(index + offset);\n\t                    offset += 2;\n\t                    data.readUInt32LE(index + offset);\n\t                    offset += 4;\n\t                    var uid = data.readUInt16LE(index + offset);\n\t                    offset += 2;\n\t                    var gid = data.readUInt16LE(index + offset);\n\t                    offset += 2;\n\t                    extra.mode = mode;\n\t                    extra.uid = uid;\n\t                    extra.gid = gid;\n\t                    if (vars.extraSize > 14) {\n\t                        var start = index + offset;\n\t                        var end = index + vars.extraSize - 14;\n\t                        var symlinkName = this._decodeString(data.slice(start, end));\n\t                        extra.symlink = symlinkName;\n\t                    }\n\t                }\n\t                break;\n\t        }\n\n\t        if (this.options.debug) {\n\t            result.debug.push({\n\t                extraId: '0x' + vars.extraId.toString(16),\n\t                description: fieldType,\n\t                data: data.slice(index, index + vars.extraSize).inspect()\n\t            });\n\t        }\n\n\t        index += vars.extraSize;\n\t    }\n\n\t    return result;\n\t};\n\n\tUnzipStream.prototype._readDataDescriptor = function (data, zip64Mode) {\n\t    if (zip64Mode) {\n\t        var vars = binary.parse(data)\n\t            .word32lu('dataDescriptorSignature')\n\t            .word32lu('crc32')\n\t            .word64lu('compressedSize')\n\t            .word64lu('uncompressedSize')\n\t            .vars;\n\n\t        return vars;\n\t    }\n\n\t    var vars = binary.parse(data)\n\t        .word32lu('dataDescriptorSignature')\n\t        .word32lu('crc32')\n\t        .word32lu('compressedSize')\n\t        .word32lu('uncompressedSize')\n\t        .vars;\n\n\t    return vars;\n\t};\n\n\tUnzipStream.prototype._readCentralDirectoryEntry = function (data) {\n\t    var vars = binary.parse(data)\n\t        .word16lu('versionMadeBy')\n\t        .word16lu('versionsNeededToExtract')\n\t        .word16lu('flags')\n\t        .word16lu('compressionMethod')\n\t        .word16lu('lastModifiedTime')\n\t        .word16lu('lastModifiedDate')\n\t        .word32lu('crc32')\n\t        .word32lu('compressedSize')\n\t        .word32lu('uncompressedSize')\n\t        .word16lu('fileNameLength')\n\t        .word16lu('extraFieldLength')\n\t        .word16lu('fileCommentLength')\n\t        .word16lu('diskNumber')\n\t        .word16lu('internalFileAttributes')\n\t        .word32lu('externalFileAttributes')\n\t        .word32lu('offsetToLocalFileHeader')\n\t        .vars;\n\n\t    return vars;\n\t};\n\n\tUnzipStream.prototype._readEndOfCentralDirectory64 = function (data) {\n\t    var vars = binary.parse(data)\n\t        .word64lu('centralDirectoryRecordSize')\n\t        .word16lu('versionMadeBy')\n\t        .word16lu('versionsNeededToExtract')\n\t        .word32lu('diskNumber')\n\t        .word32lu('diskNumberWithCentralDirectoryStart')\n\t        .word64lu('centralDirectoryEntries')\n\t        .word64lu('totalCentralDirectoryEntries')\n\t        .word64lu('sizeOfCentralDirectory')\n\t        .word64lu('offsetToStartOfCentralDirectory')\n\t        .vars;\n\n\t    return vars;\n\t};\n\n\tUnzipStream.prototype._readEndOfCentralDirectory = function (data) {\n\t    var vars = binary.parse(data)\n\t        .word16lu('diskNumber')\n\t        .word16lu('diskStart')\n\t        .word16lu('centralDirectoryEntries')\n\t        .word16lu('totalCentralDirectoryEntries')\n\t        .word32lu('sizeOfCentralDirectory')\n\t        .word32lu('offsetToStartOfCentralDirectory')\n\t        .word16lu('commentLength')\n\t        .vars;\n\n\t    return vars;\n\t};\n\n\tconst cp437 = '\\u0000☺☻♥♦♣♠•◘○◙♂♀♪♫☼►◄↕‼¶§▬↨↑↓→←∟↔▲▼ !\"#$%&\\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\\\]^_`abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñÑªº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ ';\n\n\tUnzipStream.prototype._decodeString = function (buffer, isUtf8) {\n\t    if (isUtf8) {\n\t        return buffer.toString('utf8');\n\t    }\n\t    // allow passing custom decoder\n\t    if (this.options.decodeString) {\n\t        return this.options.decodeString(buffer);\n\t    }\n\t    let result = \"\";\n\t    for (var i=0; i<buffer.length; i++) {\n\t        result += cp437[buffer[i]];\n\t    }\n\t    return result;\n\t};\n\n\tUnzipStream.prototype._parseOrOutput = function (encoding, cb) {\n\t    var consume;\n\t    while ((consume = this.processDataChunk(this.data)) > 0) {\n\t        this.data = this.data.slice(consume);\n\t        if (this.data.length === 0) break;\n\t    }\n\n\t    if (this.state === states.FILE_DATA) {\n\t        if (this.outStreamInfo.limit >= 0) {\n\t            var remaining = this.outStreamInfo.limit - this.outStreamInfo.written;\n\t            var packet;\n\t            if (remaining < this.data.length) {\n\t                packet = this.data.slice(0, remaining);\n\t                this.data = this.data.slice(remaining);\n\t            } else {\n\t                packet = this.data;\n\t                this.data = new Buffer('');\n\t            }\n\n\t            this.outStreamInfo.written += packet.length;\n\t            if (this.outStreamInfo.limit === this.outStreamInfo.written) {\n\t                this.state = states.START;\n\n\t                this.outStreamInfo.stream.end(packet, encoding, cb);\n\t            } else {\n\t                this.outStreamInfo.stream.write(packet, encoding, cb);\n\t            }\n\t        } else {\n\t            var packet = this.data;\n\t            this.data = new Buffer('');\n\n\t            this.outStreamInfo.written += packet.length;\n\t            var outputStream = this.outStreamInfo.stream;\n\t            outputStream.write(packet, encoding, () => {\n\t                if (this.state === states.FILE_DATA_END) {\n\t                    this.state = states.START;\n\t                    return outputStream.end(cb);\n\t                }\n\t                cb();\n\t            });\n\t        }\n\t        // we've written to the output stream, letting that write deal with the callback\n\t        return;\n\t    }\n\n\t    cb();\n\t};\n\n\tUnzipStream.prototype.drainAll = function () {\n\t    this._drainAllEntries = true;\n\t};\n\n\tUnzipStream.prototype._transform = function (chunk, encoding, cb) {\n\t    var self = this;\n\t    if (self.data.length > 0) {\n\t        self.data = Buffer.concat([self.data, chunk]);\n\t    } else {\n\t        self.data = chunk;\n\t    }\n\n\t    var startDataLength = self.data.length;\n\t    var done = function () {\n\t        if (self.data.length > 0 && self.data.length < startDataLength) {\n\t            startDataLength = self.data.length;\n\t            self._parseOrOutput(encoding, done);\n\t            return;\n\t        }\n\t        cb();\n\t    };\n\t    self._parseOrOutput(encoding, done);\n\t};\n\n\tUnzipStream.prototype._flush = function (cb) {\n\t    var self = this;\n\t    if (self.data.length > 0) {\n\t        self._parseOrOutput('buffer', function () {\n\t            if (self.data.length > 0) return setImmediate(function () { self._flush(cb); });\n\t            cb();\n\t        });\n\n\t        return;\n\t    }\n\n\t    if (self.state === states.FILE_DATA) {\n\t        // uh oh, something went wrong\n\t        return cb(new Error(\"Stream finished in an invalid state, uncompression failed\"));\n\t    }\n\n\t    setImmediate(cb);\n\t};\n\n\tunzipStream = UnzipStream;\n\treturn unzipStream;\n}\n\nvar parserStream;\nvar hasRequiredParserStream;\n\nfunction requireParserStream () {\n\tif (hasRequiredParserStream) return parserStream;\n\thasRequiredParserStream = 1;\n\tvar Transform = require$$0$b.Transform;\n\tvar util = require$$0__default$1;\n\tvar UnzipStream = requireUnzipStream();\n\n\tfunction ParserStream(opts) {\n\t    if (!(this instanceof ParserStream)) {\n\t        return new ParserStream(opts);\n\t    }\n\t    Transform.call(this, { readableObjectMode: true });\n\n\t    this.opts = opts || {};\n\t    this.unzipStream = new UnzipStream(this.opts);\n\n\t    var self = this;\n\t    this.unzipStream.on('entry', function(entry) {\n\t        self.push(entry);\n\t    });\n\t    this.unzipStream.on('error', function(error) {\n\t        self.emit('error', error);\n\t    });\n\t}\n\n\tutil.inherits(ParserStream, Transform);\n\n\tParserStream.prototype._transform = function (chunk, encoding, cb) {\n\t    this.unzipStream.write(chunk, encoding, cb);\n\t};\n\n\tParserStream.prototype._flush = function (cb) {\n\t    var self = this;\n\t    this.unzipStream.end(function() {\n\t        process.nextTick(function() { self.emit('close'); });\n\t        cb();\n\t    });\n\t};\n\n\tParserStream.prototype.on = function(eventName, fn) {\n\t    if (eventName === 'entry') {\n\t        return Transform.prototype.on.call(this, 'data', fn);\n\t    }\n\t    return Transform.prototype.on.call(this, eventName, fn);\n\t};\n\n\tParserStream.prototype.drainAll = function () {\n\t    this.unzipStream.drainAll();\n\t    return this.pipe(new Transform({ objectMode: true, transform: function (d, e, cb) { cb(); } }));\n\t};\n\n\tparserStream = ParserStream;\n\treturn parserStream;\n}\n\nvar mkdirp;\nvar hasRequiredMkdirp;\n\nfunction requireMkdirp () {\n\tif (hasRequiredMkdirp) return mkdirp;\n\thasRequiredMkdirp = 1;\n\tvar path = require$$1__default;\n\tvar fs = fs__default;\n\tvar _0777 = parseInt('0777', 8);\n\n\tmkdirp = mkdirP.mkdirp = mkdirP.mkdirP = mkdirP;\n\n\tfunction mkdirP (p, opts, f, made) {\n\t    if (typeof opts === 'function') {\n\t        f = opts;\n\t        opts = {};\n\t    }\n\t    else if (!opts || typeof opts !== 'object') {\n\t        opts = { mode: opts };\n\t    }\n\t    \n\t    var mode = opts.mode;\n\t    var xfs = opts.fs || fs;\n\t    \n\t    if (mode === undefined) {\n\t        mode = _0777;\n\t    }\n\t    if (!made) made = null;\n\t    \n\t    var cb = f || /* istanbul ignore next */ function () {};\n\t    p = path.resolve(p);\n\t    \n\t    xfs.mkdir(p, mode, function (er) {\n\t        if (!er) {\n\t            made = made || p;\n\t            return cb(null, made);\n\t        }\n\t        switch (er.code) {\n\t            case 'ENOENT':\n\t                /* istanbul ignore if */\n\t                if (path.dirname(p) === p) return cb(er);\n\t                mkdirP(path.dirname(p), opts, function (er, made) {\n\t                    /* istanbul ignore if */\n\t                    if (er) cb(er, made);\n\t                    else mkdirP(p, opts, cb, made);\n\t                });\n\t                break;\n\n\t            // In the case of any other error, just see if there's a dir\n\t            // there already.  If so, then hooray!  If not, then something\n\t            // is borked.\n\t            default:\n\t                xfs.stat(p, function (er2, stat) {\n\t                    // if the stat fails, then that's super weird.\n\t                    // let the original error be the failure reason.\n\t                    if (er2 || !stat.isDirectory()) cb(er, made);\n\t                    else cb(null, made);\n\t                });\n\t                break;\n\t        }\n\t    });\n\t}\n\n\tmkdirP.sync = function sync (p, opts, made) {\n\t    if (!opts || typeof opts !== 'object') {\n\t        opts = { mode: opts };\n\t    }\n\t    \n\t    var mode = opts.mode;\n\t    var xfs = opts.fs || fs;\n\t    \n\t    if (mode === undefined) {\n\t        mode = _0777;\n\t    }\n\t    if (!made) made = null;\n\n\t    p = path.resolve(p);\n\n\t    try {\n\t        xfs.mkdirSync(p, mode);\n\t        made = made || p;\n\t    }\n\t    catch (err0) {\n\t        switch (err0.code) {\n\t            case 'ENOENT' :\n\t                made = sync(path.dirname(p), opts, made);\n\t                sync(p, opts, made);\n\t                break;\n\n\t            // In the case of any other error, just see if there's a dir\n\t            // there already.  If so, then hooray!  If not, then something\n\t            // is borked.\n\t            default:\n\t                var stat;\n\t                try {\n\t                    stat = xfs.statSync(p);\n\t                }\n\t                catch (err1) /* istanbul ignore next */ {\n\t                    throw err0;\n\t                }\n\t                /* istanbul ignore if */\n\t                if (!stat.isDirectory()) throw err0;\n\t                break;\n\t        }\n\t    }\n\n\t    return made;\n\t};\n\treturn mkdirp;\n}\n\nvar extract;\nvar hasRequiredExtract;\n\nfunction requireExtract () {\n\tif (hasRequiredExtract) return extract;\n\thasRequiredExtract = 1;\n\tvar fs = fs__default;\n\tvar path = require$$1__default;\n\tvar util = require$$0__default$1;\n\tvar mkdirp = requireMkdirp();\n\tvar Transform = require$$0$b.Transform;\n\tvar UnzipStream = requireUnzipStream();\n\n\tfunction Extract (opts) {\n\t    if (!(this instanceof Extract))\n\t    return new Extract(opts);\n\n\t    Transform.call(this);\n\n\t    this.opts = opts || {};\n\t    this.unzipStream = new UnzipStream(this.opts);\n\t    this.unfinishedEntries = 0;\n\t    this.afterFlushWait = false;\n\t    this.createdDirectories = {};\n\n\t    var self = this;\n\t    this.unzipStream.on('entry', this._processEntry.bind(this));\n\t    this.unzipStream.on('error', function(error) {\n\t        self.emit('error', error);\n\t    });\n\t}\n\n\tutil.inherits(Extract, Transform);\n\n\tExtract.prototype._transform = function (chunk, encoding, cb) {\n\t    this.unzipStream.write(chunk, encoding, cb);\n\t};\n\n\tExtract.prototype._flush = function (cb) {\n\t    var self = this;\n\n\t    var allDone = function() {\n\t        process.nextTick(function() { self.emit('close'); });\n\t        cb();\n\t    };\n\n\t    this.unzipStream.end(function() {\n\t        if (self.unfinishedEntries > 0) {\n\t            self.afterFlushWait = true;\n\t            return self.on('await-finished', allDone);\n\t        }\n\t        allDone();\n\t    });\n\t};\n\n\tExtract.prototype._processEntry = function (entry) {\n\t    var self = this;\n\t    var destPath = path.join(this.opts.path, entry.path);\n\t    var directory = entry.isDirectory ? destPath : path.dirname(destPath);\n\n\t    this.unfinishedEntries++;\n\n\t    var writeFileFn = function() {\n\t        var pipedStream = fs.createWriteStream(destPath);\n\n\t        pipedStream.on('close', function() {\n\t            self.unfinishedEntries--;\n\t            self._notifyAwaiter();\n\t        });\n\t        pipedStream.on('error', function (error) {\n\t            self.emit('error', error);\n\t        });\n\t        entry.pipe(pipedStream);\n\t    };\n\n\t    if (this.createdDirectories[directory] || directory === '.') {\n\t        return writeFileFn();\n\t    }\n\n\t    // FIXME: calls to mkdirp can still be duplicated\n\t    mkdirp(directory, function(err) {\n\t        if (err) return self.emit('error', err);\n\n\t        self.createdDirectories[directory] = true;\n\n\t        if (entry.isDirectory) {\n\t            self.unfinishedEntries--;\n\t            self._notifyAwaiter();\n\t            return;\n\t        }\n\n\t        writeFileFn();\n\t    });\n\t};\n\n\tExtract.prototype._notifyAwaiter = function() {\n\t    if (this.afterFlushWait && this.unfinishedEntries === 0) {\n\t        this.emit('await-finished');\n\t        this.afterFlushWait = false;\n\t    }\n\t};\n\n\textract = Extract;\n\treturn extract;\n}\n\nvar hasRequiredUnzip;\n\nfunction requireUnzip () {\n\tif (hasRequiredUnzip) return unzip;\n\thasRequiredUnzip = 1;\n\n\tunzip.Parse = requireParserStream();\n\tunzip.Extract = requireExtract();\n\treturn unzip;\n}\n\nvar hasRequiredDownloadArtifact;\n\nfunction requireDownloadArtifact () {\n\tif (hasRequiredDownloadArtifact) return downloadArtifact;\n\thasRequiredDownloadArtifact = 1;\n\tvar __createBinding = (downloadArtifact && downloadArtifact.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (downloadArtifact && downloadArtifact.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (downloadArtifact && downloadArtifact.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (downloadArtifact && downloadArtifact.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tvar __importDefault = (downloadArtifact && downloadArtifact.__importDefault) || function (mod) {\n\t    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n\t};\n\tObject.defineProperty(downloadArtifact, \"__esModule\", { value: true });\n\tdownloadArtifact.downloadArtifactInternal = downloadArtifact.downloadArtifactPublic = downloadArtifact.streamExtractExternal = void 0;\n\tconst promises_1 = __importDefault(require$$1$a);\n\tconst crypto = __importStar(require$$0$7);\n\tconst stream = __importStar(require$$0$b);\n\tconst github = __importStar(requireGithub());\n\tconst core = __importStar(requireCore$1());\n\tconst httpClient = __importStar(requireLib$2());\n\tconst unzip_stream_1 = __importDefault(requireUnzip());\n\tconst user_agent_1 = requireUserAgent();\n\tconst config_1 = requireConfig();\n\tconst artifact_twirp_client_1 = requireArtifactTwirpClient();\n\tconst generated_1 = requireGenerated();\n\tconst util_1 = requireUtil$4();\n\tconst errors_1 = requireErrors$1();\n\tconst scrubQueryParameters = (url) => {\n\t    const parsed = new URL(url);\n\t    parsed.search = '';\n\t    return parsed.toString();\n\t};\n\tfunction exists(path) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        try {\n\t            yield promises_1.default.access(path);\n\t            return true;\n\t        }\n\t        catch (error) {\n\t            if (error.code === 'ENOENT') {\n\t                return false;\n\t            }\n\t            else {\n\t                throw error;\n\t            }\n\t        }\n\t    });\n\t}\n\tfunction streamExtract(url, directory) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        let retryCount = 0;\n\t        while (retryCount < 5) {\n\t            try {\n\t                return yield streamExtractExternal(url, directory);\n\t            }\n\t            catch (error) {\n\t                retryCount++;\n\t                core.debug(`Failed to download artifact after ${retryCount} retries due to ${error.message}. Retrying in 5 seconds...`);\n\t                // wait 5 seconds before retrying\n\t                yield new Promise(resolve => setTimeout(resolve, 5000));\n\t            }\n\t        }\n\t        throw new Error(`Artifact download failed after ${retryCount} retries.`);\n\t    });\n\t}\n\tfunction streamExtractExternal(url, directory) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const client = new httpClient.HttpClient((0, user_agent_1.getUserAgentString)());\n\t        const response = yield client.get(url);\n\t        if (response.message.statusCode !== 200) {\n\t            throw new Error(`Unexpected HTTP response from blob storage: ${response.message.statusCode} ${response.message.statusMessage}`);\n\t        }\n\t        const timeout = 30 * 1000; // 30 seconds\n\t        let sha256Digest = undefined;\n\t        return new Promise((resolve, reject) => {\n\t            const timerFn = () => {\n\t                response.message.destroy(new Error(`Blob storage chunk did not respond in ${timeout}ms`));\n\t            };\n\t            const timer = setTimeout(timerFn, timeout);\n\t            const hashStream = crypto.createHash('sha256').setEncoding('hex');\n\t            const passThrough = new stream.PassThrough();\n\t            response.message.pipe(passThrough);\n\t            passThrough.pipe(hashStream);\n\t            const extractStream = passThrough;\n\t            extractStream\n\t                .on('data', () => {\n\t                timer.refresh();\n\t            })\n\t                .on('error', (error) => {\n\t                core.debug(`response.message: Artifact download failed: ${error.message}`);\n\t                clearTimeout(timer);\n\t                reject(error);\n\t            })\n\t                .pipe(unzip_stream_1.default.Extract({ path: directory }))\n\t                .on('close', () => {\n\t                clearTimeout(timer);\n\t                if (hashStream) {\n\t                    hashStream.end();\n\t                    sha256Digest = hashStream.read();\n\t                    core.info(`SHA256 digest of downloaded artifact is ${sha256Digest}`);\n\t                }\n\t                resolve({ sha256Digest: `sha256:${sha256Digest}` });\n\t            })\n\t                .on('error', (error) => {\n\t                reject(error);\n\t            });\n\t        });\n\t    });\n\t}\n\tdownloadArtifact.streamExtractExternal = streamExtractExternal;\n\tfunction downloadArtifactPublic(artifactId, repositoryOwner, repositoryName, token, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const downloadPath = yield resolveOrCreateDirectory(options === null || options === void 0 ? void 0 : options.path);\n\t        const api = github.getOctokit(token);\n\t        let digestMismatch = false;\n\t        core.info(`Downloading artifact '${artifactId}' from '${repositoryOwner}/${repositoryName}'`);\n\t        const { headers, status } = yield api.rest.actions.downloadArtifact({\n\t            owner: repositoryOwner,\n\t            repo: repositoryName,\n\t            artifact_id: artifactId,\n\t            archive_format: 'zip',\n\t            request: {\n\t                redirect: 'manual'\n\t            }\n\t        });\n\t        if (status !== 302) {\n\t            throw new Error(`Unable to download artifact. Unexpected status: ${status}`);\n\t        }\n\t        const { location } = headers;\n\t        if (!location) {\n\t            throw new Error(`Unable to redirect to artifact download url`);\n\t        }\n\t        core.info(`Redirecting to blob download url: ${scrubQueryParameters(location)}`);\n\t        try {\n\t            core.info(`Starting download of artifact to: ${downloadPath}`);\n\t            const extractResponse = yield streamExtract(location, downloadPath);\n\t            core.info(`Artifact download completed successfully.`);\n\t            if (options === null || options === void 0 ? void 0 : options.expectedHash) {\n\t                if ((options === null || options === void 0 ? void 0 : options.expectedHash) !== extractResponse.sha256Digest) {\n\t                    digestMismatch = true;\n\t                    core.debug(`Computed digest: ${extractResponse.sha256Digest}`);\n\t                    core.debug(`Expected digest: ${options.expectedHash}`);\n\t                }\n\t            }\n\t        }\n\t        catch (error) {\n\t            throw new Error(`Unable to download and extract artifact: ${error.message}`);\n\t        }\n\t        return { downloadPath, digestMismatch };\n\t    });\n\t}\n\tdownloadArtifact.downloadArtifactPublic = downloadArtifactPublic;\n\tfunction downloadArtifactInternal(artifactId, options) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const downloadPath = yield resolveOrCreateDirectory(options === null || options === void 0 ? void 0 : options.path);\n\t        const artifactClient = (0, artifact_twirp_client_1.internalArtifactTwirpClient)();\n\t        let digestMismatch = false;\n\t        const { workflowRunBackendId, workflowJobRunBackendId } = (0, util_1.getBackendIdsFromToken)();\n\t        const listReq = {\n\t            workflowRunBackendId,\n\t            workflowJobRunBackendId,\n\t            idFilter: generated_1.Int64Value.create({ value: artifactId.toString() })\n\t        };\n\t        const { artifacts } = yield artifactClient.ListArtifacts(listReq);\n\t        if (artifacts.length === 0) {\n\t            throw new errors_1.ArtifactNotFoundError(`No artifacts found for ID: ${artifactId}\\nAre you trying to download from a different run? Try specifying a github-token with \\`actions:read\\` scope.`);\n\t        }\n\t        if (artifacts.length > 1) {\n\t            core.warning('Multiple artifacts found, defaulting to first.');\n\t        }\n\t        const signedReq = {\n\t            workflowRunBackendId: artifacts[0].workflowRunBackendId,\n\t            workflowJobRunBackendId: artifacts[0].workflowJobRunBackendId,\n\t            name: artifacts[0].name\n\t        };\n\t        const { signedUrl } = yield artifactClient.GetSignedArtifactURL(signedReq);\n\t        core.info(`Redirecting to blob download url: ${scrubQueryParameters(signedUrl)}`);\n\t        try {\n\t            core.info(`Starting download of artifact to: ${downloadPath}`);\n\t            const extractResponse = yield streamExtract(signedUrl, downloadPath);\n\t            core.info(`Artifact download completed successfully.`);\n\t            if (options === null || options === void 0 ? void 0 : options.expectedHash) {\n\t                if ((options === null || options === void 0 ? void 0 : options.expectedHash) !== extractResponse.sha256Digest) {\n\t                    digestMismatch = true;\n\t                    core.debug(`Computed digest: ${extractResponse.sha256Digest}`);\n\t                    core.debug(`Expected digest: ${options.expectedHash}`);\n\t                }\n\t            }\n\t        }\n\t        catch (error) {\n\t            throw new Error(`Unable to download and extract artifact: ${error.message}`);\n\t        }\n\t        return { downloadPath, digestMismatch };\n\t    });\n\t}\n\tdownloadArtifact.downloadArtifactInternal = downloadArtifactInternal;\n\tfunction resolveOrCreateDirectory(downloadPath = (0, config_1.getGitHubWorkspaceDir)()) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        if (!(yield exists(downloadPath))) {\n\t            core.debug(`Artifact destination folder does not exist, creating: ${downloadPath}`);\n\t            yield promises_1.default.mkdir(downloadPath, { recursive: true });\n\t        }\n\t        else {\n\t            core.debug(`Artifact destination folder already exists: ${downloadPath}`);\n\t        }\n\t        return downloadPath;\n\t    });\n\t}\n\t\n\treturn downloadArtifact;\n}\n\nvar deleteArtifact = {};\n\nvar retryOptions = {};\n\nvar hasRequiredRetryOptions;\n\nfunction requireRetryOptions () {\n\tif (hasRequiredRetryOptions) return retryOptions;\n\thasRequiredRetryOptions = 1;\n\tvar __createBinding = (retryOptions && retryOptions.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (retryOptions && retryOptions.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (retryOptions && retryOptions.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tObject.defineProperty(retryOptions, \"__esModule\", { value: true });\n\tretryOptions.getRetryOptions = void 0;\n\tconst core = __importStar(requireCore$1());\n\t// Defaults for fetching artifacts\n\tconst defaultMaxRetryNumber = 5;\n\tconst defaultExemptStatusCodes = [400, 401, 403, 404, 422]; // https://github.com/octokit/plugin-retry.js/blob/9a2443746c350b3beedec35cf26e197ea318a261/src/index.ts#L14\n\tfunction getRetryOptions(defaultOptions, retries = defaultMaxRetryNumber, exemptStatusCodes = defaultExemptStatusCodes) {\n\t    var _a;\n\t    if (retries <= 0) {\n\t        return [{ enabled: false }, defaultOptions.request];\n\t    }\n\t    const retryOptions = {\n\t        enabled: true\n\t    };\n\t    if (exemptStatusCodes.length > 0) {\n\t        retryOptions.doNotRetry = exemptStatusCodes;\n\t    }\n\t    // The GitHub type has some defaults for `options.request`\n\t    // see: https://github.com/actions/toolkit/blob/4fbc5c941a57249b19562015edbd72add14be93d/packages/github/src/utils.ts#L15\n\t    // We pass these in here so they are not overridden.\n\t    const requestOptions = Object.assign(Object.assign({}, defaultOptions.request), { retries });\n\t    core.debug(`GitHub client configured with: (retries: ${requestOptions.retries}, retry-exempt-status-code: ${(_a = retryOptions.doNotRetry) !== null && _a !== void 0 ? _a : 'octokit default: [400, 401, 403, 404, 422]'})`);\n\t    return [retryOptions, requestOptions];\n\t}\n\tretryOptions.getRetryOptions = getRetryOptions;\n\t\n\treturn retryOptions;\n}\n\nconst VERSION$1 = \"1.0.4\";\n\n/**\n * @param octokit Octokit instance\n * @param options Options passed to Octokit constructor\n */\nfunction requestLog(octokit) {\n    octokit.hook.wrap(\"request\", (request, options) => {\n        octokit.log.debug(\"request\", options);\n        const start = Date.now();\n        const requestOptions = octokit.request.endpoint.parse(options);\n        const path = requestOptions.url.replace(options.baseUrl, \"\");\n        return request(options)\n            .then((response) => {\n            octokit.log.info(`${requestOptions.method} ${path} - ${response.status} in ${Date.now() - start}ms`);\n            return response;\n        })\n            .catch((error) => {\n            octokit.log.info(`${requestOptions.method} ${path} - ${error.status} in ${Date.now() - start}ms`);\n            throw error;\n        });\n    });\n}\nrequestLog.VERSION = VERSION$1;\n\nvar distWeb$1 = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\trequestLog: requestLog\n});\n\nvar require$$5 = /*@__PURE__*/getAugmentedNamespace(distWeb$1);\n\nvar light$1 = {exports: {}};\n\n/**\n  * This file contains the Bottleneck library (MIT), compiled to ES2017, and without Clustering support.\n  * https://github.com/SGrondin/bottleneck\n  */\nvar light = light$1.exports;\n\nvar hasRequiredLight;\n\nfunction requireLight () {\n\tif (hasRequiredLight) return light$1.exports;\n\thasRequiredLight = 1;\n\t(function (module, exports) {\n\t\t(function (global, factory) {\n\t\t\tmodule.exports = factory() ;\n\t\t}(light, (function () {\n\t\t\tvar commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof commonjsGlobal !== 'undefined' ? commonjsGlobal : typeof self !== 'undefined' ? self : {};\n\n\t\t\tfunction getCjsExportFromNamespace (n) {\n\t\t\t\treturn n && n['default'] || n;\n\t\t\t}\n\n\t\t\tvar load = function(received, defaults, onto = {}) {\n\t\t\t  var k, ref, v;\n\t\t\t  for (k in defaults) {\n\t\t\t    v = defaults[k];\n\t\t\t    onto[k] = (ref = received[k]) != null ? ref : v;\n\t\t\t  }\n\t\t\t  return onto;\n\t\t\t};\n\n\t\t\tvar overwrite = function(received, defaults, onto = {}) {\n\t\t\t  var k, v;\n\t\t\t  for (k in received) {\n\t\t\t    v = received[k];\n\t\t\t    if (defaults[k] !== void 0) {\n\t\t\t      onto[k] = v;\n\t\t\t    }\n\t\t\t  }\n\t\t\t  return onto;\n\t\t\t};\n\n\t\t\tvar parser = {\n\t\t\t\tload: load,\n\t\t\t\toverwrite: overwrite\n\t\t\t};\n\n\t\t\tvar DLList;\n\n\t\t\tDLList = class DLList {\n\t\t\t  constructor(incr, decr) {\n\t\t\t    this.incr = incr;\n\t\t\t    this.decr = decr;\n\t\t\t    this._first = null;\n\t\t\t    this._last = null;\n\t\t\t    this.length = 0;\n\t\t\t  }\n\n\t\t\t  push(value) {\n\t\t\t    var node;\n\t\t\t    this.length++;\n\t\t\t    if (typeof this.incr === \"function\") {\n\t\t\t      this.incr();\n\t\t\t    }\n\t\t\t    node = {\n\t\t\t      value,\n\t\t\t      prev: this._last,\n\t\t\t      next: null\n\t\t\t    };\n\t\t\t    if (this._last != null) {\n\t\t\t      this._last.next = node;\n\t\t\t      this._last = node;\n\t\t\t    } else {\n\t\t\t      this._first = this._last = node;\n\t\t\t    }\n\t\t\t    return void 0;\n\t\t\t  }\n\n\t\t\t  shift() {\n\t\t\t    var value;\n\t\t\t    if (this._first == null) {\n\t\t\t      return;\n\t\t\t    } else {\n\t\t\t      this.length--;\n\t\t\t      if (typeof this.decr === \"function\") {\n\t\t\t        this.decr();\n\t\t\t      }\n\t\t\t    }\n\t\t\t    value = this._first.value;\n\t\t\t    if ((this._first = this._first.next) != null) {\n\t\t\t      this._first.prev = null;\n\t\t\t    } else {\n\t\t\t      this._last = null;\n\t\t\t    }\n\t\t\t    return value;\n\t\t\t  }\n\n\t\t\t  first() {\n\t\t\t    if (this._first != null) {\n\t\t\t      return this._first.value;\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  getArray() {\n\t\t\t    var node, ref, results;\n\t\t\t    node = this._first;\n\t\t\t    results = [];\n\t\t\t    while (node != null) {\n\t\t\t      results.push((ref = node, node = node.next, ref.value));\n\t\t\t    }\n\t\t\t    return results;\n\t\t\t  }\n\n\t\t\t  forEachShift(cb) {\n\t\t\t    var node;\n\t\t\t    node = this.shift();\n\t\t\t    while (node != null) {\n\t\t\t      (cb(node), node = this.shift());\n\t\t\t    }\n\t\t\t    return void 0;\n\t\t\t  }\n\n\t\t\t  debug() {\n\t\t\t    var node, ref, ref1, ref2, results;\n\t\t\t    node = this._first;\n\t\t\t    results = [];\n\t\t\t    while (node != null) {\n\t\t\t      results.push((ref = node, node = node.next, {\n\t\t\t        value: ref.value,\n\t\t\t        prev: (ref1 = ref.prev) != null ? ref1.value : void 0,\n\t\t\t        next: (ref2 = ref.next) != null ? ref2.value : void 0\n\t\t\t      }));\n\t\t\t    }\n\t\t\t    return results;\n\t\t\t  }\n\n\t\t\t};\n\n\t\t\tvar DLList_1 = DLList;\n\n\t\t\tvar Events;\n\n\t\t\tEvents = class Events {\n\t\t\t  constructor(instance) {\n\t\t\t    this.instance = instance;\n\t\t\t    this._events = {};\n\t\t\t    if ((this.instance.on != null) || (this.instance.once != null) || (this.instance.removeAllListeners != null)) {\n\t\t\t      throw new Error(\"An Emitter already exists for this object\");\n\t\t\t    }\n\t\t\t    this.instance.on = (name, cb) => {\n\t\t\t      return this._addListener(name, \"many\", cb);\n\t\t\t    };\n\t\t\t    this.instance.once = (name, cb) => {\n\t\t\t      return this._addListener(name, \"once\", cb);\n\t\t\t    };\n\t\t\t    this.instance.removeAllListeners = (name = null) => {\n\t\t\t      if (name != null) {\n\t\t\t        return delete this._events[name];\n\t\t\t      } else {\n\t\t\t        return this._events = {};\n\t\t\t      }\n\t\t\t    };\n\t\t\t  }\n\n\t\t\t  _addListener(name, status, cb) {\n\t\t\t    var base;\n\t\t\t    if ((base = this._events)[name] == null) {\n\t\t\t      base[name] = [];\n\t\t\t    }\n\t\t\t    this._events[name].push({cb, status});\n\t\t\t    return this.instance;\n\t\t\t  }\n\n\t\t\t  listenerCount(name) {\n\t\t\t    if (this._events[name] != null) {\n\t\t\t      return this._events[name].length;\n\t\t\t    } else {\n\t\t\t      return 0;\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  async trigger(name, ...args) {\n\t\t\t    var e, promises;\n\t\t\t    try {\n\t\t\t      if (name !== \"debug\") {\n\t\t\t        this.trigger(\"debug\", `Event triggered: ${name}`, args);\n\t\t\t      }\n\t\t\t      if (this._events[name] == null) {\n\t\t\t        return;\n\t\t\t      }\n\t\t\t      this._events[name] = this._events[name].filter(function(listener) {\n\t\t\t        return listener.status !== \"none\";\n\t\t\t      });\n\t\t\t      promises = this._events[name].map(async(listener) => {\n\t\t\t        var e, returned;\n\t\t\t        if (listener.status === \"none\") {\n\t\t\t          return;\n\t\t\t        }\n\t\t\t        if (listener.status === \"once\") {\n\t\t\t          listener.status = \"none\";\n\t\t\t        }\n\t\t\t        try {\n\t\t\t          returned = typeof listener.cb === \"function\" ? listener.cb(...args) : void 0;\n\t\t\t          if (typeof (returned != null ? returned.then : void 0) === \"function\") {\n\t\t\t            return (await returned);\n\t\t\t          } else {\n\t\t\t            return returned;\n\t\t\t          }\n\t\t\t        } catch (error) {\n\t\t\t          e = error;\n\t\t\t          {\n\t\t\t            this.trigger(\"error\", e);\n\t\t\t          }\n\t\t\t          return null;\n\t\t\t        }\n\t\t\t      });\n\t\t\t      return ((await Promise.all(promises))).find(function(x) {\n\t\t\t        return x != null;\n\t\t\t      });\n\t\t\t    } catch (error) {\n\t\t\t      e = error;\n\t\t\t      {\n\t\t\t        this.trigger(\"error\", e);\n\t\t\t      }\n\t\t\t      return null;\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t};\n\n\t\t\tvar Events_1 = Events;\n\n\t\t\tvar DLList$1, Events$1, Queues;\n\n\t\t\tDLList$1 = DLList_1;\n\n\t\t\tEvents$1 = Events_1;\n\n\t\t\tQueues = class Queues {\n\t\t\t  constructor(num_priorities) {\n\t\t\t    this.Events = new Events$1(this);\n\t\t\t    this._length = 0;\n\t\t\t    this._lists = (function() {\n\t\t\t      var j, ref, results;\n\t\t\t      results = [];\n\t\t\t      for (j = 1, ref = num_priorities; (1 <= ref ? j <= ref : j >= ref); 1 <= ref ? ++j : --j) {\n\t\t\t        results.push(new DLList$1((() => {\n\t\t\t          return this.incr();\n\t\t\t        }), (() => {\n\t\t\t          return this.decr();\n\t\t\t        })));\n\t\t\t      }\n\t\t\t      return results;\n\t\t\t    }).call(this);\n\t\t\t  }\n\n\t\t\t  incr() {\n\t\t\t    if (this._length++ === 0) {\n\t\t\t      return this.Events.trigger(\"leftzero\");\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  decr() {\n\t\t\t    if (--this._length === 0) {\n\t\t\t      return this.Events.trigger(\"zero\");\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  push(job) {\n\t\t\t    return this._lists[job.options.priority].push(job);\n\t\t\t  }\n\n\t\t\t  queued(priority) {\n\t\t\t    if (priority != null) {\n\t\t\t      return this._lists[priority].length;\n\t\t\t    } else {\n\t\t\t      return this._length;\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  shiftAll(fn) {\n\t\t\t    return this._lists.forEach(function(list) {\n\t\t\t      return list.forEachShift(fn);\n\t\t\t    });\n\t\t\t  }\n\n\t\t\t  getFirst(arr = this._lists) {\n\t\t\t    var j, len, list;\n\t\t\t    for (j = 0, len = arr.length; j < len; j++) {\n\t\t\t      list = arr[j];\n\t\t\t      if (list.length > 0) {\n\t\t\t        return list;\n\t\t\t      }\n\t\t\t    }\n\t\t\t    return [];\n\t\t\t  }\n\n\t\t\t  shiftLastFrom(priority) {\n\t\t\t    return this.getFirst(this._lists.slice(priority).reverse()).shift();\n\t\t\t  }\n\n\t\t\t};\n\n\t\t\tvar Queues_1 = Queues;\n\n\t\t\tvar BottleneckError;\n\n\t\t\tBottleneckError = class BottleneckError extends Error {};\n\n\t\t\tvar BottleneckError_1 = BottleneckError;\n\n\t\t\tvar BottleneckError$1, DEFAULT_PRIORITY, Job, NUM_PRIORITIES, parser$1;\n\n\t\t\tNUM_PRIORITIES = 10;\n\n\t\t\tDEFAULT_PRIORITY = 5;\n\n\t\t\tparser$1 = parser;\n\n\t\t\tBottleneckError$1 = BottleneckError_1;\n\n\t\t\tJob = class Job {\n\t\t\t  constructor(task, args, options, jobDefaults, rejectOnDrop, Events, _states, Promise) {\n\t\t\t    this.task = task;\n\t\t\t    this.args = args;\n\t\t\t    this.rejectOnDrop = rejectOnDrop;\n\t\t\t    this.Events = Events;\n\t\t\t    this._states = _states;\n\t\t\t    this.Promise = Promise;\n\t\t\t    this.options = parser$1.load(options, jobDefaults);\n\t\t\t    this.options.priority = this._sanitizePriority(this.options.priority);\n\t\t\t    if (this.options.id === jobDefaults.id) {\n\t\t\t      this.options.id = `${this.options.id}-${this._randomIndex()}`;\n\t\t\t    }\n\t\t\t    this.promise = new this.Promise((_resolve, _reject) => {\n\t\t\t      this._resolve = _resolve;\n\t\t\t      this._reject = _reject;\n\t\t\t    });\n\t\t\t    this.retryCount = 0;\n\t\t\t  }\n\n\t\t\t  _sanitizePriority(priority) {\n\t\t\t    var sProperty;\n\t\t\t    sProperty = ~~priority !== priority ? DEFAULT_PRIORITY : priority;\n\t\t\t    if (sProperty < 0) {\n\t\t\t      return 0;\n\t\t\t    } else if (sProperty > NUM_PRIORITIES - 1) {\n\t\t\t      return NUM_PRIORITIES - 1;\n\t\t\t    } else {\n\t\t\t      return sProperty;\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  _randomIndex() {\n\t\t\t    return Math.random().toString(36).slice(2);\n\t\t\t  }\n\n\t\t\t  doDrop({error, message = \"This job has been dropped by Bottleneck\"} = {}) {\n\t\t\t    if (this._states.remove(this.options.id)) {\n\t\t\t      if (this.rejectOnDrop) {\n\t\t\t        this._reject(error != null ? error : new BottleneckError$1(message));\n\t\t\t      }\n\t\t\t      this.Events.trigger(\"dropped\", {args: this.args, options: this.options, task: this.task, promise: this.promise});\n\t\t\t      return true;\n\t\t\t    } else {\n\t\t\t      return false;\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  _assertStatus(expected) {\n\t\t\t    var status;\n\t\t\t    status = this._states.jobStatus(this.options.id);\n\t\t\t    if (!(status === expected || (expected === \"DONE\" && status === null))) {\n\t\t\t      throw new BottleneckError$1(`Invalid job status ${status}, expected ${expected}. Please open an issue at https://github.com/SGrondin/bottleneck/issues`);\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  doReceive() {\n\t\t\t    this._states.start(this.options.id);\n\t\t\t    return this.Events.trigger(\"received\", {args: this.args, options: this.options});\n\t\t\t  }\n\n\t\t\t  doQueue(reachedHWM, blocked) {\n\t\t\t    this._assertStatus(\"RECEIVED\");\n\t\t\t    this._states.next(this.options.id);\n\t\t\t    return this.Events.trigger(\"queued\", {args: this.args, options: this.options, reachedHWM, blocked});\n\t\t\t  }\n\n\t\t\t  doRun() {\n\t\t\t    if (this.retryCount === 0) {\n\t\t\t      this._assertStatus(\"QUEUED\");\n\t\t\t      this._states.next(this.options.id);\n\t\t\t    } else {\n\t\t\t      this._assertStatus(\"EXECUTING\");\n\t\t\t    }\n\t\t\t    return this.Events.trigger(\"scheduled\", {args: this.args, options: this.options});\n\t\t\t  }\n\n\t\t\t  async doExecute(chained, clearGlobalState, run, free) {\n\t\t\t    var error, eventInfo, passed;\n\t\t\t    if (this.retryCount === 0) {\n\t\t\t      this._assertStatus(\"RUNNING\");\n\t\t\t      this._states.next(this.options.id);\n\t\t\t    } else {\n\t\t\t      this._assertStatus(\"EXECUTING\");\n\t\t\t    }\n\t\t\t    eventInfo = {args: this.args, options: this.options, retryCount: this.retryCount};\n\t\t\t    this.Events.trigger(\"executing\", eventInfo);\n\t\t\t    try {\n\t\t\t      passed = (await (chained != null ? chained.schedule(this.options, this.task, ...this.args) : this.task(...this.args)));\n\t\t\t      if (clearGlobalState()) {\n\t\t\t        this.doDone(eventInfo);\n\t\t\t        await free(this.options, eventInfo);\n\t\t\t        this._assertStatus(\"DONE\");\n\t\t\t        return this._resolve(passed);\n\t\t\t      }\n\t\t\t    } catch (error1) {\n\t\t\t      error = error1;\n\t\t\t      return this._onFailure(error, eventInfo, clearGlobalState, run, free);\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  doExpire(clearGlobalState, run, free) {\n\t\t\t    var error, eventInfo;\n\t\t\t    if (this._states.jobStatus(this.options.id === \"RUNNING\")) {\n\t\t\t      this._states.next(this.options.id);\n\t\t\t    }\n\t\t\t    this._assertStatus(\"EXECUTING\");\n\t\t\t    eventInfo = {args: this.args, options: this.options, retryCount: this.retryCount};\n\t\t\t    error = new BottleneckError$1(`This job timed out after ${this.options.expiration} ms.`);\n\t\t\t    return this._onFailure(error, eventInfo, clearGlobalState, run, free);\n\t\t\t  }\n\n\t\t\t  async _onFailure(error, eventInfo, clearGlobalState, run, free) {\n\t\t\t    var retry, retryAfter;\n\t\t\t    if (clearGlobalState()) {\n\t\t\t      retry = (await this.Events.trigger(\"failed\", error, eventInfo));\n\t\t\t      if (retry != null) {\n\t\t\t        retryAfter = ~~retry;\n\t\t\t        this.Events.trigger(\"retry\", `Retrying ${this.options.id} after ${retryAfter} ms`, eventInfo);\n\t\t\t        this.retryCount++;\n\t\t\t        return run(retryAfter);\n\t\t\t      } else {\n\t\t\t        this.doDone(eventInfo);\n\t\t\t        await free(this.options, eventInfo);\n\t\t\t        this._assertStatus(\"DONE\");\n\t\t\t        return this._reject(error);\n\t\t\t      }\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  doDone(eventInfo) {\n\t\t\t    this._assertStatus(\"EXECUTING\");\n\t\t\t    this._states.next(this.options.id);\n\t\t\t    return this.Events.trigger(\"done\", eventInfo);\n\t\t\t  }\n\n\t\t\t};\n\n\t\t\tvar Job_1 = Job;\n\n\t\t\tvar BottleneckError$2, LocalDatastore, parser$2;\n\n\t\t\tparser$2 = parser;\n\n\t\t\tBottleneckError$2 = BottleneckError_1;\n\n\t\t\tLocalDatastore = class LocalDatastore {\n\t\t\t  constructor(instance, storeOptions, storeInstanceOptions) {\n\t\t\t    this.instance = instance;\n\t\t\t    this.storeOptions = storeOptions;\n\t\t\t    this.clientId = this.instance._randomIndex();\n\t\t\t    parser$2.load(storeInstanceOptions, storeInstanceOptions, this);\n\t\t\t    this._nextRequest = this._lastReservoirRefresh = this._lastReservoirIncrease = Date.now();\n\t\t\t    this._running = 0;\n\t\t\t    this._done = 0;\n\t\t\t    this._unblockTime = 0;\n\t\t\t    this.ready = this.Promise.resolve();\n\t\t\t    this.clients = {};\n\t\t\t    this._startHeartbeat();\n\t\t\t  }\n\n\t\t\t  _startHeartbeat() {\n\t\t\t    var base;\n\t\t\t    if ((this.heartbeat == null) && (((this.storeOptions.reservoirRefreshInterval != null) && (this.storeOptions.reservoirRefreshAmount != null)) || ((this.storeOptions.reservoirIncreaseInterval != null) && (this.storeOptions.reservoirIncreaseAmount != null)))) {\n\t\t\t      return typeof (base = (this.heartbeat = setInterval(() => {\n\t\t\t        var amount, incr, maximum, now, reservoir;\n\t\t\t        now = Date.now();\n\t\t\t        if ((this.storeOptions.reservoirRefreshInterval != null) && now >= this._lastReservoirRefresh + this.storeOptions.reservoirRefreshInterval) {\n\t\t\t          this._lastReservoirRefresh = now;\n\t\t\t          this.storeOptions.reservoir = this.storeOptions.reservoirRefreshAmount;\n\t\t\t          this.instance._drainAll(this.computeCapacity());\n\t\t\t        }\n\t\t\t        if ((this.storeOptions.reservoirIncreaseInterval != null) && now >= this._lastReservoirIncrease + this.storeOptions.reservoirIncreaseInterval) {\n\t\t\t          ({\n\t\t\t            reservoirIncreaseAmount: amount,\n\t\t\t            reservoirIncreaseMaximum: maximum,\n\t\t\t            reservoir\n\t\t\t          } = this.storeOptions);\n\t\t\t          this._lastReservoirIncrease = now;\n\t\t\t          incr = maximum != null ? Math.min(amount, maximum - reservoir) : amount;\n\t\t\t          if (incr > 0) {\n\t\t\t            this.storeOptions.reservoir += incr;\n\t\t\t            return this.instance._drainAll(this.computeCapacity());\n\t\t\t          }\n\t\t\t        }\n\t\t\t      }, this.heartbeatInterval))).unref === \"function\" ? base.unref() : void 0;\n\t\t\t    } else {\n\t\t\t      return clearInterval(this.heartbeat);\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  async __publish__(message) {\n\t\t\t    await this.yieldLoop();\n\t\t\t    return this.instance.Events.trigger(\"message\", message.toString());\n\t\t\t  }\n\n\t\t\t  async __disconnect__(flush) {\n\t\t\t    await this.yieldLoop();\n\t\t\t    clearInterval(this.heartbeat);\n\t\t\t    return this.Promise.resolve();\n\t\t\t  }\n\n\t\t\t  yieldLoop(t = 0) {\n\t\t\t    return new this.Promise(function(resolve, reject) {\n\t\t\t      return setTimeout(resolve, t);\n\t\t\t    });\n\t\t\t  }\n\n\t\t\t  computePenalty() {\n\t\t\t    var ref;\n\t\t\t    return (ref = this.storeOptions.penalty) != null ? ref : (15 * this.storeOptions.minTime) || 5000;\n\t\t\t  }\n\n\t\t\t  async __updateSettings__(options) {\n\t\t\t    await this.yieldLoop();\n\t\t\t    parser$2.overwrite(options, options, this.storeOptions);\n\t\t\t    this._startHeartbeat();\n\t\t\t    this.instance._drainAll(this.computeCapacity());\n\t\t\t    return true;\n\t\t\t  }\n\n\t\t\t  async __running__() {\n\t\t\t    await this.yieldLoop();\n\t\t\t    return this._running;\n\t\t\t  }\n\n\t\t\t  async __queued__() {\n\t\t\t    await this.yieldLoop();\n\t\t\t    return this.instance.queued();\n\t\t\t  }\n\n\t\t\t  async __done__() {\n\t\t\t    await this.yieldLoop();\n\t\t\t    return this._done;\n\t\t\t  }\n\n\t\t\t  async __groupCheck__(time) {\n\t\t\t    await this.yieldLoop();\n\t\t\t    return (this._nextRequest + this.timeout) < time;\n\t\t\t  }\n\n\t\t\t  computeCapacity() {\n\t\t\t    var maxConcurrent, reservoir;\n\t\t\t    ({maxConcurrent, reservoir} = this.storeOptions);\n\t\t\t    if ((maxConcurrent != null) && (reservoir != null)) {\n\t\t\t      return Math.min(maxConcurrent - this._running, reservoir);\n\t\t\t    } else if (maxConcurrent != null) {\n\t\t\t      return maxConcurrent - this._running;\n\t\t\t    } else if (reservoir != null) {\n\t\t\t      return reservoir;\n\t\t\t    } else {\n\t\t\t      return null;\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  conditionsCheck(weight) {\n\t\t\t    var capacity;\n\t\t\t    capacity = this.computeCapacity();\n\t\t\t    return (capacity == null) || weight <= capacity;\n\t\t\t  }\n\n\t\t\t  async __incrementReservoir__(incr) {\n\t\t\t    var reservoir;\n\t\t\t    await this.yieldLoop();\n\t\t\t    reservoir = this.storeOptions.reservoir += incr;\n\t\t\t    this.instance._drainAll(this.computeCapacity());\n\t\t\t    return reservoir;\n\t\t\t  }\n\n\t\t\t  async __currentReservoir__() {\n\t\t\t    await this.yieldLoop();\n\t\t\t    return this.storeOptions.reservoir;\n\t\t\t  }\n\n\t\t\t  isBlocked(now) {\n\t\t\t    return this._unblockTime >= now;\n\t\t\t  }\n\n\t\t\t  check(weight, now) {\n\t\t\t    return this.conditionsCheck(weight) && (this._nextRequest - now) <= 0;\n\t\t\t  }\n\n\t\t\t  async __check__(weight) {\n\t\t\t    var now;\n\t\t\t    await this.yieldLoop();\n\t\t\t    now = Date.now();\n\t\t\t    return this.check(weight, now);\n\t\t\t  }\n\n\t\t\t  async __register__(index, weight, expiration) {\n\t\t\t    var now, wait;\n\t\t\t    await this.yieldLoop();\n\t\t\t    now = Date.now();\n\t\t\t    if (this.conditionsCheck(weight)) {\n\t\t\t      this._running += weight;\n\t\t\t      if (this.storeOptions.reservoir != null) {\n\t\t\t        this.storeOptions.reservoir -= weight;\n\t\t\t      }\n\t\t\t      wait = Math.max(this._nextRequest - now, 0);\n\t\t\t      this._nextRequest = now + wait + this.storeOptions.minTime;\n\t\t\t      return {\n\t\t\t        success: true,\n\t\t\t        wait,\n\t\t\t        reservoir: this.storeOptions.reservoir\n\t\t\t      };\n\t\t\t    } else {\n\t\t\t      return {\n\t\t\t        success: false\n\t\t\t      };\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  strategyIsBlock() {\n\t\t\t    return this.storeOptions.strategy === 3;\n\t\t\t  }\n\n\t\t\t  async __submit__(queueLength, weight) {\n\t\t\t    var blocked, now, reachedHWM;\n\t\t\t    await this.yieldLoop();\n\t\t\t    if ((this.storeOptions.maxConcurrent != null) && weight > this.storeOptions.maxConcurrent) {\n\t\t\t      throw new BottleneckError$2(`Impossible to add a job having a weight of ${weight} to a limiter having a maxConcurrent setting of ${this.storeOptions.maxConcurrent}`);\n\t\t\t    }\n\t\t\t    now = Date.now();\n\t\t\t    reachedHWM = (this.storeOptions.highWater != null) && queueLength === this.storeOptions.highWater && !this.check(weight, now);\n\t\t\t    blocked = this.strategyIsBlock() && (reachedHWM || this.isBlocked(now));\n\t\t\t    if (blocked) {\n\t\t\t      this._unblockTime = now + this.computePenalty();\n\t\t\t      this._nextRequest = this._unblockTime + this.storeOptions.minTime;\n\t\t\t      this.instance._dropAllQueued();\n\t\t\t    }\n\t\t\t    return {\n\t\t\t      reachedHWM,\n\t\t\t      blocked,\n\t\t\t      strategy: this.storeOptions.strategy\n\t\t\t    };\n\t\t\t  }\n\n\t\t\t  async __free__(index, weight) {\n\t\t\t    await this.yieldLoop();\n\t\t\t    this._running -= weight;\n\t\t\t    this._done += weight;\n\t\t\t    this.instance._drainAll(this.computeCapacity());\n\t\t\t    return {\n\t\t\t      running: this._running\n\t\t\t    };\n\t\t\t  }\n\n\t\t\t};\n\n\t\t\tvar LocalDatastore_1 = LocalDatastore;\n\n\t\t\tvar BottleneckError$3, States;\n\n\t\t\tBottleneckError$3 = BottleneckError_1;\n\n\t\t\tStates = class States {\n\t\t\t  constructor(status1) {\n\t\t\t    this.status = status1;\n\t\t\t    this._jobs = {};\n\t\t\t    this.counts = this.status.map(function() {\n\t\t\t      return 0;\n\t\t\t    });\n\t\t\t  }\n\n\t\t\t  next(id) {\n\t\t\t    var current, next;\n\t\t\t    current = this._jobs[id];\n\t\t\t    next = current + 1;\n\t\t\t    if ((current != null) && next < this.status.length) {\n\t\t\t      this.counts[current]--;\n\t\t\t      this.counts[next]++;\n\t\t\t      return this._jobs[id]++;\n\t\t\t    } else if (current != null) {\n\t\t\t      this.counts[current]--;\n\t\t\t      return delete this._jobs[id];\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  start(id) {\n\t\t\t    var initial;\n\t\t\t    initial = 0;\n\t\t\t    this._jobs[id] = initial;\n\t\t\t    return this.counts[initial]++;\n\t\t\t  }\n\n\t\t\t  remove(id) {\n\t\t\t    var current;\n\t\t\t    current = this._jobs[id];\n\t\t\t    if (current != null) {\n\t\t\t      this.counts[current]--;\n\t\t\t      delete this._jobs[id];\n\t\t\t    }\n\t\t\t    return current != null;\n\t\t\t  }\n\n\t\t\t  jobStatus(id) {\n\t\t\t    var ref;\n\t\t\t    return (ref = this.status[this._jobs[id]]) != null ? ref : null;\n\t\t\t  }\n\n\t\t\t  statusJobs(status) {\n\t\t\t    var k, pos, ref, results, v;\n\t\t\t    if (status != null) {\n\t\t\t      pos = this.status.indexOf(status);\n\t\t\t      if (pos < 0) {\n\t\t\t        throw new BottleneckError$3(`status must be one of ${this.status.join(', ')}`);\n\t\t\t      }\n\t\t\t      ref = this._jobs;\n\t\t\t      results = [];\n\t\t\t      for (k in ref) {\n\t\t\t        v = ref[k];\n\t\t\t        if (v === pos) {\n\t\t\t          results.push(k);\n\t\t\t        }\n\t\t\t      }\n\t\t\t      return results;\n\t\t\t    } else {\n\t\t\t      return Object.keys(this._jobs);\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  statusCounts() {\n\t\t\t    return this.counts.reduce(((acc, v, i) => {\n\t\t\t      acc[this.status[i]] = v;\n\t\t\t      return acc;\n\t\t\t    }), {});\n\t\t\t  }\n\n\t\t\t};\n\n\t\t\tvar States_1 = States;\n\n\t\t\tvar DLList$2, Sync;\n\n\t\t\tDLList$2 = DLList_1;\n\n\t\t\tSync = class Sync {\n\t\t\t  constructor(name, Promise) {\n\t\t\t    this.schedule = this.schedule.bind(this);\n\t\t\t    this.name = name;\n\t\t\t    this.Promise = Promise;\n\t\t\t    this._running = 0;\n\t\t\t    this._queue = new DLList$2();\n\t\t\t  }\n\n\t\t\t  isEmpty() {\n\t\t\t    return this._queue.length === 0;\n\t\t\t  }\n\n\t\t\t  async _tryToRun() {\n\t\t\t    var args, cb, error, reject, resolve, returned, task;\n\t\t\t    if ((this._running < 1) && this._queue.length > 0) {\n\t\t\t      this._running++;\n\t\t\t      ({task, args, resolve, reject} = this._queue.shift());\n\t\t\t      cb = (await (async function() {\n\t\t\t        try {\n\t\t\t          returned = (await task(...args));\n\t\t\t          return function() {\n\t\t\t            return resolve(returned);\n\t\t\t          };\n\t\t\t        } catch (error1) {\n\t\t\t          error = error1;\n\t\t\t          return function() {\n\t\t\t            return reject(error);\n\t\t\t          };\n\t\t\t        }\n\t\t\t      })());\n\t\t\t      this._running--;\n\t\t\t      this._tryToRun();\n\t\t\t      return cb();\n\t\t\t    }\n\t\t\t  }\n\n\t\t\t  schedule(task, ...args) {\n\t\t\t    var promise, reject, resolve;\n\t\t\t    resolve = reject = null;\n\t\t\t    promise = new this.Promise(function(_resolve, _reject) {\n\t\t\t      resolve = _resolve;\n\t\t\t      return reject = _reject;\n\t\t\t    });\n\t\t\t    this._queue.push({task, args, resolve, reject});\n\t\t\t    this._tryToRun();\n\t\t\t    return promise;\n\t\t\t  }\n\n\t\t\t};\n\n\t\t\tvar Sync_1 = Sync;\n\n\t\t\tvar version = \"2.19.5\";\n\t\t\tvar version$1 = {\n\t\t\t\tversion: version\n\t\t\t};\n\n\t\t\tvar version$2 = /*#__PURE__*/Object.freeze({\n\t\t\t\tversion: version,\n\t\t\t\tdefault: version$1\n\t\t\t});\n\n\t\t\tvar require$$2 = () => console.log('You must import the full version of Bottleneck in order to use this feature.');\n\n\t\t\tvar require$$3 = () => console.log('You must import the full version of Bottleneck in order to use this feature.');\n\n\t\t\tvar require$$4 = () => console.log('You must import the full version of Bottleneck in order to use this feature.');\n\n\t\t\tvar Events$2, Group, IORedisConnection$1, RedisConnection$1, Scripts$1, parser$3;\n\n\t\t\tparser$3 = parser;\n\n\t\t\tEvents$2 = Events_1;\n\n\t\t\tRedisConnection$1 = require$$2;\n\n\t\t\tIORedisConnection$1 = require$$3;\n\n\t\t\tScripts$1 = require$$4;\n\n\t\t\tGroup = (function() {\n\t\t\t  class Group {\n\t\t\t    constructor(limiterOptions = {}) {\n\t\t\t      this.deleteKey = this.deleteKey.bind(this);\n\t\t\t      this.limiterOptions = limiterOptions;\n\t\t\t      parser$3.load(this.limiterOptions, this.defaults, this);\n\t\t\t      this.Events = new Events$2(this);\n\t\t\t      this.instances = {};\n\t\t\t      this.Bottleneck = Bottleneck_1;\n\t\t\t      this._startAutoCleanup();\n\t\t\t      this.sharedConnection = this.connection != null;\n\t\t\t      if (this.connection == null) {\n\t\t\t        if (this.limiterOptions.datastore === \"redis\") {\n\t\t\t          this.connection = new RedisConnection$1(Object.assign({}, this.limiterOptions, {Events: this.Events}));\n\t\t\t        } else if (this.limiterOptions.datastore === \"ioredis\") {\n\t\t\t          this.connection = new IORedisConnection$1(Object.assign({}, this.limiterOptions, {Events: this.Events}));\n\t\t\t        }\n\t\t\t      }\n\t\t\t    }\n\n\t\t\t    key(key = \"\") {\n\t\t\t      var ref;\n\t\t\t      return (ref = this.instances[key]) != null ? ref : (() => {\n\t\t\t        var limiter;\n\t\t\t        limiter = this.instances[key] = new this.Bottleneck(Object.assign(this.limiterOptions, {\n\t\t\t          id: `${this.id}-${key}`,\n\t\t\t          timeout: this.timeout,\n\t\t\t          connection: this.connection\n\t\t\t        }));\n\t\t\t        this.Events.trigger(\"created\", limiter, key);\n\t\t\t        return limiter;\n\t\t\t      })();\n\t\t\t    }\n\n\t\t\t    async deleteKey(key = \"\") {\n\t\t\t      var deleted, instance;\n\t\t\t      instance = this.instances[key];\n\t\t\t      if (this.connection) {\n\t\t\t        deleted = (await this.connection.__runCommand__(['del', ...Scripts$1.allKeys(`${this.id}-${key}`)]));\n\t\t\t      }\n\t\t\t      if (instance != null) {\n\t\t\t        delete this.instances[key];\n\t\t\t        await instance.disconnect();\n\t\t\t      }\n\t\t\t      return (instance != null) || deleted > 0;\n\t\t\t    }\n\n\t\t\t    limiters() {\n\t\t\t      var k, ref, results, v;\n\t\t\t      ref = this.instances;\n\t\t\t      results = [];\n\t\t\t      for (k in ref) {\n\t\t\t        v = ref[k];\n\t\t\t        results.push({\n\t\t\t          key: k,\n\t\t\t          limiter: v\n\t\t\t        });\n\t\t\t      }\n\t\t\t      return results;\n\t\t\t    }\n\n\t\t\t    keys() {\n\t\t\t      return Object.keys(this.instances);\n\t\t\t    }\n\n\t\t\t    async clusterKeys() {\n\t\t\t      var cursor, end, found, i, k, keys, len, next, start;\n\t\t\t      if (this.connection == null) {\n\t\t\t        return this.Promise.resolve(this.keys());\n\t\t\t      }\n\t\t\t      keys = [];\n\t\t\t      cursor = null;\n\t\t\t      start = `b_${this.id}-`.length;\n\t\t\t      end = \"_settings\".length;\n\t\t\t      while (cursor !== 0) {\n\t\t\t        [next, found] = (await this.connection.__runCommand__([\"scan\", cursor != null ? cursor : 0, \"match\", `b_${this.id}-*_settings`, \"count\", 10000]));\n\t\t\t        cursor = ~~next;\n\t\t\t        for (i = 0, len = found.length; i < len; i++) {\n\t\t\t          k = found[i];\n\t\t\t          keys.push(k.slice(start, -end));\n\t\t\t        }\n\t\t\t      }\n\t\t\t      return keys;\n\t\t\t    }\n\n\t\t\t    _startAutoCleanup() {\n\t\t\t      var base;\n\t\t\t      clearInterval(this.interval);\n\t\t\t      return typeof (base = (this.interval = setInterval(async() => {\n\t\t\t        var e, k, ref, results, time, v;\n\t\t\t        time = Date.now();\n\t\t\t        ref = this.instances;\n\t\t\t        results = [];\n\t\t\t        for (k in ref) {\n\t\t\t          v = ref[k];\n\t\t\t          try {\n\t\t\t            if ((await v._store.__groupCheck__(time))) {\n\t\t\t              results.push(this.deleteKey(k));\n\t\t\t            } else {\n\t\t\t              results.push(void 0);\n\t\t\t            }\n\t\t\t          } catch (error) {\n\t\t\t            e = error;\n\t\t\t            results.push(v.Events.trigger(\"error\", e));\n\t\t\t          }\n\t\t\t        }\n\t\t\t        return results;\n\t\t\t      }, this.timeout / 2))).unref === \"function\" ? base.unref() : void 0;\n\t\t\t    }\n\n\t\t\t    updateSettings(options = {}) {\n\t\t\t      parser$3.overwrite(options, this.defaults, this);\n\t\t\t      parser$3.overwrite(options, options, this.limiterOptions);\n\t\t\t      if (options.timeout != null) {\n\t\t\t        return this._startAutoCleanup();\n\t\t\t      }\n\t\t\t    }\n\n\t\t\t    disconnect(flush = true) {\n\t\t\t      var ref;\n\t\t\t      if (!this.sharedConnection) {\n\t\t\t        return (ref = this.connection) != null ? ref.disconnect(flush) : void 0;\n\t\t\t      }\n\t\t\t    }\n\n\t\t\t  }\n\t\t\t  Group.prototype.defaults = {\n\t\t\t    timeout: 1000 * 60 * 5,\n\t\t\t    connection: null,\n\t\t\t    Promise: Promise,\n\t\t\t    id: \"group-key\"\n\t\t\t  };\n\n\t\t\t  return Group;\n\n\t\t\t}).call(commonjsGlobal$1);\n\n\t\t\tvar Group_1 = Group;\n\n\t\t\tvar Batcher, Events$3, parser$4;\n\n\t\t\tparser$4 = parser;\n\n\t\t\tEvents$3 = Events_1;\n\n\t\t\tBatcher = (function() {\n\t\t\t  class Batcher {\n\t\t\t    constructor(options = {}) {\n\t\t\t      this.options = options;\n\t\t\t      parser$4.load(this.options, this.defaults, this);\n\t\t\t      this.Events = new Events$3(this);\n\t\t\t      this._arr = [];\n\t\t\t      this._resetPromise();\n\t\t\t      this._lastFlush = Date.now();\n\t\t\t    }\n\n\t\t\t    _resetPromise() {\n\t\t\t      return this._promise = new this.Promise((res, rej) => {\n\t\t\t        return this._resolve = res;\n\t\t\t      });\n\t\t\t    }\n\n\t\t\t    _flush() {\n\t\t\t      clearTimeout(this._timeout);\n\t\t\t      this._lastFlush = Date.now();\n\t\t\t      this._resolve();\n\t\t\t      this.Events.trigger(\"batch\", this._arr);\n\t\t\t      this._arr = [];\n\t\t\t      return this._resetPromise();\n\t\t\t    }\n\n\t\t\t    add(data) {\n\t\t\t      var ret;\n\t\t\t      this._arr.push(data);\n\t\t\t      ret = this._promise;\n\t\t\t      if (this._arr.length === this.maxSize) {\n\t\t\t        this._flush();\n\t\t\t      } else if ((this.maxTime != null) && this._arr.length === 1) {\n\t\t\t        this._timeout = setTimeout(() => {\n\t\t\t          return this._flush();\n\t\t\t        }, this.maxTime);\n\t\t\t      }\n\t\t\t      return ret;\n\t\t\t    }\n\n\t\t\t  }\n\t\t\t  Batcher.prototype.defaults = {\n\t\t\t    maxTime: null,\n\t\t\t    maxSize: null,\n\t\t\t    Promise: Promise\n\t\t\t  };\n\n\t\t\t  return Batcher;\n\n\t\t\t}).call(commonjsGlobal$1);\n\n\t\t\tvar Batcher_1 = Batcher;\n\n\t\t\tvar require$$4$1 = () => console.log('You must import the full version of Bottleneck in order to use this feature.');\n\n\t\t\tvar require$$8 = getCjsExportFromNamespace(version$2);\n\n\t\t\tvar Bottleneck, DEFAULT_PRIORITY$1, Events$4, Job$1, LocalDatastore$1, NUM_PRIORITIES$1, Queues$1, RedisDatastore$1, States$1, Sync$1, parser$5,\n\t\t\t  splice = [].splice;\n\n\t\t\tNUM_PRIORITIES$1 = 10;\n\n\t\t\tDEFAULT_PRIORITY$1 = 5;\n\n\t\t\tparser$5 = parser;\n\n\t\t\tQueues$1 = Queues_1;\n\n\t\t\tJob$1 = Job_1;\n\n\t\t\tLocalDatastore$1 = LocalDatastore_1;\n\n\t\t\tRedisDatastore$1 = require$$4$1;\n\n\t\t\tEvents$4 = Events_1;\n\n\t\t\tStates$1 = States_1;\n\n\t\t\tSync$1 = Sync_1;\n\n\t\t\tBottleneck = (function() {\n\t\t\t  class Bottleneck {\n\t\t\t    constructor(options = {}, ...invalid) {\n\t\t\t      var storeInstanceOptions, storeOptions;\n\t\t\t      this._addToQueue = this._addToQueue.bind(this);\n\t\t\t      this._validateOptions(options, invalid);\n\t\t\t      parser$5.load(options, this.instanceDefaults, this);\n\t\t\t      this._queues = new Queues$1(NUM_PRIORITIES$1);\n\t\t\t      this._scheduled = {};\n\t\t\t      this._states = new States$1([\"RECEIVED\", \"QUEUED\", \"RUNNING\", \"EXECUTING\"].concat(this.trackDoneStatus ? [\"DONE\"] : []));\n\t\t\t      this._limiter = null;\n\t\t\t      this.Events = new Events$4(this);\n\t\t\t      this._submitLock = new Sync$1(\"submit\", this.Promise);\n\t\t\t      this._registerLock = new Sync$1(\"register\", this.Promise);\n\t\t\t      storeOptions = parser$5.load(options, this.storeDefaults, {});\n\t\t\t      this._store = (function() {\n\t\t\t        if (this.datastore === \"redis\" || this.datastore === \"ioredis\" || (this.connection != null)) {\n\t\t\t          storeInstanceOptions = parser$5.load(options, this.redisStoreDefaults, {});\n\t\t\t          return new RedisDatastore$1(this, storeOptions, storeInstanceOptions);\n\t\t\t        } else if (this.datastore === \"local\") {\n\t\t\t          storeInstanceOptions = parser$5.load(options, this.localStoreDefaults, {});\n\t\t\t          return new LocalDatastore$1(this, storeOptions, storeInstanceOptions);\n\t\t\t        } else {\n\t\t\t          throw new Bottleneck.prototype.BottleneckError(`Invalid datastore type: ${this.datastore}`);\n\t\t\t        }\n\t\t\t      }).call(this);\n\t\t\t      this._queues.on(\"leftzero\", () => {\n\t\t\t        var ref;\n\t\t\t        return (ref = this._store.heartbeat) != null ? typeof ref.ref === \"function\" ? ref.ref() : void 0 : void 0;\n\t\t\t      });\n\t\t\t      this._queues.on(\"zero\", () => {\n\t\t\t        var ref;\n\t\t\t        return (ref = this._store.heartbeat) != null ? typeof ref.unref === \"function\" ? ref.unref() : void 0 : void 0;\n\t\t\t      });\n\t\t\t    }\n\n\t\t\t    _validateOptions(options, invalid) {\n\t\t\t      if (!((options != null) && typeof options === \"object\" && invalid.length === 0)) {\n\t\t\t        throw new Bottleneck.prototype.BottleneckError(\"Bottleneck v2 takes a single object argument. Refer to https://github.com/SGrondin/bottleneck#upgrading-to-v2 if you're upgrading from Bottleneck v1.\");\n\t\t\t      }\n\t\t\t    }\n\n\t\t\t    ready() {\n\t\t\t      return this._store.ready;\n\t\t\t    }\n\n\t\t\t    clients() {\n\t\t\t      return this._store.clients;\n\t\t\t    }\n\n\t\t\t    channel() {\n\t\t\t      return `b_${this.id}`;\n\t\t\t    }\n\n\t\t\t    channel_client() {\n\t\t\t      return `b_${this.id}_${this._store.clientId}`;\n\t\t\t    }\n\n\t\t\t    publish(message) {\n\t\t\t      return this._store.__publish__(message);\n\t\t\t    }\n\n\t\t\t    disconnect(flush = true) {\n\t\t\t      return this._store.__disconnect__(flush);\n\t\t\t    }\n\n\t\t\t    chain(_limiter) {\n\t\t\t      this._limiter = _limiter;\n\t\t\t      return this;\n\t\t\t    }\n\n\t\t\t    queued(priority) {\n\t\t\t      return this._queues.queued(priority);\n\t\t\t    }\n\n\t\t\t    clusterQueued() {\n\t\t\t      return this._store.__queued__();\n\t\t\t    }\n\n\t\t\t    empty() {\n\t\t\t      return this.queued() === 0 && this._submitLock.isEmpty();\n\t\t\t    }\n\n\t\t\t    running() {\n\t\t\t      return this._store.__running__();\n\t\t\t    }\n\n\t\t\t    done() {\n\t\t\t      return this._store.__done__();\n\t\t\t    }\n\n\t\t\t    jobStatus(id) {\n\t\t\t      return this._states.jobStatus(id);\n\t\t\t    }\n\n\t\t\t    jobs(status) {\n\t\t\t      return this._states.statusJobs(status);\n\t\t\t    }\n\n\t\t\t    counts() {\n\t\t\t      return this._states.statusCounts();\n\t\t\t    }\n\n\t\t\t    _randomIndex() {\n\t\t\t      return Math.random().toString(36).slice(2);\n\t\t\t    }\n\n\t\t\t    check(weight = 1) {\n\t\t\t      return this._store.__check__(weight);\n\t\t\t    }\n\n\t\t\t    _clearGlobalState(index) {\n\t\t\t      if (this._scheduled[index] != null) {\n\t\t\t        clearTimeout(this._scheduled[index].expiration);\n\t\t\t        delete this._scheduled[index];\n\t\t\t        return true;\n\t\t\t      } else {\n\t\t\t        return false;\n\t\t\t      }\n\t\t\t    }\n\n\t\t\t    async _free(index, job, options, eventInfo) {\n\t\t\t      var e, running;\n\t\t\t      try {\n\t\t\t        ({running} = (await this._store.__free__(index, options.weight)));\n\t\t\t        this.Events.trigger(\"debug\", `Freed ${options.id}`, eventInfo);\n\t\t\t        if (running === 0 && this.empty()) {\n\t\t\t          return this.Events.trigger(\"idle\");\n\t\t\t        }\n\t\t\t      } catch (error1) {\n\t\t\t        e = error1;\n\t\t\t        return this.Events.trigger(\"error\", e);\n\t\t\t      }\n\t\t\t    }\n\n\t\t\t    _run(index, job, wait) {\n\t\t\t      var clearGlobalState, free, run;\n\t\t\t      job.doRun();\n\t\t\t      clearGlobalState = this._clearGlobalState.bind(this, index);\n\t\t\t      run = this._run.bind(this, index, job);\n\t\t\t      free = this._free.bind(this, index, job);\n\t\t\t      return this._scheduled[index] = {\n\t\t\t        timeout: setTimeout(() => {\n\t\t\t          return job.doExecute(this._limiter, clearGlobalState, run, free);\n\t\t\t        }, wait),\n\t\t\t        expiration: job.options.expiration != null ? setTimeout(function() {\n\t\t\t          return job.doExpire(clearGlobalState, run, free);\n\t\t\t        }, wait + job.options.expiration) : void 0,\n\t\t\t        job: job\n\t\t\t      };\n\t\t\t    }\n\n\t\t\t    _drainOne(capacity) {\n\t\t\t      return this._registerLock.schedule(() => {\n\t\t\t        var args, index, next, options, queue;\n\t\t\t        if (this.queued() === 0) {\n\t\t\t          return this.Promise.resolve(null);\n\t\t\t        }\n\t\t\t        queue = this._queues.getFirst();\n\t\t\t        ({options, args} = next = queue.first());\n\t\t\t        if ((capacity != null) && options.weight > capacity) {\n\t\t\t          return this.Promise.resolve(null);\n\t\t\t        }\n\t\t\t        this.Events.trigger(\"debug\", `Draining ${options.id}`, {args, options});\n\t\t\t        index = this._randomIndex();\n\t\t\t        return this._store.__register__(index, options.weight, options.expiration).then(({success, wait, reservoir}) => {\n\t\t\t          var empty;\n\t\t\t          this.Events.trigger(\"debug\", `Drained ${options.id}`, {success, args, options});\n\t\t\t          if (success) {\n\t\t\t            queue.shift();\n\t\t\t            empty = this.empty();\n\t\t\t            if (empty) {\n\t\t\t              this.Events.trigger(\"empty\");\n\t\t\t            }\n\t\t\t            if (reservoir === 0) {\n\t\t\t              this.Events.trigger(\"depleted\", empty);\n\t\t\t            }\n\t\t\t            this._run(index, next, wait);\n\t\t\t            return this.Promise.resolve(options.weight);\n\t\t\t          } else {\n\t\t\t            return this.Promise.resolve(null);\n\t\t\t          }\n\t\t\t        });\n\t\t\t      });\n\t\t\t    }\n\n\t\t\t    _drainAll(capacity, total = 0) {\n\t\t\t      return this._drainOne(capacity).then((drained) => {\n\t\t\t        var newCapacity;\n\t\t\t        if (drained != null) {\n\t\t\t          newCapacity = capacity != null ? capacity - drained : capacity;\n\t\t\t          return this._drainAll(newCapacity, total + drained);\n\t\t\t        } else {\n\t\t\t          return this.Promise.resolve(total);\n\t\t\t        }\n\t\t\t      }).catch((e) => {\n\t\t\t        return this.Events.trigger(\"error\", e);\n\t\t\t      });\n\t\t\t    }\n\n\t\t\t    _dropAllQueued(message) {\n\t\t\t      return this._queues.shiftAll(function(job) {\n\t\t\t        return job.doDrop({message});\n\t\t\t      });\n\t\t\t    }\n\n\t\t\t    stop(options = {}) {\n\t\t\t      var done, waitForExecuting;\n\t\t\t      options = parser$5.load(options, this.stopDefaults);\n\t\t\t      waitForExecuting = (at) => {\n\t\t\t        var finished;\n\t\t\t        finished = () => {\n\t\t\t          var counts;\n\t\t\t          counts = this._states.counts;\n\t\t\t          return (counts[0] + counts[1] + counts[2] + counts[3]) === at;\n\t\t\t        };\n\t\t\t        return new this.Promise((resolve, reject) => {\n\t\t\t          if (finished()) {\n\t\t\t            return resolve();\n\t\t\t          } else {\n\t\t\t            return this.on(\"done\", () => {\n\t\t\t              if (finished()) {\n\t\t\t                this.removeAllListeners(\"done\");\n\t\t\t                return resolve();\n\t\t\t              }\n\t\t\t            });\n\t\t\t          }\n\t\t\t        });\n\t\t\t      };\n\t\t\t      done = options.dropWaitingJobs ? (this._run = function(index, next) {\n\t\t\t        return next.doDrop({\n\t\t\t          message: options.dropErrorMessage\n\t\t\t        });\n\t\t\t      }, this._drainOne = () => {\n\t\t\t        return this.Promise.resolve(null);\n\t\t\t      }, this._registerLock.schedule(() => {\n\t\t\t        return this._submitLock.schedule(() => {\n\t\t\t          var k, ref, v;\n\t\t\t          ref = this._scheduled;\n\t\t\t          for (k in ref) {\n\t\t\t            v = ref[k];\n\t\t\t            if (this.jobStatus(v.job.options.id) === \"RUNNING\") {\n\t\t\t              clearTimeout(v.timeout);\n\t\t\t              clearTimeout(v.expiration);\n\t\t\t              v.job.doDrop({\n\t\t\t                message: options.dropErrorMessage\n\t\t\t              });\n\t\t\t            }\n\t\t\t          }\n\t\t\t          this._dropAllQueued(options.dropErrorMessage);\n\t\t\t          return waitForExecuting(0);\n\t\t\t        });\n\t\t\t      })) : this.schedule({\n\t\t\t        priority: NUM_PRIORITIES$1 - 1,\n\t\t\t        weight: 0\n\t\t\t      }, () => {\n\t\t\t        return waitForExecuting(1);\n\t\t\t      });\n\t\t\t      this._receive = function(job) {\n\t\t\t        return job._reject(new Bottleneck.prototype.BottleneckError(options.enqueueErrorMessage));\n\t\t\t      };\n\t\t\t      this.stop = () => {\n\t\t\t        return this.Promise.reject(new Bottleneck.prototype.BottleneckError(\"stop() has already been called\"));\n\t\t\t      };\n\t\t\t      return done;\n\t\t\t    }\n\n\t\t\t    async _addToQueue(job) {\n\t\t\t      var args, blocked, error, options, reachedHWM, shifted, strategy;\n\t\t\t      ({args, options} = job);\n\t\t\t      try {\n\t\t\t        ({reachedHWM, blocked, strategy} = (await this._store.__submit__(this.queued(), options.weight)));\n\t\t\t      } catch (error1) {\n\t\t\t        error = error1;\n\t\t\t        this.Events.trigger(\"debug\", `Could not queue ${options.id}`, {args, options, error});\n\t\t\t        job.doDrop({error});\n\t\t\t        return false;\n\t\t\t      }\n\t\t\t      if (blocked) {\n\t\t\t        job.doDrop();\n\t\t\t        return true;\n\t\t\t      } else if (reachedHWM) {\n\t\t\t        shifted = strategy === Bottleneck.prototype.strategy.LEAK ? this._queues.shiftLastFrom(options.priority) : strategy === Bottleneck.prototype.strategy.OVERFLOW_PRIORITY ? this._queues.shiftLastFrom(options.priority + 1) : strategy === Bottleneck.prototype.strategy.OVERFLOW ? job : void 0;\n\t\t\t        if (shifted != null) {\n\t\t\t          shifted.doDrop();\n\t\t\t        }\n\t\t\t        if ((shifted == null) || strategy === Bottleneck.prototype.strategy.OVERFLOW) {\n\t\t\t          if (shifted == null) {\n\t\t\t            job.doDrop();\n\t\t\t          }\n\t\t\t          return reachedHWM;\n\t\t\t        }\n\t\t\t      }\n\t\t\t      job.doQueue(reachedHWM, blocked);\n\t\t\t      this._queues.push(job);\n\t\t\t      await this._drainAll();\n\t\t\t      return reachedHWM;\n\t\t\t    }\n\n\t\t\t    _receive(job) {\n\t\t\t      if (this._states.jobStatus(job.options.id) != null) {\n\t\t\t        job._reject(new Bottleneck.prototype.BottleneckError(`A job with the same id already exists (id=${job.options.id})`));\n\t\t\t        return false;\n\t\t\t      } else {\n\t\t\t        job.doReceive();\n\t\t\t        return this._submitLock.schedule(this._addToQueue, job);\n\t\t\t      }\n\t\t\t    }\n\n\t\t\t    submit(...args) {\n\t\t\t      var cb, fn, job, options, ref, ref1, task;\n\t\t\t      if (typeof args[0] === \"function\") {\n\t\t\t        ref = args, [fn, ...args] = ref, [cb] = splice.call(args, -1);\n\t\t\t        options = parser$5.load({}, this.jobDefaults);\n\t\t\t      } else {\n\t\t\t        ref1 = args, [options, fn, ...args] = ref1, [cb] = splice.call(args, -1);\n\t\t\t        options = parser$5.load(options, this.jobDefaults);\n\t\t\t      }\n\t\t\t      task = (...args) => {\n\t\t\t        return new this.Promise(function(resolve, reject) {\n\t\t\t          return fn(...args, function(...args) {\n\t\t\t            return (args[0] != null ? reject : resolve)(args);\n\t\t\t          });\n\t\t\t        });\n\t\t\t      };\n\t\t\t      job = new Job$1(task, args, options, this.jobDefaults, this.rejectOnDrop, this.Events, this._states, this.Promise);\n\t\t\t      job.promise.then(function(args) {\n\t\t\t        return typeof cb === \"function\" ? cb(...args) : void 0;\n\t\t\t      }).catch(function(args) {\n\t\t\t        if (Array.isArray(args)) {\n\t\t\t          return typeof cb === \"function\" ? cb(...args) : void 0;\n\t\t\t        } else {\n\t\t\t          return typeof cb === \"function\" ? cb(args) : void 0;\n\t\t\t        }\n\t\t\t      });\n\t\t\t      return this._receive(job);\n\t\t\t    }\n\n\t\t\t    schedule(...args) {\n\t\t\t      var job, options, task;\n\t\t\t      if (typeof args[0] === \"function\") {\n\t\t\t        [task, ...args] = args;\n\t\t\t        options = {};\n\t\t\t      } else {\n\t\t\t        [options, task, ...args] = args;\n\t\t\t      }\n\t\t\t      job = new Job$1(task, args, options, this.jobDefaults, this.rejectOnDrop, this.Events, this._states, this.Promise);\n\t\t\t      this._receive(job);\n\t\t\t      return job.promise;\n\t\t\t    }\n\n\t\t\t    wrap(fn) {\n\t\t\t      var schedule, wrapped;\n\t\t\t      schedule = this.schedule.bind(this);\n\t\t\t      wrapped = function(...args) {\n\t\t\t        return schedule(fn.bind(this), ...args);\n\t\t\t      };\n\t\t\t      wrapped.withOptions = function(options, ...args) {\n\t\t\t        return schedule(options, fn, ...args);\n\t\t\t      };\n\t\t\t      return wrapped;\n\t\t\t    }\n\n\t\t\t    async updateSettings(options = {}) {\n\t\t\t      await this._store.__updateSettings__(parser$5.overwrite(options, this.storeDefaults));\n\t\t\t      parser$5.overwrite(options, this.instanceDefaults, this);\n\t\t\t      return this;\n\t\t\t    }\n\n\t\t\t    currentReservoir() {\n\t\t\t      return this._store.__currentReservoir__();\n\t\t\t    }\n\n\t\t\t    incrementReservoir(incr = 0) {\n\t\t\t      return this._store.__incrementReservoir__(incr);\n\t\t\t    }\n\n\t\t\t  }\n\t\t\t  Bottleneck.default = Bottleneck;\n\n\t\t\t  Bottleneck.Events = Events$4;\n\n\t\t\t  Bottleneck.version = Bottleneck.prototype.version = require$$8.version;\n\n\t\t\t  Bottleneck.strategy = Bottleneck.prototype.strategy = {\n\t\t\t    LEAK: 1,\n\t\t\t    OVERFLOW: 2,\n\t\t\t    OVERFLOW_PRIORITY: 4,\n\t\t\t    BLOCK: 3\n\t\t\t  };\n\n\t\t\t  Bottleneck.BottleneckError = Bottleneck.prototype.BottleneckError = BottleneckError_1;\n\n\t\t\t  Bottleneck.Group = Bottleneck.prototype.Group = Group_1;\n\n\t\t\t  Bottleneck.RedisConnection = Bottleneck.prototype.RedisConnection = require$$2;\n\n\t\t\t  Bottleneck.IORedisConnection = Bottleneck.prototype.IORedisConnection = require$$3;\n\n\t\t\t  Bottleneck.Batcher = Bottleneck.prototype.Batcher = Batcher_1;\n\n\t\t\t  Bottleneck.prototype.jobDefaults = {\n\t\t\t    priority: DEFAULT_PRIORITY$1,\n\t\t\t    weight: 1,\n\t\t\t    expiration: null,\n\t\t\t    id: \"<no-id>\"\n\t\t\t  };\n\n\t\t\t  Bottleneck.prototype.storeDefaults = {\n\t\t\t    maxConcurrent: null,\n\t\t\t    minTime: 0,\n\t\t\t    highWater: null,\n\t\t\t    strategy: Bottleneck.prototype.strategy.LEAK,\n\t\t\t    penalty: null,\n\t\t\t    reservoir: null,\n\t\t\t    reservoirRefreshInterval: null,\n\t\t\t    reservoirRefreshAmount: null,\n\t\t\t    reservoirIncreaseInterval: null,\n\t\t\t    reservoirIncreaseAmount: null,\n\t\t\t    reservoirIncreaseMaximum: null\n\t\t\t  };\n\n\t\t\t  Bottleneck.prototype.localStoreDefaults = {\n\t\t\t    Promise: Promise,\n\t\t\t    timeout: null,\n\t\t\t    heartbeatInterval: 250\n\t\t\t  };\n\n\t\t\t  Bottleneck.prototype.redisStoreDefaults = {\n\t\t\t    Promise: Promise,\n\t\t\t    timeout: null,\n\t\t\t    heartbeatInterval: 5000,\n\t\t\t    clientTimeout: 10000,\n\t\t\t    Redis: null,\n\t\t\t    clientOptions: {},\n\t\t\t    clusterNodes: null,\n\t\t\t    clearDatastore: false,\n\t\t\t    connection: null\n\t\t\t  };\n\n\t\t\t  Bottleneck.prototype.instanceDefaults = {\n\t\t\t    datastore: \"local\",\n\t\t\t    connection: null,\n\t\t\t    id: \"<no-id>\",\n\t\t\t    rejectOnDrop: true,\n\t\t\t    trackDoneStatus: false,\n\t\t\t    Promise: Promise\n\t\t\t  };\n\n\t\t\t  Bottleneck.prototype.stopDefaults = {\n\t\t\t    enqueueErrorMessage: \"This limiter has been stopped and cannot accept new jobs.\",\n\t\t\t    dropWaitingJobs: true,\n\t\t\t    dropErrorMessage: \"This limiter has been stopped.\"\n\t\t\t  };\n\n\t\t\t  return Bottleneck;\n\n\t\t\t}).call(commonjsGlobal$1);\n\n\t\t\tvar Bottleneck_1 = Bottleneck;\n\n\t\t\tvar lib = Bottleneck_1;\n\n\t\t\treturn lib;\n\n\t\t}))); \n\t} (light$1));\n\treturn light$1.exports;\n}\n\nvar lightExports = requireLight();\nvar Bottleneck = /*@__PURE__*/getDefaultExportFromCjs(lightExports);\n\n// @ts-ignore\nasync function errorRequest(octokit, state, error, options) {\n    if (!error.request || !error.request.request) {\n        // address https://github.com/octokit/plugin-retry.js/issues/8\n        throw error;\n    }\n    // retry all >= 400 && not doNotRetry\n    if (error.status >= 400 && !state.doNotRetry.includes(error.status)) {\n        const retries = options.request.retries != null ? options.request.retries : state.retries;\n        const retryAfter = Math.pow((options.request.retryCount || 0) + 1, 2);\n        throw octokit.retry.retryRequest(error, retries, retryAfter);\n    }\n    // Maybe eventually there will be more cases here\n    throw error;\n}\n\n// @ts-ignore\n// @ts-ignore\nasync function wrapRequest(state, request, options) {\n    const limiter = new Bottleneck();\n    // @ts-ignore\n    limiter.on(\"failed\", function (error, info) {\n        const maxRetries = ~~error.request.request.retries;\n        const after = ~~error.request.request.retryAfter;\n        options.request.retryCount = info.retryCount + 1;\n        if (maxRetries > info.retryCount) {\n            // Returning a number instructs the limiter to retry\n            // the request after that number of milliseconds have passed\n            return after * state.retryAfterBaseValue;\n        }\n    });\n    return limiter.schedule(request, options);\n}\n\nconst VERSION = \"3.0.9\";\nfunction retry(octokit, octokitOptions) {\n    const state = Object.assign({\n        enabled: true,\n        retryAfterBaseValue: 1000,\n        doNotRetry: [400, 401, 403, 404, 422],\n        retries: 3,\n    }, octokitOptions.retry);\n    if (state.enabled) {\n        octokit.hook.error(\"request\", errorRequest.bind(null, octokit, state));\n        octokit.hook.wrap(\"request\", wrapRequest.bind(null, state));\n    }\n    return {\n        retry: {\n            retryRequest: (error, retries, retryAfter) => {\n                error.request.request = Object.assign({}, error.request.request, {\n                    retries: retries,\n                    retryAfter: retryAfter,\n                });\n                return error;\n            },\n        },\n    };\n}\nretry.VERSION = VERSION;\n\nvar distWeb = /*#__PURE__*/Object.freeze({\n\t__proto__: null,\n\tVERSION: VERSION,\n\tretry: retry\n});\n\nvar require$$6 = /*@__PURE__*/getAugmentedNamespace(distWeb);\n\nvar getArtifact = {};\n\nvar hasRequiredGetArtifact;\n\nfunction requireGetArtifact () {\n\tif (hasRequiredGetArtifact) return getArtifact;\n\thasRequiredGetArtifact = 1;\n\tvar __createBinding = (getArtifact && getArtifact.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t    }\n\t    Object.defineProperty(o, k2, desc);\n\t}) : (function(o, m, k, k2) {\n\t    if (k2 === undefined) k2 = k;\n\t    o[k2] = m[k];\n\t}));\n\tvar __setModuleDefault = (getArtifact && getArtifact.__setModuleDefault) || (Object.create ? (function(o, v) {\n\t    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n\t}) : function(o, v) {\n\t    o[\"default\"] = v;\n\t});\n\tvar __importStar = (getArtifact && getArtifact.__importStar) || function (mod) {\n\t    if (mod && mod.__esModule) return mod;\n\t    var result = {};\n\t    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n\t    __setModuleDefault(result, mod);\n\t    return result;\n\t};\n\tvar __awaiter = (getArtifact && getArtifact.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(getArtifact, \"__esModule\", { value: true });\n\tgetArtifact.getArtifactInternal = getArtifact.getArtifactPublic = void 0;\n\tconst github_1 = requireGithub();\n\tconst plugin_retry_1 = require$$6;\n\tconst core = __importStar(requireCore$1());\n\tconst utils_1 = requireUtils();\n\tconst retry_options_1 = requireRetryOptions();\n\tconst plugin_request_log_1 = require$$5;\n\tconst util_1 = requireUtil$4();\n\tconst user_agent_1 = requireUserAgent();\n\tconst artifact_twirp_client_1 = requireArtifactTwirpClient();\n\tconst generated_1 = requireGenerated();\n\tconst errors_1 = requireErrors$1();\n\tfunction getArtifactPublic(artifactName, workflowRunId, repositoryOwner, repositoryName, token) {\n\t    var _a;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const [retryOpts, requestOpts] = (0, retry_options_1.getRetryOptions)(utils_1.defaults);\n\t        const opts = {\n\t            log: undefined,\n\t            userAgent: (0, user_agent_1.getUserAgentString)(),\n\t            previews: undefined,\n\t            retry: retryOpts,\n\t            request: requestOpts\n\t        };\n\t        const github = (0, github_1.getOctokit)(token, opts, plugin_retry_1.retry, plugin_request_log_1.requestLog);\n\t        const getArtifactResp = yield github.request('GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts{?name}', {\n\t            owner: repositoryOwner,\n\t            repo: repositoryName,\n\t            run_id: workflowRunId,\n\t            name: artifactName\n\t        });\n\t        if (getArtifactResp.status !== 200) {\n\t            throw new errors_1.InvalidResponseError(`Invalid response from GitHub API: ${getArtifactResp.status} (${(_a = getArtifactResp === null || getArtifactResp === void 0 ? void 0 : getArtifactResp.headers) === null || _a === void 0 ? void 0 : _a['x-github-request-id']})`);\n\t        }\n\t        if (getArtifactResp.data.artifacts.length === 0) {\n\t            throw new errors_1.ArtifactNotFoundError(`Artifact not found for name: ${artifactName}\n        Please ensure that your artifact is not expired and the artifact was uploaded using a compatible version of toolkit/upload-artifact.\n        For more information, visit the GitHub Artifacts FAQ: https://github.com/actions/toolkit/blob/main/packages/artifact/docs/faq.md`);\n\t        }\n\t        let artifact = getArtifactResp.data.artifacts[0];\n\t        if (getArtifactResp.data.artifacts.length > 1) {\n\t            artifact = getArtifactResp.data.artifacts.sort((a, b) => b.id - a.id)[0];\n\t            core.debug(`More than one artifact found for a single name, returning newest (id: ${artifact.id})`);\n\t        }\n\t        return {\n\t            artifact: {\n\t                name: artifact.name,\n\t                id: artifact.id,\n\t                size: artifact.size_in_bytes,\n\t                createdAt: artifact.created_at\n\t                    ? new Date(artifact.created_at)\n\t                    : undefined,\n\t                digest: artifact.digest\n\t            }\n\t        };\n\t    });\n\t}\n\tgetArtifact.getArtifactPublic = getArtifactPublic;\n\tfunction getArtifactInternal(artifactName) {\n\t    var _a;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const artifactClient = (0, artifact_twirp_client_1.internalArtifactTwirpClient)();\n\t        const { workflowRunBackendId, workflowJobRunBackendId } = (0, util_1.getBackendIdsFromToken)();\n\t        const req = {\n\t            workflowRunBackendId,\n\t            workflowJobRunBackendId,\n\t            nameFilter: generated_1.StringValue.create({ value: artifactName })\n\t        };\n\t        const res = yield artifactClient.ListArtifacts(req);\n\t        if (res.artifacts.length === 0) {\n\t            throw new errors_1.ArtifactNotFoundError(`Artifact not found for name: ${artifactName}\n        Please ensure that your artifact is not expired and the artifact was uploaded using a compatible version of toolkit/upload-artifact.\n        For more information, visit the GitHub Artifacts FAQ: https://github.com/actions/toolkit/blob/main/packages/artifact/docs/faq.md`);\n\t        }\n\t        let artifact = res.artifacts[0];\n\t        if (res.artifacts.length > 1) {\n\t            artifact = res.artifacts.sort((a, b) => Number(b.databaseId) - Number(a.databaseId))[0];\n\t            core.debug(`More than one artifact found for a single name, returning newest (id: ${artifact.databaseId})`);\n\t        }\n\t        return {\n\t            artifact: {\n\t                name: artifact.name,\n\t                id: Number(artifact.databaseId),\n\t                size: Number(artifact.size),\n\t                createdAt: artifact.createdAt\n\t                    ? generated_1.Timestamp.toDate(artifact.createdAt)\n\t                    : undefined,\n\t                digest: (_a = artifact.digest) === null || _a === void 0 ? void 0 : _a.value\n\t            }\n\t        };\n\t    });\n\t}\n\tgetArtifact.getArtifactInternal = getArtifactInternal;\n\t\n\treturn getArtifact;\n}\n\nvar hasRequiredDeleteArtifact;\n\nfunction requireDeleteArtifact () {\n\tif (hasRequiredDeleteArtifact) return deleteArtifact;\n\thasRequiredDeleteArtifact = 1;\n\tvar __awaiter = (deleteArtifact && deleteArtifact.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(deleteArtifact, \"__esModule\", { value: true });\n\tdeleteArtifact.deleteArtifactInternal = deleteArtifact.deleteArtifactPublic = void 0;\n\tconst core_1 = requireCore$1();\n\tconst github_1 = requireGithub();\n\tconst user_agent_1 = requireUserAgent();\n\tconst retry_options_1 = requireRetryOptions();\n\tconst utils_1 = requireUtils();\n\tconst plugin_request_log_1 = require$$5;\n\tconst plugin_retry_1 = require$$6;\n\tconst artifact_twirp_client_1 = requireArtifactTwirpClient();\n\tconst util_1 = requireUtil$4();\n\tconst generated_1 = requireGenerated();\n\tconst get_artifact_1 = requireGetArtifact();\n\tconst errors_1 = requireErrors$1();\n\tfunction deleteArtifactPublic(artifactName, workflowRunId, repositoryOwner, repositoryName, token) {\n\t    var _a;\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const [retryOpts, requestOpts] = (0, retry_options_1.getRetryOptions)(utils_1.defaults);\n\t        const opts = {\n\t            log: undefined,\n\t            userAgent: (0, user_agent_1.getUserAgentString)(),\n\t            previews: undefined,\n\t            retry: retryOpts,\n\t            request: requestOpts\n\t        };\n\t        const github = (0, github_1.getOctokit)(token, opts, plugin_retry_1.retry, plugin_request_log_1.requestLog);\n\t        const getArtifactResp = yield (0, get_artifact_1.getArtifactPublic)(artifactName, workflowRunId, repositoryOwner, repositoryName, token);\n\t        const deleteArtifactResp = yield github.rest.actions.deleteArtifact({\n\t            owner: repositoryOwner,\n\t            repo: repositoryName,\n\t            artifact_id: getArtifactResp.artifact.id\n\t        });\n\t        if (deleteArtifactResp.status !== 204) {\n\t            throw new errors_1.InvalidResponseError(`Invalid response from GitHub API: ${deleteArtifactResp.status} (${(_a = deleteArtifactResp === null || deleteArtifactResp === void 0 ? void 0 : deleteArtifactResp.headers) === null || _a === void 0 ? void 0 : _a['x-github-request-id']})`);\n\t        }\n\t        return {\n\t            id: getArtifactResp.artifact.id\n\t        };\n\t    });\n\t}\n\tdeleteArtifact.deleteArtifactPublic = deleteArtifactPublic;\n\tfunction deleteArtifactInternal(artifactName) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const artifactClient = (0, artifact_twirp_client_1.internalArtifactTwirpClient)();\n\t        const { workflowRunBackendId, workflowJobRunBackendId } = (0, util_1.getBackendIdsFromToken)();\n\t        const listReq = {\n\t            workflowRunBackendId,\n\t            workflowJobRunBackendId,\n\t            nameFilter: generated_1.StringValue.create({ value: artifactName })\n\t        };\n\t        const listRes = yield artifactClient.ListArtifacts(listReq);\n\t        if (listRes.artifacts.length === 0) {\n\t            throw new errors_1.ArtifactNotFoundError(`Artifact not found for name: ${artifactName}`);\n\t        }\n\t        let artifact = listRes.artifacts[0];\n\t        if (listRes.artifacts.length > 1) {\n\t            artifact = listRes.artifacts.sort((a, b) => Number(b.databaseId) - Number(a.databaseId))[0];\n\t            (0, core_1.debug)(`More than one artifact found for a single name, returning newest (id: ${artifact.databaseId})`);\n\t        }\n\t        const req = {\n\t            workflowRunBackendId: artifact.workflowRunBackendId,\n\t            workflowJobRunBackendId: artifact.workflowJobRunBackendId,\n\t            name: artifact.name\n\t        };\n\t        const res = yield artifactClient.DeleteArtifact(req);\n\t        (0, core_1.info)(`Artifact '${artifactName}' (ID: ${res.artifactId}) deleted`);\n\t        return {\n\t            id: Number(res.artifactId)\n\t        };\n\t    });\n\t}\n\tdeleteArtifact.deleteArtifactInternal = deleteArtifactInternal;\n\t\n\treturn deleteArtifact;\n}\n\nvar listArtifacts = {};\n\nvar hasRequiredListArtifacts;\n\nfunction requireListArtifacts () {\n\tif (hasRequiredListArtifacts) return listArtifacts;\n\thasRequiredListArtifacts = 1;\n\tvar __awaiter = (listArtifacts && listArtifacts.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tObject.defineProperty(listArtifacts, \"__esModule\", { value: true });\n\tlistArtifacts.listArtifactsInternal = listArtifacts.listArtifactsPublic = void 0;\n\tconst core_1 = requireCore$1();\n\tconst github_1 = requireGithub();\n\tconst user_agent_1 = requireUserAgent();\n\tconst retry_options_1 = requireRetryOptions();\n\tconst utils_1 = requireUtils();\n\tconst plugin_request_log_1 = require$$5;\n\tconst plugin_retry_1 = require$$6;\n\tconst artifact_twirp_client_1 = requireArtifactTwirpClient();\n\tconst util_1 = requireUtil$4();\n\tconst generated_1 = requireGenerated();\n\t// Limiting to 1000 for perf reasons\n\tconst maximumArtifactCount = 1000;\n\tconst paginationCount = 100;\n\tconst maxNumberOfPages = maximumArtifactCount / paginationCount;\n\tfunction listArtifactsPublic(workflowRunId, repositoryOwner, repositoryName, token, latest = false) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        (0, core_1.info)(`Fetching artifact list for workflow run ${workflowRunId} in repository ${repositoryOwner}/${repositoryName}`);\n\t        let artifacts = [];\n\t        const [retryOpts, requestOpts] = (0, retry_options_1.getRetryOptions)(utils_1.defaults);\n\t        const opts = {\n\t            log: undefined,\n\t            userAgent: (0, user_agent_1.getUserAgentString)(),\n\t            previews: undefined,\n\t            retry: retryOpts,\n\t            request: requestOpts\n\t        };\n\t        const github = (0, github_1.getOctokit)(token, opts, plugin_retry_1.retry, plugin_request_log_1.requestLog);\n\t        let currentPageNumber = 1;\n\t        const { data: listArtifactResponse } = yield github.request('GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts', {\n\t            owner: repositoryOwner,\n\t            repo: repositoryName,\n\t            run_id: workflowRunId,\n\t            per_page: paginationCount,\n\t            page: currentPageNumber\n\t        });\n\t        let numberOfPages = Math.ceil(listArtifactResponse.total_count / paginationCount);\n\t        const totalArtifactCount = listArtifactResponse.total_count;\n\t        if (totalArtifactCount > maximumArtifactCount) {\n\t            (0, core_1.warning)(`Workflow run ${workflowRunId} has more than 1000 artifacts. Results will be incomplete as only the first ${maximumArtifactCount} artifacts will be returned`);\n\t            numberOfPages = maxNumberOfPages;\n\t        }\n\t        // Iterate over the first page\n\t        for (const artifact of listArtifactResponse.artifacts) {\n\t            artifacts.push({\n\t                name: artifact.name,\n\t                id: artifact.id,\n\t                size: artifact.size_in_bytes,\n\t                createdAt: artifact.created_at\n\t                    ? new Date(artifact.created_at)\n\t                    : undefined,\n\t                digest: artifact.digest\n\t            });\n\t        }\n\t        // Move to the next page\n\t        currentPageNumber++;\n\t        // Iterate over any remaining pages\n\t        for (currentPageNumber; currentPageNumber < numberOfPages; currentPageNumber++) {\n\t            (0, core_1.debug)(`Fetching page ${currentPageNumber} of artifact list`);\n\t            const { data: listArtifactResponse } = yield github.request('GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts', {\n\t                owner: repositoryOwner,\n\t                repo: repositoryName,\n\t                run_id: workflowRunId,\n\t                per_page: paginationCount,\n\t                page: currentPageNumber\n\t            });\n\t            for (const artifact of listArtifactResponse.artifacts) {\n\t                artifacts.push({\n\t                    name: artifact.name,\n\t                    id: artifact.id,\n\t                    size: artifact.size_in_bytes,\n\t                    createdAt: artifact.created_at\n\t                        ? new Date(artifact.created_at)\n\t                        : undefined,\n\t                    digest: artifact.digest\n\t                });\n\t            }\n\t        }\n\t        if (latest) {\n\t            artifacts = filterLatest(artifacts);\n\t        }\n\t        (0, core_1.info)(`Found ${artifacts.length} artifact(s)`);\n\t        return {\n\t            artifacts\n\t        };\n\t    });\n\t}\n\tlistArtifacts.listArtifactsPublic = listArtifactsPublic;\n\tfunction listArtifactsInternal(latest = false) {\n\t    return __awaiter(this, void 0, void 0, function* () {\n\t        const artifactClient = (0, artifact_twirp_client_1.internalArtifactTwirpClient)();\n\t        const { workflowRunBackendId, workflowJobRunBackendId } = (0, util_1.getBackendIdsFromToken)();\n\t        const req = {\n\t            workflowRunBackendId,\n\t            workflowJobRunBackendId\n\t        };\n\t        const res = yield artifactClient.ListArtifacts(req);\n\t        let artifacts = res.artifacts.map(artifact => {\n\t            var _a;\n\t            return ({\n\t                name: artifact.name,\n\t                id: Number(artifact.databaseId),\n\t                size: Number(artifact.size),\n\t                createdAt: artifact.createdAt\n\t                    ? generated_1.Timestamp.toDate(artifact.createdAt)\n\t                    : undefined,\n\t                digest: (_a = artifact.digest) === null || _a === void 0 ? void 0 : _a.value\n\t            });\n\t        });\n\t        if (latest) {\n\t            artifacts = filterLatest(artifacts);\n\t        }\n\t        (0, core_1.info)(`Found ${artifacts.length} artifact(s)`);\n\t        return {\n\t            artifacts\n\t        };\n\t    });\n\t}\n\tlistArtifacts.listArtifactsInternal = listArtifactsInternal;\n\t/**\n\t * Filters a list of artifacts to only include the latest artifact for each name\n\t * @param artifacts The artifacts to filter\n\t * @returns The filtered list of artifacts\n\t */\n\tfunction filterLatest(artifacts) {\n\t    artifacts.sort((a, b) => b.id - a.id);\n\t    const latestArtifacts = [];\n\t    const seenArtifactNames = new Set();\n\t    for (const artifact of artifacts) {\n\t        if (!seenArtifactNames.has(artifact.name)) {\n\t            latestArtifacts.push(artifact);\n\t            seenArtifactNames.add(artifact.name);\n\t        }\n\t    }\n\t    return latestArtifacts;\n\t}\n\t\n\treturn listArtifacts;\n}\n\nvar hasRequiredClient;\n\nfunction requireClient () {\n\tif (hasRequiredClient) return client;\n\thasRequiredClient = 1;\n\tvar __awaiter = (client && client.__awaiter) || function (thisArg, _arguments, P, generator) {\n\t    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n\t    return new (P || (P = Promise))(function (resolve, reject) {\n\t        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n\t        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n\t        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n\t        step((generator = generator.apply(thisArg, _arguments || [])).next());\n\t    });\n\t};\n\tvar __rest = (client && client.__rest) || function (s, e) {\n\t    var t = {};\n\t    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n\t        t[p] = s[p];\n\t    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n\t        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n\t            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n\t                t[p[i]] = s[p[i]];\n\t        }\n\t    return t;\n\t};\n\tObject.defineProperty(client, \"__esModule\", { value: true });\n\tclient.DefaultArtifactClient = void 0;\n\tconst core_1 = requireCore$1();\n\tconst config_1 = requireConfig();\n\tconst upload_artifact_1 = requireUploadArtifact();\n\tconst download_artifact_1 = requireDownloadArtifact();\n\tconst delete_artifact_1 = requireDeleteArtifact();\n\tconst get_artifact_1 = requireGetArtifact();\n\tconst list_artifacts_1 = requireListArtifacts();\n\tconst errors_1 = requireErrors$1();\n\t/**\n\t * The default artifact client that is used by the artifact action(s).\n\t */\n\tclass DefaultArtifactClient {\n\t    uploadArtifact(name, files, rootDirectory, options) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            try {\n\t                if ((0, config_1.isGhes)()) {\n\t                    throw new errors_1.GHESNotSupportedError();\n\t                }\n\t                return (0, upload_artifact_1.uploadArtifact)(name, files, rootDirectory, options);\n\t            }\n\t            catch (error) {\n\t                (0, core_1.warning)(`Artifact upload failed with error: ${error}.\n\nErrors can be temporary, so please try again and optionally run the action with debug mode enabled for more information.\n\nIf the error persists, please check whether Actions is operating normally at [https://githubstatus.com](https://www.githubstatus.com).`);\n\t                throw error;\n\t            }\n\t        });\n\t    }\n\t    downloadArtifact(artifactId, options) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            try {\n\t                if ((0, config_1.isGhes)()) {\n\t                    throw new errors_1.GHESNotSupportedError();\n\t                }\n\t                if (options === null || options === void 0 ? void 0 : options.findBy) {\n\t                    const { findBy: { repositoryOwner, repositoryName, token } } = options, downloadOptions = __rest(options, [\"findBy\"]);\n\t                    return (0, download_artifact_1.downloadArtifactPublic)(artifactId, repositoryOwner, repositoryName, token, downloadOptions);\n\t                }\n\t                return (0, download_artifact_1.downloadArtifactInternal)(artifactId, options);\n\t            }\n\t            catch (error) {\n\t                (0, core_1.warning)(`Download Artifact failed with error: ${error}.\n\nErrors can be temporary, so please try again and optionally run the action with debug mode enabled for more information.\n\nIf the error persists, please check whether Actions and API requests are operating normally at [https://githubstatus.com](https://www.githubstatus.com).`);\n\t                throw error;\n\t            }\n\t        });\n\t    }\n\t    listArtifacts(options) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            try {\n\t                if ((0, config_1.isGhes)()) {\n\t                    throw new errors_1.GHESNotSupportedError();\n\t                }\n\t                if (options === null || options === void 0 ? void 0 : options.findBy) {\n\t                    const { findBy: { workflowRunId, repositoryOwner, repositoryName, token } } = options;\n\t                    return (0, list_artifacts_1.listArtifactsPublic)(workflowRunId, repositoryOwner, repositoryName, token, options === null || options === void 0 ? void 0 : options.latest);\n\t                }\n\t                return (0, list_artifacts_1.listArtifactsInternal)(options === null || options === void 0 ? void 0 : options.latest);\n\t            }\n\t            catch (error) {\n\t                (0, core_1.warning)(`Listing Artifacts failed with error: ${error}.\n\nErrors can be temporary, so please try again and optionally run the action with debug mode enabled for more information.\n\nIf the error persists, please check whether Actions and API requests are operating normally at [https://githubstatus.com](https://www.githubstatus.com).`);\n\t                throw error;\n\t            }\n\t        });\n\t    }\n\t    getArtifact(artifactName, options) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            try {\n\t                if ((0, config_1.isGhes)()) {\n\t                    throw new errors_1.GHESNotSupportedError();\n\t                }\n\t                if (options === null || options === void 0 ? void 0 : options.findBy) {\n\t                    const { findBy: { workflowRunId, repositoryOwner, repositoryName, token } } = options;\n\t                    return (0, get_artifact_1.getArtifactPublic)(artifactName, workflowRunId, repositoryOwner, repositoryName, token);\n\t                }\n\t                return (0, get_artifact_1.getArtifactInternal)(artifactName);\n\t            }\n\t            catch (error) {\n\t                (0, core_1.warning)(`Get Artifact failed with error: ${error}.\n\nErrors can be temporary, so please try again and optionally run the action with debug mode enabled for more information.\n\nIf the error persists, please check whether Actions and API requests are operating normally at [https://githubstatus.com](https://www.githubstatus.com).`);\n\t                throw error;\n\t            }\n\t        });\n\t    }\n\t    deleteArtifact(artifactName, options) {\n\t        return __awaiter(this, void 0, void 0, function* () {\n\t            try {\n\t                if ((0, config_1.isGhes)()) {\n\t                    throw new errors_1.GHESNotSupportedError();\n\t                }\n\t                if (options === null || options === void 0 ? void 0 : options.findBy) {\n\t                    const { findBy: { repositoryOwner, repositoryName, workflowRunId, token } } = options;\n\t                    return (0, delete_artifact_1.deleteArtifactPublic)(artifactName, workflowRunId, repositoryOwner, repositoryName, token);\n\t                }\n\t                return (0, delete_artifact_1.deleteArtifactInternal)(artifactName);\n\t            }\n\t            catch (error) {\n\t                (0, core_1.warning)(`Delete Artifact failed with error: ${error}.\n\nErrors can be temporary, so please try again and optionally run the action with debug mode enabled for more information.\n\nIf the error persists, please check whether Actions and API requests are operating normally at [https://githubstatus.com](https://www.githubstatus.com).`);\n\t                throw error;\n\t            }\n\t        });\n\t    }\n\t}\n\tclient.DefaultArtifactClient = DefaultArtifactClient;\n\t\n\treturn client;\n}\n\nvar interfaces = {};\n\nvar hasRequiredInterfaces;\n\nfunction requireInterfaces () {\n\tif (hasRequiredInterfaces) return interfaces;\n\thasRequiredInterfaces = 1;\n\tObject.defineProperty(interfaces, \"__esModule\", { value: true });\n\t\n\treturn interfaces;\n}\n\nvar hasRequiredArtifact;\n\nfunction requireArtifact () {\n\tif (hasRequiredArtifact) return artifact$1;\n\thasRequiredArtifact = 1;\n\t(function (exports) {\n\t\tvar __createBinding = (artifact$1 && artifact$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    var desc = Object.getOwnPropertyDescriptor(m, k);\n\t\t    if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n\t\t      desc = { enumerable: true, get: function() { return m[k]; } };\n\t\t    }\n\t\t    Object.defineProperty(o, k2, desc);\n\t\t}) : (function(o, m, k, k2) {\n\t\t    if (k2 === undefined) k2 = k;\n\t\t    o[k2] = m[k];\n\t\t}));\n\t\tvar __exportStar = (artifact$1 && artifact$1.__exportStar) || function(m, exports) {\n\t\t    for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n\t\t};\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\tconst client_1 = requireClient();\n\t\t__exportStar(requireInterfaces(), exports);\n\t\t__exportStar(requireErrors$1(), exports);\n\t\t__exportStar(requireClient(), exports);\n\t\tconst client = new client_1.DefaultArtifactClient();\n\t\texports.default = client;\n\t\t\n\t} (artifact$1));\n\treturn artifact$1;\n}\n\nvar artifactExports = requireArtifact();\n\nasync function install(executablePath, version, subPackagesArray, linuxLocalArgsArray, method, logFileSuffix) {\n    // Install arguments, see: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#runfile-advanced\n    // and https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html\n    let installArgs;\n    // Command string that is executed\n    let command;\n    // Subset of subpackages to install instead of everything, see: https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html#install-cuda-software\n    const subPackages = subPackagesArray;\n    // Execution options which contain callback functions for stdout and stderr of install process\n    const execOptions = {\n        listeners: {\n            stdout: (data) => {\n                coreExports.debug(data.toString());\n            },\n            stderr: (data) => {\n                coreExports.debug(`Error: ${data.toString()}`);\n            }\n        }\n    };\n    // Configure OS dependent run command and args\n    switch (await getOs()) {\n        case OSType.linux:\n            // Root permission needed on linux\n            command = `sudo ${executablePath}`;\n            // Install silently, and add additional arguments\n            installArgs = ['--silent'].concat(linuxLocalArgsArray);\n            break;\n        case OSType.windows:\n            // Windows handles permissions automatically\n            command = executablePath;\n            // Install silently\n            installArgs = ['-s'];\n            // Add subpackages to command args (if any)\n            installArgs = installArgs.concat(subPackages.map((subPackage) => {\n                // Display driver sub package name is not dependent on version\n                if (subPackage === 'Display.Driver') {\n                    return subPackage;\n                }\n                return `${subPackage}_${version.major}.${version.minor}`;\n            }));\n            break;\n    }\n    // Run installer\n    try {\n        coreExports.debug(`Running install executable: ${executablePath}`);\n        const exitCode = await execExports.exec(command, installArgs, execOptions);\n        coreExports.debug(`Installer exit code: ${exitCode}`);\n    }\n    catch (error) {\n        coreExports.warning(`Error during installation: ${error}`);\n        throw error;\n    }\n    finally {\n        // Always upload installation log regardless of error\n        const osType = await getOs();\n        const osRelease = await getRelease();\n        if (osType === OSType.linux) {\n            const artifactName = `cuda-install-${osType}-${osRelease}-${method}-${logFileSuffix}`;\n            const candidates = ['/var/log/cuda-installer.log'];\n            const files = await filterReadable(candidates);\n            const username = require$$0$6.userInfo().username;\n            if (files.length > 0) {\n                // If any of the files is not readable without root permissions, the upload will fail, so we need to\n                // fix the permissions first\n                for (const file of files) {\n                    await execExports.exec(`sudo chmod 644 ${file}`);\n                    await execExports.exec(`sudo chown ${username} ${file}`);\n                }\n                const rootDirectory = '/var/log';\n                const artifact = new artifactExports.DefaultArtifactClient();\n                const uploadResult = await artifact.uploadArtifact(artifactName, files, rootDirectory);\n                coreExports.debug(`Upload result: ${uploadResult}`);\n            }\n            else {\n                coreExports.debug(`No log file to upload`);\n            }\n        }\n    }\n}\n\nasync function updatePath(version) {\n    let cudaPath;\n    switch (await getOs()) {\n        case OSType.linux:\n            cudaPath = `/usr/local/cuda-${version.major}.${version.minor}`;\n            break;\n        case OSType.windows:\n            cudaPath = `C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v${version.major}.${version.minor}`;\n    }\n    coreExports.debug(`Cuda path: ${cudaPath}`);\n    // Export $CUDA_PATH\n    coreExports.exportVariable('CUDA_PATH', cudaPath);\n    coreExports.debug(`Cuda path vx_y: ${cudaPath}`);\n    // Export $CUDA_PATH_VX_Y\n    coreExports.exportVariable(`CUDA_PATH_V${version.major}_${version.minor}`, cudaPath);\n    coreExports.exportVariable('CUDA_PATH_VX_Y', `CUDA_PATH_V${version.major}_${version.minor}`);\n    // Add $CUDA_PATH/bin to $PATH\n    const binPath = require$$1$2.join(cudaPath, 'bin');\n    coreExports.debug(`Adding to PATH: ${binPath}`);\n    coreExports.addPath(binPath);\n    // Update LD_LIBRARY_PATH on linux, see: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#environment-setup\n    if ((await getOs()) === OSType.linux) {\n        // Get LD_LIBRARY_PATH\n        const libPath = process.env.LD_LIBRARY_PATH\n            ? process.env.LD_LIBRARY_PATH\n            : '';\n        // Get CUDA lib path\n        const cudaLibPath = require$$1$2.join(cudaPath, 'lib64');\n        // Check if CUDA lib path is already in LD_LIBRARY_PATH\n        if (!libPath.split(':').includes(cudaLibPath)) {\n            // CUDA lib is not in LD_LIBRARY_PATH, so add it\n            coreExports.debug(`Adding to LD_LIBRARY_PATH: ${cudaLibPath}`);\n            coreExports.exportVariable('LD_LIBRARY_PATH', cudaLibPath + require$$1$2.delimiter + libPath);\n        }\n    }\n    // Return cuda path\n    return cudaPath;\n}\n\nasync function parsePackages(subPackages, parameterName) {\n    let subPackagesArray = [];\n    try {\n        subPackagesArray = JSON.parse(subPackages);\n    }\n    catch (error) {\n        coreExports.debug(`Json parsing error: ${error}`);\n        const errString = `Error parsing input '${parameterName}' to a JSON string array: ${subPackages}`;\n        coreExports.debug(errString);\n        throw new Error(errString);\n    }\n    return subPackagesArray;\n}\n\nasync function run() {\n    try {\n        const cuda = coreExports.getInput('cuda');\n        coreExports.debug(`Desired cuda version: ${cuda}`);\n        const subPackagesArgName = 'sub-packages';\n        const subPackages = coreExports.getInput(subPackagesArgName);\n        coreExports.debug(`Desired subPackages: ${subPackages}`);\n        const nonCudaSubPackagesArgName = 'non-cuda-sub-packages';\n        const nonCudaSubPackages = coreExports.getInput(nonCudaSubPackagesArgName);\n        coreExports.debug(`Desired nonCudasubPackages: ${nonCudaSubPackages}`);\n        const methodString = coreExports.getInput('method');\n        coreExports.debug(`Desired method: ${methodString}`);\n        const linuxLocalArgs = coreExports.getInput('linux-local-args');\n        coreExports.debug(`Desired local linux args: ${linuxLocalArgs}`);\n        const useGitHubCache = coreExports.getBooleanInput('use-github-cache');\n        coreExports.debug(`Desired GitHub cache usage: ${useGitHubCache}`);\n        const useLocalCache = coreExports.getBooleanInput('use-local-cache');\n        coreExports.debug(`Desired local cache usage: ${useLocalCache}`);\n        const logFileSuffix = coreExports.getInput('log-file-suffix');\n        coreExports.debug(`Desired log file suffix: ${logFileSuffix}`);\n        // Parse subPackages array\n        const subPackagesArray = await parsePackages(subPackages, subPackagesArgName);\n        // Parse nonCudaSubPackages array\n        const nonCudaSubPackagesArray = await parsePackages(nonCudaSubPackages, nonCudaSubPackagesArgName);\n        // Parse method\n        const methodParsed = parseMethod(methodString);\n        coreExports.debug(`Parsed method: ${methodParsed}`);\n        // Parse version string\n        const version = await getVersion(cuda, methodParsed);\n        // Parse linuxLocalArgs array\n        let linuxLocalArgsArray = [];\n        try {\n            linuxLocalArgsArray = JSON.parse(linuxLocalArgs);\n            // TODO verify that elements are valid package names (--samples, --driver, --toolkit, etc.)\n        }\n        catch (error) {\n            coreExports.debug(`Json parsing error: ${error}`);\n            const errString = `Error parsing input 'linux-local-args' to a JSON string array: ${linuxLocalArgs}`;\n            coreExports.debug(errString);\n            throw new Error(errString);\n        }\n        // Check if subPackages are specified in 'local' method on Linux\n        if (methodParsed === 'local' &&\n            subPackagesArray.length > 0 &&\n            (await getOs()) === OSType.linux) {\n            throw new Error(`Subpackages on 'local' method is not supported on Linux, use 'network' instead`);\n        }\n        // Linux network install (uses apt repository)\n        const useAptInstall = await useApt(methodParsed);\n        if (useAptInstall) {\n            // Setup aptitude repos\n            await aptSetup(version);\n            // Install packages\n            const installResult = await aptInstall(version, subPackagesArray, nonCudaSubPackagesArray);\n            coreExports.debug(`Install result: ${installResult}`);\n        }\n        else {\n            // Download\n            const executablePath = await download(version, methodParsed, useLocalCache, useGitHubCache);\n            // Install\n            await install(executablePath, version, subPackagesArray, linuxLocalArgsArray, methodString, logFileSuffix);\n        }\n        // Add CUDA environment variables to GitHub environment variables\n        const cudaPath = await updatePath(version);\n        // Set output variables\n        coreExports.setOutput('cuda', cuda);\n        coreExports.setOutput('CUDA_PATH', cudaPath);\n    }\n    catch (error) {\n        if (error instanceof Error) {\n            coreExports.setFailed(error);\n        }\n        else {\n            coreExports.setFailed('Unknown error');\n        }\n    }\n}\nrun();\n//# sourceMappingURL=index.js.map\n"
  },
  {
    "path": "eslint.config.mjs",
    "content": "// See: https://eslint.org/docs/latest/use/configure/configuration-files\n\nimport { fixupPluginRules } from '@eslint/compat'\nimport { FlatCompat } from '@eslint/eslintrc'\nimport js from '@eslint/js'\nimport typescriptEslint from '@typescript-eslint/eslint-plugin'\nimport tsParser from '@typescript-eslint/parser'\nimport _import from 'eslint-plugin-import'\nimport jest from 'eslint-plugin-jest'\nimport prettier from 'eslint-plugin-prettier'\nimport globals from 'globals'\nimport path from 'node:path'\nimport { fileURLToPath } from 'node:url'\n\nconst __filename = fileURLToPath(import.meta.url)\nconst __dirname = path.dirname(__filename)\nconst compat = new FlatCompat({\n  baseDirectory: __dirname,\n  recommendedConfig: js.configs.recommended,\n  allConfig: js.configs.all\n})\n\nexport default [\n  {\n    ignores: ['**/coverage', '**/dist', '**/linter', '**/node_modules']\n  },\n  ...compat.extends(\n    'eslint:recommended',\n    'plugin:@typescript-eslint/eslint-recommended',\n    'plugin:@typescript-eslint/recommended',\n    'plugin:jest/recommended',\n    'plugin:prettier/recommended'\n  ),\n  {\n    plugins: {\n      import: fixupPluginRules(_import),\n      jest,\n      prettier,\n      '@typescript-eslint': typescriptEslint\n    },\n\n    languageOptions: {\n      globals: {\n        ...globals.node,\n        ...globals.jest,\n        Atomics: 'readonly',\n        SharedArrayBuffer: 'readonly'\n      },\n\n      parser: tsParser,\n      ecmaVersion: 2023,\n      sourceType: 'module',\n\n      parserOptions: {\n        project: ['tsconfig.eslint.json'],\n        tsconfigRootDir: '.'\n      }\n    },\n\n    settings: {\n      'import/resolver': {\n        typescript: {\n          alwaysTryTypes: true,\n          project: 'tsconfig.eslint.json'\n        }\n      }\n    },\n\n    rules: {\n      camelcase: 'off',\n      'eslint-comments/no-use': 'off',\n      'eslint-comments/no-unused-disable': 'off',\n      'i18n-text/no-en': 'off',\n      'import/no-namespace': 'off',\n      'no-console': 'off',\n      'no-shadow': 'off',\n      'no-unused-vars': 'off',\n      'prettier/prettier': 'error'\n    }\n  }\n]\n"
  },
  {
    "path": "jest.config.js",
    "content": "// See: https://jestjs.io/docs/configuration\n\n/** @type {import('ts-jest').JestConfigWithTsJest} **/\nexport default {\n  clearMocks: true,\n  collectCoverage: true,\n  collectCoverageFrom: ['./src/**'],\n  coverageDirectory: './coverage',\n  coveragePathIgnorePatterns: ['/node_modules/', '/dist/'],\n  coverageReporters: ['json-summary', 'text', 'lcov'],\n  // Uncomment the below lines if you would like to enforce a coverage threshold\n  // for your action. This will fail the build if the coverage is below the\n  // specified thresholds.\n  // coverageThreshold: {\n  //   global: {\n  //     branches: 100,\n  //     functions: 100,\n  //     lines: 100,\n  //     statements: 100\n  //   }\n  // },\n  extensionsToTreatAsEsm: ['.ts'],\n  moduleFileExtensions: ['ts', 'js'],\n  preset: 'ts-jest',\n  reporters: ['default'],\n  resolver: 'ts-jest-resolver',\n  testEnvironment: 'node',\n  testMatch: ['**/*.test.ts'],\n  testPathIgnorePatterns: ['/dist/', '/node_modules/'],\n  transform: {\n    '^.+\\\\.ts$': [\n      'ts-jest',\n      {\n        tsconfig: 'tsconfig.eslint.json',\n        useESM: true\n      }\n    ]\n  },\n  verbose: true\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"cuda-toolkit\",\n  \"description\": \"GitHub Action to install the NVIDIA CUDA Toolkit\",\n  \"version\": \"0.2.35\",\n  \"author\": \"Jim Verheijde\",\n  \"type\": \"module\",\n  \"private\": true,\n  \"homepage\": \"https://github.com/Jimver/cuda-toolkit\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/Jimver/cuda-toolkit.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/Jimver/cuda-toolkit/issues\"\n  },\n  \"keywords\": [\n    \"actions\",\n    \"cuda\",\n    \"cuda-toolkit\",\n    \"github-actions\",\n    \"nvidia\",\n    \"toolkit\"\n  ],\n  \"exports\": {\n    \".\": \"./dist/index.js\"\n  },\n  \"engines\": {\n    \"node\": \">=24\"\n  },\n  \"scripts\": {\n    \"bundle\": \"npm run format:write && npm run package\",\n    \"ci-test\": \"cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest\",\n    \"coverage\": \"npx make-coverage-badge --output-path ./badges/coverage.svg\",\n    \"format:write\": \"npx prettier --write .\",\n    \"format:check\": \"npx prettier --check .\",\n    \"lint\": \"npx eslint .\",\n    \"local-action\": \"npx @github/local-action . src/main.ts .env\",\n    \"package\": \"npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript\",\n    \"package:watch\": \"npm run package -- --watch\",\n    \"test\": \"NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest\",\n    \"all\": \"npm run format:write && npm run lint && npm run test && npm run coverage && npm run package\"\n  },\n  \"license\": \"MIT\",\n  \"dependencies\": {\n    \"@actions/artifact\": \"^2.3.2\",\n    \"@actions/cache\": \"^4.0.3\",\n    \"@actions/core\": \"^1.11.1\",\n    \"@actions/exec\": \"^1.1.1\",\n    \"@actions/glob\": \"^0.5.0\",\n    \"@actions/io\": \"^1.1.3\",\n    \"@actions/tool-cache\": \"^2.0.2\",\n    \"@types/semver\": \"^7.7.0\",\n    \"semver\": \"^7.7.2\"\n  },\n  \"devDependencies\": {\n    \"@eslint/compat\": \"^1.2.9\",\n    \"@github/local-action\": \"^3.2.1\",\n    \"@jest/globals\": \"^29.7.0\",\n    \"@rollup/plugin-commonjs\": \"^28.0.1\",\n    \"@rollup/plugin-node-resolve\": \"^16.0.1\",\n    \"@rollup/plugin-typescript\": \"^12.1.1\",\n    \"@rollup/plugin-json\": \"^6.1.0\",\n    \"@types/jest\": \"^29.5.14\",\n    \"@types/node\": \"^20.17.48\",\n    \"@typescript-eslint/eslint-plugin\": \"^8.32.1\",\n    \"@typescript-eslint/parser\": \"^8.32.1\",\n    \"cross-env\": \"^7.0.3\",\n    \"eslint\": \"^9.27.0\",\n    \"eslint-config-prettier\": \"^10.1.5\",\n    \"eslint-import-resolver-typescript\": \"^4.3.5\",\n    \"eslint-plugin-import\": \"^2.31.0\",\n    \"eslint-plugin-jest\": \"^28.11.0\",\n    \"eslint-plugin-prettier\": \"^5.4.0\",\n    \"jest\": \"^29.7.0\",\n    \"make-coverage-badge\": \"^1.2.0\",\n    \"prettier\": \"^3.5.3\",\n    \"prettier-eslint\": \"^16.4.2\",\n    \"rollup\": \"^4.41.0\",\n    \"ts-jest\": \"^29.3.4\",\n    \"ts-jest-resolver\": \"^2.0.1\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"optionalDependencies\": {\n    \"@rollup/rollup-linux-x64-gnu\": \"*\"\n  }\n}\n"
  },
  {
    "path": "rollup.config.ts",
    "content": "// See: https://rollupjs.org/introduction/\n\nimport commonjs from '@rollup/plugin-commonjs'\nimport nodeResolve from '@rollup/plugin-node-resolve'\nimport typescript from '@rollup/plugin-typescript'\nimport json from '@rollup/plugin-json'\n\nconst config = {\n  input: 'src/index.ts',\n  output: {\n    esModule: true,\n    file: 'dist/index.js',\n    format: 'es',\n    sourcemap: true\n  },\n  plugins: [\n    typescript(),\n    nodeResolve({ preferBuiltins: true }),\n    commonjs(),\n    json()\n  ]\n}\n\nexport default config\n"
  },
  {
    "path": "src/apt-installer.ts",
    "content": "import * as core from '@actions/core'\nimport { OSType, getOs } from './platform.js'\nimport { Method } from './method.js'\nimport { SemVer } from 'semver'\nimport { exec } from '@actions/exec'\nimport { execReturnOutput } from './run-command.js'\nimport { CPUArch, getArch } from './arch.js'\n\nexport async function useApt(method: Method): Promise<boolean> {\n  return method === 'network' && (await getOs()) === OSType.linux\n}\n\nexport async function aptSetup(version: SemVer): Promise<void> {\n  const osType = await getOs()\n  if (osType !== OSType.linux) {\n    throw new Error(\n      `apt setup can only be run on linux runners! Current os type: ${osType}`\n    )\n  }\n  core.debug(`Setup packages for ${version}`)\n  const ubuntuVersion: string = await execReturnOutput('lsb_release', ['-sr'])\n  const ubuntuVersionNoDot = ubuntuVersion.replace('.', '')\n\n  // Dynamically determine architecture\n  let arch = 'x86_64' // Default to x86_64\n  try {\n    if ((await getArch()) === CPUArch.arm64) {\n      arch = 'sbsa' // This might not work in the future, they are merging arm64 and sbsa\n    }\n  } catch (error) {\n    core.debug(`Error detecting architecture: ${error}`)\n    core.warning(`Could not detect architecture, using default ${arch}`)\n  }\n  core.debug(\n    `Detected architecture: ${process.arch}, using arch string: ${arch}`\n  )\n\n  const pinFilename = `cuda-ubuntu${ubuntuVersionNoDot}.pin`\n  const pinUrl = `https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntuVersionNoDot}/${arch}/${pinFilename}`\n  const repoUrl = `http://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntuVersionNoDot}/${arch}/`\n  const keyRingVersion = `1.1-1`\n  const keyRingUrl = `https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntuVersionNoDot}/${arch}/cuda-keyring_${keyRingVersion}_all.deb`\n  const keyRingFilename = `cuda_keyring.deb`\n\n  core.debug(`Pin filename: ${pinFilename}`)\n  core.debug(`Pin url: ${pinUrl}`)\n  core.debug(`Keyring url: ${keyRingUrl}`)\n\n  core.debug(`Downloading keyring`)\n  await exec(`wget ${keyRingUrl} -O ${keyRingFilename}`)\n  await exec(`sudo dpkg -i ${keyRingFilename}`)\n\n  core.debug('Adding CUDA Repository')\n  await exec(`wget ${pinUrl}`)\n  await exec(\n    `sudo mv ${pinFilename} /etc/apt/preferences.d/cuda-repository-pin-600`\n  )\n  await exec(`sudo add-apt-repository \"deb ${repoUrl} /\"`)\n  await exec(`sudo apt-get update`)\n}\n\nexport async function aptInstall(\n  version: SemVer,\n  subPackages: string[],\n  nonCudaSubPackages: string[]\n): Promise<number> {\n  const osType = await getOs()\n  if (osType !== OSType.linux) {\n    throw new Error(\n      `apt install can only be run on linux runners! Current os type: ${osType}`\n    )\n  }\n  if (subPackages.length === 0) {\n    // Install everything\n    const packageName = `cuda-${version.major}-${version.minor}`\n    core.debug(`Install package: ${packageName}`)\n    return await exec(`sudo apt-get -y install`, [packageName])\n  } else {\n    // Only install specified packages\n    const prefixedSubPackages = subPackages.map(\n      (subPackage) => `cuda-${subPackage}`\n    )\n    const versionedSubPackages = prefixedSubPackages\n      .concat(nonCudaSubPackages)\n      .map(\n        (nonCudaSubPackage) =>\n          `${nonCudaSubPackage}-${version.major}-${version.minor}`\n      )\n    core.debug(`Only install subpackages: ${versionedSubPackages}`)\n    return await exec(`sudo apt-get -y install`, versionedSubPackages)\n  }\n}\n"
  },
  {
    "path": "src/arch.ts",
    "content": "import { debug } from '@actions/core'\nimport os from 'os'\n\nexport enum CPUArch {\n  x86_64 = 'x64',\n  arm64 = 'arm64'\n}\n\nexport async function getArch(): Promise<CPUArch> {\n  const arch = os.arch()\n  switch (arch) {\n    case 'x64':\n      return CPUArch.x86_64\n    case 'arm64':\n      return CPUArch.arm64\n    default:\n      debug(`Unsupported architecture: ${arch}`)\n      throw new Error(`Unsupported architecture: ${arch}`)\n  }\n}\n"
  },
  {
    "path": "src/downloader.ts",
    "content": "import * as cache from '@actions/cache'\nimport * as core from '@actions/core'\nimport * as tc from '@actions/tool-cache'\nimport * as io from '@actions/io'\nimport { OSType, getOs, getRelease } from './platform.js'\nimport { AbstractLinks } from './links/links.js'\nimport { Method } from './method.js'\nimport { SemVer } from 'semver'\nimport { WindowsLinks } from './links/windows-links.js'\nimport fs from 'fs'\nimport { getLinks } from './links/get-links.js'\nimport { getArch } from './arch.js'\nimport { getFilesRecursive } from './fs-utils.js'\n\n// Download helper which returns the installer executable and caches it for next runs\nexport async function download(\n  version: SemVer,\n  method: Method,\n  useLocalCache: boolean,\n  useGitHubCache: boolean\n): Promise<string> {\n  // First try to find tool with desired version in tool cache (local to machine)\n  const toolName = 'cuda_installer'\n  const osType = await getOs()\n  const cpuArch = await getArch()\n  const osRelease = await getRelease()\n  const toolId = `${toolName}-${osType}-${osRelease}-${cpuArch}`\n  // Path that contains the executable file\n  let executableDirectory: string | undefined\n  const cacheKey = `${toolId}-${version}`\n  const cacheDirectory = cacheKey\n  if (useLocalCache) {\n    const toolPath = tc.find(toolId, `${version}`)\n    if (toolPath) {\n      // Tool is already in cache\n      core.debug(`Found in local machine cache ${toolPath}`)\n      executableDirectory = toolPath\n    } else {\n      core.debug(`Not found in local cache`)\n    }\n  }\n  if (executableDirectory === undefined && useGitHubCache) {\n    // Second option, get tool from GitHub cache if enabled\n    const cacheResult: string | undefined = await cache.restoreCache(\n      [cacheDirectory],\n      cacheKey\n    )\n    if (cacheResult !== undefined) {\n      core.debug(`Found in GitHub cache ${cacheDirectory}`)\n      executableDirectory = cacheDirectory\n    } else {\n      core.debug(`Not found in GitHub cache`)\n    }\n  }\n  if (executableDirectory === undefined) {\n    // Final option, download tool from NVIDIA servers\n    core.debug(`Not found in local/GitHub cache, downloading...`)\n    // Get download URL\n    const url: URL = await getDownloadURL(method, version)\n    // Get intsaller filename extension depending on OS\n    const fileExtension: string = getFileExtension(osType)\n    const downloadDirectory = `cuda_download`\n    const destFileName = `${toolId}_${version}.${fileExtension}`\n    const destFilePath = `${downloadDirectory}/${destFileName}`\n    // Check if file already exists\n    if (!(await fileExists(destFilePath))) {\n      core.debug(`File at ${destFilePath} does not exist, downloading`)\n      // Download executable\n      await tc.downloadTool(url.toString(), destFilePath)\n    } else {\n      core.debug(`File at ${destFilePath} already exists, skipping download`)\n    }\n    if (useLocalCache) {\n      // Cache download to local machine cache\n      const localCacheDirectory = await tc.cacheFile(\n        destFilePath,\n        destFileName,\n        `${toolName}-${osType}-${cpuArch}`,\n        `${version}`\n      )\n      core.debug(\n        `Cached download to local machine cache at ${localCacheDirectory}`\n      )\n      executableDirectory = localCacheDirectory\n    }\n    if (useGitHubCache && osType !== OSType.windows) {\n      // Move file to GitHub cache directory\n      core.debug(`Copying ${destFilePath} to ${cacheDirectory}`)\n      await io.mkdirP(cacheDirectory)\n      await io.mv(destFilePath, cacheDirectory)\n      // Log full path and files in cache directory\n      const filesInCacheDir = await getFilesRecursive(cacheDirectory)\n      core.debug(`Files in GitHub cache directory ${cacheDirectory}:`)\n      for (const f of filesInCacheDir) {\n        core.debug(f)\n      }\n      // Log absolute path\n      const absoluteCacheDir = await fs.promises.realpath(cacheDirectory)\n      core.debug(`Absolute path of cache directory: ${absoluteCacheDir}`)\n      // Save cache directory to GitHub cache\n      const cacheId = await cache.saveCache([cacheDirectory], cacheKey)\n      if (cacheId !== -1) {\n        core.debug(`Cached download to GitHub cache with cache id ${cacheId}`)\n      } else {\n        core.debug(`Did not cache, cache possibly already exists`)\n      }\n      core.debug(`Tool was moved to cache directory ${cacheDirectory}`)\n      executableDirectory = cacheDirectory\n    }\n    if (executableDirectory === undefined) {\n      executableDirectory = downloadDirectory\n    }\n  }\n  core.debug(`Executable path ${executableDirectory}`)\n  // String with full executable path\n  let fullExecutablePath: string\n  // Get list of files in tool cache using readdir recursive helper\n  const filesInCache = await getFilesRecursive(executableDirectory)\n  core.debug(`Files in tool cache:`)\n  for (const f of filesInCache) {\n    core.debug(f)\n  }\n  if (filesInCache.length > 1) {\n    throw new Error(`Got multiple file in tool cache: ${filesInCache.length}`)\n  } else if (filesInCache.length === 0) {\n    throw new Error(`Got no files in tool cache`)\n  } else {\n    fullExecutablePath = filesInCache[0]\n  }\n  // Make file executable on linux\n  if ((await getOs()) === OSType.linux) {\n    // 0755 octal notation permission is: owner(r,w,x), group(r,w,x), other(r,x) where r=read, w=write, x=execute\n    await fs.promises.chmod(fullExecutablePath, '0755')\n  }\n  // Return full executable path\n  return fullExecutablePath\n}\n\nfunction getFileExtension(osType: OSType): string {\n  switch (osType) {\n    case OSType.windows:\n      return 'exe'\n    case OSType.linux:\n      return 'run'\n  }\n}\n\nasync function fileExists(filePath: string): Promise<boolean> {\n  try {\n    const stats = await fs.promises.stat(filePath)\n    core.debug(`Got the following stats for ${filePath}: ${stats}`)\n    return !!stats\n  } catch (e) {\n    core.debug(`Got error while checking if ${filePath} exists: ${e}`)\n    return false\n  }\n}\n\nasync function getDownloadURL(method: string, version: SemVer): Promise<URL> {\n  const links: AbstractLinks = await getLinks()\n  switch (method) {\n    case 'local':\n      return await links.getLocalURLFromCudaVersion(version)\n    case 'network':\n      if (!(links instanceof WindowsLinks)) {\n        core.debug(`Tried to get windows links but got linux links instance`)\n        throw new Error(\n          `Network mode is not supported by linux, shouldn't even get here`\n        )\n      }\n      return links.getNetworkURLFromCudaVersion(version)\n    default:\n      throw new Error(\n        `Invalid method: expected either 'local' or 'network', got '${method}'`\n      )\n  }\n}\n"
  },
  {
    "path": "src/fs-utils.ts",
    "content": "import fs from 'fs'\nimport path from 'path'\nimport * as core from '@actions/core'\n\nexport async function getFilesRecursive(dir: string): Promise<string[]> {\n  const results: string[] = []\n  async function walk(current: string) {\n    const entries = await fs.promises.readdir(current, { withFileTypes: true })\n    for (const entry of entries) {\n      const fullPath = path.join(current, entry.name)\n      if (entry.isDirectory()) {\n        await walk(fullPath)\n      } else if (entry.isFile()) {\n        results.push(fullPath)\n      }\n    }\n  }\n  try {\n    await walk(dir)\n  } catch (e) {\n    core.debug(`Error reading files from ${dir}: ${e}`)\n    return []\n  }\n  return results\n}\n\nexport async function filterReadable(paths: string[]): Promise<string[]> {\n  const readable: string[] = []\n  for (const path of paths) {\n    try {\n      await fs.promises.access(path, fs.constants.R_OK)\n      readable.push(path)\n    } catch (e) {\n      core.debug(`Path not readable: ${path} - ${e}`)\n    }\n  }\n  return readable\n}\n"
  },
  {
    "path": "src/index.ts",
    "content": "import * as core from '@actions/core'\nimport { Method, parseMethod } from './method.js'\nimport { OSType, getOs } from './platform.js'\nimport { aptInstall, aptSetup, useApt } from './apt-installer.js'\nimport { download } from './downloader.js'\nimport { getVersion } from './version.js'\nimport { install } from './installer.js'\nimport { updatePath } from './update-path.js'\nimport { parsePackages } from './parser.js'\n\nasync function run(): Promise<void> {\n  try {\n    const cuda: string = core.getInput('cuda')\n    core.debug(`Desired cuda version: ${cuda}`)\n    const subPackagesArgName = 'sub-packages'\n    const subPackages: string = core.getInput(subPackagesArgName)\n    core.debug(`Desired subPackages: ${subPackages}`)\n    const nonCudaSubPackagesArgName = 'non-cuda-sub-packages'\n    const nonCudaSubPackages: string = core.getInput(nonCudaSubPackagesArgName)\n    core.debug(`Desired nonCudasubPackages: ${nonCudaSubPackages}`)\n    const methodString: string = core.getInput('method')\n    core.debug(`Desired method: ${methodString}`)\n    const linuxLocalArgs: string = core.getInput('linux-local-args')\n    core.debug(`Desired local linux args: ${linuxLocalArgs}`)\n    const useGitHubCache: boolean = core.getBooleanInput('use-github-cache')\n    core.debug(`Desired GitHub cache usage: ${useGitHubCache}`)\n    const useLocalCache: boolean = core.getBooleanInput('use-local-cache')\n    core.debug(`Desired local cache usage: ${useLocalCache}`)\n    const logFileSuffix: string = core.getInput('log-file-suffix')\n    core.debug(`Desired log file suffix: ${logFileSuffix}`)\n\n    // Parse subPackages array\n    const subPackagesArray: string[] = await parsePackages(\n      subPackages,\n      subPackagesArgName\n    )\n\n    // Parse nonCudaSubPackages array\n    const nonCudaSubPackagesArray: string[] = await parsePackages(\n      nonCudaSubPackages,\n      nonCudaSubPackagesArgName\n    )\n\n    // Parse method\n    const methodParsed: Method = parseMethod(methodString)\n    core.debug(`Parsed method: ${methodParsed}`)\n\n    // Parse version string\n    const version = await getVersion(cuda, methodParsed)\n\n    // Parse linuxLocalArgs array\n    let linuxLocalArgsArray: string[] = []\n    try {\n      linuxLocalArgsArray = JSON.parse(linuxLocalArgs)\n      // TODO verify that elements are valid package names (--samples, --driver, --toolkit, etc.)\n    } catch (error) {\n      core.debug(`Json parsing error: ${error}`)\n      const errString = `Error parsing input 'linux-local-args' to a JSON string array: ${linuxLocalArgs}`\n      core.debug(errString)\n      throw new Error(errString)\n    }\n\n    // Check if subPackages are specified in 'local' method on Linux\n    if (\n      methodParsed === 'local' &&\n      subPackagesArray.length > 0 &&\n      (await getOs()) === OSType.linux\n    ) {\n      throw new Error(\n        `Subpackages on 'local' method is not supported on Linux, use 'network' instead`\n      )\n    }\n\n    // Linux network install (uses apt repository)\n    const useAptInstall = await useApt(methodParsed)\n    if (useAptInstall) {\n      // Setup aptitude repos\n      await aptSetup(version)\n      // Install packages\n      const installResult = await aptInstall(\n        version,\n        subPackagesArray,\n        nonCudaSubPackagesArray\n      )\n      core.debug(`Install result: ${installResult}`)\n    } else {\n      // Download\n      const executablePath: string = await download(\n        version,\n        methodParsed,\n        useLocalCache,\n        useGitHubCache\n      )\n\n      // Install\n      await install(\n        executablePath,\n        version,\n        subPackagesArray,\n        linuxLocalArgsArray,\n        methodString,\n        logFileSuffix\n      )\n    }\n\n    // Add CUDA environment variables to GitHub environment variables\n    const cudaPath: string = await updatePath(version)\n\n    // Set output variables\n    core.setOutput('cuda', cuda)\n    core.setOutput('CUDA_PATH', cudaPath)\n  } catch (error) {\n    if (error instanceof Error) {\n      core.setFailed(error)\n    } else {\n      core.setFailed('Unknown error')\n    }\n  }\n}\n\nrun()\n"
  },
  {
    "path": "src/installer.ts",
    "content": "import { DefaultArtifactClient } from '@actions/artifact'\nimport * as core from '@actions/core'\nimport { filterReadable } from './fs-utils.js'\nimport { OSType, getOs, getRelease } from './platform.js'\nimport { SemVer } from 'semver'\nimport { exec } from '@actions/exec'\nimport * as os from 'os'\n\nexport async function install(\n  executablePath: string,\n  version: SemVer,\n  subPackagesArray: string[],\n  linuxLocalArgsArray: string[],\n  method: string,\n  logFileSuffix: string\n): Promise<void> {\n  // Install arguments, see: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#runfile-advanced\n  // and https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html\n  let installArgs: string[]\n\n  // Command string that is executed\n  let command: string\n\n  // Subset of subpackages to install instead of everything, see: https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html#install-cuda-software\n  const subPackages: string[] = subPackagesArray\n\n  // Execution options which contain callback functions for stdout and stderr of install process\n  const execOptions = {\n    listeners: {\n      stdout: (data: Buffer) => {\n        core.debug(data.toString())\n      },\n      stderr: (data: Buffer) => {\n        core.debug(`Error: ${data.toString()}`)\n      }\n    }\n  }\n\n  // Configure OS dependent run command and args\n  switch (await getOs()) {\n    case OSType.linux:\n      // Root permission needed on linux\n      command = `sudo ${executablePath}`\n      // Install silently, and add additional arguments\n      installArgs = ['--silent'].concat(linuxLocalArgsArray)\n      break\n    case OSType.windows:\n      // Windows handles permissions automatically\n      command = executablePath\n      // Install silently\n      installArgs = ['-s']\n      // Add subpackages to command args (if any)\n      installArgs = installArgs.concat(\n        subPackages.map((subPackage) => {\n          // Display driver sub package name is not dependent on version\n          if (subPackage === 'Display.Driver') {\n            return subPackage\n          }\n          return `${subPackage}_${version.major}.${version.minor}`\n        })\n      )\n      break\n  }\n\n  // Run installer\n  try {\n    core.debug(`Running install executable: ${executablePath}`)\n    const exitCode = await exec(command, installArgs, execOptions)\n    core.debug(`Installer exit code: ${exitCode}`)\n  } catch (error) {\n    core.warning(`Error during installation: ${error}`)\n    throw error\n  } finally {\n    // Always upload installation log regardless of error\n    const osType = await getOs()\n    const osRelease = await getRelease()\n    if (osType === OSType.linux) {\n      const artifactName = `cuda-install-${osType}-${osRelease}-${method}-${logFileSuffix}`\n      const candidates = ['/var/log/cuda-installer.log']\n      const files = await filterReadable(candidates)\n      const username = os.userInfo().username\n      if (files.length > 0) {\n        // If any of the files is not readable without root permissions, the upload will fail, so we need to\n        // fix the permissions first\n        for (const file of files) {\n          await exec(`sudo chmod 644 ${file}`)\n          await exec(`sudo chown ${username} ${file}`)\n        }\n        const rootDirectory = '/var/log'\n        const artifact = new DefaultArtifactClient()\n        const uploadResult = await artifact.uploadArtifact(\n          artifactName,\n          files,\n          rootDirectory\n        )\n        core.debug(`Upload result: ${uploadResult}`)\n      } else {\n        core.debug(`No log file to upload`)\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "src/links/get-links.ts",
    "content": "import { OSType, getOs } from '../platform.js'\nimport { AbstractLinks } from './links.js'\nimport { LinuxLinks } from './linux-links.js'\nimport { WindowsLinks } from './windows-links.js'\n\n// Platform independent getter for ILinks interface\nexport async function getLinks(): Promise<AbstractLinks> {\n  const osType = await getOs()\n  switch (osType) {\n    case OSType.windows:\n      return WindowsLinks.Instance\n    case OSType.linux:\n      return LinuxLinks.Instance\n  }\n}\n"
  },
  {
    "path": "src/links/links.ts",
    "content": "import { SemVer } from 'semver'\n\n// Interface for getting cuda versions and corresponding download URLs\nexport abstract class AbstractLinks {\n  protected cudaVersionToURL: Map<string, string> = new Map()\n\n  getAvailableLocalCudaVersions(): SemVer[] {\n    return Array.from(this.cudaVersionToURL.keys()).map((s) => new SemVer(s))\n  }\n\n  async getLocalURLFromCudaVersion(version: SemVer): Promise<URL> {\n    const urlString = this.cudaVersionToURL.get(`${version}`)\n    if (urlString === undefined) {\n      throw new Error(`Invalid version: ${version}`)\n    }\n    return new URL(urlString)\n  }\n}\n"
  },
  {
    "path": "src/links/linux-links.ts",
    "content": "import { SemVer } from 'semver'\nimport { AbstractLinks } from './links.js'\nimport { CPUArch, getArch } from '../arch.js'\n\n/**\n * Singleton class for windows links.\n */\nexport class LinuxLinks extends AbstractLinks {\n  // Singleton instance\n  private static _instance: LinuxLinks\n\n  // Private constructor to prevent instantiation\n  private constructor() {\n    super()\n    // Map of cuda SemVer version to download URL\n    this.cudaVersionToURL = new Map([\n      [\n        '13.2.0',\n        'https://developer.download.nvidia.com/compute/cuda/13.2.0/local_installers/cuda_13.2.0_595.45.04_linux.run'\n      ],\n      [\n        '13.1.1',\n        'https://developer.download.nvidia.com/compute/cuda/13.1.1/local_installers/cuda_13.1.1_590.48.01_linux.run'\n      ],\n      [\n        '13.1.0',\n        'https://developer.download.nvidia.com/compute/cuda/13.1.0/local_installers/cuda_13.1.0_590.44.01_linux.run'\n      ],\n      [\n        '13.0.2',\n        'https://developer.download.nvidia.com/compute/cuda/13.0.2/local_installers/cuda_13.0.2_580.95.05_linux.run'\n      ],\n      [\n        '13.0.1',\n        'https://developer.download.nvidia.com/compute/cuda/13.0.1/local_installers/cuda_13.0.1_580.82.07_linux.run'\n      ],\n      [\n        '13.0.0',\n        'https://developer.download.nvidia.com/compute/cuda/13.0.0/local_installers/cuda_13.0.0_580.65.06_linux.run'\n      ],\n      [\n        '12.9.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_575.57.08_linux.run'\n      ],\n      [\n        '12.9.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.9.0/local_installers/cuda_12.9.0_575.51.03_linux.run'\n      ],\n      [\n        '12.8.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.8.1/local_installers/cuda_12.8.1_570.124.06_linux.run'\n      ],\n      [\n        '12.8.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.8.0/local_installers/cuda_12.8.0_570.86.10_linux.run'\n      ],\n      [\n        '12.6.3',\n        'https://developer.download.nvidia.com/compute/cuda/12.6.3/local_installers/cuda_12.6.3_560.35.05_linux.run'\n      ],\n      [\n        '12.6.2',\n        'https://developer.download.nvidia.com/compute/cuda/12.6.2/local_installers/cuda_12.6.2_560.35.03_linux.run'\n      ],\n      [\n        '12.6.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.6.1/local_installers/cuda_12.6.1_560.35.03_linux.run'\n      ],\n      [\n        '12.6.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.6.0/local_installers/cuda_12.6.0_560.28.03_linux.run'\n      ],\n      [\n        '12.5.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.5.1/local_installers/cuda_12.5.1_555.42.06_linux.run'\n      ],\n      [\n        '12.5.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.5.0/local_installers/cuda_12.5.0_555.42.02_linux.run'\n      ],\n      [\n        '12.4.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.4.1/local_installers/cuda_12.4.1_550.54.15_linux.run'\n      ],\n      [\n        '12.4.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda_12.4.0_550.54.14_linux.run'\n      ],\n      [\n        '12.3.2',\n        'https://developer.download.nvidia.com/compute/cuda/12.3.2/local_installers/cuda_12.3.2_545.23.08_linux.run'\n      ],\n      [\n        '12.3.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.3.1/local_installers/cuda_12.3.1_545.23.08_linux.run'\n      ],\n      [\n        '12.3.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.3.0/local_installers/cuda_12.3.0_545.23.06_linux.run'\n      ],\n      [\n        '12.2.2',\n        'https://developer.download.nvidia.com/compute/cuda/12.2.2/local_installers/cuda_12.2.2_535.104.05_linux.run'\n      ],\n      [\n        '12.2.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.2.1/local_installers/cuda_12.2.1_535.86.10_linux.run'\n      ],\n      [\n        '12.2.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.2.0/local_installers/cuda_12.2.0_535.54.03_linux.run'\n      ],\n      [\n        '12.1.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.1.1/local_installers/cuda_12.1.1_530.30.02_linux.run'\n      ],\n      [\n        '12.1.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run'\n      ],\n      [\n        '12.0.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.0.1/local_installers/cuda_12.0.1_525.85.12_linux.run'\n      ],\n      [\n        '12.0.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.0.0/local_installers/cuda_12.0.0_525.60.13_linux.run'\n      ],\n      [\n        '11.8.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run'\n      ],\n      [\n        '11.7.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.7.1/local_installers/cuda_11.7.1_515.65.01_linux.run'\n      ],\n      [\n        '11.7.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_515.43.04_linux.run'\n      ],\n      [\n        '11.6.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.6.2/local_installers/cuda_11.6.2_510.47.03_linux.run'\n      ],\n      [\n        '11.6.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.6.1/local_installers/cuda_11.6.1_510.47.03_linux.run'\n      ],\n      [\n        '11.6.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.6.0/local_installers/cuda_11.6.0_510.39.01_linux.run'\n      ],\n      [\n        '11.5.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.5.2/local_installers/cuda_11.5.2_495.29.05_linux.run'\n      ],\n      [\n        '11.5.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.5.1/local_installers/cuda_11.5.1_495.29.05_linux.run'\n      ],\n      [\n        '11.5.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.5.0/local_installers/cuda_11.5.0_495.29.05_linux.run'\n      ],\n      [\n        '11.4.4',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.4/local_installers/cuda_11.4.4_470.82.01_linux.run'\n      ],\n      [\n        '11.4.3',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.3/local_installers/cuda_11.4.3_470.82.01_linux.run'\n      ],\n      [\n        '11.4.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_470.57.02_linux.run'\n      ],\n      [\n        '11.4.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.1/local_installers/cuda_11.4.1_470.57.02_linux.run'\n      ],\n      [\n        '11.4.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.0/local_installers/cuda_11.4.0_470.42.01_linux.run'\n      ],\n      [\n        '11.3.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.19.01_linux.run'\n      ],\n      [\n        '11.3.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.3.0/local_installers/cuda_11.3.0_465.19.01_linux.run'\n      ],\n      [\n        '11.2.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda_11.2.2_460.32.03_linux.run'\n      ],\n      [\n        '11.2.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.2.1/local_installers/cuda_11.2.1_460.32.03_linux.run'\n      ],\n      [\n        '11.2.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.2.0/local_installers/cuda_11.2.0_460.27.04_linux.run'\n      ],\n      [\n        '11.1.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.1.1/local_installers/cuda_11.1.1_455.32.00_linux.run'\n      ],\n      [\n        '11.0.3',\n        'https://developer.download.nvidia.com/compute/cuda/11.0.3/local_installers/cuda_11.0.3_450.51.06_linux.run'\n      ],\n      [\n        '11.0.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.0.2/local_installers/cuda_11.0.2_450.51.05_linux.run'\n      ],\n      [\n        '11.0.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.0.1/local_installers/cuda_11.0.1_450.36.06_linux.run'\n      ],\n      [\n        '10.2.89',\n        'https://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux.run'\n      ],\n      [\n        '10.1.243',\n        'https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_418.87.00_linux.run'\n      ],\n      [\n        '10.0.130',\n        'https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_410.48_linux'\n      ],\n      [\n        '9.2.148',\n        'https://developer.nvidia.com/compute/cuda/9.2/Prod2/local_installers/cuda_9.2.148_396.37_linux'\n      ],\n      [\n        '8.0.61',\n        'https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda_8.0.61_375.26_linux-run'\n      ]\n    ])\n  }\n\n  async getLocalURLFromCudaVersion(version: SemVer): Promise<URL> {\n    const link = await super.getLocalURLFromCudaVersion(version)\n    const arch: CPUArch = await getArch()\n    if (arch === CPUArch.arm64) {\n      return new URL(link.toString().replace('_linux.run', '_linux_sbsa.run'))\n    } else {\n      return link\n    }\n  }\n\n  static get Instance(): LinuxLinks {\n    return this._instance || (this._instance = new this())\n  }\n}\n"
  },
  {
    "path": "src/links/windows-links.ts",
    "content": "import { AbstractLinks } from './links.js'\nimport { SemVer } from 'semver'\n\n// # Dictionary of known cuda versions and thier download URLS, which do not follow a consistent pattern :(\n// $CUDA_KNOWN_URLS = @{\n//     \"8.0.44\" = \"http://developer.nvidia.com/compute/cuda/8.0/Prod/network_installers/cuda_8.0.44_win10_network-exe\";\n//     \"8.0.61\" = \"http://developer.nvidia.com/compute/cuda/8.0/Prod2/network_installers/cuda_8.0.61_win10_network-exe\";\n//     \"9.0.176\" = \"http://developer.nvidia.com/compute/cuda/9.0/Prod/network_installers/cuda_9.0.176_win10_network-exe\";\n//     \"9.1.85\" = \"http://developer.nvidia.com/compute/cuda/9.1/Prod/network_installers/cuda_9.1.85_win10_network\";\n//     \"9.2.148\" = \"http://developer.nvidia.com/compute/cuda/9.2/Prod2/network_installers2/cuda_9.2.148_win10_network\";\n//     \"10.0.130\" = \"http://developer.nvidia.com/compute/cuda/10.0/Prod/network_installers/cuda_10.0.130_win10_network\";\n//     \"10.1.105\" = \"http://developer.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.105_win10_network.exe\";\n//     \"10.1.168\" = \"http://developer.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.168_win10_network.exe\";\n//     \"10.1.243\" = \"http://developer.download.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.243_win10_network.exe\";\n//     \"10.2.89\" = \"http://developer.download.nvidia.com/compute/cuda/10.2/Prod/network_installers/cuda_10.2.89_win10_network.exe\";\n//     \"11.0.167\" = \"http://developer.download.nvidia.com/compute/cuda/11.0.1/network_installers/cuda_11.0.1_win10_network.exe\"\n// }\n\n/**\n * Singleton class for windows links.\n */\nexport class WindowsLinks extends AbstractLinks {\n  // Singleton instance\n  private static _instance: WindowsLinks\n\n  private cudaVersionToNetworkUrl: Map<string, string> = new Map([\n    [\n      '13.2.0',\n      'https://developer.download.nvidia.com/compute/cuda/13.2.0/network_installers/cuda_13.2.0_windows_network.exe'\n    ],\n    [\n      '13.1.1',\n      'https://developer.download.nvidia.com/compute/cuda/13.1.1/network_installers/cuda_13.1.1_windows_network.exe'\n    ],\n    [\n      '13.1.0',\n      'https://developer.download.nvidia.com/compute/cuda/13.1.0/network_installers/cuda_13.1.0_windows_network.exe'\n    ],\n    [\n      '13.0.2',\n      'https://developer.download.nvidia.com/compute/cuda/13.0.2/network_installers/cuda_13.0.2_windows_network.exe'\n    ],\n    [\n      '13.0.1',\n      'https://developer.download.nvidia.com/compute/cuda/13.0.1/network_installers/cuda_13.0.1_windows_network.exe'\n    ],\n    [\n      '13.0.0',\n      'https://developer.download.nvidia.com/compute/cuda/13.0.0/network_installers/cuda_13.0.0_windows_network.exe'\n    ],\n    [\n      '12.9.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.9.1/network_installers/cuda_12.9.1_windows_network.exe'\n    ],\n    [\n      '12.9.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.9.0/network_installers/cuda_12.9.0_windows_network.exe'\n    ],\n    [\n      '12.8.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.8.1/network_installers/cuda_12.8.1_windows_network.exe'\n    ],\n    [\n      '12.8.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.8.0/network_installers/cuda_12.8.0_windows_network.exe'\n    ],\n    [\n      '12.6.3',\n      'https://developer.download.nvidia.com/compute/cuda/12.6.3/network_installers/cuda_12.6.3_windows_network.exe'\n    ],\n    [\n      '12.6.2',\n      'https://developer.download.nvidia.com/compute/cuda/12.6.2/network_installers/cuda_12.6.2_windows_network.exe'\n    ],\n    [\n      '12.6.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.6.1/network_installers/cuda_12.6.1_windows_network.exe'\n    ],\n    [\n      '12.6.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.6.0/network_installers/cuda_12.6.0_windows_network.exe'\n    ],\n    [\n      '12.5.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.5.1/network_installers/cuda_12.5.1_windows_network.exe'\n    ],\n    [\n      '12.5.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.5.0/network_installers/cuda_12.5.0_windows_network.exe'\n    ],\n    [\n      '12.4.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.4.1/network_installers/cuda_12.4.1_windows_network.exe'\n    ],\n    [\n      '12.4.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.4.0/network_installers/cuda_12.4.0_windows_network.exe'\n    ],\n    [\n      '12.3.2',\n      'https://developer.download.nvidia.com/compute/cuda/12.3.2/network_installers/cuda_12.3.2_windows_network.exe'\n    ],\n    [\n      '12.3.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.3.1/network_installers/cuda_12.3.1_windows_network.exe'\n    ],\n    [\n      '12.3.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.3.0/network_installers/cuda_12.3.0_windows_network.exe'\n    ],\n    [\n      '12.2.2',\n      'https://developer.download.nvidia.com/compute/cuda/12.2.2/network_installers/cuda_12.2.2_windows_network.exe'\n    ],\n    [\n      '12.2.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.2.1/network_installers/cuda_12.2.1_windows_network.exe'\n    ],\n    [\n      '12.2.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.2.0/network_installers/cuda_12.2.0_windows_network.exe'\n    ],\n    [\n      '12.1.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.1.1/network_installers/cuda_12.1.1_windows_network.exe'\n    ],\n    [\n      '12.1.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.1.0/network_installers/cuda_12.1.0_windows_network.exe'\n    ],\n    [\n      '12.0.1',\n      'https://developer.download.nvidia.com/compute/cuda/12.0.1/network_installers/cuda_12.0.1_windows_network.exe'\n    ],\n    [\n      '12.0.0',\n      'https://developer.download.nvidia.com/compute/cuda/12.0.0/network_installers/cuda_12.0.0_windows_network.exe'\n    ],\n    [\n      '11.8.0',\n      'https://developer.download.nvidia.com/compute/cuda/11.8.0/network_installers/cuda_11.8.0_windows_network.exe'\n    ],\n    [\n      '11.7.1',\n      'https://developer.download.nvidia.com/compute/cuda/11.7.1/network_installers/cuda_11.7.1_windows_network.exe'\n    ],\n    [\n      '11.7.0',\n      'https://developer.download.nvidia.com/compute/cuda/11.7.0/network_installers/cuda_11.7.0_windows_network.exe'\n    ],\n    [\n      '11.6.2',\n      'https://developer.download.nvidia.com/compute/cuda/11.6.2/network_installers/cuda_11.6.2_windows_network.exe'\n    ],\n    [\n      '11.6.1',\n      'https://developer.download.nvidia.com/compute/cuda/11.6.1/network_installers/cuda_11.6.1_windows_network.exe'\n    ],\n    [\n      '11.6.0',\n      'https://developer.download.nvidia.com/compute/cuda/11.6.0/network_installers/cuda_11.6.0_windows_network.exe'\n    ],\n    [\n      '11.5.2',\n      'https://developer.download.nvidia.com/compute/cuda/11.5.2/network_installers/cuda_11.5.2_windows_network.exe'\n    ],\n    [\n      '11.5.1',\n      'https://developer.download.nvidia.com/compute/cuda/11.5.1/network_installers/cuda_11.5.1_windows_network.exe'\n    ],\n    [\n      '11.5.0',\n      'https://developer.download.nvidia.com/compute/cuda/11.5.0/network_installers/cuda_11.5.0_win10_network.exe'\n    ],\n    [\n      '11.4.4',\n      'https://developer.download.nvidia.com/compute/cuda/11.4.4/network_installers/cuda_11.4.4_windows_network.exe'\n    ],\n    [\n      '11.4.3',\n      'https://developer.download.nvidia.com/compute/cuda/11.4.3/network_installers/cuda_11.4.3_win10_network.exe'\n    ],\n    [\n      '11.4.2',\n      'https://developer.download.nvidia.com/compute/cuda/11.4.2/network_installers/cuda_11.4.2_win10_network.exe'\n    ],\n    [\n      '11.4.1',\n      'https://developer.download.nvidia.com/compute/cuda/11.4.1/network_installers/cuda_11.4.1_win10_network.exe'\n    ],\n    [\n      '11.4.0',\n      'https://developer.download.nvidia.com/compute/cuda/11.4.0/network_installers/cuda_11.4.0_win10_network.exe'\n    ],\n    [\n      '11.3.1',\n      'https://developer.download.nvidia.com/compute/cuda/11.3.1/network_installers/cuda_11.3.1_win10_network.exe'\n    ],\n    [\n      '11.3.0',\n      'https://developer.download.nvidia.com/compute/cuda/11.3.0/network_installers/cuda_11.3.0_win10_network.exe'\n    ],\n    [\n      '11.2.2',\n      'https://developer.download.nvidia.com/compute/cuda/11.2.2/network_installers/cuda_11.2.2_win10_network.exe'\n    ],\n    [\n      '11.2.1',\n      'https://developer.download.nvidia.com/compute/cuda/11.2.1/network_installers/cuda_11.2.1_win10_network.exe'\n    ],\n    [\n      '11.2.0',\n      'https://developer.download.nvidia.com/compute/cuda/11.2.0/network_installers/cuda_11.2.0_win10_network.exe'\n    ],\n    [\n      '11.1.1',\n      'https://developer.download.nvidia.com/compute/cuda/11.1.1/network_installers/cuda_11.1.1_win10_network.exe'\n    ],\n    [\n      '11.0.3',\n      'https://developer.download.nvidia.com/compute/cuda/11.0.3/network_installers/cuda_11.0.3_win10_network.exe'\n    ],\n    [\n      '11.0.2',\n      'https://developer.download.nvidia.com/compute/cuda/11.0.2/network_installers/cuda_11.0.2_win10_network.exe'\n    ],\n    [\n      '11.0.1',\n      'https://developer.download.nvidia.com/compute/cuda/11.0.1/network_installers/cuda_11.0.1_win10_network.exe'\n    ],\n    [\n      '10.2.89',\n      'https://developer.download.nvidia.com/compute/cuda/10.2/Prod/network_installers/cuda_10.2.89_win10_network.exe'\n    ],\n    [\n      '10.1.243',\n      'https://developer.download.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.243_win10_network.exe'\n    ],\n    [\n      '10.0.130',\n      'https://developer.nvidia.com/compute/cuda/10.0/Prod/network_installers/cuda_10.0.130_win10_network'\n    ],\n    [\n      '9.2.148',\n      'https://developer.nvidia.com/compute/cuda/9.2/Prod2/network_installers2/cuda_9.2.148_win10_network'\n    ],\n    [\n      '8.0.61',\n      'https://developer.nvidia.com/compute/cuda/8.0/Prod2/network_installers/cuda_8.0.61_win10_network-exe'\n    ]\n  ])\n\n  // Private constructor to prevent instantiation\n  private constructor() {\n    super()\n    // Map of cuda SemVer version to download URL\n    this.cudaVersionToURL = new Map([\n      [\n        '13.2.0',\n        'https://developer.download.nvidia.com/compute/cuda/13.2.0/local_installers/cuda_13.2.0_windows.exe'\n      ],\n      [\n        '13.1.1',\n        'https://developer.download.nvidia.com/compute/cuda/13.1.1/local_installers/cuda_13.1.1_windows.exe'\n      ],\n      [\n        '13.1.0',\n        'https://developer.download.nvidia.com/compute/cuda/13.1.0/local_installers/cuda_13.1.0_windows.exe'\n      ],\n      [\n        '13.0.2',\n        'https://developer.download.nvidia.com/compute/cuda/13.0.2/local_installers/cuda_13.0.2_windows.exe'\n      ],\n      [\n        '13.0.1',\n        'https://developer.download.nvidia.com/compute/cuda/13.0.1/local_installers/cuda_13.0.1_windows.exe'\n      ],\n      [\n        '13.0.0',\n        'https://developer.download.nvidia.com/compute/cuda/13.0.0/local_installers/cuda_13.0.0_windows.exe'\n      ],\n      [\n        '12.9.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_576.57_windows.exe'\n      ],\n      [\n        '12.9.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.9.0/local_installers/cuda_12.9.0_576.02_windows.exe'\n      ],\n      [\n        '12.8.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.8.1/local_installers/cuda_12.8.1_572.61_windows.exe'\n      ],\n      [\n        '12.8.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.8.0/local_installers/cuda_12.8.0_571.96_windows.exe'\n      ],\n      [\n        '12.6.3',\n        'https://developer.download.nvidia.com/compute/cuda/12.6.3/local_installers/cuda_12.6.3_561.17_windows.exe'\n      ],\n      [\n        '12.6.2',\n        'https://developer.download.nvidia.com/compute/cuda/12.6.2/local_installers/cuda_12.6.2_560.94_windows.exe'\n      ],\n      [\n        '12.6.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.6.1/local_installers/cuda_12.6.1_560.94_windows.exe'\n      ],\n      [\n        '12.6.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.6.0/local_installers/cuda_12.6.0_560.76_windows.exe'\n      ],\n      [\n        '12.5.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.5.1/local_installers/cuda_12.5.1_555.85_windows.exe'\n      ],\n      [\n        '12.5.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.5.0/local_installers/cuda_12.5.0_555.85_windows.exe'\n      ],\n      [\n        '12.4.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.4.1/local_installers/cuda_12.4.1_551.78_windows.exe'\n      ],\n      [\n        '12.4.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda_12.4.0_551.61_windows.exe'\n      ],\n      [\n        '12.3.2',\n        'https://developer.download.nvidia.com/compute/cuda/12.3.2/local_installers/cuda_12.3.2_546.12_windows.exe'\n      ],\n      [\n        '12.3.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.3.1/local_installers/cuda_12.3.1_546.12_windows.exe'\n      ],\n      [\n        '12.3.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.3.0/local_installers/cuda_12.3.0_545.84_windows.exe'\n      ],\n      [\n        '12.2.2',\n        'https://developer.download.nvidia.com/compute/cuda/12.2.2/local_installers/cuda_12.2.2_537.13_windows.exe'\n      ],\n      [\n        '12.2.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.2.1/local_installers/cuda_12.2.1_536.67_windows.exe'\n      ],\n      [\n        '12.2.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.2.0/local_installers/cuda_12.2.0_536.25_windows.exe'\n      ],\n      [\n        '12.1.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.1.1/local_installers/cuda_12.1.1_531.14_windows.exe'\n      ],\n      [\n        '12.1.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_531.14_windows.exe'\n      ],\n      [\n        '12.0.1',\n        'https://developer.download.nvidia.com/compute/cuda/12.0.1/local_installers/cuda_12.0.1_528.33_windows.exe'\n      ],\n      [\n        '12.0.0',\n        'https://developer.download.nvidia.com/compute/cuda/12.0.0/local_installers/cuda_12.0.0_527.41_windows.exe'\n      ],\n      [\n        '11.8.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_522.06_windows.exe'\n      ],\n      [\n        '11.7.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.7.1/local_installers/cuda_11.7.1_516.94_windows.exe'\n      ],\n      [\n        '11.7.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_516.01_windows.exe'\n      ],\n      [\n        '11.6.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.6.2/local_installers/cuda_11.6.2_511.65_windows.exe'\n      ],\n      [\n        '11.6.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.6.1/local_installers/cuda_11.6.1_511.65_windows.exe'\n      ],\n      [\n        '11.6.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.6.0/local_installers/cuda_11.6.0_511.23_windows.exe'\n      ],\n      [\n        '11.5.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.5.2/local_installers/cuda_11.5.2_496.13_windows.exe'\n      ],\n      [\n        '11.5.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.5.1/local_installers/cuda_11.5.1_496.13_windows.exe'\n      ],\n      [\n        '11.5.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.5.0/local_installers/cuda_11.5.0_496.13_win10.exe'\n      ],\n      [\n        '11.4.4',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.4/local_installers/cuda_11.4.4_472.50_windows.exe'\n      ],\n      [\n        '11.4.3',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.3/local_installers/cuda_11.4.3_472.50_win10.exe'\n      ],\n      [\n        '11.4.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_471.41_win10.exe'\n      ],\n      [\n        '11.4.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.1/local_installers/cuda_11.4.1_471.41_win10.exe'\n      ],\n      [\n        '11.4.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.4.0/local_installers/cuda_11.4.0_471.11_win10.exe'\n      ],\n      [\n        '11.3.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.89_win10.exe'\n      ],\n      [\n        '11.3.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.3.0/local_installers/cuda_11.3.0_465.89_win10.exe'\n      ],\n      [\n        '11.2.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda_11.2.2_461.33_win10.exe'\n      ],\n      [\n        '11.2.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.2.1/local_installers/cuda_11.2.1_461.09_win10.exe'\n      ],\n      [\n        '11.2.0',\n        'https://developer.download.nvidia.com/compute/cuda/11.2.0/local_installers/cuda_11.2.0_460.89_win10.exe'\n      ],\n      [\n        '11.1.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.1.1/local_installers/cuda_11.1.1_456.81_win10.exe'\n      ],\n      [\n        '11.0.3',\n        'https://developer.download.nvidia.com/compute/cuda/11.0.3/local_installers/cuda_11.0.3_451.82_win10.exe'\n      ],\n      [\n        '11.0.2',\n        'https://developer.download.nvidia.com/compute/cuda/11.0.2/local_installers/cuda_11.0.2_451.48_win10.exe'\n      ],\n      [\n        '11.0.1',\n        'https://developer.download.nvidia.com/compute/cuda/11.0.1/local_installers/cuda_11.0.1_451.22_win10.exe'\n      ],\n      [\n        '10.2.89',\n        'https://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_441.22_win10.exe'\n      ],\n      [\n        '10.1.243',\n        'https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_426.00_win10.exe'\n      ],\n      [\n        '10.0.130',\n        'https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_411.31_win10'\n      ],\n      [\n        '9.2.148',\n        'https://developer.nvidia.com/compute/cuda/9.2/Prod2/local_installers2/cuda_9.2.148_win10'\n      ],\n      [\n        '8.0.61',\n        'https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda_8.0.61_win10-exe'\n      ]\n    ])\n  }\n\n  static get Instance(): WindowsLinks {\n    return this._instance || (this._instance = new this())\n  }\n\n  getAvailableNetworkCudaVersions(): SemVer[] {\n    return Array.from(this.cudaVersionToNetworkUrl.keys()).map(\n      (s) => new SemVer(s)\n    )\n  }\n\n  getNetworkURLFromCudaVersion(version: SemVer): URL {\n    const urlString = this.cudaVersionToNetworkUrl.get(`${version}`)\n    if (urlString === undefined) {\n      throw new Error(`Invalid version: ${version}`)\n    }\n    return new URL(urlString)\n  }\n}\n"
  },
  {
    "path": "src/method.ts",
    "content": "export type Method = 'local' | 'network'\n\nexport function parseMethod(methodString: string): Method {\n  switch (methodString) {\n    case 'local':\n      return 'local'\n    case 'network':\n      return 'network'\n    default:\n      throw new Error(`Invalid method string: ${methodString}`)\n  }\n}\n"
  },
  {
    "path": "src/parser.ts",
    "content": "import * as core from '@actions/core'\n\nexport async function parsePackages(\n  subPackages: string,\n  parameterName: string\n): Promise<string[]> {\n  let subPackagesArray: string[] = []\n  try {\n    subPackagesArray = JSON.parse(subPackages)\n  } catch (error) {\n    core.debug(`Json parsing error: ${error}`)\n    const errString = `Error parsing input '${parameterName}' to a JSON string array: ${subPackages}`\n    core.debug(errString)\n    throw new Error(errString)\n  }\n  return subPackagesArray\n}\n"
  },
  {
    "path": "src/platform.ts",
    "content": "import { debug } from '@actions/core'\nimport os from 'os'\n\nexport enum OSType {\n  windows = 'windows',\n  linux = 'linux'\n}\n\nexport async function getOs(): Promise<OSType> {\n  const osPlatform = os.platform()\n  switch (osPlatform) {\n    case 'win32':\n      return OSType.windows\n    case 'linux':\n      return OSType.linux\n    default:\n      debug(`Unsupported OS: ${osPlatform}`)\n      throw new Error(`Unsupported OS: ${osPlatform}`)\n  }\n}\n\nexport async function getRelease(): Promise<string> {\n  return os.release()\n}\n"
  },
  {
    "path": "src/run-command.ts",
    "content": "import * as core from '@actions/core'\nimport { exec } from '@actions/exec'\n\nexport async function execReturnOutput(\n  command: string,\n  args: string[] = []\n): Promise<string> {\n  let result = ''\n  const execOptions = {\n    listeners: {\n      stdout: (data: Buffer) => {\n        result += data.toString()\n      },\n      stderr: (data: Buffer) => {\n        core.debug(`Error: ${data.toString()}`)\n      }\n    }\n  }\n  const exitCode = await exec(command, args, execOptions)\n  if (exitCode) {\n    core.debug(`Error executing: ${command}. Exit code: ${exitCode}`)\n  }\n  return result.trim()\n}\n"
  },
  {
    "path": "src/update-path.ts",
    "content": "import * as core from '@actions/core'\nimport * as path from 'path'\nimport { OSType, getOs } from './platform.js'\nimport { SemVer } from 'semver'\n\nexport async function updatePath(version: SemVer): Promise<string> {\n  let cudaPath: string\n  switch (await getOs()) {\n    case OSType.linux:\n      cudaPath = `/usr/local/cuda-${version.major}.${version.minor}`\n      break\n    case OSType.windows:\n      cudaPath = `C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v${version.major}.${version.minor}`\n  }\n  core.debug(`Cuda path: ${cudaPath}`)\n  // Export $CUDA_PATH\n  core.exportVariable('CUDA_PATH', cudaPath)\n  core.debug(`Cuda path vx_y: ${cudaPath}`)\n  // Export $CUDA_PATH_VX_Y\n  core.exportVariable(`CUDA_PATH_V${version.major}_${version.minor}`, cudaPath)\n  core.exportVariable(\n    'CUDA_PATH_VX_Y',\n    `CUDA_PATH_V${version.major}_${version.minor}`\n  )\n  // Add $CUDA_PATH/bin to $PATH\n  const binPath = path.join(cudaPath, 'bin')\n  core.debug(`Adding to PATH: ${binPath}`)\n  core.addPath(binPath)\n\n  // Update LD_LIBRARY_PATH on linux, see: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#environment-setup\n  if ((await getOs()) === OSType.linux) {\n    // Get LD_LIBRARY_PATH\n    const libPath = process.env.LD_LIBRARY_PATH\n      ? process.env.LD_LIBRARY_PATH\n      : ''\n    // Get CUDA lib path\n    const cudaLibPath = path.join(cudaPath, 'lib64')\n    // Check if CUDA lib path is already in LD_LIBRARY_PATH\n    if (!libPath.split(':').includes(cudaLibPath)) {\n      // CUDA lib is not in LD_LIBRARY_PATH, so add it\n      core.debug(`Adding to LD_LIBRARY_PATH: ${cudaLibPath}`)\n      core.exportVariable(\n        'LD_LIBRARY_PATH',\n        cudaLibPath + path.delimiter + libPath\n      )\n    }\n  }\n  // Return cuda path\n  return cudaPath\n}\n"
  },
  {
    "path": "src/version.ts",
    "content": "import * as core from '@actions/core'\nimport { OSType, getOs } from './platform.js'\nimport { AbstractLinks } from './links/links.js'\nimport { Method } from './method.js'\nimport { SemVer } from 'semver'\nimport { WindowsLinks } from './links/windows-links.js'\nimport { getLinks } from './links/get-links.js'\n\n// Helper for converting string to SemVer and verifying it exists in the links\nexport async function getVersion(\n  versionString: string,\n  method: Method\n): Promise<SemVer> {\n  const version = new SemVer(versionString)\n  const links: AbstractLinks = await getLinks()\n  let versions\n  switch (method) {\n    case 'local':\n      versions = links.getAvailableLocalCudaVersions()\n      break\n    case 'network':\n      switch (await getOs()) {\n        case OSType.linux:\n          // TODO adapt this to actual available network versions for linux\n          versions = links.getAvailableLocalCudaVersions()\n          break\n        case OSType.windows:\n          versions = (\n            links as unknown as WindowsLinks\n          ).getAvailableNetworkCudaVersions()\n          break\n      }\n  }\n  core.debug(`Available versions: ${versions}`)\n  if (versions.find((v) => v.compare(version) === 0) !== undefined) {\n    core.debug(`Version available: ${version}`)\n    return version\n  } else {\n    core.debug(`Version not available error!`)\n    throw new Error(`Version not available: ${version}`)\n  }\n}\n"
  },
  {
    "path": "tsconfig.base.json",
    "content": "{\n  \"$schema\": \"https://json.schemastore.org/tsconfig\",\n  \"compilerOptions\": {\n    \"allowSyntheticDefaultImports\": true,\n    \"declaration\": false,\n    \"declarationMap\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"lib\": [\"ES2022\"],\n    \"module\": \"NodeNext\",\n    \"moduleResolution\": \"NodeNext\",\n    \"newLine\": \"lf\",\n    \"noImplicitAny\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": false,\n    \"pretty\": true,\n    \"resolveJsonModule\": true,\n    \"strict\": true,\n    \"strictNullChecks\": true,\n    \"target\": \"ES2022\"\n  }\n}\n"
  },
  {
    "path": "tsconfig.eslint.json",
    "content": "{\n  \"$schema\": \"https://json.schemastore.org/tsconfig\",\n  \"extends\": \"./tsconfig.base.json\",\n  \"compilerOptions\": {\n    \"allowJs\": true,\n    \"noEmit\": true\n  },\n  \"exclude\": [\"dist\", \"node_modules\"],\n  \"include\": [\n    \"__fixtures__\",\n    \"__tests__\",\n    \"src\",\n    \"eslint.config.mjs\",\n    \"jest.config.js\",\n    \"rollup.config.ts\"\n  ]\n}\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"$schema\": \"https://json.schemastore.org/tsconfig\",\n  \"extends\": \"./tsconfig.base.json\",\n  \"compilerOptions\": {\n    \"module\": \"NodeNext\",\n    \"moduleResolution\": \"NodeNext\",\n    \"outDir\": \"./dist\"\n  },\n  \"exclude\": [\"__fixtures__\", \"__tests__\", \"coverage\", \"dist\", \"node_modules\"],\n  \"include\": [\"src\"]\n}\n"
  }
]